@nocobase/database 1.0.0-alpha.2 → 1.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/collection-factory.d.ts +8 -0
- package/lib/collection-factory.js +9 -0
- package/lib/collection-group-manager.d.ts +8 -0
- package/lib/collection-group-manager.js +9 -0
- package/lib/collection-importer.d.ts +8 -0
- package/lib/collection-importer.js +9 -0
- package/lib/collection.d.ts +8 -0
- package/lib/collection.js +9 -0
- package/lib/database-utils/index.d.ts +8 -0
- package/lib/database-utils/index.js +9 -0
- package/lib/database.d.ts +8 -0
- package/lib/database.js +9 -0
- package/lib/decorators/must-have-filter-decorator.d.ts +8 -0
- package/lib/decorators/must-have-filter-decorator.js +9 -0
- package/lib/decorators/target-collection-decorator.d.ts +8 -0
- package/lib/decorators/target-collection-decorator.js +9 -0
- package/lib/decorators/transaction-decorator.d.ts +8 -0
- package/lib/decorators/transaction-decorator.js +9 -0
- package/lib/eager-loading/eager-loading-tree.d.ts +8 -0
- package/lib/eager-loading/eager-loading-tree.js +9 -0
- package/lib/errors/identifier-error.d.ts +8 -0
- package/lib/errors/identifier-error.js +9 -0
- package/lib/errors/zero-column-table-error.d.ts +8 -0
- package/lib/errors/zero-column-table-error.js +9 -0
- package/lib/features/references-map.d.ts +8 -0
- package/lib/features/references-map.js +9 -0
- package/lib/features/referential-integrity-check.d.ts +8 -0
- package/lib/features/referential-integrity-check.js +9 -0
- package/lib/field-repository/array-field-repository.d.ts +8 -0
- package/lib/field-repository/array-field-repository.js +9 -0
- package/lib/fields/array-field.d.ts +8 -0
- package/lib/fields/array-field.js +9 -0
- package/lib/fields/belongs-to-field.d.ts +8 -0
- package/lib/fields/belongs-to-field.js +9 -0
- package/lib/fields/belongs-to-many-field.d.ts +8 -0
- package/lib/fields/belongs-to-many-field.js +9 -0
- package/lib/fields/boolean-field.d.ts +8 -0
- package/lib/fields/boolean-field.js +9 -0
- package/lib/fields/context-field.d.ts +8 -0
- package/lib/fields/context-field.js +9 -0
- package/lib/fields/date-field.d.ts +8 -0
- package/lib/fields/date-field.js +9 -0
- package/lib/fields/field.d.ts +8 -0
- package/lib/fields/field.js +9 -0
- package/lib/fields/has-inverse-field.d.ts +8 -0
- package/lib/fields/has-inverse-field.js +9 -0
- package/lib/fields/has-many-field.d.ts +8 -0
- package/lib/fields/has-many-field.js +9 -0
- package/lib/fields/has-one-field.d.ts +8 -0
- package/lib/fields/has-one-field.js +9 -0
- package/lib/fields/index.d.ts +8 -0
- package/lib/fields/index.js +9 -0
- package/lib/fields/json-field.d.ts +8 -0
- package/lib/fields/json-field.js +9 -0
- package/lib/fields/nanoid-field.d.ts +8 -0
- package/lib/fields/nanoid-field.js +9 -0
- package/lib/fields/number-field.d.ts +8 -0
- package/lib/fields/number-field.js +9 -0
- package/lib/fields/password-field.d.ts +8 -0
- package/lib/fields/password-field.js +9 -0
- package/lib/fields/radio-field.d.ts +8 -0
- package/lib/fields/radio-field.js +9 -0
- package/lib/fields/relation-field.d.ts +8 -0
- package/lib/fields/relation-field.js +9 -0
- package/lib/fields/set-field.d.ts +8 -0
- package/lib/fields/set-field.js +9 -0
- package/lib/fields/sort-field.d.ts +8 -0
- package/lib/fields/sort-field.js +9 -0
- package/lib/fields/string-field.d.ts +8 -0
- package/lib/fields/string-field.js +9 -0
- package/lib/fields/text-field.d.ts +8 -0
- package/lib/fields/text-field.js +9 -0
- package/lib/fields/time-field.d.ts +8 -0
- package/lib/fields/time-field.js +9 -0
- package/lib/fields/uid-field.d.ts +8 -0
- package/lib/fields/uid-field.js +9 -0
- package/lib/fields/uuid-field.d.ts +8 -0
- package/lib/fields/uuid-field.js +9 -0
- package/lib/fields/virtual-field.d.ts +8 -0
- package/lib/fields/virtual-field.js +9 -0
- package/lib/filter-match.d.ts +8 -0
- package/lib/filter-match.js +9 -0
- package/lib/filter-parser.d.ts +8 -0
- package/lib/filter-parser.js +9 -0
- package/lib/helpers.d.ts +8 -0
- package/lib/helpers.js +9 -0
- package/lib/index.d.ts +8 -0
- package/lib/index.js +9 -0
- package/lib/inherited-collection.d.ts +8 -0
- package/lib/inherited-collection.js +9 -0
- package/lib/inherited-map.d.ts +8 -0
- package/lib/inherited-map.js +9 -0
- package/lib/inherited-sync-runner.d.ts +8 -0
- package/lib/inherited-sync-runner.js +9 -0
- package/lib/listeners/adjacency-list.d.ts +8 -0
- package/lib/listeners/adjacency-list.js +9 -0
- package/lib/listeners/append-child-collection-name-after-repository-find.d.ts +8 -0
- package/lib/listeners/append-child-collection-name-after-repository-find.js +9 -0
- package/lib/listeners/index.d.ts +8 -0
- package/lib/listeners/index.js +9 -0
- package/lib/magic-attribute-model.d.ts +8 -0
- package/lib/magic-attribute-model.js +9 -0
- package/lib/migration.d.ts +8 -0
- package/lib/migration.js +9 -0
- package/lib/mock-database.d.ts +8 -0
- package/lib/mock-database.js +9 -0
- package/lib/model-hook.d.ts +8 -0
- package/lib/model-hook.js +9 -0
- package/lib/model.d.ts +8 -0
- package/lib/model.js +9 -0
- package/lib/operators/array.d.ts +8 -0
- package/lib/operators/array.js +9 -0
- package/lib/operators/association.d.ts +8 -0
- package/lib/operators/association.js +9 -0
- package/lib/operators/boolean.d.ts +8 -0
- package/lib/operators/boolean.js +9 -0
- package/lib/operators/child-collection.d.ts +8 -0
- package/lib/operators/child-collection.js +9 -0
- package/lib/operators/date.d.ts +8 -0
- package/lib/operators/date.js +9 -0
- package/lib/operators/empty.d.ts +8 -0
- package/lib/operators/empty.js +9 -0
- package/lib/operators/eq.d.ts +8 -0
- package/lib/operators/eq.js +9 -0
- package/lib/operators/index.d.ts +8 -0
- package/lib/operators/index.js +9 -0
- package/lib/operators/ne.d.ts +8 -0
- package/lib/operators/ne.js +9 -0
- package/lib/operators/notIn.d.ts +8 -0
- package/lib/operators/notIn.js +9 -0
- package/lib/operators/string.d.ts +8 -0
- package/lib/operators/string.js +9 -0
- package/lib/operators/utils.d.ts +8 -0
- package/lib/operators/utils.js +9 -0
- package/lib/options-parser.d.ts +8 -0
- package/lib/options-parser.js +9 -0
- package/lib/query-interface/mysql-query-interface.d.ts +8 -0
- package/lib/query-interface/mysql-query-interface.js +9 -0
- package/lib/query-interface/postgres-query-interface.d.ts +8 -0
- package/lib/query-interface/postgres-query-interface.js +9 -0
- package/lib/query-interface/query-interface-builder.d.ts +8 -0
- package/lib/query-interface/query-interface-builder.js +9 -0
- package/lib/query-interface/query-interface.d.ts +8 -0
- package/lib/query-interface/query-interface.js +9 -0
- package/lib/query-interface/sqlite-query-interface.d.ts +8 -0
- package/lib/query-interface/sqlite-query-interface.js +9 -0
- package/lib/relation-repository/belongs-to-many-repository.d.ts +8 -0
- package/lib/relation-repository/belongs-to-many-repository.js +9 -0
- package/lib/relation-repository/belongs-to-repository.d.ts +8 -0
- package/lib/relation-repository/belongs-to-repository.js +9 -0
- package/lib/relation-repository/hasmany-repository.d.ts +8 -0
- package/lib/relation-repository/hasmany-repository.js +9 -0
- package/lib/relation-repository/hasone-repository.d.ts +8 -0
- package/lib/relation-repository/hasone-repository.js +9 -0
- package/lib/relation-repository/multiple-relation-repository.d.ts +8 -0
- package/lib/relation-repository/multiple-relation-repository.js +9 -0
- package/lib/relation-repository/relation-repository.d.ts +8 -0
- package/lib/relation-repository/relation-repository.js +9 -0
- package/lib/relation-repository/single-relation-repository.d.ts +8 -0
- package/lib/relation-repository/single-relation-repository.js +9 -0
- package/lib/relation-repository/types.d.ts +8 -0
- package/lib/relation-repository/types.js +9 -0
- package/lib/repositories/tree-repository/adjacency-list-repository.d.ts +8 -0
- package/lib/repositories/tree-repository/adjacency-list-repository.js +9 -0
- package/lib/repositories/view-repository.d.ts +8 -0
- package/lib/repositories/view-repository.js +9 -0
- package/lib/repository.d.ts +8 -0
- package/lib/repository.js +9 -0
- package/lib/sql-collection/index.d.ts +8 -0
- package/lib/sql-collection/index.js +9 -0
- package/lib/sql-collection/query-generator.d.ts +8 -0
- package/lib/sql-collection/query-generator.js +9 -0
- package/lib/sql-collection/sql-collection.d.ts +8 -0
- package/lib/sql-collection/sql-collection.js +9 -0
- package/lib/sql-collection/sql-model.d.ts +8 -0
- package/lib/sql-collection/sql-model.js +9 -0
- package/lib/sql-parser/index.js +9 -0
- package/lib/sql-parser/postgres.js +9 -0
- package/lib/sync-runner.d.ts +8 -0
- package/lib/sync-runner.js +9 -0
- package/lib/types.d.ts +8 -0
- package/lib/types.js +9 -0
- package/lib/update-associations.d.ts +8 -0
- package/lib/update-associations.js +9 -0
- package/lib/update-guard.d.ts +8 -0
- package/lib/update-guard.js +9 -0
- package/lib/utils.d.ts +8 -0
- package/lib/utils.js +9 -0
- package/lib/value-parsers/array-value-parser.d.ts +8 -0
- package/lib/value-parsers/array-value-parser.js +9 -0
- package/lib/value-parsers/base-value-parser.d.ts +8 -0
- package/lib/value-parsers/base-value-parser.js +9 -0
- package/lib/value-parsers/boolean-value-parser.d.ts +8 -0
- package/lib/value-parsers/boolean-value-parser.js +9 -0
- package/lib/value-parsers/date-value-parser.d.ts +8 -0
- package/lib/value-parsers/date-value-parser.js +9 -0
- package/lib/value-parsers/index.d.ts +8 -0
- package/lib/value-parsers/index.js +9 -0
- package/lib/value-parsers/json-value-parser.d.ts +8 -0
- package/lib/value-parsers/json-value-parser.js +9 -0
- package/lib/value-parsers/number-value-parser.d.ts +8 -0
- package/lib/value-parsers/number-value-parser.js +9 -0
- package/lib/value-parsers/string-value-parser.d.ts +8 -0
- package/lib/value-parsers/string-value-parser.js +9 -0
- package/lib/value-parsers/to-many-value-parser.d.ts +8 -0
- package/lib/value-parsers/to-many-value-parser.js +9 -0
- package/lib/value-parsers/to-one-value-parser.d.ts +8 -0
- package/lib/value-parsers/to-one-value-parser.js +9 -0
- package/lib/view/field-type-map.d.ts +8 -0
- package/lib/view/field-type-map.js +9 -0
- package/lib/view/view-inference.d.ts +8 -0
- package/lib/view/view-inference.js +9 -0
- package/lib/view-collection.d.ts +8 -0
- package/lib/view-collection.js +9 -0
- package/package.json +4 -4
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { AssociationScope, DataType, ForeignKeyOptions, HasOneOptions, HasOneOptions as SequelizeHasOneOptions } from 'sequelize';
|
|
2
10
|
import { Reference } from '../features/references-map';
|
|
3
11
|
import { BaseRelationFieldOptions, RelationField } from './relation-field';
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
package/lib/fields/index.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { ArrayFieldOptions } from './array-field';
|
|
2
10
|
import { BelongsToFieldOptions } from './belongs-to-field';
|
|
3
11
|
import { BelongsToManyFieldOptions } from './belongs-to-many-field';
|
package/lib/fields/index.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export declare class JsonField extends Field {
|
package/lib/fields/json-field.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export declare class NanoidField extends Field {
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
declare abstract class NumberField extends Field {
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export interface PasswordFieldOptions extends BaseColumnFieldOptions {
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __create = Object.create;
|
|
2
11
|
var __defProp = Object.defineProperty;
|
|
3
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export interface RadioFieldOptions extends BaseColumnFieldOptions {
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { BaseFieldOptions, Field } from './field';
|
|
2
10
|
export type BaseRelationFieldOptions = BaseFieldOptions;
|
|
3
11
|
export interface MultipleRelationFieldOptions extends BaseRelationFieldOptions {
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { ArrayField } from './array-field';
|
|
2
10
|
import { BaseColumnFieldOptions } from './field';
|
|
3
11
|
export interface SetFieldOptions extends BaseColumnFieldOptions {
|
package/lib/fields/set-field.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export declare class SortField extends Field {
|
package/lib/fields/sort-field.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export declare class StringField extends Field {
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export declare class TextField extends Field {
|
package/lib/fields/text-field.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export declare class TimeField extends Field {
|
package/lib/fields/time-field.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export declare class UidField extends Field {
|
package/lib/fields/uid-field.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export declare class UuidField extends Field {
|
package/lib/fields/uuid-field.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { DataTypes } from 'sequelize';
|
|
2
10
|
import { BaseColumnFieldOptions, Field } from './field';
|
|
3
11
|
export declare class VirtualField extends Field {
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
package/lib/filter-match.d.ts
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
export declare function filterMatch(model: any, where: any): boolean;
|
package/lib/filter-match.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
package/lib/filter-parser.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { ModelStatic } from 'sequelize';
|
|
2
10
|
import { Collection } from './collection';
|
|
3
11
|
import { Database } from './database';
|
package/lib/filter-parser.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __create = Object.create;
|
|
2
11
|
var __defProp = Object.defineProperty;
|
|
3
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
package/lib/helpers.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { Database, IDatabaseOptions } from './database';
|
|
2
10
|
export declare function parseDatabaseOptionsFromEnv(): Promise<IDatabaseOptions>;
|
|
3
11
|
export declare function checkDatabaseVersion(db: Database): Promise<boolean>;
|
package/lib/helpers.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __create = Object.create;
|
|
2
11
|
var __defProp = Object.defineProperty;
|
|
3
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
export { BaseError, BelongsToGetAssociationMixin, DataTypes, fn, HasManyCountAssociationsMixin, HasManyCreateAssociationMixin, HasManyGetAssociationsMixin, literal, ModelStatic, Op, SyncOptions, Transaction, UniqueConstraintError, ValidationError, ValidationErrorItem, where, } from 'sequelize';
|
|
2
10
|
export * from './collection';
|
|
3
11
|
export * from './collection-group-manager';
|
package/lib/index.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __create = Object.create;
|
|
2
11
|
var __defProp = Object.defineProperty;
|
|
3
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { Field } from '.';
|
|
2
10
|
import { Collection, CollectionContext, CollectionOptions } from './collection';
|
|
3
11
|
export declare class InheritedCollection extends Collection {
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __create = Object.create;
|
|
2
11
|
var __defProp = Object.defineProperty;
|
|
3
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
package/lib/inherited-map.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
declare class TableNode {
|
|
2
10
|
name: string;
|
|
3
11
|
parents: Set<TableNode>;
|
package/lib/inherited-map.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __create = Object.create;
|
|
2
11
|
var __defProp = Object.defineProperty;
|
|
3
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
export declare class InheritedSyncRunner {
|
|
2
10
|
static syncInheritModel(model: any, options: any): Promise<void>;
|
|
3
11
|
static createTable(tableName: any, attributes: any, options: any, model: any, parents: any): Promise<any>;
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __create = Object.create;
|
|
2
11
|
var __defProp = Object.defineProperty;
|
|
3
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
1
9
|
import { CollectionOptions } from '../collection';
|
|
2
10
|
export declare const beforeDefineAdjacencyListCollection: (options: CollectionOptions) => void;
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
1
10
|
var __defProp = Object.defineProperty;
|
|
2
11
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
12
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|