@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
|
@@ -16,7 +16,6 @@ export { TableModel } from './table';
|
|
|
16
16
|
export { CheckConstraintModel } from './checkConstraint';
|
|
17
17
|
export { FieldModel } from './field';
|
|
18
18
|
export { SpatialRelationModel } from './spatialRelation';
|
|
19
|
-
export { PartitionModel } from './partition';
|
|
20
19
|
export { ForeignKeyConstraintModel } from './foreignKeyConstraint';
|
|
21
20
|
export { FullTextSearchModel } from './fullTextSearch';
|
|
22
21
|
export { IndexModel } from './indexModel';
|
|
@@ -48,6 +47,7 @@ export { SiteThemeModel } from './siteTheme';
|
|
|
48
47
|
export { CorsSettingModel } from './corsSetting';
|
|
49
48
|
export { TriggerFunctionModel } from './triggerFunction';
|
|
50
49
|
export { DatabaseTransferModel } from './databaseTransfer';
|
|
50
|
+
export { PartitionModel } from './partition';
|
|
51
51
|
export { ApiModel } from './api';
|
|
52
52
|
export { SiteModel } from './site';
|
|
53
53
|
export { AppModel } from './app';
|
|
@@ -16,7 +16,6 @@ export { TableModel } from './table';
|
|
|
16
16
|
export { CheckConstraintModel } from './checkConstraint';
|
|
17
17
|
export { FieldModel } from './field';
|
|
18
18
|
export { SpatialRelationModel } from './spatialRelation';
|
|
19
|
-
export { PartitionModel } from './partition';
|
|
20
19
|
export { ForeignKeyConstraintModel } from './foreignKeyConstraint';
|
|
21
20
|
export { FullTextSearchModel } from './fullTextSearch';
|
|
22
21
|
export { IndexModel } from './indexModel';
|
|
@@ -48,6 +47,7 @@ export { SiteThemeModel } from './siteTheme';
|
|
|
48
47
|
export { CorsSettingModel } from './corsSetting';
|
|
49
48
|
export { TriggerFunctionModel } from './triggerFunction';
|
|
50
49
|
export { DatabaseTransferModel } from './databaseTransfer';
|
|
50
|
+
export { PartitionModel } from './partition';
|
|
51
51
|
export { ApiModel } from './api';
|
|
52
52
|
export { SiteModel } from './site';
|
|
53
53
|
export { AppModel } from './app';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructive-io/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Constructive SDK - Auto-generated GraphQL types and ORM client",
|
|
6
6
|
"main": "index.js",
|
|
@@ -42,17 +42,17 @@
|
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@0no-co/graphql.web": "^1.1.2",
|
|
45
|
-
"@constructive-io/graphql-query": "^3.
|
|
46
|
-
"@constructive-io/graphql-types": "^3.
|
|
47
|
-
"gql-ast": "^3.
|
|
45
|
+
"@constructive-io/graphql-query": "^3.25.1",
|
|
46
|
+
"@constructive-io/graphql-types": "^3.10.0",
|
|
47
|
+
"gql-ast": "^3.10.0",
|
|
48
48
|
"graphql": "16.13.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@constructive-io/graphql-codegen": "^4.
|
|
51
|
+
"@constructive-io/graphql-codegen": "^4.42.1",
|
|
52
52
|
"@types/node": "^22.19.11",
|
|
53
53
|
"makage": "^0.3.0",
|
|
54
54
|
"tsx": "^4.19.0",
|
|
55
55
|
"typescript": "^5.9.3"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "f368992ff2e66fb639e4a5efee163e311f838ce1"
|
|
58
58
|
}
|
package/public/orm/index.d.ts
CHANGED
|
@@ -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/public/orm/index.js
CHANGED
|
@@ -35,7 +35,6 @@ const table_1 = require("./models/table");
|
|
|
35
35
|
const checkConstraint_1 = require("./models/checkConstraint");
|
|
36
36
|
const field_1 = require("./models/field");
|
|
37
37
|
const spatialRelation_1 = require("./models/spatialRelation");
|
|
38
|
-
const partition_1 = require("./models/partition");
|
|
39
38
|
const foreignKeyConstraint_1 = require("./models/foreignKeyConstraint");
|
|
40
39
|
const fullTextSearch_1 = require("./models/fullTextSearch");
|
|
41
40
|
const index_1 = require("./models/index");
|
|
@@ -67,6 +66,7 @@ const siteTheme_1 = require("./models/siteTheme");
|
|
|
67
66
|
const corsSetting_1 = require("./models/corsSetting");
|
|
68
67
|
const triggerFunction_1 = require("./models/triggerFunction");
|
|
69
68
|
const databaseTransfer_1 = require("./models/databaseTransfer");
|
|
69
|
+
const partition_1 = require("./models/partition");
|
|
70
70
|
const api_1 = require("./models/api");
|
|
71
71
|
const site_1 = require("./models/site");
|
|
72
72
|
const app_1 = require("./models/app");
|
|
@@ -222,7 +222,6 @@ function createClient(config) {
|
|
|
222
222
|
checkConstraint: new checkConstraint_1.CheckConstraintModel(client),
|
|
223
223
|
field: new field_1.FieldModel(client),
|
|
224
224
|
spatialRelation: new spatialRelation_1.SpatialRelationModel(client),
|
|
225
|
-
partition: new partition_1.PartitionModel(client),
|
|
226
225
|
foreignKeyConstraint: new foreignKeyConstraint_1.ForeignKeyConstraintModel(client),
|
|
227
226
|
fullTextSearch: new fullTextSearch_1.FullTextSearchModel(client),
|
|
228
227
|
index: new index_1.IndexModel(client),
|
|
@@ -254,6 +253,7 @@ function createClient(config) {
|
|
|
254
253
|
corsSetting: new corsSetting_1.CorsSettingModel(client),
|
|
255
254
|
triggerFunction: new triggerFunction_1.TriggerFunctionModel(client),
|
|
256
255
|
databaseTransfer: new databaseTransfer_1.DatabaseTransferModel(client),
|
|
256
|
+
partition: new partition_1.PartitionModel(client),
|
|
257
257
|
api: new api_1.ApiModel(client),
|
|
258
258
|
site: new site_1.SiteModel(client),
|
|
259
259
|
app: new app_1.AppModel(client),
|