@constructive-io/sdk 1.11.10 → 1.11.11
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 +2 -2
- 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
|
@@ -232,6 +232,31 @@ export interface UUIDListFilter {
|
|
|
232
232
|
export type Base64EncodedBinary = unknown;
|
|
233
233
|
export type ConstructiveInternalTypeImage = unknown;
|
|
234
234
|
export type ResourceRequirement = unknown;
|
|
235
|
+
/** Seed-content preset catalog (limit defaults, trust ladders, ...) — merkle-versioned head over the infra store */
|
|
236
|
+
export interface ContentPreset {
|
|
237
|
+
/** Whether this preset is selectable at provision time */
|
|
238
|
+
active?: boolean | null;
|
|
239
|
+
/** Infra store commit for the current definition (stamped by the versioned trigger on every write) */
|
|
240
|
+
commitId?: string | null;
|
|
241
|
+
/** Timestamp of preset creation */
|
|
242
|
+
createdAt?: string | null;
|
|
243
|
+
/** The seed document itself, in the shape the kind's seed function takes — the readily-cached head; history lives in the infra store */
|
|
244
|
+
definition?: Record<string, unknown> | null;
|
|
245
|
+
/** Human-readable description of the preset */
|
|
246
|
+
description?: string | null;
|
|
247
|
+
/** Unique preset identifier */
|
|
248
|
+
id: string;
|
|
249
|
+
/** What the definition seeds — the module option that resolves it (limit_defaults, trust_ladder, ...) */
|
|
250
|
+
kind?: string | null;
|
|
251
|
+
/** Human-readable preset name */
|
|
252
|
+
label?: string | null;
|
|
253
|
+
/** Preset slug (unique per kind per scope); the preset's path in the infra tree is [content_preset, kind, slug] */
|
|
254
|
+
slug?: string | null;
|
|
255
|
+
/** Infra Merkle store holding this preset's history (stamped by the versioned trigger) */
|
|
256
|
+
storeId?: string | null;
|
|
257
|
+
/** Timestamp of last modification */
|
|
258
|
+
updatedAt?: string | null;
|
|
259
|
+
}
|
|
235
260
|
/** Database provisioning preset catalog — merkle-versioned head over the infra store */
|
|
236
261
|
export interface DbPreset {
|
|
237
262
|
/** Whether this preset is selectable for new databases */
|
|
@@ -293,7 +318,7 @@ export interface FunctionCapabilityBinding {
|
|
|
293
318
|
}
|
|
294
319
|
/** Function definitions — registered cloud functions with routing, queue, and retry configuration */
|
|
295
320
|
export interface FunctionDefinition {
|
|
296
|
-
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
321
|
+
/** Invocation channels this function may be exposed through (api, graph, cron, sync, page, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
297
322
|
accessChannels?: string[] | null;
|
|
298
323
|
/** Function task category (e.g. email, embed, chunk, custom) */
|
|
299
324
|
category?: string | null;
|
|
@@ -349,12 +374,14 @@ export interface FunctionDefinition {
|
|
|
349
374
|
publishedAt?: string | null;
|
|
350
375
|
/** Job queue name for serialization (e.g. email, ai, default) */
|
|
351
376
|
queueName?: string | null;
|
|
352
|
-
/** Bucket keys this function needs (e.g. uploads, exports). Empty = no bucket requirements. */
|
|
377
|
+
/** Bucket keys this function needs (e.g. uploads, exports). Tenant-agnostic: each key is resolved per invocation against the tenant's buckets by {tags, type}, or by an explicit capability binding row. Empty = no bucket requirements. */
|
|
353
378
|
requiredBuckets?: string[] | null;
|
|
354
379
|
/** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
355
380
|
requiredConfigs?: ResourceRequirement[] | null;
|
|
356
381
|
/** Inference model whitelist (e.g. gpt-4o, claude-3). Empty = no model requirements. */
|
|
357
382
|
requiredModels?: string[] | null;
|
|
383
|
+
/** Modules whose api surfaces this function calls, e.g. notifications_module. Suffix .<api_name> to name which surface when a module's schemas are attached to several (capabilities_module.admin), and @<scope> to pin the registration when a module is registered at more than one scope (limits_module@org) — usually unnecessary, since resolution walks the execution's scope chain. A value that is not a module name is read as an api name. Resolved per invocation; empty = no api requirements. */
|
|
384
|
+
requiredModules?: string[] | null;
|
|
358
385
|
/** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
359
386
|
requiredSecrets?: ResourceRequirement[] | null;
|
|
360
387
|
/** Container resource requests and limits: {requests: {memory, cpu}, limits: {memory, cpu}} */
|
|
@@ -403,6 +430,8 @@ export interface FunctionDeployment {
|
|
|
403
430
|
lastErrorAt?: string | null;
|
|
404
431
|
/** Target namespace for this deployment (maps to a K8s namespace) */
|
|
405
432
|
namespaceId?: string | null;
|
|
433
|
+
/** Config/secret realm this deployment resolves required keys against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane (or a runtime-query worker that fetches per-item realms on demand). */
|
|
434
|
+
realm?: string | null;
|
|
406
435
|
/** K8s resource spec override: {"requests":{"cpu":"100m","memory":"128Mi"},"limits":{...}} */
|
|
407
436
|
resources?: Record<string, unknown> | null;
|
|
408
437
|
/** Deployment revision number (incremented on each redeployment) */
|
|
@@ -908,7 +937,7 @@ export interface PlatformFunctionCapabilityBinding {
|
|
|
908
937
|
}
|
|
909
938
|
/** Function definitions — registered cloud functions with routing, queue, and retry configuration */
|
|
910
939
|
export interface PlatformFunctionDefinition {
|
|
911
|
-
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
940
|
+
/** Invocation channels this function may be exposed through (api, graph, cron, sync, page, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
912
941
|
accessChannels?: string[] | null;
|
|
913
942
|
/** Whether executions are metered through the invocation ledger and billing quota gate */
|
|
914
943
|
billable?: boolean | null;
|
|
@@ -964,12 +993,14 @@ export interface PlatformFunctionDefinition {
|
|
|
964
993
|
publishedAt?: string | null;
|
|
965
994
|
/** Job queue name for serialization (e.g. email, ai, default) */
|
|
966
995
|
queueName?: string | null;
|
|
967
|
-
/** Bucket keys this function needs (e.g. uploads, exports). Empty = no bucket requirements. */
|
|
996
|
+
/** Bucket keys this function needs (e.g. uploads, exports). Tenant-agnostic: each key is resolved per invocation against the tenant's buckets by {tags, type}, or by an explicit capability binding row. Empty = no bucket requirements. */
|
|
968
997
|
requiredBuckets?: string[] | null;
|
|
969
998
|
/** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
970
999
|
requiredConfigs?: ResourceRequirement[] | null;
|
|
971
1000
|
/** Inference model whitelist (e.g. gpt-4o, claude-3). Empty = no model requirements. */
|
|
972
1001
|
requiredModels?: string[] | null;
|
|
1002
|
+
/** Modules whose api surfaces this function calls, e.g. notifications_module. Suffix .<api_name> to name which surface when a module's schemas are attached to several (capabilities_module.admin), and @<scope> to pin the registration when a module is registered at more than one scope (limits_module@org) — usually unnecessary, since resolution walks the execution's scope chain. A value that is not a module name is read as an api name. Resolved per invocation; empty = no api requirements. */
|
|
1003
|
+
requiredModules?: string[] | null;
|
|
973
1004
|
/** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
974
1005
|
requiredSecrets?: ResourceRequirement[] | null;
|
|
975
1006
|
/** Container resource requests and limits: {requests: {memory, cpu}, limits: {memory, cpu}} */
|
|
@@ -1018,6 +1049,8 @@ export interface PlatformFunctionDeployment {
|
|
|
1018
1049
|
lastErrorAt?: string | null;
|
|
1019
1050
|
/** Target namespace for this deployment (maps to a K8s namespace) */
|
|
1020
1051
|
namespaceId?: string | null;
|
|
1052
|
+
/** Config/secret realm this deployment resolves required keys against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane (or a runtime-query worker that fetches per-item realms on demand). */
|
|
1053
|
+
realm?: string | null;
|
|
1021
1054
|
/** K8s resource spec override: {"requests":{"cpu":"100m","memory":"128Mi"},"limits":{...}} */
|
|
1022
1055
|
resources?: Record<string, unknown> | null;
|
|
1023
1056
|
/** Deployment revision number (incremented on each redeployment) */
|
|
@@ -1941,6 +1974,8 @@ export interface PageInfo {
|
|
|
1941
1974
|
startCursor?: string | null;
|
|
1942
1975
|
endCursor?: string | null;
|
|
1943
1976
|
}
|
|
1977
|
+
export interface ContentPresetRelations {
|
|
1978
|
+
}
|
|
1944
1979
|
export interface DbPresetRelations {
|
|
1945
1980
|
}
|
|
1946
1981
|
export interface FunctionApiBindingRelations {
|
|
@@ -2135,6 +2170,7 @@ export interface WebhookEndpointRelations {
|
|
|
2135
2170
|
export interface WebhookEventRelations {
|
|
2136
2171
|
endpoint?: WebhookEndpoint | null;
|
|
2137
2172
|
}
|
|
2173
|
+
export type ContentPresetWithRelations = ContentPreset & ContentPresetRelations;
|
|
2138
2174
|
export type DbPresetWithRelations = DbPreset & DbPresetRelations;
|
|
2139
2175
|
export type FunctionApiBindingWithRelations = FunctionApiBinding & FunctionApiBindingRelations;
|
|
2140
2176
|
export type FunctionCapabilityBindingWithRelations = FunctionCapabilityBinding & FunctionCapabilityBindingRelations;
|
|
@@ -2204,6 +2240,19 @@ export type ResourcesRequirementsStateWithRelations = ResourcesRequirementsState
|
|
|
2204
2240
|
export type ResourcesResolvedRequirementWithRelations = ResourcesResolvedRequirement & ResourcesResolvedRequirementRelations;
|
|
2205
2241
|
export type WebhookEndpointWithRelations = WebhookEndpoint & WebhookEndpointRelations;
|
|
2206
2242
|
export type WebhookEventWithRelations = WebhookEvent & WebhookEventRelations;
|
|
2243
|
+
export type ContentPresetSelect = {
|
|
2244
|
+
active?: boolean;
|
|
2245
|
+
commitId?: boolean;
|
|
2246
|
+
createdAt?: boolean;
|
|
2247
|
+
definition?: boolean;
|
|
2248
|
+
description?: boolean;
|
|
2249
|
+
id?: boolean;
|
|
2250
|
+
kind?: boolean;
|
|
2251
|
+
label?: boolean;
|
|
2252
|
+
slug?: boolean;
|
|
2253
|
+
storeId?: boolean;
|
|
2254
|
+
updatedAt?: boolean;
|
|
2255
|
+
};
|
|
2207
2256
|
export type DbPresetSelect = {
|
|
2208
2257
|
active?: boolean;
|
|
2209
2258
|
commitId?: boolean;
|
|
@@ -2283,6 +2332,7 @@ export type FunctionDefinitionSelect = {
|
|
|
2283
2332
|
requiredBuckets?: boolean;
|
|
2284
2333
|
requiredConfigs?: boolean;
|
|
2285
2334
|
requiredModels?: boolean;
|
|
2335
|
+
requiredModules?: boolean;
|
|
2286
2336
|
requiredSecrets?: boolean;
|
|
2287
2337
|
resources?: boolean;
|
|
2288
2338
|
runtime?: boolean;
|
|
@@ -2327,6 +2377,7 @@ export type FunctionDeploymentSelect = {
|
|
|
2327
2377
|
lastError?: boolean;
|
|
2328
2378
|
lastErrorAt?: boolean;
|
|
2329
2379
|
namespaceId?: boolean;
|
|
2380
|
+
realm?: boolean;
|
|
2330
2381
|
resources?: boolean;
|
|
2331
2382
|
revision?: boolean;
|
|
2332
2383
|
scaleMax?: boolean;
|
|
@@ -2696,6 +2747,7 @@ export type PlatformFunctionDefinitionSelect = {
|
|
|
2696
2747
|
requiredBuckets?: boolean;
|
|
2697
2748
|
requiredConfigs?: boolean;
|
|
2698
2749
|
requiredModels?: boolean;
|
|
2750
|
+
requiredModules?: boolean;
|
|
2699
2751
|
requiredSecrets?: boolean;
|
|
2700
2752
|
resources?: boolean;
|
|
2701
2753
|
runtime?: boolean;
|
|
@@ -2743,6 +2795,7 @@ export type PlatformFunctionDeploymentSelect = {
|
|
|
2743
2795
|
lastError?: boolean;
|
|
2744
2796
|
lastErrorAt?: boolean;
|
|
2745
2797
|
namespaceId?: boolean;
|
|
2798
|
+
realm?: boolean;
|
|
2746
2799
|
resources?: boolean;
|
|
2747
2800
|
revision?: boolean;
|
|
2748
2801
|
scaleMax?: boolean;
|
|
@@ -3470,6 +3523,36 @@ export type WebhookEventSelect = {
|
|
|
3470
3523
|
select: WebhookEndpointSelect;
|
|
3471
3524
|
};
|
|
3472
3525
|
};
|
|
3526
|
+
export interface ContentPresetFilter {
|
|
3527
|
+
/** Filter by the object’s `active` field. */
|
|
3528
|
+
active?: BooleanFilter;
|
|
3529
|
+
/** Checks for all expressions in this list. */
|
|
3530
|
+
and?: ContentPresetFilter[];
|
|
3531
|
+
/** Filter by the object’s `commitId` field. */
|
|
3532
|
+
commitId?: UUIDFilter;
|
|
3533
|
+
/** Filter by the object’s `createdAt` field. */
|
|
3534
|
+
createdAt?: DatetimeFilter;
|
|
3535
|
+
/** Filter by the object’s `definition` field. */
|
|
3536
|
+
definition?: JSONFilter;
|
|
3537
|
+
/** Filter by the object’s `description` field. */
|
|
3538
|
+
description?: StringFilter;
|
|
3539
|
+
/** Filter by the object’s `id` field. */
|
|
3540
|
+
id?: UUIDFilter;
|
|
3541
|
+
/** Filter by the object’s `kind` field. */
|
|
3542
|
+
kind?: StringFilter;
|
|
3543
|
+
/** Filter by the object’s `label` field. */
|
|
3544
|
+
label?: StringFilter;
|
|
3545
|
+
/** Negates the expression. */
|
|
3546
|
+
not?: ContentPresetFilter;
|
|
3547
|
+
/** Checks for any expressions in this list. */
|
|
3548
|
+
or?: ContentPresetFilter[];
|
|
3549
|
+
/** Filter by the object’s `slug` field. */
|
|
3550
|
+
slug?: StringFilter;
|
|
3551
|
+
/** Filter by the object’s `storeId` field. */
|
|
3552
|
+
storeId?: UUIDFilter;
|
|
3553
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
3554
|
+
updatedAt?: DatetimeFilter;
|
|
3555
|
+
}
|
|
3473
3556
|
export interface DbPresetFilter {
|
|
3474
3557
|
/** Filter by the object’s `active` field. */
|
|
3475
3558
|
active?: BooleanFilter;
|
|
@@ -3637,6 +3720,8 @@ export interface FunctionDefinitionFilter {
|
|
|
3637
3720
|
requiredBuckets?: StringListFilter;
|
|
3638
3721
|
/** Filter by the object’s `requiredModels` field. */
|
|
3639
3722
|
requiredModels?: StringListFilter;
|
|
3723
|
+
/** Filter by the object’s `requiredModules` field. */
|
|
3724
|
+
requiredModules?: StringListFilter;
|
|
3640
3725
|
/** Filter by the object’s `resources` field. */
|
|
3641
3726
|
resources?: JSONFilter;
|
|
3642
3727
|
/** Filter by the object’s `runtime` field. */
|
|
@@ -3697,6 +3782,8 @@ export interface FunctionDeploymentFilter {
|
|
|
3697
3782
|
not?: FunctionDeploymentFilter;
|
|
3698
3783
|
/** Checks for any expressions in this list. */
|
|
3699
3784
|
or?: FunctionDeploymentFilter[];
|
|
3785
|
+
/** Filter by the object’s `realm` field. */
|
|
3786
|
+
realm?: StringFilter;
|
|
3700
3787
|
/** Filter by the object’s `resources` field. */
|
|
3701
3788
|
resources?: JSONFilter;
|
|
3702
3789
|
/** Filter by the object’s `revision` field. */
|
|
@@ -4449,6 +4536,8 @@ export interface PlatformFunctionDefinitionFilter {
|
|
|
4449
4536
|
requiredBuckets?: StringListFilter;
|
|
4450
4537
|
/** Filter by the object’s `requiredModels` field. */
|
|
4451
4538
|
requiredModels?: StringListFilter;
|
|
4539
|
+
/** Filter by the object’s `requiredModules` field. */
|
|
4540
|
+
requiredModules?: StringListFilter;
|
|
4452
4541
|
/** Filter by the object’s `resources` field. */
|
|
4453
4542
|
resources?: JSONFilter;
|
|
4454
4543
|
/** Filter by the object’s `runtime` field. */
|
|
@@ -4505,6 +4594,8 @@ export interface PlatformFunctionDeploymentFilter {
|
|
|
4505
4594
|
not?: PlatformFunctionDeploymentFilter;
|
|
4506
4595
|
/** Checks for any expressions in this list. */
|
|
4507
4596
|
or?: PlatformFunctionDeploymentFilter[];
|
|
4597
|
+
/** Filter by the object’s `realm` field. */
|
|
4598
|
+
realm?: StringFilter;
|
|
4508
4599
|
/** Filter by the object’s `resources` field. */
|
|
4509
4600
|
resources?: JSONFilter;
|
|
4510
4601
|
/** Filter by the object’s `revision` field. */
|
|
@@ -5909,11 +6000,12 @@ export interface WebhookEventFilter {
|
|
|
5909
6000
|
/** Filter by the object’s `updatedAt` field. */
|
|
5910
6001
|
updatedAt?: DatetimeFilter;
|
|
5911
6002
|
}
|
|
6003
|
+
export type ContentPresetOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5912
6004
|
export type DbPresetOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'MODULES_HASH_ASC' | 'MODULES_HASH_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5913
6005
|
export type FunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5914
6006
|
export type FunctionCapabilityBindingOrderBy = 'BUCKET_ID_ASC' | 'BUCKET_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FUNCTION_ID_ASC' | 'FUNCTION_ID_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'KEY_ASC' | 'KEY_DESC' | 'LIFECYCLE_ASC' | 'LIFECYCLE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5915
|
-
export type FunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
5916
|
-
export type FunctionDeploymentOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'HANDLER_NAME_ASC' | 'HANDLER_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'IMAGE_VERSION_ASC' | 'IMAGE_VERSION_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_AT_ASC' | 'LAST_ERROR_AT_DESC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SERVICE_NAME_ASC' | 'SERVICE_NAME_DESC' | 'SERVICE_URL_ASC' | 'SERVICE_URL_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
6007
|
+
export type FunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_MODULES_ASC' | 'REQUIRED_MODULES_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
6008
|
+
export type FunctionDeploymentOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'HANDLER_NAME_ASC' | 'HANDLER_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'IMAGE_VERSION_ASC' | 'IMAGE_VERSION_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_AT_ASC' | 'LAST_ERROR_AT_DESC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SERVICE_NAME_ASC' | 'SERVICE_NAME_DESC' | 'SERVICE_URL_ASC' | 'SERVICE_URL_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5917
6009
|
export type FunctionDeploymentEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOYMENT_ID_ASC' | 'DEPLOYMENT_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
5918
6010
|
export type FunctionExecutionLogOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'LOG_LEVEL_ASC' | 'LOG_LEVEL_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
5919
6011
|
export type FunctionGraphCommitOrderBy = 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'NATURAL' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC';
|
|
@@ -5937,8 +6029,8 @@ export type NamespaceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED
|
|
|
5937
6029
|
export type NamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
5938
6030
|
export type PlatformFunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5939
6031
|
export type PlatformFunctionCapabilityBindingOrderBy = 'BUCKET_ID_ASC' | 'BUCKET_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_ID_ASC' | 'FUNCTION_ID_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'KEY_ASC' | 'KEY_DESC' | 'LIFECYCLE_ASC' | 'LIFECYCLE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5940
|
-
export type PlatformFunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'BILLABLE_ASC' | 'BILLABLE_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SYSTEM_ASC' | 'SYSTEM_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
5941
|
-
export type PlatformFunctionDeploymentOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'HANDLER_NAME_ASC' | 'HANDLER_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'IMAGE_VERSION_ASC' | 'IMAGE_VERSION_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_AT_ASC' | 'LAST_ERROR_AT_DESC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SERVICE_NAME_ASC' | 'SERVICE_NAME_DESC' | 'SERVICE_URL_ASC' | 'SERVICE_URL_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
6032
|
+
export type PlatformFunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'BILLABLE_ASC' | 'BILLABLE_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_MODULES_ASC' | 'REQUIRED_MODULES_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SYSTEM_ASC' | 'SYSTEM_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
6033
|
+
export type PlatformFunctionDeploymentOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'HANDLER_NAME_ASC' | 'HANDLER_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'IMAGE_VERSION_ASC' | 'IMAGE_VERSION_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_AT_ASC' | 'LAST_ERROR_AT_DESC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SERVICE_NAME_ASC' | 'SERVICE_NAME_DESC' | 'SERVICE_URL_ASC' | 'SERVICE_URL_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5942
6034
|
export type PlatformFunctionDeploymentEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEPLOYMENT_ID_ASC' | 'DEPLOYMENT_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
5943
6035
|
export type PlatformFunctionExecutionLogOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'LOG_LEVEL_ASC' | 'LOG_LEVEL_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
5944
6036
|
export type PlatformFunctionInvocationAttemptOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ATTEMPT_ASC' | 'ATTEMPT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'ERROR_DETAIL_ASC' | 'ERROR_DETAIL_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_CREATED_AT_ASC' | 'INVOCATION_CREATED_AT_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'SUCCESS_ASC' | 'SUCCESS_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
@@ -5978,6 +6070,38 @@ export type ResourcesRequirementsStateOrderBy = 'CONFIG_HASH_ASC' | 'CONFIG_HASH
|
|
|
5978
6070
|
export type ResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
5979
6071
|
export type WebhookEndpointOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'HOST_ASC' | 'HOST_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REPLAY_WINDOW_SECONDS_ASC' | 'REPLAY_WINDOW_SECONDS_DESC' | 'SIGNING_SECRET_NAME_ASC' | 'SIGNING_SECRET_NAME_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5980
6072
|
export type WebhookEventOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENDPOINT_ID_ASC' | 'ENDPOINT_ID_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'EXTERNAL_EVENT_ID_ASC' | 'EXTERNAL_EVENT_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_CREATED_AT_ASC' | 'INVOCATION_CREATED_AT_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PROVIDER_TIMESTAMP_ASC' | 'PROVIDER_TIMESTAMP_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
6073
|
+
export interface CreateContentPresetInput {
|
|
6074
|
+
clientMutationId?: string;
|
|
6075
|
+
contentPreset: {
|
|
6076
|
+
active?: boolean;
|
|
6077
|
+
commitId?: string;
|
|
6078
|
+
definition: Record<string, unknown>;
|
|
6079
|
+
description?: string;
|
|
6080
|
+
kind: string;
|
|
6081
|
+
label?: string;
|
|
6082
|
+
slug: string;
|
|
6083
|
+
storeId?: string;
|
|
6084
|
+
};
|
|
6085
|
+
}
|
|
6086
|
+
export interface ContentPresetPatch {
|
|
6087
|
+
active?: boolean | null;
|
|
6088
|
+
commitId?: string | null;
|
|
6089
|
+
definition?: Record<string, unknown> | null;
|
|
6090
|
+
description?: string | null;
|
|
6091
|
+
kind?: string | null;
|
|
6092
|
+
label?: string | null;
|
|
6093
|
+
slug?: string | null;
|
|
6094
|
+
storeId?: string | null;
|
|
6095
|
+
}
|
|
6096
|
+
export interface UpdateContentPresetInput {
|
|
6097
|
+
clientMutationId?: string;
|
|
6098
|
+
id: string;
|
|
6099
|
+
contentPresetPatch: ContentPresetPatch;
|
|
6100
|
+
}
|
|
6101
|
+
export interface DeleteContentPresetInput {
|
|
6102
|
+
clientMutationId?: string;
|
|
6103
|
+
id: string;
|
|
6104
|
+
}
|
|
5981
6105
|
export interface CreateDbPresetInput {
|
|
5982
6106
|
clientMutationId?: string;
|
|
5983
6107
|
dbPreset: {
|
|
@@ -6093,6 +6217,7 @@ export interface CreateFunctionDefinitionInput {
|
|
|
6093
6217
|
requiredBuckets?: string[];
|
|
6094
6218
|
requiredConfigs?: ResourceRequirementInput[];
|
|
6095
6219
|
requiredModels?: string[];
|
|
6220
|
+
requiredModules?: string[];
|
|
6096
6221
|
requiredSecrets?: ResourceRequirementInput[];
|
|
6097
6222
|
resources?: Record<string, unknown>;
|
|
6098
6223
|
runtime?: string;
|
|
@@ -6131,6 +6256,7 @@ export interface FunctionDefinitionPatch {
|
|
|
6131
6256
|
requiredBuckets?: string[] | null;
|
|
6132
6257
|
requiredConfigs?: ResourceRequirementInput[] | null;
|
|
6133
6258
|
requiredModels?: string[] | null;
|
|
6259
|
+
requiredModules?: string[] | null;
|
|
6134
6260
|
requiredSecrets?: ResourceRequirementInput[] | null;
|
|
6135
6261
|
resources?: Record<string, unknown> | null;
|
|
6136
6262
|
runtime?: string | null;
|
|
@@ -6164,6 +6290,7 @@ export interface CreateFunctionDeploymentInput {
|
|
|
6164
6290
|
lastError?: string;
|
|
6165
6291
|
lastErrorAt?: string;
|
|
6166
6292
|
namespaceId: string;
|
|
6293
|
+
realm?: string;
|
|
6167
6294
|
resources?: Record<string, unknown>;
|
|
6168
6295
|
revision?: number;
|
|
6169
6296
|
scaleMax?: number;
|
|
@@ -6186,6 +6313,7 @@ export interface FunctionDeploymentPatch {
|
|
|
6186
6313
|
lastError?: string | null;
|
|
6187
6314
|
lastErrorAt?: string | null;
|
|
6188
6315
|
namespaceId?: string | null;
|
|
6316
|
+
realm?: string | null;
|
|
6189
6317
|
resources?: Record<string, unknown> | null;
|
|
6190
6318
|
revision?: number | null;
|
|
6191
6319
|
scaleMax?: number | null;
|
|
@@ -6952,6 +7080,7 @@ export interface CreatePlatformFunctionDefinitionInput {
|
|
|
6952
7080
|
requiredBuckets?: string[];
|
|
6953
7081
|
requiredConfigs?: ResourceRequirementInput[];
|
|
6954
7082
|
requiredModels?: string[];
|
|
7083
|
+
requiredModules?: string[];
|
|
6955
7084
|
requiredSecrets?: ResourceRequirementInput[];
|
|
6956
7085
|
resources?: Record<string, unknown>;
|
|
6957
7086
|
runtime?: string;
|
|
@@ -6991,6 +7120,7 @@ export interface PlatformFunctionDefinitionPatch {
|
|
|
6991
7120
|
requiredBuckets?: string[] | null;
|
|
6992
7121
|
requiredConfigs?: ResourceRequirementInput[] | null;
|
|
6993
7122
|
requiredModels?: string[] | null;
|
|
7123
|
+
requiredModules?: string[] | null;
|
|
6994
7124
|
requiredSecrets?: ResourceRequirementInput[] | null;
|
|
6995
7125
|
resources?: Record<string, unknown> | null;
|
|
6996
7126
|
runtime?: string | null;
|
|
@@ -7024,6 +7154,7 @@ export interface CreatePlatformFunctionDeploymentInput {
|
|
|
7024
7154
|
lastError?: string;
|
|
7025
7155
|
lastErrorAt?: string;
|
|
7026
7156
|
namespaceId: string;
|
|
7157
|
+
realm?: string;
|
|
7027
7158
|
resources?: Record<string, unknown>;
|
|
7028
7159
|
revision?: number;
|
|
7029
7160
|
scaleMax?: number;
|
|
@@ -7045,6 +7176,7 @@ export interface PlatformFunctionDeploymentPatch {
|
|
|
7045
7176
|
lastError?: string | null;
|
|
7046
7177
|
lastErrorAt?: string | null;
|
|
7047
7178
|
namespaceId?: string | null;
|
|
7179
|
+
realm?: string | null;
|
|
7048
7180
|
resources?: Record<string, unknown> | null;
|
|
7049
7181
|
revision?: number | null;
|
|
7050
7182
|
scaleMax?: number | null;
|
|
@@ -8609,6 +8741,26 @@ export interface InfraInsertNodeAtPathInput {
|
|
|
8609
8741
|
root?: string;
|
|
8610
8742
|
sId?: string;
|
|
8611
8743
|
}
|
|
8744
|
+
export interface InfraInsertNodesAtPathsInput {
|
|
8745
|
+
clientMutationId?: string;
|
|
8746
|
+
datas?: Record<string, unknown>[];
|
|
8747
|
+
kidsList?: Record<string, unknown>;
|
|
8748
|
+
ktreeList?: Record<string, unknown>;
|
|
8749
|
+
paths?: Record<string, unknown>;
|
|
8750
|
+
root?: string;
|
|
8751
|
+
sId?: string;
|
|
8752
|
+
}
|
|
8753
|
+
export interface InfraSetAndCommitInput {
|
|
8754
|
+
clientMutationId?: string;
|
|
8755
|
+
data?: Record<string, unknown>;
|
|
8756
|
+
kids?: string[];
|
|
8757
|
+
ktree?: string[];
|
|
8758
|
+
message?: string;
|
|
8759
|
+
path?: string[];
|
|
8760
|
+
refname?: string;
|
|
8761
|
+
sId?: string;
|
|
8762
|
+
storeId?: string;
|
|
8763
|
+
}
|
|
8612
8764
|
export interface InfraSetDataAtPathInput {
|
|
8613
8765
|
clientMutationId?: string;
|
|
8614
8766
|
data?: Record<string, unknown>;
|
|
@@ -8616,6 +8768,14 @@ export interface InfraSetDataAtPathInput {
|
|
|
8616
8768
|
root?: string;
|
|
8617
8769
|
sId?: string;
|
|
8618
8770
|
}
|
|
8771
|
+
export interface InfraSetManyAndCommitInput {
|
|
8772
|
+
clientMutationId?: string;
|
|
8773
|
+
entries?: Record<string, unknown>;
|
|
8774
|
+
message?: string;
|
|
8775
|
+
refname?: string;
|
|
8776
|
+
sId?: string;
|
|
8777
|
+
storeId?: string;
|
|
8778
|
+
}
|
|
8619
8779
|
export interface InitEmptyRepoInput {
|
|
8620
8780
|
clientMutationId?: string;
|
|
8621
8781
|
sId?: string;
|
|
@@ -8630,6 +8790,15 @@ export interface InsertNodeAtPathInput {
|
|
|
8630
8790
|
root?: string;
|
|
8631
8791
|
sId?: string;
|
|
8632
8792
|
}
|
|
8793
|
+
export interface InsertNodesAtPathsInput {
|
|
8794
|
+
clientMutationId?: string;
|
|
8795
|
+
datas?: Record<string, unknown>[];
|
|
8796
|
+
kidsList?: Record<string, unknown>;
|
|
8797
|
+
ktreeList?: Record<string, unknown>;
|
|
8798
|
+
paths?: Record<string, unknown>;
|
|
8799
|
+
root?: string;
|
|
8800
|
+
sId?: string;
|
|
8801
|
+
}
|
|
8633
8802
|
export interface PlatformInfraInitEmptyRepoInput {
|
|
8634
8803
|
clientMutationId?: string;
|
|
8635
8804
|
sId?: string;
|
|
@@ -8644,6 +8813,26 @@ export interface PlatformInfraInsertNodeAtPathInput {
|
|
|
8644
8813
|
root?: string;
|
|
8645
8814
|
sId?: string;
|
|
8646
8815
|
}
|
|
8816
|
+
export interface PlatformInfraInsertNodesAtPathsInput {
|
|
8817
|
+
clientMutationId?: string;
|
|
8818
|
+
datas?: Record<string, unknown>[];
|
|
8819
|
+
kidsList?: Record<string, unknown>;
|
|
8820
|
+
ktreeList?: Record<string, unknown>;
|
|
8821
|
+
paths?: Record<string, unknown>;
|
|
8822
|
+
root?: string;
|
|
8823
|
+
sId?: string;
|
|
8824
|
+
}
|
|
8825
|
+
export interface PlatformInfraSetAndCommitInput {
|
|
8826
|
+
clientMutationId?: string;
|
|
8827
|
+
data?: Record<string, unknown>;
|
|
8828
|
+
kids?: string[];
|
|
8829
|
+
ktree?: string[];
|
|
8830
|
+
message?: string;
|
|
8831
|
+
path?: string[];
|
|
8832
|
+
refname?: string;
|
|
8833
|
+
sId?: string;
|
|
8834
|
+
storeId?: string;
|
|
8835
|
+
}
|
|
8647
8836
|
export interface PlatformInfraSetDataAtPathInput {
|
|
8648
8837
|
clientMutationId?: string;
|
|
8649
8838
|
data?: Record<string, unknown>;
|
|
@@ -8651,6 +8840,14 @@ export interface PlatformInfraSetDataAtPathInput {
|
|
|
8651
8840
|
root?: string;
|
|
8652
8841
|
sId?: string;
|
|
8653
8842
|
}
|
|
8843
|
+
export interface PlatformInfraSetManyAndCommitInput {
|
|
8844
|
+
clientMutationId?: string;
|
|
8845
|
+
entries?: Record<string, unknown>;
|
|
8846
|
+
message?: string;
|
|
8847
|
+
refname?: string;
|
|
8848
|
+
sId?: string;
|
|
8849
|
+
storeId?: string;
|
|
8850
|
+
}
|
|
8654
8851
|
export interface PlatformResourceInstallationsInstallInput {
|
|
8655
8852
|
clientMutationId?: string;
|
|
8656
8853
|
definitionIds?: string[];
|
|
@@ -8710,6 +8907,17 @@ export interface SaveGraphInput {
|
|
|
8710
8907
|
message?: string;
|
|
8711
8908
|
rootHash?: string;
|
|
8712
8909
|
}
|
|
8910
|
+
export interface SetAndCommitInput {
|
|
8911
|
+
clientMutationId?: string;
|
|
8912
|
+
data?: Record<string, unknown>;
|
|
8913
|
+
kids?: string[];
|
|
8914
|
+
ktree?: string[];
|
|
8915
|
+
message?: string;
|
|
8916
|
+
path?: string[];
|
|
8917
|
+
refname?: string;
|
|
8918
|
+
sId?: string;
|
|
8919
|
+
storeId?: string;
|
|
8920
|
+
}
|
|
8713
8921
|
export interface SetDataAtPathInput {
|
|
8714
8922
|
clientMutationId?: string;
|
|
8715
8923
|
data?: Record<string, unknown>;
|
|
@@ -8717,6 +8925,14 @@ export interface SetDataAtPathInput {
|
|
|
8717
8925
|
root?: string;
|
|
8718
8926
|
sId?: string;
|
|
8719
8927
|
}
|
|
8928
|
+
export interface SetManyAndCommitInput {
|
|
8929
|
+
clientMutationId?: string;
|
|
8930
|
+
entries?: Record<string, unknown>;
|
|
8931
|
+
message?: string;
|
|
8932
|
+
refname?: string;
|
|
8933
|
+
sId?: string;
|
|
8934
|
+
storeId?: string;
|
|
8935
|
+
}
|
|
8720
8936
|
export interface StartExecutionInput {
|
|
8721
8937
|
clientMutationId?: string;
|
|
8722
8938
|
graphId?: string;
|
|
@@ -9063,6 +9279,31 @@ export interface WebhookEndpointToManyWebhookEventFilter {
|
|
|
9063
9279
|
/** Filters to entities where at least one related entity matches. */
|
|
9064
9280
|
some?: WebhookEventFilter;
|
|
9065
9281
|
}
|
|
9282
|
+
/** An input for mutations affecting `ContentPreset` */
|
|
9283
|
+
export interface ContentPresetInput {
|
|
9284
|
+
/** Whether this preset is selectable at provision time */
|
|
9285
|
+
active?: boolean;
|
|
9286
|
+
/** Infra store commit for the current definition (stamped by the versioned trigger on every write) */
|
|
9287
|
+
commitId?: string;
|
|
9288
|
+
/** Timestamp of preset creation */
|
|
9289
|
+
createdAt?: string;
|
|
9290
|
+
/** The seed document itself, in the shape the kind's seed function takes — the readily-cached head; history lives in the infra store */
|
|
9291
|
+
definition: Record<string, unknown>;
|
|
9292
|
+
/** Human-readable description of the preset */
|
|
9293
|
+
description?: string;
|
|
9294
|
+
/** Unique preset identifier */
|
|
9295
|
+
id?: string;
|
|
9296
|
+
/** What the definition seeds — the module option that resolves it (limit_defaults, trust_ladder, ...) */
|
|
9297
|
+
kind: string;
|
|
9298
|
+
/** Human-readable preset name */
|
|
9299
|
+
label?: string;
|
|
9300
|
+
/** Preset slug (unique per kind per scope); the preset's path in the infra tree is [content_preset, kind, slug] */
|
|
9301
|
+
slug: string;
|
|
9302
|
+
/** Infra Merkle store holding this preset's history (stamped by the versioned trigger) */
|
|
9303
|
+
storeId?: string;
|
|
9304
|
+
/** Timestamp of last modification */
|
|
9305
|
+
updatedAt?: string;
|
|
9306
|
+
}
|
|
9066
9307
|
/** An input for mutations affecting `DbPreset` */
|
|
9067
9308
|
export interface DbPresetInput {
|
|
9068
9309
|
/** Whether this preset is selectable for new databases */
|
|
@@ -9124,7 +9365,7 @@ export interface FunctionCapabilityBindingInput {
|
|
|
9124
9365
|
}
|
|
9125
9366
|
/** An input for mutations affecting `FunctionDefinition` */
|
|
9126
9367
|
export interface FunctionDefinitionInput {
|
|
9127
|
-
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
9368
|
+
/** Invocation channels this function may be exposed through (api, graph, cron, sync, page, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
9128
9369
|
accessChannels?: string[];
|
|
9129
9370
|
/** Function task category (e.g. email, embed, chunk, custom) */
|
|
9130
9371
|
category: string;
|
|
@@ -9172,12 +9413,14 @@ export interface FunctionDefinitionInput {
|
|
|
9172
9413
|
publishedAt?: string;
|
|
9173
9414
|
/** Job queue name for serialization (e.g. email, ai, default) */
|
|
9174
9415
|
queueName?: string;
|
|
9175
|
-
/** Bucket keys this function needs (e.g. uploads, exports). Empty = no bucket requirements. */
|
|
9416
|
+
/** Bucket keys this function needs (e.g. uploads, exports). Tenant-agnostic: each key is resolved per invocation against the tenant's buckets by {tags, type}, or by an explicit capability binding row. Empty = no bucket requirements. */
|
|
9176
9417
|
requiredBuckets?: string[];
|
|
9177
9418
|
/** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
9178
9419
|
requiredConfigs?: ResourceRequirementInput[];
|
|
9179
9420
|
/** Inference model whitelist (e.g. gpt-4o, claude-3). Empty = no model requirements. */
|
|
9180
9421
|
requiredModels?: string[];
|
|
9422
|
+
/** Modules whose api surfaces this function calls, e.g. notifications_module. Suffix .<api_name> to name which surface when a module's schemas are attached to several (capabilities_module.admin), and @<scope> to pin the registration when a module is registered at more than one scope (limits_module@org) — usually unnecessary, since resolution walks the execution's scope chain. A value that is not a module name is read as an api name. Resolved per invocation; empty = no api requirements. */
|
|
9423
|
+
requiredModules?: string[];
|
|
9181
9424
|
/** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
9182
9425
|
requiredSecrets?: ResourceRequirementInput[];
|
|
9183
9426
|
/** Container resource requests and limits: {requests: {memory, cpu}, limits: {memory, cpu}} */
|
|
@@ -9230,6 +9473,8 @@ export interface FunctionDeploymentInput {
|
|
|
9230
9473
|
lastErrorAt?: string;
|
|
9231
9474
|
/** Target namespace for this deployment (maps to a K8s namespace) */
|
|
9232
9475
|
namespaceId: string;
|
|
9476
|
+
/** Config/secret realm this deployment resolves required keys against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane (or a runtime-query worker that fetches per-item realms on demand). */
|
|
9477
|
+
realm?: string;
|
|
9233
9478
|
/** K8s resource spec override: {"requests":{"cpu":"100m","memory":"128Mi"},"limits":{...}} */
|
|
9234
9479
|
resources?: Record<string, unknown>;
|
|
9235
9480
|
/** Deployment revision number (incremented on each redeployment) */
|
|
@@ -9700,7 +9945,7 @@ export interface PlatformFunctionCapabilityBindingInput {
|
|
|
9700
9945
|
}
|
|
9701
9946
|
/** An input for mutations affecting `PlatformFunctionDefinition` */
|
|
9702
9947
|
export interface PlatformFunctionDefinitionInput {
|
|
9703
|
-
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
9948
|
+
/** Invocation channels this function may be exposed through (api, graph, cron, sync, page, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
9704
9949
|
accessChannels?: string[];
|
|
9705
9950
|
/** Whether executions are metered through the invocation ledger and billing quota gate */
|
|
9706
9951
|
billable?: boolean;
|
|
@@ -9748,12 +9993,14 @@ export interface PlatformFunctionDefinitionInput {
|
|
|
9748
9993
|
publishedAt?: string;
|
|
9749
9994
|
/** Job queue name for serialization (e.g. email, ai, default) */
|
|
9750
9995
|
queueName?: string;
|
|
9751
|
-
/** Bucket keys this function needs (e.g. uploads, exports). Empty = no bucket requirements. */
|
|
9996
|
+
/** Bucket keys this function needs (e.g. uploads, exports). Tenant-agnostic: each key is resolved per invocation against the tenant's buckets by {tags, type}, or by an explicit capability binding row. Empty = no bucket requirements. */
|
|
9752
9997
|
requiredBuckets?: string[];
|
|
9753
9998
|
/** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
9754
9999
|
requiredConfigs?: ResourceRequirementInput[];
|
|
9755
10000
|
/** Inference model whitelist (e.g. gpt-4o, claude-3). Empty = no model requirements. */
|
|
9756
10001
|
requiredModels?: string[];
|
|
10002
|
+
/** Modules whose api surfaces this function calls, e.g. notifications_module. Suffix .<api_name> to name which surface when a module's schemas are attached to several (capabilities_module.admin), and @<scope> to pin the registration when a module is registered at more than one scope (limits_module@org) — usually unnecessary, since resolution walks the execution's scope chain. A value that is not a module name is read as an api name. Resolved per invocation; empty = no api requirements. */
|
|
10003
|
+
requiredModules?: string[];
|
|
9757
10004
|
/** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
9758
10005
|
requiredSecrets?: ResourceRequirementInput[];
|
|
9759
10006
|
/** Container resource requests and limits: {requests: {memory, cpu}, limits: {memory, cpu}} */
|
|
@@ -9800,6 +10047,8 @@ export interface PlatformFunctionDeploymentInput {
|
|
|
9800
10047
|
lastErrorAt?: string;
|
|
9801
10048
|
/** Target namespace for this deployment (maps to a K8s namespace) */
|
|
9802
10049
|
namespaceId: string;
|
|
10050
|
+
/** Config/secret realm this deployment resolves required keys against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane (or a runtime-query worker that fetches per-item realms on demand). */
|
|
10051
|
+
realm?: string;
|
|
9803
10052
|
/** K8s resource spec override: {"requests":{"cpu":"100m","memory":"128Mi"},"limits":{...}} */
|
|
9804
10053
|
resources?: Record<string, unknown>;
|
|
9805
10054
|
/** Deployment revision number (incremented on each redeployment) */
|
|
@@ -10837,6 +11086,8 @@ export interface PlatformFunctionDefinitionFilter {
|
|
|
10837
11086
|
requiredBuckets?: StringListFilter;
|
|
10838
11087
|
/** Filter by the object’s `requiredModels` field. */
|
|
10839
11088
|
requiredModels?: StringListFilter;
|
|
11089
|
+
/** Filter by the object’s `requiredModules` field. */
|
|
11090
|
+
requiredModules?: StringListFilter;
|
|
10840
11091
|
/** Filter by the object’s `resources` field. */
|
|
10841
11092
|
resources?: JSONFilter;
|
|
10842
11093
|
/** Filter by the object’s `runtime` field. */
|
|
@@ -10896,6 +11147,8 @@ export interface FunctionDeploymentFilter {
|
|
|
10896
11147
|
not?: FunctionDeploymentFilter;
|
|
10897
11148
|
/** Checks for any expressions in this list. */
|
|
10898
11149
|
or?: FunctionDeploymentFilter[];
|
|
11150
|
+
/** Filter by the object’s `realm` field. */
|
|
11151
|
+
realm?: StringFilter;
|
|
10899
11152
|
/** Filter by the object’s `resources` field. */
|
|
10900
11153
|
resources?: JSONFilter;
|
|
10901
11154
|
/** Filter by the object’s `revision` field. */
|
|
@@ -11278,6 +11531,8 @@ export interface PlatformFunctionDeploymentFilter {
|
|
|
11278
11531
|
not?: PlatformFunctionDeploymentFilter;
|
|
11279
11532
|
/** Checks for any expressions in this list. */
|
|
11280
11533
|
or?: PlatformFunctionDeploymentFilter[];
|
|
11534
|
+
/** Filter by the object’s `realm` field. */
|
|
11535
|
+
realm?: StringFilter;
|
|
11281
11536
|
/** Filter by the object’s `resources` field. */
|
|
11282
11537
|
resources?: JSONFilter;
|
|
11283
11538
|
/** Filter by the object’s `revision` field. */
|
|
@@ -11878,6 +12133,8 @@ export interface FunctionDefinitionFilter {
|
|
|
11878
12133
|
requiredBuckets?: StringListFilter;
|
|
11879
12134
|
/** Filter by the object’s `requiredModels` field. */
|
|
11880
12135
|
requiredModels?: StringListFilter;
|
|
12136
|
+
/** Filter by the object’s `requiredModules` field. */
|
|
12137
|
+
requiredModules?: StringListFilter;
|
|
11881
12138
|
/** Filter by the object’s `resources` field. */
|
|
11882
12139
|
resources?: JSONFilter;
|
|
11883
12140
|
/** Filter by the object’s `runtime` field. */
|
|
@@ -12184,6 +12441,28 @@ export type InfraInsertNodeAtPathPayloadSelect = {
|
|
|
12184
12441
|
clientMutationId?: boolean;
|
|
12185
12442
|
result?: boolean;
|
|
12186
12443
|
};
|
|
12444
|
+
export interface InfraInsertNodesAtPathsPayload {
|
|
12445
|
+
clientMutationId?: string | null;
|
|
12446
|
+
result?: string | null;
|
|
12447
|
+
}
|
|
12448
|
+
export type InfraInsertNodesAtPathsPayloadSelect = {
|
|
12449
|
+
clientMutationId?: boolean;
|
|
12450
|
+
result?: boolean;
|
|
12451
|
+
};
|
|
12452
|
+
export interface InfraSetAndCommitPayload {
|
|
12453
|
+
clientMutationId?: string | null;
|
|
12454
|
+
infraCommitEdge?: InfraCommitEdge | null;
|
|
12455
|
+
result?: InfraCommit | null;
|
|
12456
|
+
}
|
|
12457
|
+
export type InfraSetAndCommitPayloadSelect = {
|
|
12458
|
+
clientMutationId?: boolean;
|
|
12459
|
+
infraCommitEdge?: {
|
|
12460
|
+
select: InfraCommitEdgeSelect;
|
|
12461
|
+
};
|
|
12462
|
+
result?: {
|
|
12463
|
+
select: InfraCommitSelect;
|
|
12464
|
+
};
|
|
12465
|
+
};
|
|
12187
12466
|
export interface InfraSetDataAtPathPayload {
|
|
12188
12467
|
clientMutationId?: string | null;
|
|
12189
12468
|
result?: string | null;
|
|
@@ -12192,6 +12471,20 @@ export type InfraSetDataAtPathPayloadSelect = {
|
|
|
12192
12471
|
clientMutationId?: boolean;
|
|
12193
12472
|
result?: boolean;
|
|
12194
12473
|
};
|
|
12474
|
+
export interface InfraSetManyAndCommitPayload {
|
|
12475
|
+
clientMutationId?: string | null;
|
|
12476
|
+
infraCommitEdge?: InfraCommitEdge | null;
|
|
12477
|
+
result?: InfraCommit | null;
|
|
12478
|
+
}
|
|
12479
|
+
export type InfraSetManyAndCommitPayloadSelect = {
|
|
12480
|
+
clientMutationId?: boolean;
|
|
12481
|
+
infraCommitEdge?: {
|
|
12482
|
+
select: InfraCommitEdgeSelect;
|
|
12483
|
+
};
|
|
12484
|
+
result?: {
|
|
12485
|
+
select: InfraCommitSelect;
|
|
12486
|
+
};
|
|
12487
|
+
};
|
|
12195
12488
|
export interface InitEmptyRepoPayload {
|
|
12196
12489
|
clientMutationId?: string | null;
|
|
12197
12490
|
}
|
|
@@ -12206,6 +12499,14 @@ export type InsertNodeAtPathPayloadSelect = {
|
|
|
12206
12499
|
clientMutationId?: boolean;
|
|
12207
12500
|
result?: boolean;
|
|
12208
12501
|
};
|
|
12502
|
+
export interface InsertNodesAtPathsPayload {
|
|
12503
|
+
clientMutationId?: string | null;
|
|
12504
|
+
result?: string | null;
|
|
12505
|
+
}
|
|
12506
|
+
export type InsertNodesAtPathsPayloadSelect = {
|
|
12507
|
+
clientMutationId?: boolean;
|
|
12508
|
+
result?: boolean;
|
|
12509
|
+
};
|
|
12209
12510
|
export interface PlatformInfraInitEmptyRepoPayload {
|
|
12210
12511
|
clientMutationId?: string | null;
|
|
12211
12512
|
}
|
|
@@ -12220,6 +12521,28 @@ export type PlatformInfraInsertNodeAtPathPayloadSelect = {
|
|
|
12220
12521
|
clientMutationId?: boolean;
|
|
12221
12522
|
result?: boolean;
|
|
12222
12523
|
};
|
|
12524
|
+
export interface PlatformInfraInsertNodesAtPathsPayload {
|
|
12525
|
+
clientMutationId?: string | null;
|
|
12526
|
+
result?: string | null;
|
|
12527
|
+
}
|
|
12528
|
+
export type PlatformInfraInsertNodesAtPathsPayloadSelect = {
|
|
12529
|
+
clientMutationId?: boolean;
|
|
12530
|
+
result?: boolean;
|
|
12531
|
+
};
|
|
12532
|
+
export interface PlatformInfraSetAndCommitPayload {
|
|
12533
|
+
clientMutationId?: string | null;
|
|
12534
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
12535
|
+
result?: PlatformInfraCommit | null;
|
|
12536
|
+
}
|
|
12537
|
+
export type PlatformInfraSetAndCommitPayloadSelect = {
|
|
12538
|
+
clientMutationId?: boolean;
|
|
12539
|
+
platformInfraCommitEdge?: {
|
|
12540
|
+
select: PlatformInfraCommitEdgeSelect;
|
|
12541
|
+
};
|
|
12542
|
+
result?: {
|
|
12543
|
+
select: PlatformInfraCommitSelect;
|
|
12544
|
+
};
|
|
12545
|
+
};
|
|
12223
12546
|
export interface PlatformInfraSetDataAtPathPayload {
|
|
12224
12547
|
clientMutationId?: string | null;
|
|
12225
12548
|
result?: string | null;
|
|
@@ -12228,6 +12551,20 @@ export type PlatformInfraSetDataAtPathPayloadSelect = {
|
|
|
12228
12551
|
clientMutationId?: boolean;
|
|
12229
12552
|
result?: boolean;
|
|
12230
12553
|
};
|
|
12554
|
+
export interface PlatformInfraSetManyAndCommitPayload {
|
|
12555
|
+
clientMutationId?: string | null;
|
|
12556
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
12557
|
+
result?: PlatformInfraCommit | null;
|
|
12558
|
+
}
|
|
12559
|
+
export type PlatformInfraSetManyAndCommitPayloadSelect = {
|
|
12560
|
+
clientMutationId?: boolean;
|
|
12561
|
+
platformInfraCommitEdge?: {
|
|
12562
|
+
select: PlatformInfraCommitEdgeSelect;
|
|
12563
|
+
};
|
|
12564
|
+
result?: {
|
|
12565
|
+
select: PlatformInfraCommitSelect;
|
|
12566
|
+
};
|
|
12567
|
+
};
|
|
12231
12568
|
export interface PlatformResourceInstallationsInstallPayload {
|
|
12232
12569
|
clientMutationId?: string | null;
|
|
12233
12570
|
result?: string | null;
|
|
@@ -12310,6 +12647,20 @@ export type SaveGraphPayloadSelect = {
|
|
|
12310
12647
|
clientMutationId?: boolean;
|
|
12311
12648
|
result?: boolean;
|
|
12312
12649
|
};
|
|
12650
|
+
export interface SetAndCommitPayload {
|
|
12651
|
+
clientMutationId?: string | null;
|
|
12652
|
+
functionGraphCommitEdge?: FunctionGraphCommitEdge | null;
|
|
12653
|
+
result?: FunctionGraphCommit | null;
|
|
12654
|
+
}
|
|
12655
|
+
export type SetAndCommitPayloadSelect = {
|
|
12656
|
+
clientMutationId?: boolean;
|
|
12657
|
+
functionGraphCommitEdge?: {
|
|
12658
|
+
select: FunctionGraphCommitEdgeSelect;
|
|
12659
|
+
};
|
|
12660
|
+
result?: {
|
|
12661
|
+
select: FunctionGraphCommitSelect;
|
|
12662
|
+
};
|
|
12663
|
+
};
|
|
12313
12664
|
export interface SetDataAtPathPayload {
|
|
12314
12665
|
clientMutationId?: string | null;
|
|
12315
12666
|
result?: string | null;
|
|
@@ -12318,6 +12669,20 @@ export type SetDataAtPathPayloadSelect = {
|
|
|
12318
12669
|
clientMutationId?: boolean;
|
|
12319
12670
|
result?: boolean;
|
|
12320
12671
|
};
|
|
12672
|
+
export interface SetManyAndCommitPayload {
|
|
12673
|
+
clientMutationId?: string | null;
|
|
12674
|
+
functionGraphCommitEdge?: FunctionGraphCommitEdge | null;
|
|
12675
|
+
result?: FunctionGraphCommit | null;
|
|
12676
|
+
}
|
|
12677
|
+
export type SetManyAndCommitPayloadSelect = {
|
|
12678
|
+
clientMutationId?: boolean;
|
|
12679
|
+
functionGraphCommitEdge?: {
|
|
12680
|
+
select: FunctionGraphCommitEdgeSelect;
|
|
12681
|
+
};
|
|
12682
|
+
result?: {
|
|
12683
|
+
select: FunctionGraphCommitSelect;
|
|
12684
|
+
};
|
|
12685
|
+
};
|
|
12321
12686
|
export interface StartExecutionPayload {
|
|
12322
12687
|
clientMutationId?: string | null;
|
|
12323
12688
|
result?: string | null;
|
|
@@ -12334,6 +12699,51 @@ export type ValidateFunctionGraphPayloadSelect = {
|
|
|
12334
12699
|
clientMutationId?: boolean;
|
|
12335
12700
|
result?: boolean;
|
|
12336
12701
|
};
|
|
12702
|
+
export interface CreateContentPresetPayload {
|
|
12703
|
+
clientMutationId?: string | null;
|
|
12704
|
+
/** The `ContentPreset` that was created by this mutation. */
|
|
12705
|
+
contentPreset?: ContentPreset | null;
|
|
12706
|
+
contentPresetEdge?: ContentPresetEdge | null;
|
|
12707
|
+
}
|
|
12708
|
+
export type CreateContentPresetPayloadSelect = {
|
|
12709
|
+
clientMutationId?: boolean;
|
|
12710
|
+
contentPreset?: {
|
|
12711
|
+
select: ContentPresetSelect;
|
|
12712
|
+
};
|
|
12713
|
+
contentPresetEdge?: {
|
|
12714
|
+
select: ContentPresetEdgeSelect;
|
|
12715
|
+
};
|
|
12716
|
+
};
|
|
12717
|
+
export interface UpdateContentPresetPayload {
|
|
12718
|
+
clientMutationId?: string | null;
|
|
12719
|
+
/** The `ContentPreset` that was updated by this mutation. */
|
|
12720
|
+
contentPreset?: ContentPreset | null;
|
|
12721
|
+
contentPresetEdge?: ContentPresetEdge | null;
|
|
12722
|
+
}
|
|
12723
|
+
export type UpdateContentPresetPayloadSelect = {
|
|
12724
|
+
clientMutationId?: boolean;
|
|
12725
|
+
contentPreset?: {
|
|
12726
|
+
select: ContentPresetSelect;
|
|
12727
|
+
};
|
|
12728
|
+
contentPresetEdge?: {
|
|
12729
|
+
select: ContentPresetEdgeSelect;
|
|
12730
|
+
};
|
|
12731
|
+
};
|
|
12732
|
+
export interface DeleteContentPresetPayload {
|
|
12733
|
+
clientMutationId?: string | null;
|
|
12734
|
+
/** The `ContentPreset` that was deleted by this mutation. */
|
|
12735
|
+
contentPreset?: ContentPreset | null;
|
|
12736
|
+
contentPresetEdge?: ContentPresetEdge | null;
|
|
12737
|
+
}
|
|
12738
|
+
export type DeleteContentPresetPayloadSelect = {
|
|
12739
|
+
clientMutationId?: boolean;
|
|
12740
|
+
contentPreset?: {
|
|
12741
|
+
select: ContentPresetSelect;
|
|
12742
|
+
};
|
|
12743
|
+
contentPresetEdge?: {
|
|
12744
|
+
select: ContentPresetEdgeSelect;
|
|
12745
|
+
};
|
|
12746
|
+
};
|
|
12337
12747
|
export interface CreateDbPresetPayload {
|
|
12338
12748
|
clientMutationId?: string | null;
|
|
12339
12749
|
/** The `DbPreset` that was created by this mutation. */
|
|
@@ -14847,6 +15257,54 @@ export type DeleteWebhookEventPayloadSelect = {
|
|
|
14847
15257
|
select: WebhookEventEdgeSelect;
|
|
14848
15258
|
};
|
|
14849
15259
|
};
|
|
15260
|
+
/** A `InfraCommit` edge in the connection. */
|
|
15261
|
+
export interface InfraCommitEdge {
|
|
15262
|
+
cursor?: string | null;
|
|
15263
|
+
/** The `InfraCommit` at the end of the edge. */
|
|
15264
|
+
node?: InfraCommit | null;
|
|
15265
|
+
}
|
|
15266
|
+
export type InfraCommitEdgeSelect = {
|
|
15267
|
+
cursor?: boolean;
|
|
15268
|
+
node?: {
|
|
15269
|
+
select: InfraCommitSelect;
|
|
15270
|
+
};
|
|
15271
|
+
};
|
|
15272
|
+
/** A `PlatformInfraCommit` edge in the connection. */
|
|
15273
|
+
export interface PlatformInfraCommitEdge {
|
|
15274
|
+
cursor?: string | null;
|
|
15275
|
+
/** The `PlatformInfraCommit` at the end of the edge. */
|
|
15276
|
+
node?: PlatformInfraCommit | null;
|
|
15277
|
+
}
|
|
15278
|
+
export type PlatformInfraCommitEdgeSelect = {
|
|
15279
|
+
cursor?: boolean;
|
|
15280
|
+
node?: {
|
|
15281
|
+
select: PlatformInfraCommitSelect;
|
|
15282
|
+
};
|
|
15283
|
+
};
|
|
15284
|
+
/** A `FunctionGraphCommit` edge in the connection. */
|
|
15285
|
+
export interface FunctionGraphCommitEdge {
|
|
15286
|
+
cursor?: string | null;
|
|
15287
|
+
/** The `FunctionGraphCommit` at the end of the edge. */
|
|
15288
|
+
node?: FunctionGraphCommit | null;
|
|
15289
|
+
}
|
|
15290
|
+
export type FunctionGraphCommitEdgeSelect = {
|
|
15291
|
+
cursor?: boolean;
|
|
15292
|
+
node?: {
|
|
15293
|
+
select: FunctionGraphCommitSelect;
|
|
15294
|
+
};
|
|
15295
|
+
};
|
|
15296
|
+
/** A `ContentPreset` edge in the connection. */
|
|
15297
|
+
export interface ContentPresetEdge {
|
|
15298
|
+
cursor?: string | null;
|
|
15299
|
+
/** The `ContentPreset` at the end of the edge. */
|
|
15300
|
+
node?: ContentPreset | null;
|
|
15301
|
+
}
|
|
15302
|
+
export type ContentPresetEdgeSelect = {
|
|
15303
|
+
cursor?: boolean;
|
|
15304
|
+
node?: {
|
|
15305
|
+
select: ContentPresetSelect;
|
|
15306
|
+
};
|
|
15307
|
+
};
|
|
14850
15308
|
/** A `DbPreset` edge in the connection. */
|
|
14851
15309
|
export interface DbPresetEdge {
|
|
14852
15310
|
cursor?: string | null;
|
|
@@ -14931,18 +15389,6 @@ export type FunctionExecutionLogEdgeSelect = {
|
|
|
14931
15389
|
select: FunctionExecutionLogSelect;
|
|
14932
15390
|
};
|
|
14933
15391
|
};
|
|
14934
|
-
/** A `FunctionGraphCommit` edge in the connection. */
|
|
14935
|
-
export interface FunctionGraphCommitEdge {
|
|
14936
|
-
cursor?: string | null;
|
|
14937
|
-
/** The `FunctionGraphCommit` at the end of the edge. */
|
|
14938
|
-
node?: FunctionGraphCommit | null;
|
|
14939
|
-
}
|
|
14940
|
-
export type FunctionGraphCommitEdgeSelect = {
|
|
14941
|
-
cursor?: boolean;
|
|
14942
|
-
node?: {
|
|
14943
|
-
select: FunctionGraphCommitSelect;
|
|
14944
|
-
};
|
|
14945
|
-
};
|
|
14946
15392
|
/** A `FunctionGraph` edge in the connection. */
|
|
14947
15393
|
export interface FunctionGraphEdge {
|
|
14948
15394
|
cursor?: string | null;
|
|
@@ -15051,18 +15497,6 @@ export type FunctionInvocationEdgeSelect = {
|
|
|
15051
15497
|
select: FunctionInvocationSelect;
|
|
15052
15498
|
};
|
|
15053
15499
|
};
|
|
15054
|
-
/** A `InfraCommit` edge in the connection. */
|
|
15055
|
-
export interface InfraCommitEdge {
|
|
15056
|
-
cursor?: string | null;
|
|
15057
|
-
/** The `InfraCommit` at the end of the edge. */
|
|
15058
|
-
node?: InfraCommit | null;
|
|
15059
|
-
}
|
|
15060
|
-
export type InfraCommitEdgeSelect = {
|
|
15061
|
-
cursor?: boolean;
|
|
15062
|
-
node?: {
|
|
15063
|
-
select: InfraCommitSelect;
|
|
15064
|
-
};
|
|
15065
|
-
};
|
|
15066
15500
|
/** A `InfraObject` edge in the connection. */
|
|
15067
15501
|
export interface InfraObjectEdge {
|
|
15068
15502
|
cursor?: string | null;
|
|
@@ -15231,18 +15665,6 @@ export type PlatformFunctionInvocationEdgeSelect = {
|
|
|
15231
15665
|
select: PlatformFunctionInvocationSelect;
|
|
15232
15666
|
};
|
|
15233
15667
|
};
|
|
15234
|
-
/** A `PlatformInfraCommit` edge in the connection. */
|
|
15235
|
-
export interface PlatformInfraCommitEdge {
|
|
15236
|
-
cursor?: string | null;
|
|
15237
|
-
/** The `PlatformInfraCommit` at the end of the edge. */
|
|
15238
|
-
node?: PlatformInfraCommit | null;
|
|
15239
|
-
}
|
|
15240
|
-
export type PlatformInfraCommitEdgeSelect = {
|
|
15241
|
-
cursor?: boolean;
|
|
15242
|
-
node?: {
|
|
15243
|
-
select: PlatformInfraCommitSelect;
|
|
15244
|
-
};
|
|
15245
|
-
};
|
|
15246
15668
|
/** A `PlatformInfraObject` edge in the connection. */
|
|
15247
15669
|
export interface PlatformInfraObjectEdge {
|
|
15248
15670
|
cursor?: string | null;
|