@constructive-io/sdk 1.11.2 → 1.11.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/admin/orm/client.js +11 -1
- package/agent/orm/client.js +11 -1
- package/agent/orm/input-types.d.ts +0 -3
- package/api/orm/client.js +11 -1
- package/api/orm/index.d.ts +66 -4
- package/api/orm/index.js +36 -4
- package/api/orm/input-types.d.ts +4946 -630
- package/api/orm/input-types.js +34 -6
- package/api/orm/models/apis.d.ts +54 -0
- package/api/orm/models/{api.js → apis.js} +27 -27
- package/api/orm/models/derive.d.ts +54 -0
- package/api/orm/models/derive.js +104 -0
- package/api/orm/models/fieldBehavior.d.ts +54 -0
- package/api/orm/models/fieldBehavior.js +104 -0
- package/api/orm/models/foreignKeyConstraintBehavior.d.ts +54 -0
- package/api/orm/models/foreignKeyConstraintBehavior.js +104 -0
- package/api/orm/models/index.d.ts +18 -2
- package/api/orm/models/index.js +38 -6
- package/api/orm/models/page.d.ts +54 -0
- package/api/orm/models/page.js +104 -0
- package/api/orm/models/platformApis.d.ts +54 -0
- package/api/orm/models/platformApis.js +104 -0
- package/api/orm/models/platformPage.d.ts +54 -0
- package/api/orm/models/platformPage.js +104 -0
- package/api/orm/models/platformSiteAppLink.d.ts +54 -0
- package/api/orm/models/platformSiteAppLink.js +104 -0
- package/api/orm/models/platformSiteDeepLink.d.ts +54 -0
- package/api/orm/models/platformSiteDeepLink.js +104 -0
- package/api/orm/models/platformSiteErrorPage.d.ts +54 -0
- package/api/orm/models/platformSiteErrorPage.js +104 -0
- package/api/orm/models/platformSiteWebConfig.d.ts +54 -0
- package/api/orm/models/platformSiteWebConfig.js +104 -0
- package/api/orm/models/siteAppLink.d.ts +54 -0
- package/api/orm/models/{platformApi.js → siteAppLink.js} +27 -27
- package/api/orm/models/siteDeepLink.d.ts +54 -0
- package/api/orm/models/siteDeepLink.js +104 -0
- package/api/orm/models/siteErrorPage.d.ts +54 -0
- package/api/orm/models/siteErrorPage.js +104 -0
- package/api/orm/models/siteWebConfig.d.ts +54 -0
- package/api/orm/models/siteWebConfig.js +104 -0
- package/api/orm/models/tableBehavior.d.ts +54 -0
- package/api/orm/models/tableBehavior.js +104 -0
- package/api/orm/models/uniqueConstraintBehavior.d.ts +54 -0
- package/api/orm/models/uniqueConstraintBehavior.js +104 -0
- package/api/orm/models/viewBehavior.d.ts +54 -0
- package/api/orm/models/viewBehavior.js +104 -0
- package/api/orm/mutation/index.d.ts +33 -1
- package/api/orm/mutation/index.js +48 -0
- package/api/orm/query/index.d.ts +17 -0
- package/api/orm/query/index.js +28 -0
- package/auth/orm/client.js +11 -1
- package/auth/orm/input-types.d.ts +166 -220
- package/auth/orm/input-types.js +6 -11
- package/compute/orm/client.js +11 -1
- package/compute/orm/index.d.ts +4 -0
- package/compute/orm/index.js +4 -0
- package/compute/orm/input-types.d.ts +539 -8
- package/compute/orm/input-types.js +2 -0
- package/compute/orm/models/functionCapabilityBinding.d.ts +54 -0
- package/compute/orm/models/functionCapabilityBinding.js +104 -0
- package/compute/orm/models/index.d.ts +2 -0
- package/compute/orm/models/index.js +6 -2
- package/compute/orm/models/platformFunctionCapabilityBinding.d.ts +54 -0
- package/compute/orm/models/platformFunctionCapabilityBinding.js +104 -0
- package/config/orm/client.js +11 -1
- package/config/orm/input-types.d.ts +53 -5
- package/esm/admin/orm/client.js +11 -1
- package/esm/agent/orm/client.js +11 -1
- package/esm/agent/orm/input-types.d.ts +0 -3
- package/esm/api/orm/client.js +11 -1
- package/esm/api/orm/index.d.ts +66 -4
- package/esm/api/orm/index.js +36 -4
- package/esm/api/orm/input-types.d.ts +4946 -630
- package/esm/api/orm/input-types.js +34 -6
- package/esm/api/orm/models/apis.d.ts +54 -0
- package/esm/api/orm/models/{api.js → apis.js} +25 -25
- package/esm/api/orm/models/derive.d.ts +54 -0
- package/esm/api/orm/models/derive.js +100 -0
- package/esm/api/orm/models/fieldBehavior.d.ts +54 -0
- package/esm/api/orm/models/fieldBehavior.js +100 -0
- package/esm/api/orm/models/foreignKeyConstraintBehavior.d.ts +54 -0
- package/esm/api/orm/models/foreignKeyConstraintBehavior.js +100 -0
- package/esm/api/orm/models/index.d.ts +18 -2
- package/esm/api/orm/models/index.js +18 -2
- package/esm/api/orm/models/page.d.ts +54 -0
- package/esm/api/orm/models/page.js +100 -0
- package/esm/api/orm/models/platformApis.d.ts +54 -0
- package/esm/api/orm/models/{platformApi.js → platformApis.js} +25 -25
- package/esm/api/orm/models/platformPage.d.ts +54 -0
- package/esm/api/orm/models/platformPage.js +100 -0
- package/esm/api/orm/models/platformSiteAppLink.d.ts +54 -0
- package/esm/api/orm/models/platformSiteAppLink.js +100 -0
- package/esm/api/orm/models/platformSiteDeepLink.d.ts +54 -0
- package/esm/api/orm/models/platformSiteDeepLink.js +100 -0
- package/esm/api/orm/models/platformSiteErrorPage.d.ts +54 -0
- package/esm/api/orm/models/platformSiteErrorPage.js +100 -0
- package/esm/api/orm/models/platformSiteWebConfig.d.ts +54 -0
- package/esm/api/orm/models/platformSiteWebConfig.js +100 -0
- package/esm/api/orm/models/siteAppLink.d.ts +54 -0
- package/esm/api/orm/models/siteAppLink.js +100 -0
- package/esm/api/orm/models/siteDeepLink.d.ts +54 -0
- package/esm/api/orm/models/siteDeepLink.js +100 -0
- package/esm/api/orm/models/siteErrorPage.d.ts +54 -0
- package/esm/api/orm/models/siteErrorPage.js +100 -0
- package/esm/api/orm/models/siteWebConfig.d.ts +54 -0
- package/esm/api/orm/models/siteWebConfig.js +100 -0
- package/esm/api/orm/models/tableBehavior.d.ts +54 -0
- package/esm/api/orm/models/tableBehavior.js +100 -0
- package/esm/api/orm/models/uniqueConstraintBehavior.d.ts +54 -0
- package/esm/api/orm/models/uniqueConstraintBehavior.js +100 -0
- package/esm/api/orm/models/viewBehavior.d.ts +54 -0
- package/esm/api/orm/models/viewBehavior.js +100 -0
- package/esm/api/orm/mutation/index.d.ts +33 -1
- package/esm/api/orm/mutation/index.js +48 -0
- package/esm/api/orm/query/index.d.ts +17 -0
- package/esm/api/orm/query/index.js +28 -0
- package/esm/auth/orm/client.js +11 -1
- package/esm/auth/orm/input-types.d.ts +166 -220
- package/esm/auth/orm/input-types.js +6 -11
- package/esm/compute/orm/client.js +11 -1
- package/esm/compute/orm/index.d.ts +4 -0
- package/esm/compute/orm/index.js +4 -0
- package/esm/compute/orm/input-types.d.ts +539 -8
- package/esm/compute/orm/input-types.js +2 -0
- package/esm/compute/orm/models/functionCapabilityBinding.d.ts +54 -0
- package/esm/compute/orm/models/functionCapabilityBinding.js +100 -0
- package/esm/compute/orm/models/index.d.ts +2 -0
- package/esm/compute/orm/models/index.js +2 -0
- package/esm/compute/orm/models/platformFunctionCapabilityBinding.d.ts +54 -0
- package/esm/compute/orm/models/platformFunctionCapabilityBinding.js +100 -0
- package/esm/config/orm/client.js +11 -1
- package/esm/config/orm/input-types.d.ts +53 -5
- package/esm/infra/orm/client.js +11 -1
- package/esm/modules/orm/client.js +11 -1
- package/esm/modules/orm/index.d.ts +2 -0
- package/esm/modules/orm/index.js +2 -0
- package/esm/modules/orm/input-types.d.ts +2116 -122
- package/esm/modules/orm/input-types.js +40 -0
- package/esm/modules/orm/models/index.d.ts +1 -0
- package/esm/modules/orm/models/index.js +1 -0
- package/esm/modules/orm/models/pagesModule.d.ts +54 -0
- package/esm/modules/orm/models/pagesModule.js +100 -0
- package/esm/objects/orm/client.js +11 -1
- package/esm/usage/orm/client.js +11 -1
- package/infra/orm/client.js +11 -1
- package/modules/orm/client.js +11 -1
- package/modules/orm/index.d.ts +2 -0
- package/modules/orm/index.js +2 -0
- package/modules/orm/input-types.d.ts +2116 -122
- package/modules/orm/input-types.js +40 -0
- package/modules/orm/models/index.d.ts +1 -0
- package/modules/orm/models/index.js +4 -2
- package/modules/orm/models/pagesModule.d.ts +54 -0
- package/modules/orm/models/pagesModule.js +104 -0
- package/objects/orm/client.js +11 -1
- package/package.json +5 -5
- package/usage/orm/client.js +11 -1
- package/api/orm/models/api.d.ts +0 -54
- package/api/orm/models/platformApi.d.ts +0 -54
- package/esm/api/orm/models/api.d.ts +0 -54
- package/esm/api/orm/models/platformApi.d.ts +0 -54
package/esm/api/orm/index.js
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
import { OrmClient } from './client';
|
|
7
|
-
import { ApiModel } from './models/api';
|
|
8
7
|
import { ApiSchemaModel } from './models/apiSchema';
|
|
9
8
|
import { ApiSettingModel } from './models/apiSetting';
|
|
9
|
+
import { ApisModel } from './models/apis';
|
|
10
10
|
import { AstMigrationModel } from './models/astMigration';
|
|
11
11
|
import { CheckConstraintModel } from './models/checkConstraint';
|
|
12
12
|
import { CompositeTypeModel } from './models/compositeType';
|
|
@@ -15,6 +15,7 @@ import { DatabaseModel } from './models/database';
|
|
|
15
15
|
import { DatabaseSettingModel } from './models/databaseSetting';
|
|
16
16
|
import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
17
17
|
import { DefaultPrivilegeModel } from './models/defaultPrivilege';
|
|
18
|
+
import { DeriveModel } from './models/derive';
|
|
18
19
|
import { DomainModel } from './models/domain';
|
|
19
20
|
import { DomainEventModel } from './models/domainEvent';
|
|
20
21
|
import { DomainTypeModel } from './models/domainType';
|
|
@@ -22,7 +23,9 @@ import { DomainVerificationModel } from './models/domainVerification';
|
|
|
22
23
|
import { EmbeddingChunkModel } from './models/embeddingChunk';
|
|
23
24
|
import { EnumModel } from './models/enum';
|
|
24
25
|
import { ExclusionConstraintModel } from './models/exclusionConstraint';
|
|
26
|
+
import { FieldBehaviorModel } from './models/fieldBehavior';
|
|
25
27
|
import { FieldModel } from './models/field';
|
|
28
|
+
import { ForeignKeyConstraintBehaviorModel } from './models/foreignKeyConstraintBehavior';
|
|
26
29
|
import { ForeignKeyConstraintModel } from './models/foreignKeyConstraint';
|
|
27
30
|
import { FullTextSearchModel } from './models/fullTextSearch';
|
|
28
31
|
import { FunctionModel } from './models/function';
|
|
@@ -31,19 +34,25 @@ import { HttpRouteModel } from './models/httpRoute';
|
|
|
31
34
|
import { IndexModel } from './models/index';
|
|
32
35
|
import { ManagedDomainModel } from './models/managedDomain';
|
|
33
36
|
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
37
|
+
import { PageModel } from './models/page';
|
|
34
38
|
import { PartitionModel } from './models/partition';
|
|
35
|
-
import { PlatformApiModel } from './models/platformApi';
|
|
36
39
|
import { PlatformApiSchemaModel } from './models/platformApiSchema';
|
|
37
40
|
import { PlatformApiSettingModel } from './models/platformApiSetting';
|
|
41
|
+
import { PlatformApisModel } from './models/platformApis';
|
|
38
42
|
import { PlatformCorsSettingModel } from './models/platformCorsSetting';
|
|
39
43
|
import { PlatformDomainModel } from './models/platformDomain';
|
|
40
44
|
import { PlatformDomainEventModel } from './models/platformDomainEvent';
|
|
41
45
|
import { PlatformDomainVerificationModel } from './models/platformDomainVerification';
|
|
42
46
|
import { PlatformManagedDomainModel } from './models/platformManagedDomain';
|
|
47
|
+
import { PlatformPageModel } from './models/platformPage';
|
|
48
|
+
import { PlatformSiteAppLinkModel } from './models/platformSiteAppLink';
|
|
43
49
|
import { PlatformSiteModel } from './models/platformSite';
|
|
50
|
+
import { PlatformSiteDeepLinkModel } from './models/platformSiteDeepLink';
|
|
51
|
+
import { PlatformSiteErrorPageModel } from './models/platformSiteErrorPage';
|
|
44
52
|
import { PlatformSiteMetadatumModel } from './models/platformSiteMetadatum';
|
|
45
53
|
import { PlatformSiteModuleModel } from './models/platformSiteModule';
|
|
46
54
|
import { PlatformSiteThemeModel } from './models/platformSiteTheme';
|
|
55
|
+
import { PlatformSiteWebConfigModel } from './models/platformSiteWebConfig';
|
|
47
56
|
import { PolicyModel } from './models/policy';
|
|
48
57
|
import { PrimaryKeyConstraintModel } from './models/primaryKeyConstraint';
|
|
49
58
|
import { PubkeySettingModel } from './models/pubkeySetting';
|
|
@@ -52,17 +61,24 @@ import { RouteBindingModel } from './models/routeBinding';
|
|
|
52
61
|
import { RouteModel } from './models/route';
|
|
53
62
|
import { SchemaModel } from './models/schema';
|
|
54
63
|
import { SchemaGrantModel } from './models/schemaGrant';
|
|
64
|
+
import { SiteAppLinkModel } from './models/siteAppLink';
|
|
55
65
|
import { SiteModel } from './models/site';
|
|
66
|
+
import { SiteDeepLinkModel } from './models/siteDeepLink';
|
|
67
|
+
import { SiteErrorPageModel } from './models/siteErrorPage';
|
|
56
68
|
import { SiteMetadatumModel } from './models/siteMetadatum';
|
|
57
69
|
import { SiteModuleModel } from './models/siteModule';
|
|
58
70
|
import { SiteThemeModel } from './models/siteTheme';
|
|
71
|
+
import { SiteWebConfigModel } from './models/siteWebConfig';
|
|
59
72
|
import { SpatialRelationModel } from './models/spatialRelation';
|
|
60
73
|
import { SqlActionModel } from './models/sqlAction';
|
|
74
|
+
import { TableBehaviorModel } from './models/tableBehavior';
|
|
61
75
|
import { TableModel } from './models/table';
|
|
62
76
|
import { TableGrantModel } from './models/tableGrant';
|
|
63
77
|
import { TriggerModel } from './models/trigger';
|
|
64
78
|
import { TriggerFunctionModel } from './models/triggerFunction';
|
|
79
|
+
import { UniqueConstraintBehaviorModel } from './models/uniqueConstraintBehavior';
|
|
65
80
|
import { UniqueConstraintModel } from './models/uniqueConstraint';
|
|
81
|
+
import { ViewBehaviorModel } from './models/viewBehavior';
|
|
66
82
|
import { ViewModel } from './models/view';
|
|
67
83
|
import { ViewGrantModel } from './models/viewGrant';
|
|
68
84
|
import { ViewRuleModel } from './models/viewRule';
|
|
@@ -102,9 +118,9 @@ export { createMutationOperations } from './mutation';
|
|
|
102
118
|
export function createClient(config) {
|
|
103
119
|
const client = new OrmClient(config);
|
|
104
120
|
return {
|
|
105
|
-
api: new ApiModel(client),
|
|
106
121
|
apiSchema: new ApiSchemaModel(client),
|
|
107
122
|
apiSetting: new ApiSettingModel(client),
|
|
123
|
+
apis: new ApisModel(client),
|
|
108
124
|
astMigration: new AstMigrationModel(client),
|
|
109
125
|
checkConstraint: new CheckConstraintModel(client),
|
|
110
126
|
compositeType: new CompositeTypeModel(client),
|
|
@@ -113,6 +129,7 @@ export function createClient(config) {
|
|
|
113
129
|
databaseSetting: new DatabaseSettingModel(client),
|
|
114
130
|
databaseTransfer: new DatabaseTransferModel(client),
|
|
115
131
|
defaultPrivilege: new DefaultPrivilegeModel(client),
|
|
132
|
+
derive: new DeriveModel(client),
|
|
116
133
|
domain: new DomainModel(client),
|
|
117
134
|
domainEvent: new DomainEventModel(client),
|
|
118
135
|
domainType: new DomainTypeModel(client),
|
|
@@ -120,7 +137,9 @@ export function createClient(config) {
|
|
|
120
137
|
embeddingChunk: new EmbeddingChunkModel(client),
|
|
121
138
|
enum: new EnumModel(client),
|
|
122
139
|
exclusionConstraint: new ExclusionConstraintModel(client),
|
|
140
|
+
fieldBehavior: new FieldBehaviorModel(client),
|
|
123
141
|
field: new FieldModel(client),
|
|
142
|
+
foreignKeyConstraintBehavior: new ForeignKeyConstraintBehaviorModel(client),
|
|
124
143
|
foreignKeyConstraint: new ForeignKeyConstraintModel(client),
|
|
125
144
|
fullTextSearch: new FullTextSearchModel(client),
|
|
126
145
|
function: new FunctionModel(client),
|
|
@@ -129,19 +148,25 @@ export function createClient(config) {
|
|
|
129
148
|
index: new IndexModel(client),
|
|
130
149
|
managedDomain: new ManagedDomainModel(client),
|
|
131
150
|
nodeTypeRegistry: new NodeTypeRegistryModel(client),
|
|
151
|
+
page: new PageModel(client),
|
|
132
152
|
partition: new PartitionModel(client),
|
|
133
|
-
platformApi: new PlatformApiModel(client),
|
|
134
153
|
platformApiSchema: new PlatformApiSchemaModel(client),
|
|
135
154
|
platformApiSetting: new PlatformApiSettingModel(client),
|
|
155
|
+
platformApis: new PlatformApisModel(client),
|
|
136
156
|
platformCorsSetting: new PlatformCorsSettingModel(client),
|
|
137
157
|
platformDomain: new PlatformDomainModel(client),
|
|
138
158
|
platformDomainEvent: new PlatformDomainEventModel(client),
|
|
139
159
|
platformDomainVerification: new PlatformDomainVerificationModel(client),
|
|
140
160
|
platformManagedDomain: new PlatformManagedDomainModel(client),
|
|
161
|
+
platformPage: new PlatformPageModel(client),
|
|
162
|
+
platformSiteAppLink: new PlatformSiteAppLinkModel(client),
|
|
141
163
|
platformSite: new PlatformSiteModel(client),
|
|
164
|
+
platformSiteDeepLink: new PlatformSiteDeepLinkModel(client),
|
|
165
|
+
platformSiteErrorPage: new PlatformSiteErrorPageModel(client),
|
|
142
166
|
platformSiteMetadatum: new PlatformSiteMetadatumModel(client),
|
|
143
167
|
platformSiteModule: new PlatformSiteModuleModel(client),
|
|
144
168
|
platformSiteTheme: new PlatformSiteThemeModel(client),
|
|
169
|
+
platformSiteWebConfig: new PlatformSiteWebConfigModel(client),
|
|
145
170
|
policy: new PolicyModel(client),
|
|
146
171
|
primaryKeyConstraint: new PrimaryKeyConstraintModel(client),
|
|
147
172
|
pubkeySetting: new PubkeySettingModel(client),
|
|
@@ -150,17 +175,24 @@ export function createClient(config) {
|
|
|
150
175
|
route: new RouteModel(client),
|
|
151
176
|
schema: new SchemaModel(client),
|
|
152
177
|
schemaGrant: new SchemaGrantModel(client),
|
|
178
|
+
siteAppLink: new SiteAppLinkModel(client),
|
|
153
179
|
site: new SiteModel(client),
|
|
180
|
+
siteDeepLink: new SiteDeepLinkModel(client),
|
|
181
|
+
siteErrorPage: new SiteErrorPageModel(client),
|
|
154
182
|
siteMetadatum: new SiteMetadatumModel(client),
|
|
155
183
|
siteModule: new SiteModuleModel(client),
|
|
156
184
|
siteTheme: new SiteThemeModel(client),
|
|
185
|
+
siteWebConfig: new SiteWebConfigModel(client),
|
|
157
186
|
spatialRelation: new SpatialRelationModel(client),
|
|
158
187
|
sqlAction: new SqlActionModel(client),
|
|
188
|
+
tableBehavior: new TableBehaviorModel(client),
|
|
159
189
|
table: new TableModel(client),
|
|
160
190
|
tableGrant: new TableGrantModel(client),
|
|
161
191
|
trigger: new TriggerModel(client),
|
|
162
192
|
triggerFunction: new TriggerFunctionModel(client),
|
|
193
|
+
uniqueConstraintBehavior: new UniqueConstraintBehaviorModel(client),
|
|
163
194
|
uniqueConstraint: new UniqueConstraintModel(client),
|
|
195
|
+
viewBehavior: new ViewBehaviorModel(client),
|
|
164
196
|
view: new ViewModel(client),
|
|
165
197
|
viewGrant: new ViewGrantModel(client),
|
|
166
198
|
viewRule: new ViewRuleModel(client),
|