@constructive-io/sdk 1.11.10 → 1.11.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/orm/index.d.ts +58 -34
- package/admin/orm/index.js +40 -16
- package/admin/orm/input-types.d.ts +3824 -943
- package/admin/orm/input-types.js +33 -5
- package/admin/orm/models/appCapability.d.ts +54 -0
- package/admin/orm/models/appCapability.js +104 -0
- package/admin/orm/models/appCapabilityDefault.d.ts +54 -0
- package/admin/orm/models/{orgPermissionDefault.js → appCapabilityDefault.js} +27 -27
- package/admin/orm/models/appCapabilityDefaultCapability.d.ts +54 -0
- package/admin/orm/models/{orgPermissionDefaultPermission.js → appCapabilityDefaultCapability.js} +27 -27
- package/admin/orm/models/appCapabilityDefaultGrant.d.ts +54 -0
- package/admin/orm/models/{appPermissionDefaultGrant.js → appCapabilityDefaultGrant.js} +27 -27
- package/admin/orm/models/appMembershipProfile.d.ts +54 -0
- package/admin/orm/models/appMembershipProfile.js +104 -0
- package/admin/orm/models/appProfile.d.ts +54 -0
- package/admin/orm/models/appProfile.js +104 -0
- package/admin/orm/models/appProfileCapability.d.ts +54 -0
- package/admin/orm/models/appProfileCapability.js +104 -0
- package/admin/orm/models/appProfileDefinitionGrant.d.ts +54 -0
- package/admin/orm/models/appProfileDefinitionGrant.js +104 -0
- package/admin/orm/models/appProfileGrant.d.ts +54 -0
- package/admin/orm/models/appProfileGrant.js +104 -0
- package/admin/orm/models/appProfileTemplate.d.ts +54 -0
- package/admin/orm/models/appProfileTemplate.js +104 -0
- package/admin/orm/models/index.d.ts +20 -8
- package/admin/orm/models/index.js +41 -17
- package/admin/orm/models/orgCapability.d.ts +54 -0
- package/admin/orm/models/orgCapability.js +104 -0
- package/admin/orm/models/orgCapabilityDefault.d.ts +54 -0
- package/admin/orm/models/{appPermissionDefault.js → orgCapabilityDefault.js} +27 -27
- package/admin/orm/models/orgCapabilityDefaultCapability.d.ts +54 -0
- package/admin/orm/models/{appPermissionDefaultPermission.js → orgCapabilityDefaultCapability.js} +27 -27
- package/admin/orm/models/orgCapabilityDefaultGrant.d.ts +54 -0
- package/admin/orm/models/{orgPermissionDefaultGrant.js → orgCapabilityDefaultGrant.js} +27 -27
- package/admin/orm/models/orgMembershipProfile.d.ts +54 -0
- package/admin/orm/models/orgMembershipProfile.js +104 -0
- package/admin/orm/models/orgProfile.d.ts +54 -0
- package/admin/orm/models/orgProfile.js +104 -0
- package/admin/orm/models/orgProfileCapability.d.ts +54 -0
- package/admin/orm/models/orgProfileCapability.js +104 -0
- package/admin/orm/models/orgProfileDefinitionGrant.d.ts +54 -0
- package/admin/orm/models/orgProfileDefinitionGrant.js +104 -0
- package/admin/orm/models/orgProfileGrant.d.ts +54 -0
- package/admin/orm/models/orgProfileGrant.js +104 -0
- package/admin/orm/models/orgProfileTemplate.d.ts +54 -0
- package/admin/orm/models/orgProfileTemplate.js +104 -0
- package/admin/orm/query/index.d.ts +33 -33
- package/admin/orm/query/index.js +56 -56
- package/api/orm/index.d.ts +33 -21
- package/api/orm/index.js +20 -8
- package/api/orm/input-types.d.ts +2594 -895
- package/api/orm/input-types.js +19 -4
- package/api/orm/models/api.d.ts +54 -0
- package/api/orm/models/api.js +104 -0
- package/api/orm/models/app.d.ts +54 -0
- package/api/orm/models/app.js +104 -0
- package/api/orm/models/appComponent.d.ts +54 -0
- package/api/orm/models/{platformApis.js → appComponent.js} +27 -27
- package/api/orm/models/emailIdentity.d.ts +54 -0
- package/api/orm/models/emailIdentity.js +104 -0
- package/api/orm/models/emailProviderAccount.d.ts +54 -0
- package/api/orm/models/emailProviderAccount.js +104 -0
- package/api/orm/models/emailSiteIdentity.d.ts +54 -0
- package/api/orm/models/emailSiteIdentity.js +104 -0
- package/api/orm/models/index.d.ts +10 -4
- package/api/orm/models/index.js +22 -10
- package/api/orm/models/platformApi.d.ts +54 -0
- package/api/orm/models/platformApi.js +104 -0
- package/api/orm/models/platformEmailIdentity.d.ts +54 -0
- package/api/orm/models/platformEmailIdentity.js +104 -0
- package/api/orm/models/platformEmailProviderAccount.d.ts +54 -0
- package/api/orm/models/platformEmailProviderAccount.js +104 -0
- package/api/orm/models/platformEmailSiteIdentity.d.ts +54 -0
- package/api/orm/models/platformEmailSiteIdentity.js +104 -0
- package/api/orm/mutation/index.d.ts +22 -22
- package/api/orm/mutation/index.js +30 -30
- package/auth/orm/index.d.ts +10 -0
- package/auth/orm/input-types.d.ts +60 -6
- package/auth/orm/mutation/index.d.ts +17 -1
- package/auth/orm/mutation/index.js +24 -0
- package/compute/orm/index.d.ts +47 -0
- package/compute/orm/index.js +2 -0
- package/compute/orm/input-types.d.ts +470 -48
- package/compute/orm/models/contentPreset.d.ts +54 -0
- package/{admin/orm/models/appPermission.js → compute/orm/models/contentPreset.js} +27 -27
- package/compute/orm/models/index.d.ts +1 -0
- package/compute/orm/models/index.js +4 -2
- package/compute/orm/mutation/index.d.ts +73 -1
- package/compute/orm/mutation/index.js +108 -0
- package/esm/admin/orm/index.d.ts +58 -34
- package/esm/admin/orm/index.js +40 -16
- package/esm/admin/orm/input-types.d.ts +3824 -943
- package/esm/admin/orm/input-types.js +33 -5
- package/esm/admin/orm/models/appCapability.d.ts +54 -0
- package/esm/admin/orm/models/appCapability.js +100 -0
- package/esm/admin/orm/models/appCapabilityDefault.d.ts +54 -0
- package/esm/admin/orm/models/{appPermissionDefault.js → appCapabilityDefault.js} +25 -25
- package/esm/admin/orm/models/appCapabilityDefaultCapability.d.ts +54 -0
- package/esm/admin/orm/models/{appPermissionDefaultPermission.js → appCapabilityDefaultCapability.js} +25 -25
- package/esm/admin/orm/models/appCapabilityDefaultGrant.d.ts +54 -0
- package/esm/admin/orm/models/{appPermissionDefaultGrant.js → appCapabilityDefaultGrant.js} +25 -25
- package/esm/admin/orm/models/appMembershipProfile.d.ts +54 -0
- package/esm/admin/orm/models/appMembershipProfile.js +100 -0
- package/esm/admin/orm/models/appProfile.d.ts +54 -0
- package/esm/admin/orm/models/appProfile.js +100 -0
- package/esm/admin/orm/models/appProfileCapability.d.ts +54 -0
- package/esm/admin/orm/models/appProfileCapability.js +100 -0
- package/esm/admin/orm/models/appProfileDefinitionGrant.d.ts +54 -0
- package/esm/admin/orm/models/appProfileDefinitionGrant.js +100 -0
- package/esm/admin/orm/models/appProfileGrant.d.ts +54 -0
- package/esm/admin/orm/models/appProfileGrant.js +100 -0
- package/esm/admin/orm/models/appProfileTemplate.d.ts +54 -0
- package/esm/admin/orm/models/appProfileTemplate.js +100 -0
- package/esm/admin/orm/models/index.d.ts +20 -8
- package/esm/admin/orm/models/index.js +20 -8
- package/esm/admin/orm/models/orgCapability.d.ts +54 -0
- package/esm/admin/orm/models/{orgPermission.js → orgCapability.js} +25 -25
- package/esm/admin/orm/models/orgCapabilityDefault.d.ts +54 -0
- package/esm/admin/orm/models/{orgPermissionDefault.js → orgCapabilityDefault.js} +25 -25
- package/esm/admin/orm/models/orgCapabilityDefaultCapability.d.ts +54 -0
- package/esm/admin/orm/models/{orgPermissionDefaultPermission.js → orgCapabilityDefaultCapability.js} +25 -25
- package/esm/admin/orm/models/orgCapabilityDefaultGrant.d.ts +54 -0
- package/esm/admin/orm/models/{orgPermissionDefaultGrant.js → orgCapabilityDefaultGrant.js} +25 -25
- package/esm/admin/orm/models/orgMembershipProfile.d.ts +54 -0
- package/esm/admin/orm/models/orgMembershipProfile.js +100 -0
- package/esm/admin/orm/models/orgProfile.d.ts +54 -0
- package/esm/admin/orm/models/orgProfile.js +100 -0
- package/esm/admin/orm/models/orgProfileCapability.d.ts +54 -0
- package/esm/admin/orm/models/orgProfileCapability.js +100 -0
- package/esm/admin/orm/models/orgProfileDefinitionGrant.d.ts +54 -0
- package/esm/admin/orm/models/orgProfileDefinitionGrant.js +100 -0
- package/esm/admin/orm/models/orgProfileGrant.d.ts +54 -0
- package/esm/admin/orm/models/orgProfileGrant.js +100 -0
- package/esm/admin/orm/models/orgProfileTemplate.d.ts +54 -0
- package/esm/admin/orm/models/orgProfileTemplate.js +100 -0
- package/esm/admin/orm/query/index.d.ts +33 -33
- package/esm/admin/orm/query/index.js +56 -56
- package/esm/api/orm/index.d.ts +33 -21
- package/esm/api/orm/index.js +20 -8
- package/esm/api/orm/input-types.d.ts +2594 -895
- package/esm/api/orm/input-types.js +19 -4
- package/esm/api/orm/models/api.d.ts +54 -0
- package/esm/api/orm/models/{apis.js → api.js} +25 -25
- package/esm/api/orm/models/app.d.ts +54 -0
- package/esm/api/orm/models/app.js +100 -0
- package/esm/api/orm/models/appComponent.d.ts +54 -0
- package/esm/api/orm/models/appComponent.js +100 -0
- package/esm/api/orm/models/emailIdentity.d.ts +54 -0
- package/esm/api/orm/models/emailIdentity.js +100 -0
- package/esm/api/orm/models/emailProviderAccount.d.ts +54 -0
- package/esm/api/orm/models/emailProviderAccount.js +100 -0
- package/esm/api/orm/models/emailSiteIdentity.d.ts +54 -0
- package/esm/api/orm/models/emailSiteIdentity.js +100 -0
- package/esm/api/orm/models/index.d.ts +10 -4
- package/esm/api/orm/models/index.js +10 -4
- package/esm/api/orm/models/platformApi.d.ts +54 -0
- package/esm/api/orm/models/platformApi.js +100 -0
- package/esm/api/orm/models/platformEmailIdentity.d.ts +54 -0
- package/esm/api/orm/models/platformEmailIdentity.js +100 -0
- package/esm/api/orm/models/platformEmailProviderAccount.d.ts +54 -0
- package/esm/api/orm/models/platformEmailProviderAccount.js +100 -0
- package/esm/api/orm/models/platformEmailSiteIdentity.d.ts +54 -0
- package/esm/api/orm/models/platformEmailSiteIdentity.js +100 -0
- package/esm/api/orm/mutation/index.d.ts +22 -22
- package/esm/api/orm/mutation/index.js +30 -30
- package/esm/auth/orm/index.d.ts +10 -0
- package/esm/auth/orm/input-types.d.ts +60 -6
- package/esm/auth/orm/mutation/index.d.ts +17 -1
- package/esm/auth/orm/mutation/index.js +24 -0
- package/esm/compute/orm/index.d.ts +47 -0
- package/esm/compute/orm/index.js +2 -0
- package/esm/compute/orm/input-types.d.ts +470 -48
- package/esm/compute/orm/models/contentPreset.d.ts +54 -0
- package/esm/compute/orm/models/contentPreset.js +100 -0
- package/esm/compute/orm/models/index.d.ts +1 -0
- package/esm/compute/orm/models/index.js +1 -0
- package/esm/compute/orm/mutation/index.d.ts +73 -1
- package/esm/compute/orm/mutation/index.js +108 -0
- package/esm/modules/orm/index.d.ts +16 -50
- package/esm/modules/orm/index.js +16 -5
- package/esm/modules/orm/input-types.d.ts +2317 -774
- package/esm/modules/orm/input-types.js +6 -0
- package/esm/modules/orm/models/capabilitiesModule.d.ts +54 -0
- package/esm/modules/orm/models/capabilitiesModule.js +100 -0
- package/esm/modules/orm/models/contentPresetModule.d.ts +54 -0
- package/esm/modules/orm/models/contentPresetModule.js +100 -0
- package/esm/modules/orm/models/dataCapabilitiesField.d.ts +54 -0
- package/esm/modules/orm/models/dataCapabilitiesField.js +100 -0
- package/esm/modules/orm/models/emailSenderModule.d.ts +54 -0
- package/esm/modules/orm/models/{permissionsModule.js → emailSenderModule.js} +25 -25
- package/esm/modules/orm/models/fileRefField.d.ts +54 -0
- package/esm/modules/orm/models/fileRefField.js +100 -0
- package/esm/modules/orm/models/index.d.ts +8 -1
- package/esm/modules/orm/models/index.js +8 -1
- package/esm/modules/orm/models/oauthRequestsModule.d.ts +54 -0
- package/esm/modules/orm/models/oauthRequestsModule.js +100 -0
- package/esm/modules/orm/models/scopeTypesModule.d.ts +54 -0
- package/esm/modules/orm/models/scopeTypesModule.js +100 -0
- package/esm/modules/orm/models/userSettingsSecurityModule.d.ts +54 -0
- package/esm/modules/orm/models/userSettingsSecurityModule.js +100 -0
- package/esm/modules/orm/mutation/index.d.ts +1 -85
- package/esm/modules/orm/mutation/index.js +0 -84
- package/esm/objects/orm/index.d.ts +15 -0
- package/esm/objects/orm/input-types.d.ts +64 -0
- package/esm/objects/orm/mutation/index.d.ts +25 -1
- package/esm/objects/orm/mutation/index.js +36 -0
- package/esm/usage/orm/index.d.ts +98 -0
- package/esm/usage/orm/index.js +43 -0
- package/esm/usage/orm/input-types.d.ts +3728 -98
- package/esm/usage/orm/input-types.js +10 -0
- package/esm/usage/orm/models/appAchievementReward.d.ts +54 -0
- package/esm/usage/orm/models/appAchievementReward.js +100 -0
- package/esm/usage/orm/models/appEvent.d.ts +56 -0
- package/esm/usage/orm/models/appEvent.js +103 -0
- package/esm/usage/orm/models/appEventAggregate.d.ts +54 -0
- package/esm/usage/orm/models/appEventAggregate.js +100 -0
- package/esm/usage/orm/models/appEventType.d.ts +54 -0
- package/esm/usage/orm/models/appEventType.js +100 -0
- package/esm/usage/orm/models/appLevel.d.ts +54 -0
- package/esm/usage/orm/models/appLevel.js +100 -0
- package/esm/usage/orm/models/appLevelGrant.d.ts +54 -0
- package/esm/{admin/orm/models/appPermission.js → usage/orm/models/appLevelGrant.js} +25 -25
- package/esm/usage/orm/models/appLevelRequirement.d.ts +54 -0
- package/esm/usage/orm/models/appLevelRequirement.js +100 -0
- package/esm/usage/orm/models/billingUsageSummary.d.ts +54 -0
- package/esm/usage/orm/models/billingUsageSummary.js +100 -0
- package/esm/usage/orm/models/index.d.ts +20 -0
- package/esm/usage/orm/models/index.js +20 -0
- package/esm/usage/orm/models/ledger.d.ts +56 -0
- package/esm/usage/orm/models/ledger.js +103 -0
- package/esm/usage/orm/models/meter.d.ts +54 -0
- package/esm/usage/orm/models/meter.js +100 -0
- package/esm/usage/orm/models/meterCredit.d.ts +54 -0
- package/esm/usage/orm/models/meterCredit.js +100 -0
- package/esm/usage/orm/models/meterDefault.d.ts +54 -0
- package/esm/usage/orm/models/meterDefault.js +100 -0
- package/esm/usage/orm/models/meterSource.d.ts +54 -0
- package/esm/usage/orm/models/meterSource.js +100 -0
- package/esm/usage/orm/models/plan.d.ts +54 -0
- package/esm/usage/orm/models/plan.js +100 -0
- package/esm/usage/orm/models/planCap.d.ts +54 -0
- package/esm/usage/orm/models/planCap.js +100 -0
- package/esm/usage/orm/models/planLimit.d.ts +54 -0
- package/esm/usage/orm/models/planLimit.js +100 -0
- package/esm/usage/orm/models/planMeterLimit.d.ts +54 -0
- package/esm/usage/orm/models/planMeterLimit.js +100 -0
- package/esm/usage/orm/models/planOverride.d.ts +54 -0
- package/esm/{api/orm/models/platformApis.js → usage/orm/models/planOverride.js} +25 -25
- package/esm/usage/orm/models/planPricing.d.ts +54 -0
- package/esm/usage/orm/models/planPricing.js +100 -0
- package/esm/usage/orm/models/planSubscription.d.ts +54 -0
- package/esm/usage/orm/models/planSubscription.js +100 -0
- package/esm/usage/orm/mutation/index.d.ts +49 -1
- package/esm/usage/orm/mutation/index.js +72 -0
- package/esm/usage/orm/query/index.d.ts +52 -0
- package/esm/usage/orm/query/index.js +71 -0
- package/modules/orm/index.d.ts +16 -50
- package/modules/orm/index.js +17 -7
- package/modules/orm/input-types.d.ts +2317 -774
- package/modules/orm/input-types.js +6 -0
- package/modules/orm/models/capabilitiesModule.d.ts +54 -0
- package/modules/orm/models/capabilitiesModule.js +104 -0
- package/modules/orm/models/contentPresetModule.d.ts +54 -0
- package/modules/orm/models/contentPresetModule.js +104 -0
- package/modules/orm/models/dataCapabilitiesField.d.ts +54 -0
- package/modules/orm/models/dataCapabilitiesField.js +104 -0
- package/modules/orm/models/emailSenderModule.d.ts +54 -0
- package/modules/orm/models/{permissionsModule.js → emailSenderModule.js} +27 -27
- package/modules/orm/models/fileRefField.d.ts +54 -0
- package/modules/orm/models/fileRefField.js +104 -0
- package/modules/orm/models/index.d.ts +8 -1
- package/modules/orm/models/index.js +18 -4
- package/modules/orm/models/oauthRequestsModule.d.ts +54 -0
- package/modules/orm/models/oauthRequestsModule.js +104 -0
- package/modules/orm/models/scopeTypesModule.d.ts +54 -0
- package/modules/orm/models/scopeTypesModule.js +104 -0
- package/modules/orm/models/userSettingsSecurityModule.d.ts +54 -0
- package/modules/orm/models/userSettingsSecurityModule.js +104 -0
- package/modules/orm/mutation/index.d.ts +1 -85
- package/modules/orm/mutation/index.js +0 -84
- package/objects/orm/index.d.ts +15 -0
- package/objects/orm/input-types.d.ts +64 -0
- package/objects/orm/mutation/index.d.ts +25 -1
- package/objects/orm/mutation/index.js +36 -0
- package/package.json +5 -5
- package/usage/orm/index.d.ts +98 -0
- package/usage/orm/index.js +45 -1
- package/usage/orm/input-types.d.ts +3728 -98
- package/usage/orm/input-types.js +10 -0
- package/usage/orm/models/appAchievementReward.d.ts +54 -0
- package/usage/orm/models/appAchievementReward.js +104 -0
- package/usage/orm/models/appEvent.d.ts +56 -0
- package/usage/orm/models/appEvent.js +107 -0
- package/usage/orm/models/appEventAggregate.d.ts +54 -0
- package/usage/orm/models/appEventAggregate.js +104 -0
- package/usage/orm/models/appEventType.d.ts +54 -0
- package/usage/orm/models/appEventType.js +104 -0
- package/usage/orm/models/appLevel.d.ts +54 -0
- package/usage/orm/models/appLevel.js +104 -0
- package/usage/orm/models/appLevelGrant.d.ts +54 -0
- package/{admin/orm/models/orgPermission.js → usage/orm/models/appLevelGrant.js} +27 -27
- package/usage/orm/models/appLevelRequirement.d.ts +54 -0
- package/usage/orm/models/appLevelRequirement.js +104 -0
- package/usage/orm/models/billingUsageSummary.d.ts +54 -0
- package/usage/orm/models/billingUsageSummary.js +104 -0
- package/usage/orm/models/index.d.ts +20 -0
- package/usage/orm/models/index.js +41 -1
- package/usage/orm/models/ledger.d.ts +56 -0
- package/usage/orm/models/ledger.js +107 -0
- package/usage/orm/models/meter.d.ts +54 -0
- package/usage/orm/models/meter.js +104 -0
- package/usage/orm/models/meterCredit.d.ts +54 -0
- package/usage/orm/models/meterCredit.js +104 -0
- package/usage/orm/models/meterDefault.d.ts +54 -0
- package/usage/orm/models/meterDefault.js +104 -0
- package/usage/orm/models/meterSource.d.ts +54 -0
- package/usage/orm/models/meterSource.js +104 -0
- package/usage/orm/models/plan.d.ts +54 -0
- package/{api/orm/models/apis.js → usage/orm/models/plan.js} +27 -27
- package/usage/orm/models/planCap.d.ts +54 -0
- package/usage/orm/models/planCap.js +104 -0
- package/usage/orm/models/planLimit.d.ts +54 -0
- package/usage/orm/models/planLimit.js +104 -0
- package/usage/orm/models/planMeterLimit.d.ts +54 -0
- package/usage/orm/models/planMeterLimit.js +104 -0
- package/usage/orm/models/planOverride.d.ts +54 -0
- package/usage/orm/models/planOverride.js +104 -0
- package/usage/orm/models/planPricing.d.ts +54 -0
- package/usage/orm/models/planPricing.js +104 -0
- package/usage/orm/models/planSubscription.d.ts +54 -0
- package/usage/orm/models/planSubscription.js +104 -0
- package/usage/orm/mutation/index.d.ts +49 -1
- package/usage/orm/mutation/index.js +72 -0
- package/usage/orm/query/index.d.ts +52 -0
- package/usage/orm/query/index.js +74 -0
- package/admin/orm/models/appPermission.d.ts +0 -54
- package/admin/orm/models/appPermissionDefault.d.ts +0 -54
- package/admin/orm/models/appPermissionDefaultGrant.d.ts +0 -54
- package/admin/orm/models/appPermissionDefaultPermission.d.ts +0 -54
- package/admin/orm/models/orgPermission.d.ts +0 -54
- package/admin/orm/models/orgPermissionDefault.d.ts +0 -54
- package/admin/orm/models/orgPermissionDefaultGrant.d.ts +0 -54
- package/admin/orm/models/orgPermissionDefaultPermission.d.ts +0 -54
- package/api/orm/models/apis.d.ts +0 -54
- package/api/orm/models/astMigration.d.ts +0 -36
- package/api/orm/models/astMigration.js +0 -80
- package/api/orm/models/platformApis.d.ts +0 -54
- package/api/orm/models/sqlAction.d.ts +0 -36
- package/api/orm/models/sqlAction.js +0 -80
- package/esm/admin/orm/models/appPermission.d.ts +0 -54
- package/esm/admin/orm/models/appPermissionDefault.d.ts +0 -54
- package/esm/admin/orm/models/appPermissionDefaultGrant.d.ts +0 -54
- package/esm/admin/orm/models/appPermissionDefaultPermission.d.ts +0 -54
- package/esm/admin/orm/models/orgPermission.d.ts +0 -54
- package/esm/admin/orm/models/orgPermissionDefault.d.ts +0 -54
- package/esm/admin/orm/models/orgPermissionDefaultGrant.d.ts +0 -54
- package/esm/admin/orm/models/orgPermissionDefaultPermission.d.ts +0 -54
- package/esm/api/orm/models/apis.d.ts +0 -54
- package/esm/api/orm/models/astMigration.d.ts +0 -36
- package/esm/api/orm/models/astMigration.js +0 -76
- package/esm/api/orm/models/platformApis.d.ts +0 -54
- package/esm/api/orm/models/sqlAction.d.ts +0 -36
- package/esm/api/orm/models/sqlAction.js +0 -76
- package/esm/modules/orm/models/permissionsModule.d.ts +0 -54
- package/esm/modules/orm/query/index.d.ts +0 -39
- package/esm/modules/orm/query/index.js +0 -54
- package/modules/orm/models/permissionsModule.d.ts +0 -54
- package/modules/orm/query/index.d.ts +0 -39
- package/modules/orm/query/index.js +0 -57
package/admin/orm/query/index.js
CHANGED
|
@@ -5,12 +5,12 @@ const query_builder_1 = require("../query-builder");
|
|
|
5
5
|
const input_types_1 = require("../input-types");
|
|
6
6
|
function createQueryOperations(client) {
|
|
7
7
|
return {
|
|
8
|
-
|
|
8
|
+
appCapabilitiesGetByMask: (args, options) => new query_builder_1.QueryBuilder({
|
|
9
9
|
client,
|
|
10
10
|
operation: 'query',
|
|
11
|
-
operationName: '
|
|
12
|
-
fieldName: '
|
|
13
|
-
...(0, query_builder_1.buildCustomDocument)('query', '
|
|
11
|
+
operationName: 'AppCapabilitiesGetByMask',
|
|
12
|
+
fieldName: 'appCapabilitiesGetByMask',
|
|
13
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'AppCapabilitiesGetByMask', 'appCapabilitiesGetByMask', options?.select, args, [
|
|
14
14
|
{
|
|
15
15
|
name: 'after',
|
|
16
16
|
type: 'Cursor',
|
|
@@ -29,72 +29,48 @@ function createQueryOperations(client) {
|
|
|
29
29
|
},
|
|
30
30
|
], input_types_1.connectionFieldsMap, undefined),
|
|
31
31
|
}),
|
|
32
|
-
|
|
32
|
+
appCapabilitiesGetMask: (args, options) => new query_builder_1.QueryBuilder({
|
|
33
33
|
client,
|
|
34
34
|
operation: 'query',
|
|
35
|
-
operationName: '
|
|
36
|
-
fieldName: '
|
|
37
|
-
...(0, query_builder_1.buildCustomDocument)('query', '
|
|
35
|
+
operationName: 'AppCapabilitiesGetMask',
|
|
36
|
+
fieldName: 'appCapabilitiesGetMask',
|
|
37
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'AppCapabilitiesGetMask', 'appCapabilitiesGetMask', options?.select, args, [
|
|
38
38
|
{
|
|
39
39
|
name: 'ids',
|
|
40
40
|
type: '[UUID]',
|
|
41
41
|
},
|
|
42
42
|
], input_types_1.connectionFieldsMap, undefined),
|
|
43
43
|
}),
|
|
44
|
-
|
|
44
|
+
appCapabilitiesGetMaskByNames: (args, options) => new query_builder_1.QueryBuilder({
|
|
45
45
|
client,
|
|
46
46
|
operation: 'query',
|
|
47
|
-
operationName: '
|
|
48
|
-
fieldName: '
|
|
49
|
-
...(0, query_builder_1.buildCustomDocument)('query', '
|
|
47
|
+
operationName: 'AppCapabilitiesGetMaskByNames',
|
|
48
|
+
fieldName: 'appCapabilitiesGetMaskByNames',
|
|
49
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'AppCapabilitiesGetMaskByNames', 'appCapabilitiesGetMaskByNames', options?.select, args, [
|
|
50
50
|
{
|
|
51
51
|
name: 'names',
|
|
52
52
|
type: '[String]',
|
|
53
53
|
},
|
|
54
54
|
], input_types_1.connectionFieldsMap, undefined),
|
|
55
55
|
}),
|
|
56
|
-
|
|
56
|
+
appCapabilitiesGetPaddedMask: (args, options) => new query_builder_1.QueryBuilder({
|
|
57
57
|
client,
|
|
58
58
|
operation: 'query',
|
|
59
|
-
operationName: '
|
|
60
|
-
fieldName: '
|
|
61
|
-
...(0, query_builder_1.buildCustomDocument)('query', '
|
|
59
|
+
operationName: 'AppCapabilitiesGetPaddedMask',
|
|
60
|
+
fieldName: 'appCapabilitiesGetPaddedMask',
|
|
61
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'AppCapabilitiesGetPaddedMask', 'appCapabilitiesGetPaddedMask', options?.select, args, [
|
|
62
62
|
{
|
|
63
63
|
name: 'mask',
|
|
64
64
|
type: 'BitString',
|
|
65
65
|
},
|
|
66
66
|
], input_types_1.connectionFieldsMap, undefined),
|
|
67
67
|
}),
|
|
68
|
-
|
|
69
|
-
client,
|
|
70
|
-
operation: 'query',
|
|
71
|
-
operationName: 'OrgIsManagerOf',
|
|
72
|
-
fieldName: 'orgIsManagerOf',
|
|
73
|
-
...(0, query_builder_1.buildCustomDocument)('query', 'OrgIsManagerOf', 'orgIsManagerOf', options?.select, args, [
|
|
74
|
-
{
|
|
75
|
-
name: 'managerId',
|
|
76
|
-
type: 'UUID',
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
name: 'maxDepth',
|
|
80
|
-
type: 'Int',
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
name: 'targetEntityId',
|
|
84
|
-
type: 'UUID',
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
name: 'userId',
|
|
88
|
-
type: 'UUID',
|
|
89
|
-
},
|
|
90
|
-
], input_types_1.connectionFieldsMap, undefined),
|
|
91
|
-
}),
|
|
92
|
-
orgPermissionsGetByMask: (args, options) => new query_builder_1.QueryBuilder({
|
|
68
|
+
orgCapabilitiesGetByMask: (args, options) => new query_builder_1.QueryBuilder({
|
|
93
69
|
client,
|
|
94
70
|
operation: 'query',
|
|
95
|
-
operationName: '
|
|
96
|
-
fieldName: '
|
|
97
|
-
...(0, query_builder_1.buildCustomDocument)('query', '
|
|
71
|
+
operationName: 'OrgCapabilitiesGetByMask',
|
|
72
|
+
fieldName: 'orgCapabilitiesGetByMask',
|
|
73
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'OrgCapabilitiesGetByMask', 'orgCapabilitiesGetByMask', options?.select, args, [
|
|
98
74
|
{
|
|
99
75
|
name: 'after',
|
|
100
76
|
type: 'Cursor',
|
|
@@ -113,41 +89,65 @@ function createQueryOperations(client) {
|
|
|
113
89
|
},
|
|
114
90
|
], input_types_1.connectionFieldsMap, undefined),
|
|
115
91
|
}),
|
|
116
|
-
|
|
92
|
+
orgCapabilitiesGetMask: (args, options) => new query_builder_1.QueryBuilder({
|
|
117
93
|
client,
|
|
118
94
|
operation: 'query',
|
|
119
|
-
operationName: '
|
|
120
|
-
fieldName: '
|
|
121
|
-
...(0, query_builder_1.buildCustomDocument)('query', '
|
|
95
|
+
operationName: 'OrgCapabilitiesGetMask',
|
|
96
|
+
fieldName: 'orgCapabilitiesGetMask',
|
|
97
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'OrgCapabilitiesGetMask', 'orgCapabilitiesGetMask', options?.select, args, [
|
|
122
98
|
{
|
|
123
99
|
name: 'ids',
|
|
124
100
|
type: '[UUID]',
|
|
125
101
|
},
|
|
126
102
|
], input_types_1.connectionFieldsMap, undefined),
|
|
127
103
|
}),
|
|
128
|
-
|
|
104
|
+
orgCapabilitiesGetMaskByNames: (args, options) => new query_builder_1.QueryBuilder({
|
|
129
105
|
client,
|
|
130
106
|
operation: 'query',
|
|
131
|
-
operationName: '
|
|
132
|
-
fieldName: '
|
|
133
|
-
...(0, query_builder_1.buildCustomDocument)('query', '
|
|
107
|
+
operationName: 'OrgCapabilitiesGetMaskByNames',
|
|
108
|
+
fieldName: 'orgCapabilitiesGetMaskByNames',
|
|
109
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'OrgCapabilitiesGetMaskByNames', 'orgCapabilitiesGetMaskByNames', options?.select, args, [
|
|
134
110
|
{
|
|
135
111
|
name: 'names',
|
|
136
112
|
type: '[String]',
|
|
137
113
|
},
|
|
138
114
|
], input_types_1.connectionFieldsMap, undefined),
|
|
139
115
|
}),
|
|
140
|
-
|
|
116
|
+
orgCapabilitiesGetPaddedMask: (args, options) => new query_builder_1.QueryBuilder({
|
|
141
117
|
client,
|
|
142
118
|
operation: 'query',
|
|
143
|
-
operationName: '
|
|
144
|
-
fieldName: '
|
|
145
|
-
...(0, query_builder_1.buildCustomDocument)('query', '
|
|
119
|
+
operationName: 'OrgCapabilitiesGetPaddedMask',
|
|
120
|
+
fieldName: 'orgCapabilitiesGetPaddedMask',
|
|
121
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'OrgCapabilitiesGetPaddedMask', 'orgCapabilitiesGetPaddedMask', options?.select, args, [
|
|
146
122
|
{
|
|
147
123
|
name: 'mask',
|
|
148
124
|
type: 'BitString',
|
|
149
125
|
},
|
|
150
126
|
], input_types_1.connectionFieldsMap, undefined),
|
|
151
127
|
}),
|
|
128
|
+
orgIsManagerOf: (args, options) => new query_builder_1.QueryBuilder({
|
|
129
|
+
client,
|
|
130
|
+
operation: 'query',
|
|
131
|
+
operationName: 'OrgIsManagerOf',
|
|
132
|
+
fieldName: 'orgIsManagerOf',
|
|
133
|
+
...(0, query_builder_1.buildCustomDocument)('query', 'OrgIsManagerOf', 'orgIsManagerOf', options?.select, args, [
|
|
134
|
+
{
|
|
135
|
+
name: 'managerId',
|
|
136
|
+
type: 'UUID',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
name: 'maxDepth',
|
|
140
|
+
type: 'Int',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
name: 'targetEntityId',
|
|
144
|
+
type: 'UUID',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
name: 'userId',
|
|
148
|
+
type: 'UUID',
|
|
149
|
+
},
|
|
150
|
+
], input_types_1.connectionFieldsMap, undefined),
|
|
151
|
+
}),
|
|
152
152
|
};
|
|
153
153
|
}
|
package/api/orm/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { OrmClientConfig } from './client';
|
|
2
|
+
import { ApiModel } from './models/api';
|
|
2
3
|
import { ApiSchemaModel } from './models/apiSchema';
|
|
3
4
|
import { ApiSettingModel } from './models/apiSetting';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
5
|
+
import { AppComponentModel } from './models/appComponent';
|
|
6
|
+
import { AppModel } from './models/app';
|
|
6
7
|
import { CheckConstraintModel } from './models/checkConstraint';
|
|
7
8
|
import { CompositeTypeModel } from './models/compositeType';
|
|
8
9
|
import { CorsSettingModel } from './models/corsSetting';
|
|
@@ -15,6 +16,9 @@ import { DomainModel } from './models/domain';
|
|
|
15
16
|
import { DomainEventModel } from './models/domainEvent';
|
|
16
17
|
import { DomainTypeModel } from './models/domainType';
|
|
17
18
|
import { DomainVerificationModel } from './models/domainVerification';
|
|
19
|
+
import { EmailIdentityModel } from './models/emailIdentity';
|
|
20
|
+
import { EmailProviderAccountModel } from './models/emailProviderAccount';
|
|
21
|
+
import { EmailSiteIdentityModel } from './models/emailSiteIdentity';
|
|
18
22
|
import { EmbeddingChunkModel } from './models/embeddingChunk';
|
|
19
23
|
import { EnumModel } from './models/enum';
|
|
20
24
|
import { ExclusionConstraintModel } from './models/exclusionConstraint';
|
|
@@ -31,13 +35,16 @@ import { ManagedDomainModel } from './models/managedDomain';
|
|
|
31
35
|
import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
|
|
32
36
|
import { PageModel } from './models/page';
|
|
33
37
|
import { PartitionModel } from './models/partition';
|
|
38
|
+
import { PlatformApiModel } from './models/platformApi';
|
|
34
39
|
import { PlatformApiSchemaModel } from './models/platformApiSchema';
|
|
35
40
|
import { PlatformApiSettingModel } from './models/platformApiSetting';
|
|
36
|
-
import { PlatformApisModel } from './models/platformApis';
|
|
37
41
|
import { PlatformCorsSettingModel } from './models/platformCorsSetting';
|
|
38
42
|
import { PlatformDomainModel } from './models/platformDomain';
|
|
39
43
|
import { PlatformDomainEventModel } from './models/platformDomainEvent';
|
|
40
44
|
import { PlatformDomainVerificationModel } from './models/platformDomainVerification';
|
|
45
|
+
import { PlatformEmailIdentityModel } from './models/platformEmailIdentity';
|
|
46
|
+
import { PlatformEmailProviderAccountModel } from './models/platformEmailProviderAccount';
|
|
47
|
+
import { PlatformEmailSiteIdentityModel } from './models/platformEmailSiteIdentity';
|
|
41
48
|
import { PlatformManagedDomainModel } from './models/platformManagedDomain';
|
|
42
49
|
import { PlatformPageModel } from './models/platformPage';
|
|
43
50
|
import { PlatformSiteAppLinkModel } from './models/platformSiteAppLink';
|
|
@@ -65,7 +72,6 @@ import { SiteModuleModel } from './models/siteModule';
|
|
|
65
72
|
import { SiteThemeModel } from './models/siteTheme';
|
|
66
73
|
import { SiteWebConfigModel } from './models/siteWebConfig';
|
|
67
74
|
import { SpatialRelationModel } from './models/spatialRelation';
|
|
68
|
-
import { SqlActionModel } from './models/sqlAction';
|
|
69
75
|
import { TableBehaviorModel } from './models/tableBehavior';
|
|
70
76
|
import { TableModel } from './models/table';
|
|
71
77
|
import { TableGrantModel } from './models/tableGrant';
|
|
@@ -110,10 +116,11 @@ export { createMutationOperations } from './mutation';
|
|
|
110
116
|
* ```
|
|
111
117
|
*/
|
|
112
118
|
export declare function createClient(config: OrmClientConfig): {
|
|
119
|
+
api: ApiModel;
|
|
113
120
|
apiSchema: ApiSchemaModel;
|
|
114
121
|
apiSetting: ApiSettingModel;
|
|
115
|
-
|
|
116
|
-
|
|
122
|
+
appComponent: AppComponentModel;
|
|
123
|
+
app: AppModel;
|
|
117
124
|
checkConstraint: CheckConstraintModel;
|
|
118
125
|
compositeType: CompositeTypeModel;
|
|
119
126
|
corsSetting: CorsSettingModel;
|
|
@@ -126,6 +133,9 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
126
133
|
domainEvent: DomainEventModel;
|
|
127
134
|
domainType: DomainTypeModel;
|
|
128
135
|
domainVerification: DomainVerificationModel;
|
|
136
|
+
emailIdentity: EmailIdentityModel;
|
|
137
|
+
emailProviderAccount: EmailProviderAccountModel;
|
|
138
|
+
emailSiteIdentity: EmailSiteIdentityModel;
|
|
129
139
|
embeddingChunk: EmbeddingChunkModel;
|
|
130
140
|
enum: EnumModel;
|
|
131
141
|
exclusionConstraint: ExclusionConstraintModel;
|
|
@@ -142,13 +152,16 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
142
152
|
nodeTypeRegistry: NodeTypeRegistryModel;
|
|
143
153
|
page: PageModel;
|
|
144
154
|
partition: PartitionModel;
|
|
155
|
+
platformApi: PlatformApiModel;
|
|
145
156
|
platformApiSchema: PlatformApiSchemaModel;
|
|
146
157
|
platformApiSetting: PlatformApiSettingModel;
|
|
147
|
-
platformApis: PlatformApisModel;
|
|
148
158
|
platformCorsSetting: PlatformCorsSettingModel;
|
|
149
159
|
platformDomain: PlatformDomainModel;
|
|
150
160
|
platformDomainEvent: PlatformDomainEventModel;
|
|
151
161
|
platformDomainVerification: PlatformDomainVerificationModel;
|
|
162
|
+
platformEmailIdentity: PlatformEmailIdentityModel;
|
|
163
|
+
platformEmailProviderAccount: PlatformEmailProviderAccountModel;
|
|
164
|
+
platformEmailSiteIdentity: PlatformEmailSiteIdentityModel;
|
|
152
165
|
platformManagedDomain: PlatformManagedDomainModel;
|
|
153
166
|
platformPage: PlatformPageModel;
|
|
154
167
|
platformSiteAppLink: PlatformSiteAppLinkModel;
|
|
@@ -176,7 +189,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
176
189
|
siteTheme: SiteThemeModel;
|
|
177
190
|
siteWebConfig: SiteWebConfigModel;
|
|
178
191
|
spatialRelation: SpatialRelationModel;
|
|
179
|
-
sqlAction: SqlActionModel;
|
|
180
192
|
tableBehavior: TableBehaviorModel;
|
|
181
193
|
table: TableModel;
|
|
182
194
|
tableGrant: TableGrantModel;
|
|
@@ -223,20 +235,25 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
223
235
|
}>;
|
|
224
236
|
};
|
|
225
237
|
mutation: {
|
|
226
|
-
acceptDatabaseTransfer: <S extends import("./input-types").AcceptDatabaseTransferPayloadSelect>(args: import("./mutation").AcceptDatabaseTransferVariables, options: {
|
|
227
|
-
select: S;
|
|
228
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").AcceptDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
229
|
-
acceptDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").AcceptDatabaseTransferPayload, S> | null;
|
|
230
|
-
}>;
|
|
231
238
|
applyRls: <S extends import("./input-types").ApplyRlsPayloadSelect>(args: import("./mutation").ApplyRlsVariables, options: {
|
|
232
239
|
select: S;
|
|
233
240
|
} & import("./select-types").StrictSelect<S, import("./input-types").ApplyRlsPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
234
241
|
applyRls: import("./select-types").InferSelectResult<import("./input-types").ApplyRlsPayload, S> | null;
|
|
235
242
|
}>;
|
|
236
|
-
|
|
243
|
+
appsInstallApp: <S extends import("./input-types").AppsInstallAppPayloadSelect>(args: import("./mutation").AppsInstallAppVariables, options: {
|
|
244
|
+
select: S;
|
|
245
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").AppsInstallAppPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
246
|
+
appsInstallApp: import("./select-types").InferSelectResult<import("./input-types").AppsInstallAppPayload, S> | null;
|
|
247
|
+
}>;
|
|
248
|
+
appsUninstallApp: <S extends import("./input-types").AppsUninstallAppPayloadSelect>(args: import("./mutation").AppsUninstallAppVariables, options: {
|
|
237
249
|
select: S;
|
|
238
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").
|
|
239
|
-
|
|
250
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").AppsUninstallAppPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
251
|
+
appsUninstallApp: import("./select-types").InferSelectResult<import("./input-types").AppsUninstallAppPayload, S> | null;
|
|
252
|
+
}>;
|
|
253
|
+
appsUpgradeApp: <S extends import("./input-types").AppsUpgradeAppPayloadSelect>(args: import("./mutation").AppsUpgradeAppVariables, options: {
|
|
254
|
+
select: S;
|
|
255
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").AppsUpgradeAppPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
256
|
+
appsUpgradeApp: import("./select-types").InferSelectResult<import("./input-types").AppsUpgradeAppPayload, S> | null;
|
|
240
257
|
}>;
|
|
241
258
|
domainsAssignSubdomain: <S extends import("./input-types").DomainsAssignSubdomainPayloadSelect>(args: import("./mutation").DomainsAssignSubdomainVariables, options: {
|
|
242
259
|
select: S;
|
|
@@ -258,11 +275,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
258
275
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
259
276
|
provisionBucket: import("./select-types").InferSelectResult<import("./input-types").ProvisionBucketPayload, S> | null;
|
|
260
277
|
}>;
|
|
261
|
-
rejectDatabaseTransfer: <S extends import("./input-types").RejectDatabaseTransferPayloadSelect>(args: import("./mutation").RejectDatabaseTransferVariables, options: {
|
|
262
|
-
select: S;
|
|
263
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").RejectDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
264
|
-
rejectDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").RejectDatabaseTransferPayload, S> | null;
|
|
265
|
-
}>;
|
|
266
278
|
requestDatabase: <S extends import("./input-types").RequestDatabasePayloadSelect>(args: import("./mutation").RequestDatabaseVariables, options: {
|
|
267
279
|
select: S;
|
|
268
280
|
} & import("./select-types").StrictSelect<S, import("./input-types").RequestDatabasePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
package/api/orm/index.js
CHANGED
|
@@ -22,10 +22,11 @@ exports.createClient = createClient;
|
|
|
22
22
|
* DO NOT EDIT - changes will be overwritten
|
|
23
23
|
*/
|
|
24
24
|
const client_1 = require("./client");
|
|
25
|
+
const api_1 = require("./models/api");
|
|
25
26
|
const apiSchema_1 = require("./models/apiSchema");
|
|
26
27
|
const apiSetting_1 = require("./models/apiSetting");
|
|
27
|
-
const
|
|
28
|
-
const
|
|
28
|
+
const appComponent_1 = require("./models/appComponent");
|
|
29
|
+
const app_1 = require("./models/app");
|
|
29
30
|
const checkConstraint_1 = require("./models/checkConstraint");
|
|
30
31
|
const compositeType_1 = require("./models/compositeType");
|
|
31
32
|
const corsSetting_1 = require("./models/corsSetting");
|
|
@@ -38,6 +39,9 @@ const domain_1 = require("./models/domain");
|
|
|
38
39
|
const domainEvent_1 = require("./models/domainEvent");
|
|
39
40
|
const domainType_1 = require("./models/domainType");
|
|
40
41
|
const domainVerification_1 = require("./models/domainVerification");
|
|
42
|
+
const emailIdentity_1 = require("./models/emailIdentity");
|
|
43
|
+
const emailProviderAccount_1 = require("./models/emailProviderAccount");
|
|
44
|
+
const emailSiteIdentity_1 = require("./models/emailSiteIdentity");
|
|
41
45
|
const embeddingChunk_1 = require("./models/embeddingChunk");
|
|
42
46
|
const enum_1 = require("./models/enum");
|
|
43
47
|
const exclusionConstraint_1 = require("./models/exclusionConstraint");
|
|
@@ -54,13 +58,16 @@ const managedDomain_1 = require("./models/managedDomain");
|
|
|
54
58
|
const nodeTypeRegistry_1 = require("./models/nodeTypeRegistry");
|
|
55
59
|
const page_1 = require("./models/page");
|
|
56
60
|
const partition_1 = require("./models/partition");
|
|
61
|
+
const platformApi_1 = require("./models/platformApi");
|
|
57
62
|
const platformApiSchema_1 = require("./models/platformApiSchema");
|
|
58
63
|
const platformApiSetting_1 = require("./models/platformApiSetting");
|
|
59
|
-
const platformApis_1 = require("./models/platformApis");
|
|
60
64
|
const platformCorsSetting_1 = require("./models/platformCorsSetting");
|
|
61
65
|
const platformDomain_1 = require("./models/platformDomain");
|
|
62
66
|
const platformDomainEvent_1 = require("./models/platformDomainEvent");
|
|
63
67
|
const platformDomainVerification_1 = require("./models/platformDomainVerification");
|
|
68
|
+
const platformEmailIdentity_1 = require("./models/platformEmailIdentity");
|
|
69
|
+
const platformEmailProviderAccount_1 = require("./models/platformEmailProviderAccount");
|
|
70
|
+
const platformEmailSiteIdentity_1 = require("./models/platformEmailSiteIdentity");
|
|
64
71
|
const platformManagedDomain_1 = require("./models/platformManagedDomain");
|
|
65
72
|
const platformPage_1 = require("./models/platformPage");
|
|
66
73
|
const platformSiteAppLink_1 = require("./models/platformSiteAppLink");
|
|
@@ -88,7 +95,6 @@ const siteModule_1 = require("./models/siteModule");
|
|
|
88
95
|
const siteTheme_1 = require("./models/siteTheme");
|
|
89
96
|
const siteWebConfig_1 = require("./models/siteWebConfig");
|
|
90
97
|
const spatialRelation_1 = require("./models/spatialRelation");
|
|
91
|
-
const sqlAction_1 = require("./models/sqlAction");
|
|
92
98
|
const tableBehavior_1 = require("./models/tableBehavior");
|
|
93
99
|
const table_1 = require("./models/table");
|
|
94
100
|
const tableGrant_1 = require("./models/tableGrant");
|
|
@@ -141,10 +147,11 @@ Object.defineProperty(exports, "createMutationOperations", { enumerable: true, g
|
|
|
141
147
|
function createClient(config) {
|
|
142
148
|
const client = new client_1.OrmClient(config);
|
|
143
149
|
return {
|
|
150
|
+
api: new api_1.ApiModel(client),
|
|
144
151
|
apiSchema: new apiSchema_1.ApiSchemaModel(client),
|
|
145
152
|
apiSetting: new apiSetting_1.ApiSettingModel(client),
|
|
146
|
-
|
|
147
|
-
|
|
153
|
+
appComponent: new appComponent_1.AppComponentModel(client),
|
|
154
|
+
app: new app_1.AppModel(client),
|
|
148
155
|
checkConstraint: new checkConstraint_1.CheckConstraintModel(client),
|
|
149
156
|
compositeType: new compositeType_1.CompositeTypeModel(client),
|
|
150
157
|
corsSetting: new corsSetting_1.CorsSettingModel(client),
|
|
@@ -157,6 +164,9 @@ function createClient(config) {
|
|
|
157
164
|
domainEvent: new domainEvent_1.DomainEventModel(client),
|
|
158
165
|
domainType: new domainType_1.DomainTypeModel(client),
|
|
159
166
|
domainVerification: new domainVerification_1.DomainVerificationModel(client),
|
|
167
|
+
emailIdentity: new emailIdentity_1.EmailIdentityModel(client),
|
|
168
|
+
emailProviderAccount: new emailProviderAccount_1.EmailProviderAccountModel(client),
|
|
169
|
+
emailSiteIdentity: new emailSiteIdentity_1.EmailSiteIdentityModel(client),
|
|
160
170
|
embeddingChunk: new embeddingChunk_1.EmbeddingChunkModel(client),
|
|
161
171
|
enum: new enum_1.EnumModel(client),
|
|
162
172
|
exclusionConstraint: new exclusionConstraint_1.ExclusionConstraintModel(client),
|
|
@@ -173,13 +183,16 @@ function createClient(config) {
|
|
|
173
183
|
nodeTypeRegistry: new nodeTypeRegistry_1.NodeTypeRegistryModel(client),
|
|
174
184
|
page: new page_1.PageModel(client),
|
|
175
185
|
partition: new partition_1.PartitionModel(client),
|
|
186
|
+
platformApi: new platformApi_1.PlatformApiModel(client),
|
|
176
187
|
platformApiSchema: new platformApiSchema_1.PlatformApiSchemaModel(client),
|
|
177
188
|
platformApiSetting: new platformApiSetting_1.PlatformApiSettingModel(client),
|
|
178
|
-
platformApis: new platformApis_1.PlatformApisModel(client),
|
|
179
189
|
platformCorsSetting: new platformCorsSetting_1.PlatformCorsSettingModel(client),
|
|
180
190
|
platformDomain: new platformDomain_1.PlatformDomainModel(client),
|
|
181
191
|
platformDomainEvent: new platformDomainEvent_1.PlatformDomainEventModel(client),
|
|
182
192
|
platformDomainVerification: new platformDomainVerification_1.PlatformDomainVerificationModel(client),
|
|
193
|
+
platformEmailIdentity: new platformEmailIdentity_1.PlatformEmailIdentityModel(client),
|
|
194
|
+
platformEmailProviderAccount: new platformEmailProviderAccount_1.PlatformEmailProviderAccountModel(client),
|
|
195
|
+
platformEmailSiteIdentity: new platformEmailSiteIdentity_1.PlatformEmailSiteIdentityModel(client),
|
|
183
196
|
platformManagedDomain: new platformManagedDomain_1.PlatformManagedDomainModel(client),
|
|
184
197
|
platformPage: new platformPage_1.PlatformPageModel(client),
|
|
185
198
|
platformSiteAppLink: new platformSiteAppLink_1.PlatformSiteAppLinkModel(client),
|
|
@@ -207,7 +220,6 @@ function createClient(config) {
|
|
|
207
220
|
siteTheme: new siteTheme_1.SiteThemeModel(client),
|
|
208
221
|
siteWebConfig: new siteWebConfig_1.SiteWebConfigModel(client),
|
|
209
222
|
spatialRelation: new spatialRelation_1.SpatialRelationModel(client),
|
|
210
|
-
sqlAction: new sqlAction_1.SqlActionModel(client),
|
|
211
223
|
tableBehavior: new tableBehavior_1.TableBehaviorModel(client),
|
|
212
224
|
table: new table_1.TableModel(client),
|
|
213
225
|
tableGrant: new tableGrant_1.TableGrantModel(client),
|