@nocobase/database 1.6.0-alpha.13 → 1.6.0-alpha.15

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.
@@ -29,7 +29,7 @@ export type DumpRules = BuiltInGroup | ({
29
29
  } & BaseDumpRules) | ({
30
30
  group: BuiltInGroup | string;
31
31
  } & BaseDumpRules);
32
- export type MigrationRule = 'overwrite' | 'skip' | 'upsert' | 'schema-only' | 'insert-ignore';
32
+ export type MigrationRule = 'overwrite' | 'skip' | 'upsert' | 'schema-only' | 'insert-ignore' | (string & {}) | null;
33
33
  export interface CollectionOptions extends Omit<ModelOptions, 'name' | 'hooks'> {
34
34
  name: string;
35
35
  title?: string;
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@nocobase/database",
3
- "version": "1.6.0-alpha.13",
3
+ "version": "1.6.0-alpha.15",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
7
7
  "license": "AGPL-3.0",
8
8
  "dependencies": {
9
- "@nocobase/logger": "1.6.0-alpha.13",
10
- "@nocobase/utils": "1.6.0-alpha.13",
9
+ "@nocobase/logger": "1.6.0-alpha.15",
10
+ "@nocobase/utils": "1.6.0-alpha.15",
11
11
  "async-mutex": "^0.3.2",
12
12
  "chalk": "^4.1.1",
13
13
  "cron-parser": "4.4.0",
@@ -38,5 +38,5 @@
38
38
  "url": "git+https://github.com/nocobase/nocobase.git",
39
39
  "directory": "packages/database"
40
40
  },
41
- "gitHead": "b051b9016899d0c9fd5b54543d3898edace9950b"
41
+ "gitHead": "4005cfd4876717aad16e0528513ee682a32d920a"
42
42
  }