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