@constructive-io/sdk 0.21.10 → 0.22.1
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/auth/orm/input-types.d.ts +1 -0
- package/esm/auth/orm/input-types.d.ts +1 -0
- package/esm/public/orm/index.d.ts +2 -2
- package/esm/public/orm/index.js +2 -2
- package/esm/public/orm/input-types.d.ts +214 -197
- package/esm/public/orm/input-types.js +0 -1
- package/esm/public/orm/models/index.d.ts +1 -1
- package/esm/public/orm/models/index.js +1 -1
- package/package.json +6 -6
- package/public/orm/index.d.ts +2 -2
- package/public/orm/index.js +2 -2
- package/public/orm/input-types.d.ts +214 -197
- package/public/orm/input-types.js +0 -1
- package/public/orm/models/index.d.ts +1 -1
- package/public/orm/models/index.js +3 -3
|
@@ -12,7 +12,6 @@ import { TableModel } from './models/table';
|
|
|
12
12
|
import { CheckConstraintModel } from './models/checkConstraint';
|
|
13
13
|
import { FieldModel } from './models/field';
|
|
14
14
|
import { SpatialRelationModel } from './models/spatialRelation';
|
|
15
|
-
import { PartitionModel } from './models/partition';
|
|
16
15
|
import { ForeignKeyConstraintModel } from './models/foreignKeyConstraint';
|
|
17
16
|
import { FullTextSearchModel } from './models/fullTextSearch';
|
|
18
17
|
import { IndexModel } from './models/index';
|
|
@@ -44,6 +43,7 @@ import { SiteThemeModel } from './models/siteTheme';
|
|
|
44
43
|
import { CorsSettingModel } from './models/corsSetting';
|
|
45
44
|
import { TriggerFunctionModel } from './models/triggerFunction';
|
|
46
45
|
import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
46
|
+
import { PartitionModel } from './models/partition';
|
|
47
47
|
import { ApiModel } from './models/api';
|
|
48
48
|
import { SiteModel } from './models/site';
|
|
49
49
|
import { AppModel } from './models/app';
|
|
@@ -192,7 +192,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
192
192
|
checkConstraint: CheckConstraintModel;
|
|
193
193
|
field: FieldModel;
|
|
194
194
|
spatialRelation: SpatialRelationModel;
|
|
195
|
-
partition: PartitionModel;
|
|
196
195
|
foreignKeyConstraint: ForeignKeyConstraintModel;
|
|
197
196
|
fullTextSearch: FullTextSearchModel;
|
|
198
197
|
index: IndexModel;
|
|
@@ -224,6 +223,7 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
224
223
|
corsSetting: CorsSettingModel;
|
|
225
224
|
triggerFunction: TriggerFunctionModel;
|
|
226
225
|
databaseTransfer: DatabaseTransferModel;
|
|
226
|
+
partition: PartitionModel;
|
|
227
227
|
api: ApiModel;
|
|
228
228
|
site: SiteModel;
|
|
229
229
|
app: AppModel;
|
package/esm/public/orm/index.js
CHANGED
|
@@ -17,7 +17,6 @@ import { TableModel } from './models/table';
|
|
|
17
17
|
import { CheckConstraintModel } from './models/checkConstraint';
|
|
18
18
|
import { FieldModel } from './models/field';
|
|
19
19
|
import { SpatialRelationModel } from './models/spatialRelation';
|
|
20
|
-
import { PartitionModel } from './models/partition';
|
|
21
20
|
import { ForeignKeyConstraintModel } from './models/foreignKeyConstraint';
|
|
22
21
|
import { FullTextSearchModel } from './models/fullTextSearch';
|
|
23
22
|
import { IndexModel } from './models/index';
|
|
@@ -49,6 +48,7 @@ import { SiteThemeModel } from './models/siteTheme';
|
|
|
49
48
|
import { CorsSettingModel } from './models/corsSetting';
|
|
50
49
|
import { TriggerFunctionModel } from './models/triggerFunction';
|
|
51
50
|
import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
51
|
+
import { PartitionModel } from './models/partition';
|
|
52
52
|
import { ApiModel } from './models/api';
|
|
53
53
|
import { SiteModel } from './models/site';
|
|
54
54
|
import { AppModel } from './models/app';
|
|
@@ -200,7 +200,6 @@ export function createClient(config) {
|
|
|
200
200
|
checkConstraint: new CheckConstraintModel(client),
|
|
201
201
|
field: new FieldModel(client),
|
|
202
202
|
spatialRelation: new SpatialRelationModel(client),
|
|
203
|
-
partition: new PartitionModel(client),
|
|
204
203
|
foreignKeyConstraint: new ForeignKeyConstraintModel(client),
|
|
205
204
|
fullTextSearch: new FullTextSearchModel(client),
|
|
206
205
|
index: new IndexModel(client),
|
|
@@ -232,6 +231,7 @@ export function createClient(config) {
|
|
|
232
231
|
corsSetting: new CorsSettingModel(client),
|
|
233
232
|
triggerFunction: new TriggerFunctionModel(client),
|
|
234
233
|
databaseTransfer: new DatabaseTransferModel(client),
|
|
234
|
+
partition: new PartitionModel(client),
|
|
235
235
|
api: new ApiModel(client),
|
|
236
236
|
site: new SiteModel(client),
|
|
237
237
|
app: new AppModel(client),
|