@constructive-sdk/cli 0.20.3 → 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/admin/orm/index.d.ts
CHANGED
|
@@ -4,18 +4,27 @@ import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord
|
|
|
4
4
|
import { AppPermissionModel } from './models/appPermission';
|
|
5
5
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
6
6
|
import { AppLevelRequirementModel } from './models/appLevelRequirement';
|
|
7
|
+
import { AppLimitCreditRedemptionModel } from './models/appLimitCreditRedemption';
|
|
8
|
+
import { AppLimitCreditCodeItemModel } from './models/appLimitCreditCodeItem';
|
|
9
|
+
import { AppLimitCreditModel } from './models/appLimitCredit';
|
|
7
10
|
import { OrgMemberModel } from './models/orgMember';
|
|
8
11
|
import { AppPermissionDefaultModel } from './models/appPermissionDefault';
|
|
12
|
+
import { AppLimitCreditCodeModel } from './models/appLimitCreditCode';
|
|
9
13
|
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
10
14
|
import { AppAdminGrantModel } from './models/appAdminGrant';
|
|
11
15
|
import { AppOwnerGrantModel } from './models/appOwnerGrant';
|
|
12
16
|
import { AppAchievementModel } from './models/appAchievement';
|
|
13
17
|
import { AppStepModel } from './models/appStep';
|
|
18
|
+
import { AppLimitCapsDefaultModel } from './models/appLimitCapsDefault';
|
|
19
|
+
import { OrgLimitCapsDefaultModel } from './models/orgLimitCapsDefault';
|
|
20
|
+
import { AppLimitCapModel } from './models/appLimitCap';
|
|
21
|
+
import { OrgLimitCapModel } from './models/orgLimitCap';
|
|
14
22
|
import { OrgAdminGrantModel } from './models/orgAdminGrant';
|
|
15
23
|
import { OrgOwnerGrantModel } from './models/orgOwnerGrant';
|
|
16
24
|
import { MembershipTypeModel } from './models/membershipType';
|
|
17
25
|
import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
18
26
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
27
|
+
import { OrgLimitCreditModel } from './models/orgLimitCredit';
|
|
19
28
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
20
29
|
import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
21
30
|
import { AppGrantModel } from './models/appGrant';
|
|
@@ -26,13 +35,13 @@ import { AppLimitEventModel } from './models/appLimitEvent';
|
|
|
26
35
|
import { OrgLimitEventModel } from './models/orgLimitEvent';
|
|
27
36
|
import { OrgGrantModel } from './models/orgGrant';
|
|
28
37
|
import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
29
|
-
import { AppLimitModel } from './models/appLimit';
|
|
30
|
-
import { OrgLimitAggregateModel } from './models/orgLimitAggregate';
|
|
31
38
|
import { OrgMemberProfileModel } from './models/orgMemberProfile';
|
|
32
|
-
import { OrgLimitModel } from './models/orgLimit';
|
|
33
39
|
import { AppLevelModel } from './models/appLevel';
|
|
40
|
+
import { AppLimitModel } from './models/appLimit';
|
|
34
41
|
import { AppInviteModel } from './models/appInvite';
|
|
35
42
|
import { OrgMembershipSettingModel } from './models/orgMembershipSetting';
|
|
43
|
+
import { OrgLimitAggregateModel } from './models/orgLimitAggregate';
|
|
44
|
+
import { OrgLimitModel } from './models/orgLimit';
|
|
36
45
|
import { OrgInviteModel } from './models/orgInvite';
|
|
37
46
|
import { AppMembershipModel } from './models/appMembership';
|
|
38
47
|
import { OrgMembershipModel } from './models/orgMembership';
|
|
@@ -73,18 +82,27 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
73
82
|
appPermission: AppPermissionModel;
|
|
74
83
|
orgPermission: OrgPermissionModel;
|
|
75
84
|
appLevelRequirement: AppLevelRequirementModel;
|
|
85
|
+
appLimitCreditRedemption: AppLimitCreditRedemptionModel;
|
|
86
|
+
appLimitCreditCodeItem: AppLimitCreditCodeItemModel;
|
|
87
|
+
appLimitCredit: AppLimitCreditModel;
|
|
76
88
|
orgMember: OrgMemberModel;
|
|
77
89
|
appPermissionDefault: AppPermissionDefaultModel;
|
|
90
|
+
appLimitCreditCode: AppLimitCreditCodeModel;
|
|
78
91
|
orgPermissionDefault: OrgPermissionDefaultModel;
|
|
79
92
|
appAdminGrant: AppAdminGrantModel;
|
|
80
93
|
appOwnerGrant: AppOwnerGrantModel;
|
|
81
94
|
appAchievement: AppAchievementModel;
|
|
82
95
|
appStep: AppStepModel;
|
|
96
|
+
appLimitCapsDefault: AppLimitCapsDefaultModel;
|
|
97
|
+
orgLimitCapsDefault: OrgLimitCapsDefaultModel;
|
|
98
|
+
appLimitCap: AppLimitCapModel;
|
|
99
|
+
orgLimitCap: OrgLimitCapModel;
|
|
83
100
|
orgAdminGrant: OrgAdminGrantModel;
|
|
84
101
|
orgOwnerGrant: OrgOwnerGrantModel;
|
|
85
102
|
membershipType: MembershipTypeModel;
|
|
86
103
|
appLimitDefault: AppLimitDefaultModel;
|
|
87
104
|
orgLimitDefault: OrgLimitDefaultModel;
|
|
105
|
+
orgLimitCredit: OrgLimitCreditModel;
|
|
88
106
|
orgChartEdgeGrant: OrgChartEdgeGrantModel;
|
|
89
107
|
appClaimedInvite: AppClaimedInviteModel;
|
|
90
108
|
appGrant: AppGrantModel;
|
|
@@ -95,13 +113,13 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
95
113
|
orgLimitEvent: OrgLimitEventModel;
|
|
96
114
|
orgGrant: OrgGrantModel;
|
|
97
115
|
orgChartEdge: OrgChartEdgeModel;
|
|
98
|
-
appLimit: AppLimitModel;
|
|
99
|
-
orgLimitAggregate: OrgLimitAggregateModel;
|
|
100
116
|
orgMemberProfile: OrgMemberProfileModel;
|
|
101
|
-
orgLimit: OrgLimitModel;
|
|
102
117
|
appLevel: AppLevelModel;
|
|
118
|
+
appLimit: AppLimitModel;
|
|
103
119
|
appInvite: AppInviteModel;
|
|
104
120
|
orgMembershipSetting: OrgMembershipSettingModel;
|
|
121
|
+
orgLimitAggregate: OrgLimitAggregateModel;
|
|
122
|
+
orgLimit: OrgLimitModel;
|
|
105
123
|
orgInvite: OrgInviteModel;
|
|
106
124
|
appMembership: AppMembershipModel;
|
|
107
125
|
orgMembership: OrgMembershipModel;
|
|
@@ -173,11 +191,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
173
191
|
} & import("./select-types").StrictSelect<S, import("./input-types").SubmitOrgInviteCodePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
174
192
|
submitOrgInviteCode: import("./select-types").InferSelectResult<import("./input-types").SubmitOrgInviteCodePayload, S> | null;
|
|
175
193
|
}>;
|
|
176
|
-
requestUploadUrl: <S extends import("./input-types").RequestUploadUrlPayloadSelect>(args: import("./mutation").RequestUploadUrlVariables, options: {
|
|
177
|
-
select: S;
|
|
178
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").RequestUploadUrlPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
179
|
-
requestUploadUrl: import("./select-types").InferSelectResult<import("./input-types").RequestUploadUrlPayload, S> | null;
|
|
180
|
-
}>;
|
|
181
194
|
provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
|
|
182
195
|
select: S;
|
|
183
196
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
package/esm/admin/orm/index.js
CHANGED
|
@@ -9,18 +9,27 @@ import { OrgGetSubordinatesRecordModel } from './models/orgGetSubordinatesRecord
|
|
|
9
9
|
import { AppPermissionModel } from './models/appPermission';
|
|
10
10
|
import { OrgPermissionModel } from './models/orgPermission';
|
|
11
11
|
import { AppLevelRequirementModel } from './models/appLevelRequirement';
|
|
12
|
+
import { AppLimitCreditRedemptionModel } from './models/appLimitCreditRedemption';
|
|
13
|
+
import { AppLimitCreditCodeItemModel } from './models/appLimitCreditCodeItem';
|
|
14
|
+
import { AppLimitCreditModel } from './models/appLimitCredit';
|
|
12
15
|
import { OrgMemberModel } from './models/orgMember';
|
|
13
16
|
import { AppPermissionDefaultModel } from './models/appPermissionDefault';
|
|
17
|
+
import { AppLimitCreditCodeModel } from './models/appLimitCreditCode';
|
|
14
18
|
import { OrgPermissionDefaultModel } from './models/orgPermissionDefault';
|
|
15
19
|
import { AppAdminGrantModel } from './models/appAdminGrant';
|
|
16
20
|
import { AppOwnerGrantModel } from './models/appOwnerGrant';
|
|
17
21
|
import { AppAchievementModel } from './models/appAchievement';
|
|
18
22
|
import { AppStepModel } from './models/appStep';
|
|
23
|
+
import { AppLimitCapsDefaultModel } from './models/appLimitCapsDefault';
|
|
24
|
+
import { OrgLimitCapsDefaultModel } from './models/orgLimitCapsDefault';
|
|
25
|
+
import { AppLimitCapModel } from './models/appLimitCap';
|
|
26
|
+
import { OrgLimitCapModel } from './models/orgLimitCap';
|
|
19
27
|
import { OrgAdminGrantModel } from './models/orgAdminGrant';
|
|
20
28
|
import { OrgOwnerGrantModel } from './models/orgOwnerGrant';
|
|
21
29
|
import { MembershipTypeModel } from './models/membershipType';
|
|
22
30
|
import { AppLimitDefaultModel } from './models/appLimitDefault';
|
|
23
31
|
import { OrgLimitDefaultModel } from './models/orgLimitDefault';
|
|
32
|
+
import { OrgLimitCreditModel } from './models/orgLimitCredit';
|
|
24
33
|
import { OrgChartEdgeGrantModel } from './models/orgChartEdgeGrant';
|
|
25
34
|
import { AppClaimedInviteModel } from './models/appClaimedInvite';
|
|
26
35
|
import { AppGrantModel } from './models/appGrant';
|
|
@@ -31,13 +40,13 @@ import { AppLimitEventModel } from './models/appLimitEvent';
|
|
|
31
40
|
import { OrgLimitEventModel } from './models/orgLimitEvent';
|
|
32
41
|
import { OrgGrantModel } from './models/orgGrant';
|
|
33
42
|
import { OrgChartEdgeModel } from './models/orgChartEdge';
|
|
34
|
-
import { AppLimitModel } from './models/appLimit';
|
|
35
|
-
import { OrgLimitAggregateModel } from './models/orgLimitAggregate';
|
|
36
43
|
import { OrgMemberProfileModel } from './models/orgMemberProfile';
|
|
37
|
-
import { OrgLimitModel } from './models/orgLimit';
|
|
38
44
|
import { AppLevelModel } from './models/appLevel';
|
|
45
|
+
import { AppLimitModel } from './models/appLimit';
|
|
39
46
|
import { AppInviteModel } from './models/appInvite';
|
|
40
47
|
import { OrgMembershipSettingModel } from './models/orgMembershipSetting';
|
|
48
|
+
import { OrgLimitAggregateModel } from './models/orgLimitAggregate';
|
|
49
|
+
import { OrgLimitModel } from './models/orgLimit';
|
|
41
50
|
import { OrgInviteModel } from './models/orgInvite';
|
|
42
51
|
import { AppMembershipModel } from './models/appMembership';
|
|
43
52
|
import { OrgMembershipModel } from './models/orgMembership';
|
|
@@ -81,18 +90,27 @@ export function createClient(config) {
|
|
|
81
90
|
appPermission: new AppPermissionModel(client),
|
|
82
91
|
orgPermission: new OrgPermissionModel(client),
|
|
83
92
|
appLevelRequirement: new AppLevelRequirementModel(client),
|
|
93
|
+
appLimitCreditRedemption: new AppLimitCreditRedemptionModel(client),
|
|
94
|
+
appLimitCreditCodeItem: new AppLimitCreditCodeItemModel(client),
|
|
95
|
+
appLimitCredit: new AppLimitCreditModel(client),
|
|
84
96
|
orgMember: new OrgMemberModel(client),
|
|
85
97
|
appPermissionDefault: new AppPermissionDefaultModel(client),
|
|
98
|
+
appLimitCreditCode: new AppLimitCreditCodeModel(client),
|
|
86
99
|
orgPermissionDefault: new OrgPermissionDefaultModel(client),
|
|
87
100
|
appAdminGrant: new AppAdminGrantModel(client),
|
|
88
101
|
appOwnerGrant: new AppOwnerGrantModel(client),
|
|
89
102
|
appAchievement: new AppAchievementModel(client),
|
|
90
103
|
appStep: new AppStepModel(client),
|
|
104
|
+
appLimitCapsDefault: new AppLimitCapsDefaultModel(client),
|
|
105
|
+
orgLimitCapsDefault: new OrgLimitCapsDefaultModel(client),
|
|
106
|
+
appLimitCap: new AppLimitCapModel(client),
|
|
107
|
+
orgLimitCap: new OrgLimitCapModel(client),
|
|
91
108
|
orgAdminGrant: new OrgAdminGrantModel(client),
|
|
92
109
|
orgOwnerGrant: new OrgOwnerGrantModel(client),
|
|
93
110
|
membershipType: new MembershipTypeModel(client),
|
|
94
111
|
appLimitDefault: new AppLimitDefaultModel(client),
|
|
95
112
|
orgLimitDefault: new OrgLimitDefaultModel(client),
|
|
113
|
+
orgLimitCredit: new OrgLimitCreditModel(client),
|
|
96
114
|
orgChartEdgeGrant: new OrgChartEdgeGrantModel(client),
|
|
97
115
|
appClaimedInvite: new AppClaimedInviteModel(client),
|
|
98
116
|
appGrant: new AppGrantModel(client),
|
|
@@ -103,13 +121,13 @@ export function createClient(config) {
|
|
|
103
121
|
orgLimitEvent: new OrgLimitEventModel(client),
|
|
104
122
|
orgGrant: new OrgGrantModel(client),
|
|
105
123
|
orgChartEdge: new OrgChartEdgeModel(client),
|
|
106
|
-
appLimit: new AppLimitModel(client),
|
|
107
|
-
orgLimitAggregate: new OrgLimitAggregateModel(client),
|
|
108
124
|
orgMemberProfile: new OrgMemberProfileModel(client),
|
|
109
|
-
orgLimit: new OrgLimitModel(client),
|
|
110
125
|
appLevel: new AppLevelModel(client),
|
|
126
|
+
appLimit: new AppLimitModel(client),
|
|
111
127
|
appInvite: new AppInviteModel(client),
|
|
112
128
|
orgMembershipSetting: new OrgMembershipSettingModel(client),
|
|
129
|
+
orgLimitAggregate: new OrgLimitAggregateModel(client),
|
|
130
|
+
orgLimit: new OrgLimitModel(client),
|
|
113
131
|
orgInvite: new OrgInviteModel(client),
|
|
114
132
|
appMembership: new AppMembershipModel(client),
|
|
115
133
|
orgMembership: new OrgMembershipModel(client),
|