@nocobase/database 1.2.27-alpha → 1.2.29-alpha

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.
@@ -8,7 +8,7 @@
8
8
  */
9
9
  import { DataTypes } from 'sequelize';
10
10
  import { BaseColumnFieldOptions, Field } from './field';
11
- declare abstract class NumberField extends Field {
11
+ export declare abstract class NumberField extends Field {
12
12
  }
13
13
  export declare class IntegerField extends NumberField {
14
14
  get dataType(): DataTypes.IntegerDataTypeConstructor;
@@ -46,4 +46,3 @@ export declare class DecimalField extends NumberField {
46
46
  export interface DecimalFieldOptions extends BaseColumnFieldOptions {
47
47
  type: 'decimal';
48
48
  }
49
- export {};
@@ -32,6 +32,7 @@ __export(number_field_exports, {
32
32
  DoubleField: () => DoubleField,
33
33
  FloatField: () => FloatField,
34
34
  IntegerField: () => IntegerField,
35
+ NumberField: () => NumberField,
35
36
  RealField: () => RealField
36
37
  });
37
38
  module.exports = __toCommonJS(number_field_exports);
@@ -90,5 +91,6 @@ let DecimalField = _DecimalField;
90
91
  DoubleField,
91
92
  FloatField,
92
93
  IntegerField,
94
+ NumberField,
93
95
  RealField
94
96
  });
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@nocobase/database",
3
- "version": "1.2.27-alpha",
3
+ "version": "1.2.29-alpha",
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.2.27-alpha",
10
- "@nocobase/utils": "1.2.27-alpha",
9
+ "@nocobase/logger": "1.2.29-alpha",
10
+ "@nocobase/utils": "1.2.29-alpha",
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": "b40e402f6ffd57c89475af21c56fdf99d3bbc931"
41
+ "gitHead": "859f001e3e1399bc825a7ad04316e8d5f82f370d"
42
42
  }