@constructive-sdk/cli 0.20.4 → 0.20.5
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/cli/commands/{request-upload-url.d.ts → app-limit-cap.d.ts} +1 -1
- package/admin/cli/commands/app-limit-cap.js +272 -0
- package/{esm/admin/cli/commands/request-upload-url.d.ts → admin/cli/commands/app-limit-caps-default.d.ts} +1 -1
- package/admin/cli/commands/app-limit-caps-default.js +252 -0
- package/{auth/cli/commands/request-upload-url.d.ts → admin/cli/commands/app-limit-credit-code-item.d.ts} +1 -1
- package/admin/cli/commands/app-limit-credit-code-item.js +292 -0
- package/{esm/auth/cli/commands/request-upload-url.d.ts → admin/cli/commands/app-limit-credit-code.d.ts} +1 -1
- package/admin/cli/commands/app-limit-credit-code.js +296 -0
- package/admin/cli/commands/app-limit-credit-redemption.d.ts +8 -0
- package/admin/cli/commands/app-limit-credit-redemption.js +250 -0
- package/admin/cli/commands/app-limit-credit.d.ts +8 -0
- package/admin/cli/commands/app-limit-credit.js +316 -0
- package/admin/cli/commands/app-limit.js +66 -0
- package/admin/cli/commands/org-limit-aggregate.js +88 -0
- package/admin/cli/commands/org-limit-cap.d.ts +8 -0
- package/admin/cli/commands/org-limit-cap.js +272 -0
- package/admin/cli/commands/org-limit-caps-default.d.ts +8 -0
- package/admin/cli/commands/org-limit-caps-default.js +252 -0
- package/admin/cli/commands/org-limit-credit.d.ts +8 -0
- package/admin/cli/commands/org-limit-credit.js +338 -0
- package/admin/cli/commands/org-limit.js +66 -0
- package/admin/cli/commands.js +25 -9
- package/admin/cli/executor.d.ts +12 -8
- package/admin/orm/index.d.ts +24 -11
- package/admin/orm/index.js +24 -6
- package/admin/orm/input-types.d.ts +2108 -545
- package/admin/orm/input-types.js +13 -1
- package/admin/orm/models/appLimitCap.d.ts +56 -0
- package/admin/orm/models/appLimitCap.js +100 -0
- package/admin/orm/models/appLimitCapsDefault.d.ts +56 -0
- package/admin/orm/models/appLimitCapsDefault.js +100 -0
- package/admin/orm/models/appLimitCredit.d.ts +56 -0
- package/admin/orm/models/appLimitCredit.js +100 -0
- package/admin/orm/models/appLimitCreditCode.d.ts +56 -0
- package/admin/orm/models/appLimitCreditCode.js +100 -0
- package/admin/orm/models/appLimitCreditCodeItem.d.ts +56 -0
- package/admin/orm/models/appLimitCreditCodeItem.js +100 -0
- package/admin/orm/models/appLimitCreditRedemption.d.ts +56 -0
- package/admin/orm/models/appLimitCreditRedemption.js +100 -0
- package/admin/orm/models/index.d.ts +12 -3
- package/admin/orm/models/index.js +25 -7
- package/admin/orm/models/orgLimitCap.d.ts +56 -0
- package/admin/orm/models/orgLimitCap.js +100 -0
- package/admin/orm/models/orgLimitCapsDefault.d.ts +56 -0
- package/admin/orm/models/orgLimitCapsDefault.js +100 -0
- package/admin/orm/models/orgLimitCredit.d.ts +56 -0
- package/admin/orm/models/orgLimitCredit.js +100 -0
- package/admin/orm/mutation/index.d.ts +1 -16
- package/admin/orm/mutation/index.js +0 -12
- package/admin/orm/query-builder.js +24 -0
- package/auth/cli/commands.js +1 -3
- package/auth/cli/executor.d.ts +0 -5
- package/auth/orm/index.d.ts +0 -5
- package/auth/orm/input-types.d.ts +0 -38
- package/auth/orm/mutation/index.d.ts +1 -16
- package/auth/orm/mutation/index.js +0 -12
- package/auth/orm/query-builder.js +24 -0
- package/esm/admin/cli/commands/app-limit-cap.d.ts +8 -0
- package/esm/admin/cli/commands/app-limit-cap.js +270 -0
- package/esm/admin/cli/commands/app-limit-caps-default.d.ts +8 -0
- package/esm/admin/cli/commands/app-limit-caps-default.js +250 -0
- package/esm/admin/cli/commands/app-limit-credit-code-item.d.ts +8 -0
- package/esm/admin/cli/commands/app-limit-credit-code-item.js +290 -0
- package/esm/admin/cli/commands/app-limit-credit-code.d.ts +8 -0
- package/esm/admin/cli/commands/app-limit-credit-code.js +294 -0
- package/esm/admin/cli/commands/app-limit-credit-redemption.d.ts +8 -0
- package/esm/admin/cli/commands/app-limit-credit-redemption.js +248 -0
- package/esm/admin/cli/commands/app-limit-credit.d.ts +8 -0
- package/esm/admin/cli/commands/app-limit-credit.js +314 -0
- package/esm/admin/cli/commands/app-limit.js +66 -0
- package/esm/admin/cli/commands/org-limit-aggregate.js +88 -0
- package/esm/admin/cli/commands/org-limit-cap.d.ts +8 -0
- package/esm/admin/cli/commands/org-limit-cap.js +270 -0
- package/esm/admin/cli/commands/org-limit-caps-default.d.ts +8 -0
- package/esm/admin/cli/commands/org-limit-caps-default.js +250 -0
- package/esm/admin/cli/commands/org-limit-credit.d.ts +8 -0
- package/esm/admin/cli/commands/org-limit-credit.js +336 -0
- package/esm/admin/cli/commands/org-limit.js +66 -0
- package/esm/admin/cli/commands.js +25 -9
- package/esm/admin/cli/executor.d.ts +12 -8
- package/esm/admin/orm/index.d.ts +24 -11
- package/esm/admin/orm/index.js +24 -6
- package/esm/admin/orm/input-types.d.ts +2108 -545
- package/esm/admin/orm/input-types.js +13 -1
- package/esm/admin/orm/models/appLimitCap.d.ts +56 -0
- package/esm/admin/orm/models/appLimitCap.js +96 -0
- package/esm/admin/orm/models/appLimitCapsDefault.d.ts +56 -0
- package/esm/admin/orm/models/appLimitCapsDefault.js +96 -0
- package/esm/admin/orm/models/appLimitCredit.d.ts +56 -0
- package/esm/admin/orm/models/appLimitCredit.js +96 -0
- package/esm/admin/orm/models/appLimitCreditCode.d.ts +56 -0
- package/esm/admin/orm/models/appLimitCreditCode.js +96 -0
- package/esm/admin/orm/models/appLimitCreditCodeItem.d.ts +56 -0
- package/esm/admin/orm/models/appLimitCreditCodeItem.js +96 -0
- package/esm/admin/orm/models/appLimitCreditRedemption.d.ts +56 -0
- package/esm/admin/orm/models/appLimitCreditRedemption.js +96 -0
- package/esm/admin/orm/models/index.d.ts +12 -3
- package/esm/admin/orm/models/index.js +12 -3
- package/esm/admin/orm/models/orgLimitCap.d.ts +56 -0
- package/esm/admin/orm/models/orgLimitCap.js +96 -0
- package/esm/admin/orm/models/orgLimitCapsDefault.d.ts +56 -0
- package/esm/admin/orm/models/orgLimitCapsDefault.js +96 -0
- package/esm/admin/orm/models/orgLimitCredit.d.ts +56 -0
- package/esm/admin/orm/models/orgLimitCredit.js +96 -0
- package/esm/admin/orm/mutation/index.d.ts +1 -16
- package/esm/admin/orm/mutation/index.js +0 -12
- package/esm/admin/orm/query-builder.js +24 -0
- package/esm/auth/cli/commands.js +1 -3
- package/esm/auth/cli/executor.d.ts +0 -5
- package/esm/auth/orm/index.d.ts +0 -5
- package/esm/auth/orm/input-types.d.ts +0 -38
- package/esm/auth/orm/mutation/index.d.ts +1 -16
- package/esm/auth/orm/mutation/index.js +0 -12
- package/esm/auth/orm/query-builder.js +24 -0
- package/esm/objects/cli/commands.js +1 -3
- package/esm/objects/cli/executor.d.ts +0 -5
- package/esm/objects/orm/index.d.ts +0 -5
- package/esm/objects/orm/input-types.d.ts +0 -38
- package/esm/objects/orm/mutation/index.d.ts +1 -16
- package/esm/objects/orm/mutation/index.js +0 -12
- package/esm/objects/orm/query-builder.js +24 -0
- package/esm/public/cli/commands/api-setting.d.ts +8 -0
- package/esm/public/cli/commands/api-setting.js +468 -0
- package/esm/public/cli/commands/app-limit-cap.d.ts +8 -0
- package/esm/public/cli/commands/app-limit-cap.js +270 -0
- package/esm/public/cli/commands/app-limit-caps-default.d.ts +8 -0
- package/esm/public/cli/commands/app-limit-caps-default.js +250 -0
- package/esm/public/cli/commands/app-limit-credit-code-item.d.ts +8 -0
- package/esm/public/cli/commands/app-limit-credit-code-item.js +290 -0
- package/esm/public/cli/commands/app-limit-credit-code.d.ts +8 -0
- package/esm/public/cli/commands/app-limit-credit-code.js +294 -0
- package/esm/public/cli/commands/app-limit-credit-redemption.d.ts +8 -0
- package/esm/public/cli/commands/app-limit-credit-redemption.js +248 -0
- package/esm/public/cli/commands/app-limit-credit.d.ts +8 -0
- package/esm/public/cli/commands/app-limit-credit.js +314 -0
- package/esm/public/cli/commands/app-limit.js +66 -0
- package/esm/public/cli/commands/append-smart-tags.d.ts +8 -0
- package/esm/{admin/cli/commands/request-upload-url.js → public/cli/commands/append-smart-tags.js} +3 -3
- package/esm/public/cli/commands/billing-provider-module.d.ts +8 -0
- package/esm/public/cli/commands/billing-provider-module.js +624 -0
- package/esm/public/cli/commands/cors-setting.d.ts +8 -0
- package/esm/public/cli/commands/cors-setting.js +272 -0
- package/esm/public/cli/commands/database-setting.d.ts +8 -0
- package/esm/public/cli/commands/database-setting.js +448 -0
- package/esm/public/cli/commands/entity-type-provision.js +22 -0
- package/esm/public/cli/commands/function.d.ts +8 -0
- package/esm/public/cli/commands/function.js +268 -0
- package/esm/public/cli/commands/limits-module.js +198 -0
- package/esm/public/cli/commands/org-limit-aggregate.js +88 -0
- package/esm/public/cli/commands/org-limit-cap.d.ts +8 -0
- package/esm/public/cli/commands/org-limit-cap.js +270 -0
- package/esm/public/cli/commands/org-limit-caps-default.d.ts +8 -0
- package/esm/public/cli/commands/org-limit-caps-default.js +250 -0
- package/esm/public/cli/commands/org-limit-credit.d.ts +8 -0
- package/esm/public/cli/commands/org-limit-credit.js +336 -0
- package/esm/public/cli/commands/org-limit.js +66 -0
- package/esm/public/cli/commands/partition.d.ts +8 -0
- package/esm/public/cli/commands/partition.js +388 -0
- package/esm/public/cli/commands/plans-module.js +44 -0
- package/esm/public/cli/commands/pubkey-setting.d.ts +8 -0
- package/esm/public/cli/commands/pubkey-setting.js +382 -0
- package/esm/public/cli/commands/rls-setting.d.ts +8 -0
- package/esm/public/cli/commands/rls-setting.js +404 -0
- package/esm/public/cli/commands/storage-module.js +198 -0
- package/esm/public/cli/commands/webauthn-setting.d.ts +8 -0
- package/esm/public/cli/commands/webauthn-setting.js +580 -0
- package/esm/public/cli/commands.js +41 -5
- package/esm/public/cli/executor.d.ts +24 -6
- package/esm/public/orm/index.d.ts +43 -7
- package/esm/public/orm/index.js +38 -2
- package/esm/public/orm/input-types.d.ts +4601 -321
- package/esm/public/orm/input-types.js +21 -0
- package/esm/public/orm/models/apiSetting.d.ts +56 -0
- package/esm/public/orm/models/apiSetting.js +96 -0
- package/esm/public/orm/models/appLimitCap.d.ts +56 -0
- package/esm/public/orm/models/appLimitCap.js +96 -0
- package/esm/public/orm/models/appLimitCapsDefault.d.ts +56 -0
- package/esm/public/orm/models/appLimitCapsDefault.js +96 -0
- package/esm/public/orm/models/appLimitCredit.d.ts +56 -0
- package/esm/public/orm/models/appLimitCredit.js +96 -0
- package/esm/public/orm/models/appLimitCreditCode.d.ts +56 -0
- package/esm/public/orm/models/appLimitCreditCode.js +96 -0
- package/esm/public/orm/models/appLimitCreditCodeItem.d.ts +56 -0
- package/esm/public/orm/models/appLimitCreditCodeItem.js +96 -0
- package/esm/public/orm/models/appLimitCreditRedemption.d.ts +56 -0
- package/esm/public/orm/models/appLimitCreditRedemption.js +96 -0
- package/esm/public/orm/models/billingProviderModule.d.ts +56 -0
- package/esm/public/orm/models/billingProviderModule.js +96 -0
- package/esm/public/orm/models/corsSetting.d.ts +56 -0
- package/esm/public/orm/models/corsSetting.js +96 -0
- package/esm/public/orm/models/databaseSetting.d.ts +56 -0
- package/esm/public/orm/models/databaseSetting.js +96 -0
- package/esm/public/orm/models/function.d.ts +56 -0
- package/esm/public/orm/models/function.js +96 -0
- package/esm/public/orm/models/index.d.ts +19 -1
- package/esm/public/orm/models/index.js +19 -1
- package/esm/public/orm/models/orgLimitCap.d.ts +56 -0
- package/esm/public/orm/models/orgLimitCap.js +96 -0
- package/esm/public/orm/models/orgLimitCapsDefault.d.ts +56 -0
- package/esm/public/orm/models/orgLimitCapsDefault.js +96 -0
- package/esm/public/orm/models/orgLimitCredit.d.ts +56 -0
- package/esm/public/orm/models/orgLimitCredit.js +96 -0
- package/esm/public/orm/models/partition.d.ts +56 -0
- package/esm/public/orm/models/partition.js +96 -0
- package/esm/public/orm/models/pubkeySetting.d.ts +56 -0
- package/esm/public/orm/models/pubkeySetting.js +96 -0
- package/esm/public/orm/models/rlsSetting.d.ts +56 -0
- package/esm/public/orm/models/rlsSetting.js +96 -0
- package/esm/public/orm/models/webauthnSetting.d.ts +56 -0
- package/esm/public/orm/models/webauthnSetting.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +9 -16
- package/esm/public/orm/mutation/index.js +12 -12
- package/esm/public/orm/query-builder.js +24 -0
- package/objects/cli/commands.js +1 -3
- package/objects/cli/executor.d.ts +0 -5
- package/objects/orm/index.d.ts +0 -5
- package/objects/orm/input-types.d.ts +0 -38
- package/objects/orm/mutation/index.d.ts +1 -16
- package/objects/orm/mutation/index.js +0 -12
- package/objects/orm/query-builder.js +24 -0
- package/package.json +4 -4
- package/public/cli/commands/api-setting.d.ts +8 -0
- package/public/cli/commands/api-setting.js +470 -0
- package/public/cli/commands/app-limit-cap.d.ts +8 -0
- package/public/cli/commands/app-limit-cap.js +272 -0
- package/public/cli/commands/app-limit-caps-default.d.ts +8 -0
- package/public/cli/commands/app-limit-caps-default.js +252 -0
- package/public/cli/commands/app-limit-credit-code-item.d.ts +8 -0
- package/public/cli/commands/app-limit-credit-code-item.js +292 -0
- package/public/cli/commands/app-limit-credit-code.d.ts +8 -0
- package/public/cli/commands/app-limit-credit-code.js +296 -0
- package/public/cli/commands/app-limit-credit-redemption.d.ts +8 -0
- package/public/cli/commands/app-limit-credit-redemption.js +250 -0
- package/public/cli/commands/app-limit-credit.d.ts +8 -0
- package/public/cli/commands/app-limit-credit.js +316 -0
- package/public/cli/commands/app-limit.js +66 -0
- package/public/cli/commands/append-smart-tags.d.ts +8 -0
- package/{objects/cli/commands/request-upload-url.js → public/cli/commands/append-smart-tags.js} +3 -3
- package/public/cli/commands/billing-provider-module.d.ts +8 -0
- package/public/cli/commands/billing-provider-module.js +626 -0
- package/public/cli/commands/cors-setting.d.ts +8 -0
- package/public/cli/commands/cors-setting.js +274 -0
- package/public/cli/commands/database-setting.d.ts +8 -0
- package/public/cli/commands/database-setting.js +450 -0
- package/public/cli/commands/entity-type-provision.js +22 -0
- package/public/cli/commands/function.d.ts +8 -0
- package/public/cli/commands/function.js +270 -0
- package/public/cli/commands/limits-module.js +198 -0
- package/public/cli/commands/org-limit-aggregate.js +88 -0
- package/public/cli/commands/org-limit-cap.d.ts +8 -0
- package/public/cli/commands/org-limit-cap.js +272 -0
- package/public/cli/commands/org-limit-caps-default.d.ts +8 -0
- package/public/cli/commands/org-limit-caps-default.js +252 -0
- package/public/cli/commands/org-limit-credit.d.ts +8 -0
- package/public/cli/commands/org-limit-credit.js +338 -0
- package/public/cli/commands/org-limit.js +66 -0
- package/public/cli/commands/partition.d.ts +8 -0
- package/public/cli/commands/partition.js +390 -0
- package/public/cli/commands/plans-module.js +44 -0
- package/public/cli/commands/pubkey-setting.d.ts +8 -0
- package/public/cli/commands/pubkey-setting.js +384 -0
- package/public/cli/commands/rls-setting.d.ts +8 -0
- package/public/cli/commands/rls-setting.js +406 -0
- package/public/cli/commands/storage-module.js +198 -0
- package/public/cli/commands/webauthn-setting.d.ts +8 -0
- package/public/cli/commands/webauthn-setting.js +582 -0
- package/public/cli/commands.js +41 -5
- package/public/cli/executor.d.ts +24 -6
- package/public/orm/index.d.ts +43 -7
- package/public/orm/index.js +38 -2
- package/public/orm/input-types.d.ts +4601 -321
- package/public/orm/input-types.js +21 -0
- package/public/orm/models/apiSetting.d.ts +56 -0
- package/public/orm/models/apiSetting.js +100 -0
- package/public/orm/models/appLimitCap.d.ts +56 -0
- package/public/orm/models/appLimitCap.js +100 -0
- package/public/orm/models/appLimitCapsDefault.d.ts +56 -0
- package/public/orm/models/appLimitCapsDefault.js +100 -0
- package/public/orm/models/appLimitCredit.d.ts +56 -0
- package/public/orm/models/appLimitCredit.js +100 -0
- package/public/orm/models/appLimitCreditCode.d.ts +56 -0
- package/public/orm/models/appLimitCreditCode.js +100 -0
- package/public/orm/models/appLimitCreditCodeItem.d.ts +56 -0
- package/public/orm/models/appLimitCreditCodeItem.js +100 -0
- package/public/orm/models/appLimitCreditRedemption.d.ts +56 -0
- package/public/orm/models/appLimitCreditRedemption.js +100 -0
- package/public/orm/models/billingProviderModule.d.ts +56 -0
- package/public/orm/models/billingProviderModule.js +100 -0
- package/public/orm/models/corsSetting.d.ts +56 -0
- package/public/orm/models/corsSetting.js +100 -0
- package/public/orm/models/databaseSetting.d.ts +56 -0
- package/public/orm/models/databaseSetting.js +100 -0
- package/public/orm/models/function.d.ts +56 -0
- package/public/orm/models/function.js +100 -0
- package/public/orm/models/index.d.ts +19 -1
- package/public/orm/models/index.js +41 -5
- package/public/orm/models/orgLimitCap.d.ts +56 -0
- package/public/orm/models/orgLimitCap.js +100 -0
- package/public/orm/models/orgLimitCapsDefault.d.ts +56 -0
- package/public/orm/models/orgLimitCapsDefault.js +100 -0
- package/public/orm/models/orgLimitCredit.d.ts +56 -0
- package/public/orm/models/orgLimitCredit.js +100 -0
- package/public/orm/models/partition.d.ts +56 -0
- package/public/orm/models/partition.js +100 -0
- package/public/orm/models/pubkeySetting.d.ts +56 -0
- package/public/orm/models/pubkeySetting.js +100 -0
- package/public/orm/models/rlsSetting.d.ts +56 -0
- package/public/orm/models/rlsSetting.js +100 -0
- package/public/orm/models/webauthnSetting.d.ts +56 -0
- package/public/orm/models/webauthnSetting.js +100 -0
- package/public/orm/mutation/index.d.ts +9 -16
- package/public/orm/mutation/index.js +12 -12
- package/public/orm/query-builder.js +24 -0
- package/admin/cli/commands/request-upload-url.js +0 -36
- package/auth/cli/commands/request-upload-url.js +0 -36
- package/esm/auth/cli/commands/request-upload-url.js +0 -34
- package/esm/objects/cli/commands/request-upload-url.d.ts +0 -8
- package/esm/objects/cli/commands/request-upload-url.js +0 -34
- package/esm/public/cli/commands/request-upload-url.d.ts +0 -8
- package/esm/public/cli/commands/request-upload-url.js +0 -34
- package/objects/cli/commands/request-upload-url.d.ts +0 -8
- package/public/cli/commands/request-upload-url.d.ts +0 -8
- package/public/cli/commands/request-upload-url.js +0 -36
package/esm/public/orm/index.js
CHANGED
|
@@ -17,6 +17,7 @@ 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';
|
|
20
21
|
import { ForeignKeyConstraintModel } from './models/foreignKeyConstraint';
|
|
21
22
|
import { FullTextSearchModel } from './models/fullTextSearch';
|
|
22
23
|
import { IndexModel } from './models/index';
|
|
@@ -37,17 +38,20 @@ import { IdentityProvidersModuleModel } from './models/identityProvidersModule';
|
|
|
37
38
|
import { SchemaGrantModel } from './models/schemaGrant';
|
|
38
39
|
import { DefaultPrivilegeModel } from './models/defaultPrivilege';
|
|
39
40
|
import { EnumModel } from './models/enum';
|
|
41
|
+
import { FunctionModel } from './models/function';
|
|
40
42
|
import { ApiSchemaModel } from './models/apiSchema';
|
|
41
43
|
import { ApiModuleModel } from './models/apiModule';
|
|
42
44
|
import { DomainModel } from './models/domain';
|
|
43
45
|
import { SiteMetadatumModel } from './models/siteMetadatum';
|
|
44
46
|
import { SiteModuleModel } from './models/siteModule';
|
|
45
47
|
import { SiteThemeModel } from './models/siteTheme';
|
|
48
|
+
import { CorsSettingModel } from './models/corsSetting';
|
|
46
49
|
import { TriggerFunctionModel } from './models/triggerFunction';
|
|
47
50
|
import { DatabaseTransferModel } from './models/databaseTransfer';
|
|
48
51
|
import { ApiModel } from './models/api';
|
|
49
52
|
import { SiteModel } from './models/site';
|
|
50
53
|
import { AppModel } from './models/app';
|
|
54
|
+
import { ApiSettingModel } from './models/apiSetting';
|
|
51
55
|
import { ConnectedAccountsModuleModel } from './models/connectedAccountsModule';
|
|
52
56
|
import { CryptoAddressesModuleModel } from './models/cryptoAddressesModule';
|
|
53
57
|
import { CryptoAuthModuleModel } from './models/cryptoAuthModule';
|
|
@@ -89,7 +93,11 @@ import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
|
89
93
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
90
94
|
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
91
95
|
import { AppLimitModel } from './models/appLimit';
|
|
96
|
+
import { AppLimitCreditModel } from './models/appLimitCredit';
|
|
97
|
+
import { AppLimitCreditCodeItemModel } from './models/appLimitCreditCodeItem';
|
|
98
|
+
import { AppLimitCreditRedemptionModel } from './models/appLimitCreditRedemption';
|
|
92
99
|
import { OrgLimitModel } from './models/orgLimit';
|
|
100
|
+
import { OrgLimitCreditModel } from './models/orgLimitCredit';
|
|
93
101
|
import { OrgLimitAggregateModel } from './models/orgLimitAggregate';
|
|
94
102
|
import { AppStepModel } from './models/appStep';
|
|
95
103
|
import { AppAchievementModel } from './models/appAchievement';
|
|
@@ -111,6 +119,11 @@ import { IdentityProviderModel } from './models/identityProvider';
|
|
|
111
119
|
import { RefModel } from './models/ref';
|
|
112
120
|
import { StoreModel } from './models/store';
|
|
113
121
|
import { AppPermissionDefaultModel } from './models/appPermissionDefault';
|
|
122
|
+
import { AppLimitCreditCodeModel } from './models/appLimitCreditCode';
|
|
123
|
+
import { AppLimitCapsDefaultModel } from './models/appLimitCapsDefault';
|
|
124
|
+
import { OrgLimitCapsDefaultModel } from './models/orgLimitCapsDefault';
|
|
125
|
+
import { AppLimitCapModel } from './models/appLimitCap';
|
|
126
|
+
import { OrgLimitCapModel } from './models/orgLimitCap';
|
|
114
127
|
import { MembershipTypeModel } from './models/membershipType';
|
|
115
128
|
import { MigrateFileModel } from './models/migrateFile';
|
|
116
129
|
import { DevicesModuleModel } from './models/devicesModule';
|
|
@@ -119,19 +132,24 @@ import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
|
119
132
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
120
133
|
import { UserConnectedAccountModel } from './models/userConnectedAccount';
|
|
121
134
|
import { CommitModel } from './models/commit';
|
|
135
|
+
import { PubkeySettingModel } from './models/pubkeySetting';
|
|
122
136
|
import { RateLimitsModuleModel } from './models/rateLimitsModule';
|
|
123
137
|
import { AppMembershipDefaultModel } from './models/appMembershipDefault';
|
|
124
138
|
import { OrgMembershipDefaultModel } from './models/orgMembershipDefault';
|
|
139
|
+
import { RlsSettingModel } from './models/rlsSetting';
|
|
125
140
|
import { AppLimitEventModel } from './models/appLimitEvent';
|
|
126
141
|
import { OrgLimitEventModel } from './models/orgLimitEvent';
|
|
127
|
-
import { PlansModuleModel } from './models/plansModule';
|
|
128
142
|
import { RlsModuleModel } from './models/rlsModule';
|
|
143
|
+
import { DatabaseSettingModel } from './models/databaseSetting';
|
|
144
|
+
import { PlansModuleModel } from './models/plansModule';
|
|
129
145
|
import { SqlActionModel } from './models/sqlAction';
|
|
130
146
|
import { BillingModuleModel } from './models/billingModule';
|
|
131
147
|
import { AstMigrationModel } from './models/astMigration';
|
|
132
148
|
import { UserModel } from './models/user';
|
|
133
149
|
import { OrgMembershipSettingModel } from './models/orgMembershipSetting';
|
|
150
|
+
import { WebauthnSettingModel } from './models/webauthnSetting';
|
|
134
151
|
import { AppMembershipModel } from './models/appMembership';
|
|
152
|
+
import { BillingProviderModuleModel } from './models/billingProviderModule';
|
|
135
153
|
import { HierarchyModuleModel } from './models/hierarchyModule';
|
|
136
154
|
import { createQueryOperations } from './query';
|
|
137
155
|
import { createMutationOperations } from './mutation';
|
|
@@ -181,6 +199,7 @@ export function createClient(config) {
|
|
|
181
199
|
checkConstraint: new CheckConstraintModel(client),
|
|
182
200
|
field: new FieldModel(client),
|
|
183
201
|
spatialRelation: new SpatialRelationModel(client),
|
|
202
|
+
partition: new PartitionModel(client),
|
|
184
203
|
foreignKeyConstraint: new ForeignKeyConstraintModel(client),
|
|
185
204
|
fullTextSearch: new FullTextSearchModel(client),
|
|
186
205
|
index: new IndexModel(client),
|
|
@@ -201,17 +220,20 @@ export function createClient(config) {
|
|
|
201
220
|
schemaGrant: new SchemaGrantModel(client),
|
|
202
221
|
defaultPrivilege: new DefaultPrivilegeModel(client),
|
|
203
222
|
enum: new EnumModel(client),
|
|
223
|
+
function: new FunctionModel(client),
|
|
204
224
|
apiSchema: new ApiSchemaModel(client),
|
|
205
225
|
apiModule: new ApiModuleModel(client),
|
|
206
226
|
domain: new DomainModel(client),
|
|
207
227
|
siteMetadatum: new SiteMetadatumModel(client),
|
|
208
228
|
siteModule: new SiteModuleModel(client),
|
|
209
229
|
siteTheme: new SiteThemeModel(client),
|
|
230
|
+
corsSetting: new CorsSettingModel(client),
|
|
210
231
|
triggerFunction: new TriggerFunctionModel(client),
|
|
211
232
|
databaseTransfer: new DatabaseTransferModel(client),
|
|
212
233
|
api: new ApiModel(client),
|
|
213
234
|
site: new SiteModel(client),
|
|
214
235
|
app: new AppModel(client),
|
|
236
|
+
apiSetting: new ApiSettingModel(client),
|
|
215
237
|
connectedAccountsModule: new ConnectedAccountsModuleModel(client),
|
|
216
238
|
cryptoAddressesModule: new CryptoAddressesModuleModel(client),
|
|
217
239
|
cryptoAuthModule: new CryptoAuthModuleModel(client),
|
|
@@ -253,7 +275,11 @@ export function createClient(config) {
|
|
|
253
275
|
orgChartEdgeGrant: new OrgChartEdgeGrantModel(client),
|
|
254
276
|
orgPermissionDefault: new OrgPermissionDefaultModel(client),
|
|
255
277
|
appLimit: new AppLimitModel(client),
|
|
278
|
+
appLimitCredit: new AppLimitCreditModel(client),
|
|
279
|
+
appLimitCreditCodeItem: new AppLimitCreditCodeItemModel(client),
|
|
280
|
+
appLimitCreditRedemption: new AppLimitCreditRedemptionModel(client),
|
|
256
281
|
orgLimit: new OrgLimitModel(client),
|
|
282
|
+
orgLimitCredit: new OrgLimitCreditModel(client),
|
|
257
283
|
orgLimitAggregate: new OrgLimitAggregateModel(client),
|
|
258
284
|
appStep: new AppStepModel(client),
|
|
259
285
|
appAchievement: new AppAchievementModel(client),
|
|
@@ -275,6 +301,11 @@ export function createClient(config) {
|
|
|
275
301
|
ref: new RefModel(client),
|
|
276
302
|
store: new StoreModel(client),
|
|
277
303
|
appPermissionDefault: new AppPermissionDefaultModel(client),
|
|
304
|
+
appLimitCreditCode: new AppLimitCreditCodeModel(client),
|
|
305
|
+
appLimitCapsDefault: new AppLimitCapsDefaultModel(client),
|
|
306
|
+
orgLimitCapsDefault: new OrgLimitCapsDefaultModel(client),
|
|
307
|
+
appLimitCap: new AppLimitCapModel(client),
|
|
308
|
+
orgLimitCap: new OrgLimitCapModel(client),
|
|
278
309
|
membershipType: new MembershipTypeModel(client),
|
|
279
310
|
migrateFile: new MigrateFileModel(client),
|
|
280
311
|
devicesModule: new DevicesModuleModel(client),
|
|
@@ -283,19 +314,24 @@ export function createClient(config) {
|
|
|
283
314
|
orgLimitDefault: new OrgLimitDefaultModel(client),
|
|
284
315
|
userConnectedAccount: new UserConnectedAccountModel(client),
|
|
285
316
|
commit: new CommitModel(client),
|
|
317
|
+
pubkeySetting: new PubkeySettingModel(client),
|
|
286
318
|
rateLimitsModule: new RateLimitsModuleModel(client),
|
|
287
319
|
appMembershipDefault: new AppMembershipDefaultModel(client),
|
|
288
320
|
orgMembershipDefault: new OrgMembershipDefaultModel(client),
|
|
321
|
+
rlsSetting: new RlsSettingModel(client),
|
|
289
322
|
appLimitEvent: new AppLimitEventModel(client),
|
|
290
323
|
orgLimitEvent: new OrgLimitEventModel(client),
|
|
291
|
-
plansModule: new PlansModuleModel(client),
|
|
292
324
|
rlsModule: new RlsModuleModel(client),
|
|
325
|
+
databaseSetting: new DatabaseSettingModel(client),
|
|
326
|
+
plansModule: new PlansModuleModel(client),
|
|
293
327
|
sqlAction: new SqlActionModel(client),
|
|
294
328
|
billingModule: new BillingModuleModel(client),
|
|
295
329
|
astMigration: new AstMigrationModel(client),
|
|
296
330
|
user: new UserModel(client),
|
|
297
331
|
orgMembershipSetting: new OrgMembershipSettingModel(client),
|
|
332
|
+
webauthnSetting: new WebauthnSettingModel(client),
|
|
298
333
|
appMembership: new AppMembershipModel(client),
|
|
334
|
+
billingProviderModule: new BillingProviderModuleModel(client),
|
|
299
335
|
hierarchyModule: new HierarchyModuleModel(client),
|
|
300
336
|
query: createQueryOperations(client),
|
|
301
337
|
mutation: createMutationOperations(client),
|