@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/public/orm/index.js
CHANGED
|
@@ -35,6 +35,7 @@ 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");
|
|
38
39
|
const foreignKeyConstraint_1 = require("./models/foreignKeyConstraint");
|
|
39
40
|
const fullTextSearch_1 = require("./models/fullTextSearch");
|
|
40
41
|
const index_1 = require("./models/index");
|
|
@@ -52,20 +53,24 @@ const secureTableProvision_1 = require("./models/secureTableProvision");
|
|
|
52
53
|
const relationProvision_1 = require("./models/relationProvision");
|
|
53
54
|
const sessionSecretsModule_1 = require("./models/sessionSecretsModule");
|
|
54
55
|
const identityProvidersModule_1 = require("./models/identityProvidersModule");
|
|
56
|
+
const realtimeModule_1 = require("./models/realtimeModule");
|
|
55
57
|
const schemaGrant_1 = require("./models/schemaGrant");
|
|
56
58
|
const defaultPrivilege_1 = require("./models/defaultPrivilege");
|
|
57
59
|
const enum_1 = require("./models/enum");
|
|
60
|
+
const function_1 = require("./models/function");
|
|
58
61
|
const apiSchema_1 = require("./models/apiSchema");
|
|
59
62
|
const apiModule_1 = require("./models/apiModule");
|
|
60
63
|
const domain_1 = require("./models/domain");
|
|
61
64
|
const siteMetadatum_1 = require("./models/siteMetadatum");
|
|
62
65
|
const siteModule_1 = require("./models/siteModule");
|
|
63
66
|
const siteTheme_1 = require("./models/siteTheme");
|
|
67
|
+
const corsSetting_1 = require("./models/corsSetting");
|
|
64
68
|
const triggerFunction_1 = require("./models/triggerFunction");
|
|
65
69
|
const databaseTransfer_1 = require("./models/databaseTransfer");
|
|
66
70
|
const api_1 = require("./models/api");
|
|
67
71
|
const site_1 = require("./models/site");
|
|
68
72
|
const app_1 = require("./models/app");
|
|
73
|
+
const apiSetting_1 = require("./models/apiSetting");
|
|
69
74
|
const connectedAccountsModule_1 = require("./models/connectedAccountsModule");
|
|
70
75
|
const cryptoAddressesModule_1 = require("./models/cryptoAddressesModule");
|
|
71
76
|
const cryptoAuthModule_1 = require("./models/cryptoAuthModule");
|
|
@@ -107,7 +112,11 @@ const orgChartEdge_1 = require("./models/orgChartEdge");
|
|
|
107
112
|
const orgChartEdgeGrant_1 = require("./models/orgChartEdgeGrant");
|
|
108
113
|
const orgPermissionDefault_1 = require("./models/orgPermissionDefault");
|
|
109
114
|
const appLimit_1 = require("./models/appLimit");
|
|
115
|
+
const appLimitCredit_1 = require("./models/appLimitCredit");
|
|
116
|
+
const appLimitCreditCodeItem_1 = require("./models/appLimitCreditCodeItem");
|
|
117
|
+
const appLimitCreditRedemption_1 = require("./models/appLimitCreditRedemption");
|
|
110
118
|
const orgLimit_1 = require("./models/orgLimit");
|
|
119
|
+
const orgLimitCredit_1 = require("./models/orgLimitCredit");
|
|
111
120
|
const orgLimitAggregate_1 = require("./models/orgLimitAggregate");
|
|
112
121
|
const appStep_1 = require("./models/appStep");
|
|
113
122
|
const appAchievement_1 = require("./models/appAchievement");
|
|
@@ -129,6 +138,11 @@ const identityProvider_1 = require("./models/identityProvider");
|
|
|
129
138
|
const ref_1 = require("./models/ref");
|
|
130
139
|
const store_1 = require("./models/store");
|
|
131
140
|
const appPermissionDefault_1 = require("./models/appPermissionDefault");
|
|
141
|
+
const appLimitCreditCode_1 = require("./models/appLimitCreditCode");
|
|
142
|
+
const appLimitCapsDefault_1 = require("./models/appLimitCapsDefault");
|
|
143
|
+
const orgLimitCapsDefault_1 = require("./models/orgLimitCapsDefault");
|
|
144
|
+
const appLimitCap_1 = require("./models/appLimitCap");
|
|
145
|
+
const orgLimitCap_1 = require("./models/orgLimitCap");
|
|
132
146
|
const membershipType_1 = require("./models/membershipType");
|
|
133
147
|
const migrateFile_1 = require("./models/migrateFile");
|
|
134
148
|
const devicesModule_1 = require("./models/devicesModule");
|
|
@@ -137,19 +151,24 @@ const appLimitDefault_1 = require("./models/appLimitDefault");
|
|
|
137
151
|
const orgLimitDefault_1 = require("./models/orgLimitDefault");
|
|
138
152
|
const userConnectedAccount_1 = require("./models/userConnectedAccount");
|
|
139
153
|
const commit_1 = require("./models/commit");
|
|
154
|
+
const pubkeySetting_1 = require("./models/pubkeySetting");
|
|
140
155
|
const rateLimitsModule_1 = require("./models/rateLimitsModule");
|
|
141
156
|
const appMembershipDefault_1 = require("./models/appMembershipDefault");
|
|
142
157
|
const orgMembershipDefault_1 = require("./models/orgMembershipDefault");
|
|
158
|
+
const rlsSetting_1 = require("./models/rlsSetting");
|
|
143
159
|
const appLimitEvent_1 = require("./models/appLimitEvent");
|
|
144
160
|
const orgLimitEvent_1 = require("./models/orgLimitEvent");
|
|
145
|
-
const plansModule_1 = require("./models/plansModule");
|
|
146
161
|
const rlsModule_1 = require("./models/rlsModule");
|
|
162
|
+
const databaseSetting_1 = require("./models/databaseSetting");
|
|
163
|
+
const plansModule_1 = require("./models/plansModule");
|
|
147
164
|
const sqlAction_1 = require("./models/sqlAction");
|
|
148
165
|
const billingModule_1 = require("./models/billingModule");
|
|
149
166
|
const astMigration_1 = require("./models/astMigration");
|
|
150
167
|
const user_1 = require("./models/user");
|
|
151
168
|
const orgMembershipSetting_1 = require("./models/orgMembershipSetting");
|
|
169
|
+
const webauthnSetting_1 = require("./models/webauthnSetting");
|
|
152
170
|
const appMembership_1 = require("./models/appMembership");
|
|
171
|
+
const billingProviderModule_1 = require("./models/billingProviderModule");
|
|
153
172
|
const hierarchyModule_1 = require("./models/hierarchyModule");
|
|
154
173
|
const query_1 = require("./query");
|
|
155
174
|
const mutation_1 = require("./mutation");
|
|
@@ -204,6 +223,7 @@ function createClient(config) {
|
|
|
204
223
|
checkConstraint: new checkConstraint_1.CheckConstraintModel(client),
|
|
205
224
|
field: new field_1.FieldModel(client),
|
|
206
225
|
spatialRelation: new spatialRelation_1.SpatialRelationModel(client),
|
|
226
|
+
partition: new partition_1.PartitionModel(client),
|
|
207
227
|
foreignKeyConstraint: new foreignKeyConstraint_1.ForeignKeyConstraintModel(client),
|
|
208
228
|
fullTextSearch: new fullTextSearch_1.FullTextSearchModel(client),
|
|
209
229
|
index: new index_1.IndexModel(client),
|
|
@@ -221,20 +241,24 @@ function createClient(config) {
|
|
|
221
241
|
relationProvision: new relationProvision_1.RelationProvisionModel(client),
|
|
222
242
|
sessionSecretsModule: new sessionSecretsModule_1.SessionSecretsModuleModel(client),
|
|
223
243
|
identityProvidersModule: new identityProvidersModule_1.IdentityProvidersModuleModel(client),
|
|
244
|
+
realtimeModule: new realtimeModule_1.RealtimeModuleModel(client),
|
|
224
245
|
schemaGrant: new schemaGrant_1.SchemaGrantModel(client),
|
|
225
246
|
defaultPrivilege: new defaultPrivilege_1.DefaultPrivilegeModel(client),
|
|
226
247
|
enum: new enum_1.EnumModel(client),
|
|
248
|
+
function: new function_1.FunctionModel(client),
|
|
227
249
|
apiSchema: new apiSchema_1.ApiSchemaModel(client),
|
|
228
250
|
apiModule: new apiModule_1.ApiModuleModel(client),
|
|
229
251
|
domain: new domain_1.DomainModel(client),
|
|
230
252
|
siteMetadatum: new siteMetadatum_1.SiteMetadatumModel(client),
|
|
231
253
|
siteModule: new siteModule_1.SiteModuleModel(client),
|
|
232
254
|
siteTheme: new siteTheme_1.SiteThemeModel(client),
|
|
255
|
+
corsSetting: new corsSetting_1.CorsSettingModel(client),
|
|
233
256
|
triggerFunction: new triggerFunction_1.TriggerFunctionModel(client),
|
|
234
257
|
databaseTransfer: new databaseTransfer_1.DatabaseTransferModel(client),
|
|
235
258
|
api: new api_1.ApiModel(client),
|
|
236
259
|
site: new site_1.SiteModel(client),
|
|
237
260
|
app: new app_1.AppModel(client),
|
|
261
|
+
apiSetting: new apiSetting_1.ApiSettingModel(client),
|
|
238
262
|
connectedAccountsModule: new connectedAccountsModule_1.ConnectedAccountsModuleModel(client),
|
|
239
263
|
cryptoAddressesModule: new cryptoAddressesModule_1.CryptoAddressesModuleModel(client),
|
|
240
264
|
cryptoAuthModule: new cryptoAuthModule_1.CryptoAuthModuleModel(client),
|
|
@@ -276,7 +300,11 @@ function createClient(config) {
|
|
|
276
300
|
orgChartEdgeGrant: new orgChartEdgeGrant_1.OrgChartEdgeGrantModel(client),
|
|
277
301
|
orgPermissionDefault: new orgPermissionDefault_1.OrgPermissionDefaultModel(client),
|
|
278
302
|
appLimit: new appLimit_1.AppLimitModel(client),
|
|
303
|
+
appLimitCredit: new appLimitCredit_1.AppLimitCreditModel(client),
|
|
304
|
+
appLimitCreditCodeItem: new appLimitCreditCodeItem_1.AppLimitCreditCodeItemModel(client),
|
|
305
|
+
appLimitCreditRedemption: new appLimitCreditRedemption_1.AppLimitCreditRedemptionModel(client),
|
|
279
306
|
orgLimit: new orgLimit_1.OrgLimitModel(client),
|
|
307
|
+
orgLimitCredit: new orgLimitCredit_1.OrgLimitCreditModel(client),
|
|
280
308
|
orgLimitAggregate: new orgLimitAggregate_1.OrgLimitAggregateModel(client),
|
|
281
309
|
appStep: new appStep_1.AppStepModel(client),
|
|
282
310
|
appAchievement: new appAchievement_1.AppAchievementModel(client),
|
|
@@ -298,6 +326,11 @@ function createClient(config) {
|
|
|
298
326
|
ref: new ref_1.RefModel(client),
|
|
299
327
|
store: new store_1.StoreModel(client),
|
|
300
328
|
appPermissionDefault: new appPermissionDefault_1.AppPermissionDefaultModel(client),
|
|
329
|
+
appLimitCreditCode: new appLimitCreditCode_1.AppLimitCreditCodeModel(client),
|
|
330
|
+
appLimitCapsDefault: new appLimitCapsDefault_1.AppLimitCapsDefaultModel(client),
|
|
331
|
+
orgLimitCapsDefault: new orgLimitCapsDefault_1.OrgLimitCapsDefaultModel(client),
|
|
332
|
+
appLimitCap: new appLimitCap_1.AppLimitCapModel(client),
|
|
333
|
+
orgLimitCap: new orgLimitCap_1.OrgLimitCapModel(client),
|
|
301
334
|
membershipType: new membershipType_1.MembershipTypeModel(client),
|
|
302
335
|
migrateFile: new migrateFile_1.MigrateFileModel(client),
|
|
303
336
|
devicesModule: new devicesModule_1.DevicesModuleModel(client),
|
|
@@ -306,19 +339,24 @@ function createClient(config) {
|
|
|
306
339
|
orgLimitDefault: new orgLimitDefault_1.OrgLimitDefaultModel(client),
|
|
307
340
|
userConnectedAccount: new userConnectedAccount_1.UserConnectedAccountModel(client),
|
|
308
341
|
commit: new commit_1.CommitModel(client),
|
|
342
|
+
pubkeySetting: new pubkeySetting_1.PubkeySettingModel(client),
|
|
309
343
|
rateLimitsModule: new rateLimitsModule_1.RateLimitsModuleModel(client),
|
|
310
344
|
appMembershipDefault: new appMembershipDefault_1.AppMembershipDefaultModel(client),
|
|
311
345
|
orgMembershipDefault: new orgMembershipDefault_1.OrgMembershipDefaultModel(client),
|
|
346
|
+
rlsSetting: new rlsSetting_1.RlsSettingModel(client),
|
|
312
347
|
appLimitEvent: new appLimitEvent_1.AppLimitEventModel(client),
|
|
313
348
|
orgLimitEvent: new orgLimitEvent_1.OrgLimitEventModel(client),
|
|
314
|
-
plansModule: new plansModule_1.PlansModuleModel(client),
|
|
315
349
|
rlsModule: new rlsModule_1.RlsModuleModel(client),
|
|
350
|
+
databaseSetting: new databaseSetting_1.DatabaseSettingModel(client),
|
|
351
|
+
plansModule: new plansModule_1.PlansModuleModel(client),
|
|
316
352
|
sqlAction: new sqlAction_1.SqlActionModel(client),
|
|
317
353
|
billingModule: new billingModule_1.BillingModuleModel(client),
|
|
318
354
|
astMigration: new astMigration_1.AstMigrationModel(client),
|
|
319
355
|
user: new user_1.UserModel(client),
|
|
320
356
|
orgMembershipSetting: new orgMembershipSetting_1.OrgMembershipSettingModel(client),
|
|
357
|
+
webauthnSetting: new webauthnSetting_1.WebauthnSettingModel(client),
|
|
321
358
|
appMembership: new appMembership_1.AppMembershipModel(client),
|
|
359
|
+
billingProviderModule: new billingProviderModule_1.BillingProviderModuleModel(client),
|
|
322
360
|
hierarchyModule: new hierarchyModule_1.HierarchyModuleModel(client),
|
|
323
361
|
query: (0, query_1.createQueryOperations)(client),
|
|
324
362
|
mutation: (0, mutation_1.createMutationOperations)(client),
|