mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 23:15:09 +00:00
89635982b4
* feat(db): add sql collection * feat: frontend * perf: issue of select * fix: sql model * fix: sql collection schema * fix: implement sql collection * fix: dependency * fix: remove type declaration in actions * fix: backend test * chore: remove some ops of block using sql collection * chore: remove sql collections from Form and Kanban * feat: add execute button to sql input * feat(backend): support infer fields by parsing sql * feat(frontend): support infer interface by parsing sql * fix: fix update issues and improve * fix: update issue * chore: update yarn.lock * fix: fix T-1548 * fix: fix T-1544 * fix: fix T-1545 * fix: fix T-1549 * fix: test * fix: fix T-1556 * fix: remove map action diviver * chore: debug * chore: remove schema of sql collection * fix: sql collection schema * chore: remove debug log & fix T-1555 * fix: fix T-1679 * fix: sql update issue * fix: sql attribute issue * fix: bug of star attribute * fix: test * fix: test * fix: reset fields when updating sql collection * fix(collection-manager): redundant fields after set collection fields * fix: test * fix: destory with individuals hook * chore: save * chore: test * fix: fields sync issue * fix: remove underscored option of sql collection * chore: mutex in fields.afterDestroy * fix: test * chore: yarn.lock * chore: update collections.setFields * feat: improve sql input * fix: fix T-1742 & improve * chore: fix conflicts * fix: workspace * fix: build * fix: test * chore: add translations * fix: reviewed issues * chore: update yarn.lock --------- Co-authored-by: ChengLei Shao <chareice@live.com>
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
export {
|
|
BaseError,
|
|
BelongsToGetAssociationMixin,
|
|
DataTypes,
|
|
fn,
|
|
HasManyCountAssociationsMixin,
|
|
HasManyCreateAssociationMixin,
|
|
HasManyGetAssociationsMixin,
|
|
literal,
|
|
ModelStatic,
|
|
Op,
|
|
SyncOptions,
|
|
Transaction,
|
|
UniqueConstraintError,
|
|
ValidationError,
|
|
ValidationErrorItem,
|
|
where,
|
|
} from 'sequelize';
|
|
export * from './collection';
|
|
export * from './collection-group-manager';
|
|
export * from './collection-importer';
|
|
export * from './database';
|
|
export { Database as default } from './database';
|
|
export * from './field-repository/array-field-repository';
|
|
export * from './fields';
|
|
export * from './filter-match';
|
|
export { default as FilterParser } from './filter-parser';
|
|
export * from './inherited-collection';
|
|
export * from './magic-attribute-model';
|
|
export * from './migration';
|
|
export * from './mock-database';
|
|
export * from './model';
|
|
export * from './relation-repository/belongs-to-many-repository';
|
|
export * from './relation-repository/belongs-to-repository';
|
|
export * from './relation-repository/hasmany-repository';
|
|
export * from './relation-repository/multiple-relation-repository';
|
|
export * from './relation-repository/single-relation-repository';
|
|
export * from './repository';
|
|
export * from './update-associations';
|
|
export { snakeCase } from './utils';
|
|
export * from './value-parsers';
|
|
export * from './view-collection';
|
|
export * from './view/view-inference';
|
|
export * from './sql-collection';
|
|
export * from './helpers';
|