@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
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ContentPreset model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { ContentPresetWithRelations, ContentPresetSelect, ContentPresetFilter, ContentPresetOrderBy, CreateContentPresetInput, ContentPresetPatch } from '../input-types';
|
|
10
|
+
export declare class ContentPresetModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends ContentPresetSelect>(args: FindManyArgs<S, ContentPresetFilter, ContentPresetOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
|
|
16
|
+
contentPresets: ConnectionResult<InferSelectResult<ContentPresetWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends ContentPresetSelect>(args: FindFirstArgs<S, ContentPresetFilter, ContentPresetOrderBy> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
|
|
21
|
+
contentPreset: InferSelectResult<ContentPresetWithRelations, S> | null;
|
|
22
|
+
}>;
|
|
23
|
+
findOne<S extends ContentPresetSelect>(args: {
|
|
24
|
+
id: string;
|
|
25
|
+
select: S;
|
|
26
|
+
} & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
|
|
27
|
+
contentPreset: InferSelectResult<ContentPresetWithRelations, S> | null;
|
|
28
|
+
}>;
|
|
29
|
+
create<S extends ContentPresetSelect>(args: CreateArgs<S, CreateContentPresetInput['contentPreset']> & {
|
|
30
|
+
select: S;
|
|
31
|
+
} & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
|
|
32
|
+
createContentPreset: {
|
|
33
|
+
contentPreset: InferSelectResult<ContentPresetWithRelations, S>;
|
|
34
|
+
};
|
|
35
|
+
}>;
|
|
36
|
+
update<S extends ContentPresetSelect>(args: UpdateArgs<S, {
|
|
37
|
+
id: string;
|
|
38
|
+
}, ContentPresetPatch> & {
|
|
39
|
+
select: S;
|
|
40
|
+
} & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
|
|
41
|
+
updateContentPreset: {
|
|
42
|
+
contentPreset: InferSelectResult<ContentPresetWithRelations, S>;
|
|
43
|
+
};
|
|
44
|
+
}>;
|
|
45
|
+
delete<S extends ContentPresetSelect>(args: DeleteArgs<{
|
|
46
|
+
id: string;
|
|
47
|
+
}, S> & {
|
|
48
|
+
select: S;
|
|
49
|
+
} & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
|
|
50
|
+
deleteContentPreset: {
|
|
51
|
+
contentPreset: InferSelectResult<ContentPresetWithRelations, S>;
|
|
52
|
+
};
|
|
53
|
+
}>;
|
|
54
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
|
|
2
|
+
import { connectionFieldsMap } from '../input-types';
|
|
3
|
+
export class ContentPresetModel {
|
|
4
|
+
client;
|
|
5
|
+
constructor(client) {
|
|
6
|
+
this.client = client;
|
|
7
|
+
}
|
|
8
|
+
findMany(args) {
|
|
9
|
+
const { document, variables } = buildFindManyDocument('ContentPreset', 'contentPresets', args.select, {
|
|
10
|
+
where: args?.where,
|
|
11
|
+
orderBy: args?.orderBy,
|
|
12
|
+
first: args?.first,
|
|
13
|
+
last: args?.last,
|
|
14
|
+
after: args?.after,
|
|
15
|
+
before: args?.before,
|
|
16
|
+
offset: args?.offset,
|
|
17
|
+
}, 'ContentPresetFilter', 'ContentPresetOrderBy', connectionFieldsMap);
|
|
18
|
+
return new QueryBuilder({
|
|
19
|
+
client: this.client,
|
|
20
|
+
operation: 'query',
|
|
21
|
+
operationName: 'ContentPreset',
|
|
22
|
+
fieldName: 'contentPresets',
|
|
23
|
+
document,
|
|
24
|
+
variables,
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
findFirst(args) {
|
|
28
|
+
const { document, variables } = buildFindFirstDocument('ContentPreset', 'contentPresets', args.select, {
|
|
29
|
+
where: args?.where,
|
|
30
|
+
orderBy: args?.orderBy,
|
|
31
|
+
}, 'ContentPresetFilter', 'ContentPresetOrderBy', connectionFieldsMap);
|
|
32
|
+
return new QueryBuilder({
|
|
33
|
+
client: this.client,
|
|
34
|
+
operation: 'query',
|
|
35
|
+
operationName: 'ContentPreset',
|
|
36
|
+
fieldName: 'contentPreset',
|
|
37
|
+
document,
|
|
38
|
+
variables,
|
|
39
|
+
transform: (data) => ({
|
|
40
|
+
contentPreset: data.contentPresets?.nodes?.[0] ?? null,
|
|
41
|
+
}),
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
findOne(args) {
|
|
45
|
+
const { document, variables } = buildFindManyDocument('ContentPreset', 'contentPresets', args.select, {
|
|
46
|
+
where: {
|
|
47
|
+
id: {
|
|
48
|
+
equalTo: args.id,
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
first: 1,
|
|
52
|
+
}, 'ContentPresetFilter', 'ContentPresetOrderBy', connectionFieldsMap);
|
|
53
|
+
return new QueryBuilder({
|
|
54
|
+
client: this.client,
|
|
55
|
+
operation: 'query',
|
|
56
|
+
operationName: 'ContentPreset',
|
|
57
|
+
fieldName: 'contentPreset',
|
|
58
|
+
document,
|
|
59
|
+
variables,
|
|
60
|
+
transform: (data) => ({
|
|
61
|
+
contentPreset: data.contentPresets?.nodes?.[0] ?? null,
|
|
62
|
+
}),
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
create(args) {
|
|
66
|
+
const { document, variables } = buildCreateDocument('ContentPreset', 'createContentPreset', 'contentPreset', args.select, args.data, 'CreateContentPresetInput', connectionFieldsMap);
|
|
67
|
+
return new QueryBuilder({
|
|
68
|
+
client: this.client,
|
|
69
|
+
operation: 'mutation',
|
|
70
|
+
operationName: 'ContentPreset',
|
|
71
|
+
fieldName: 'createContentPreset',
|
|
72
|
+
document,
|
|
73
|
+
variables,
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
update(args) {
|
|
77
|
+
const { document, variables } = buildUpdateByPkDocument('ContentPreset', 'updateContentPreset', 'contentPreset', args.select, args.where.id, args.data, 'UpdateContentPresetInput', 'id', 'contentPresetPatch', connectionFieldsMap, undefined);
|
|
78
|
+
return new QueryBuilder({
|
|
79
|
+
client: this.client,
|
|
80
|
+
operation: 'mutation',
|
|
81
|
+
operationName: 'ContentPreset',
|
|
82
|
+
fieldName: 'updateContentPreset',
|
|
83
|
+
document,
|
|
84
|
+
variables,
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
delete(args) {
|
|
88
|
+
const { document, variables } = buildDeleteByPkDocument('ContentPreset', 'deleteContentPreset', 'contentPreset', {
|
|
89
|
+
id: args.where.id,
|
|
90
|
+
}, 'DeleteContentPresetInput', args.select, connectionFieldsMap);
|
|
91
|
+
return new QueryBuilder({
|
|
92
|
+
client: this.client,
|
|
93
|
+
operation: 'mutation',
|
|
94
|
+
operationName: 'ContentPreset',
|
|
95
|
+
fieldName: 'deleteContentPreset',
|
|
96
|
+
document,
|
|
97
|
+
variables,
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
+
export { ContentPresetModel } from './contentPreset';
|
|
6
7
|
export { DbPresetModel } from './dbPreset';
|
|
7
8
|
export { FunctionApiBindingModel } from './functionApiBinding';
|
|
8
9
|
export { FunctionCapabilityBindingModel } from './functionCapabilityBinding';
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
+
export { ContentPresetModel } from './contentPreset';
|
|
6
7
|
export { DbPresetModel } from './dbPreset';
|
|
7
8
|
export { FunctionApiBindingModel } from './functionApiBinding';
|
|
8
9
|
export { FunctionCapabilityBindingModel } from './functionCapabilityBinding';
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { OrmClient } from '../client';
|
|
7
7
|
import { QueryBuilder } from '../query-builder';
|
|
8
8
|
import type { InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type { AddEdgeInput, AddEdgeAndSaveInput, AddNodeInput, AddNodeAndSaveInput, CopyGraphInput, ImportDefinitionsInput, ImportGraphJsonInput, InfraInitEmptyRepoInput, InfraInsertNodeAtPathInput, InfraSetDataAtPathInput, InitEmptyRepoInput, InsertNodeAtPathInput, PlatformInfraInitEmptyRepoInput, PlatformInfraInsertNodeAtPathInput, PlatformInfraSetDataAtPathInput, PlatformResourceInstallationsInstallInput, PlatformResourceInstallationsRollbackInput, PlatformResourceInstallationsUninstallInput, PlatformResourceInstallationsUpgradeInput, ProvisionBucketInput, ResourceInstallationsInstallInput, ResourceInstallationsRollbackInput, ResourceInstallationsUninstallInput, ResourceInstallationsUpgradeInput, SaveGraphInput, SetDataAtPathInput, StartExecutionInput, ValidateFunctionGraphInput, AddEdgePayload, AddEdgeAndSavePayload, AddNodePayload, AddNodeAndSavePayload, CopyGraphPayload, ImportDefinitionsPayload, ImportGraphJsonPayload, InfraInitEmptyRepoPayload, InfraInsertNodeAtPathPayload, InfraSetDataAtPathPayload, InitEmptyRepoPayload, InsertNodeAtPathPayload, PlatformInfraInitEmptyRepoPayload, PlatformInfraInsertNodeAtPathPayload, PlatformInfraSetDataAtPathPayload, PlatformResourceInstallationsInstallPayload, PlatformResourceInstallationsRollbackPayload, PlatformResourceInstallationsUninstallPayload, PlatformResourceInstallationsUpgradePayload, ProvisionBucketPayload, ResourceInstallationsInstallPayload, ResourceInstallationsRollbackPayload, ResourceInstallationsUninstallPayload, ResourceInstallationsUpgradePayload, SaveGraphPayload, SetDataAtPathPayload, StartExecutionPayload, ValidateFunctionGraphPayload, AddEdgePayloadSelect, AddEdgeAndSavePayloadSelect, AddNodePayloadSelect, AddNodeAndSavePayloadSelect, CopyGraphPayloadSelect, ImportDefinitionsPayloadSelect, ImportGraphJsonPayloadSelect, InfraInitEmptyRepoPayloadSelect, InfraInsertNodeAtPathPayloadSelect, InfraSetDataAtPathPayloadSelect, InitEmptyRepoPayloadSelect, InsertNodeAtPathPayloadSelect, PlatformInfraInitEmptyRepoPayloadSelect, PlatformInfraInsertNodeAtPathPayloadSelect, PlatformInfraSetDataAtPathPayloadSelect, PlatformResourceInstallationsInstallPayloadSelect, PlatformResourceInstallationsRollbackPayloadSelect, PlatformResourceInstallationsUninstallPayloadSelect, PlatformResourceInstallationsUpgradePayloadSelect, ProvisionBucketPayloadSelect, ResourceInstallationsInstallPayloadSelect, ResourceInstallationsRollbackPayloadSelect, ResourceInstallationsUninstallPayloadSelect, ResourceInstallationsUpgradePayloadSelect, SaveGraphPayloadSelect, SetDataAtPathPayloadSelect, StartExecutionPayloadSelect, ValidateFunctionGraphPayloadSelect } from '../input-types';
|
|
9
|
+
import type { AddEdgeInput, AddEdgeAndSaveInput, AddNodeInput, AddNodeAndSaveInput, CopyGraphInput, ImportDefinitionsInput, ImportGraphJsonInput, InfraInitEmptyRepoInput, InfraInsertNodeAtPathInput, InfraInsertNodesAtPathsInput, InfraSetAndCommitInput, InfraSetDataAtPathInput, InfraSetManyAndCommitInput, InitEmptyRepoInput, InsertNodeAtPathInput, InsertNodesAtPathsInput, PlatformInfraInitEmptyRepoInput, PlatformInfraInsertNodeAtPathInput, PlatformInfraInsertNodesAtPathsInput, PlatformInfraSetAndCommitInput, PlatformInfraSetDataAtPathInput, PlatformInfraSetManyAndCommitInput, PlatformResourceInstallationsInstallInput, PlatformResourceInstallationsRollbackInput, PlatformResourceInstallationsUninstallInput, PlatformResourceInstallationsUpgradeInput, ProvisionBucketInput, ResourceInstallationsInstallInput, ResourceInstallationsRollbackInput, ResourceInstallationsUninstallInput, ResourceInstallationsUpgradeInput, SaveGraphInput, SetAndCommitInput, SetDataAtPathInput, SetManyAndCommitInput, StartExecutionInput, ValidateFunctionGraphInput, AddEdgePayload, AddEdgeAndSavePayload, AddNodePayload, AddNodeAndSavePayload, CopyGraphPayload, ImportDefinitionsPayload, ImportGraphJsonPayload, InfraInitEmptyRepoPayload, InfraInsertNodeAtPathPayload, InfraInsertNodesAtPathsPayload, InfraSetAndCommitPayload, InfraSetDataAtPathPayload, InfraSetManyAndCommitPayload, InitEmptyRepoPayload, InsertNodeAtPathPayload, InsertNodesAtPathsPayload, PlatformInfraInitEmptyRepoPayload, PlatformInfraInsertNodeAtPathPayload, PlatformInfraInsertNodesAtPathsPayload, PlatformInfraSetAndCommitPayload, PlatformInfraSetDataAtPathPayload, PlatformInfraSetManyAndCommitPayload, PlatformResourceInstallationsInstallPayload, PlatformResourceInstallationsRollbackPayload, PlatformResourceInstallationsUninstallPayload, PlatformResourceInstallationsUpgradePayload, ProvisionBucketPayload, ResourceInstallationsInstallPayload, ResourceInstallationsRollbackPayload, ResourceInstallationsUninstallPayload, ResourceInstallationsUpgradePayload, SaveGraphPayload, SetAndCommitPayload, SetDataAtPathPayload, SetManyAndCommitPayload, StartExecutionPayload, ValidateFunctionGraphPayload, AddEdgePayloadSelect, AddEdgeAndSavePayloadSelect, AddNodePayloadSelect, AddNodeAndSavePayloadSelect, CopyGraphPayloadSelect, ImportDefinitionsPayloadSelect, ImportGraphJsonPayloadSelect, InfraInitEmptyRepoPayloadSelect, InfraInsertNodeAtPathPayloadSelect, InfraInsertNodesAtPathsPayloadSelect, InfraSetAndCommitPayloadSelect, InfraSetDataAtPathPayloadSelect, InfraSetManyAndCommitPayloadSelect, InitEmptyRepoPayloadSelect, InsertNodeAtPathPayloadSelect, InsertNodesAtPathsPayloadSelect, PlatformInfraInitEmptyRepoPayloadSelect, PlatformInfraInsertNodeAtPathPayloadSelect, PlatformInfraInsertNodesAtPathsPayloadSelect, PlatformInfraSetAndCommitPayloadSelect, PlatformInfraSetDataAtPathPayloadSelect, PlatformInfraSetManyAndCommitPayloadSelect, PlatformResourceInstallationsInstallPayloadSelect, PlatformResourceInstallationsRollbackPayloadSelect, PlatformResourceInstallationsUninstallPayloadSelect, PlatformResourceInstallationsUpgradePayloadSelect, ProvisionBucketPayloadSelect, ResourceInstallationsInstallPayloadSelect, ResourceInstallationsRollbackPayloadSelect, ResourceInstallationsUninstallPayloadSelect, ResourceInstallationsUpgradePayloadSelect, SaveGraphPayloadSelect, SetAndCommitPayloadSelect, SetDataAtPathPayloadSelect, SetManyAndCommitPayloadSelect, StartExecutionPayloadSelect, ValidateFunctionGraphPayloadSelect } from '../input-types';
|
|
10
10
|
export interface AddEdgeVariables {
|
|
11
11
|
input: AddEdgeInput;
|
|
12
12
|
}
|
|
@@ -34,24 +34,45 @@ export interface InfraInitEmptyRepoVariables {
|
|
|
34
34
|
export interface InfraInsertNodeAtPathVariables {
|
|
35
35
|
input: InfraInsertNodeAtPathInput;
|
|
36
36
|
}
|
|
37
|
+
export interface InfraInsertNodesAtPathsVariables {
|
|
38
|
+
input: InfraInsertNodesAtPathsInput;
|
|
39
|
+
}
|
|
40
|
+
export interface InfraSetAndCommitVariables {
|
|
41
|
+
input: InfraSetAndCommitInput;
|
|
42
|
+
}
|
|
37
43
|
export interface InfraSetDataAtPathVariables {
|
|
38
44
|
input: InfraSetDataAtPathInput;
|
|
39
45
|
}
|
|
46
|
+
export interface InfraSetManyAndCommitVariables {
|
|
47
|
+
input: InfraSetManyAndCommitInput;
|
|
48
|
+
}
|
|
40
49
|
export interface InitEmptyRepoVariables {
|
|
41
50
|
input: InitEmptyRepoInput;
|
|
42
51
|
}
|
|
43
52
|
export interface InsertNodeAtPathVariables {
|
|
44
53
|
input: InsertNodeAtPathInput;
|
|
45
54
|
}
|
|
55
|
+
export interface InsertNodesAtPathsVariables {
|
|
56
|
+
input: InsertNodesAtPathsInput;
|
|
57
|
+
}
|
|
46
58
|
export interface PlatformInfraInitEmptyRepoVariables {
|
|
47
59
|
input: PlatformInfraInitEmptyRepoInput;
|
|
48
60
|
}
|
|
49
61
|
export interface PlatformInfraInsertNodeAtPathVariables {
|
|
50
62
|
input: PlatformInfraInsertNodeAtPathInput;
|
|
51
63
|
}
|
|
64
|
+
export interface PlatformInfraInsertNodesAtPathsVariables {
|
|
65
|
+
input: PlatformInfraInsertNodesAtPathsInput;
|
|
66
|
+
}
|
|
67
|
+
export interface PlatformInfraSetAndCommitVariables {
|
|
68
|
+
input: PlatformInfraSetAndCommitInput;
|
|
69
|
+
}
|
|
52
70
|
export interface PlatformInfraSetDataAtPathVariables {
|
|
53
71
|
input: PlatformInfraSetDataAtPathInput;
|
|
54
72
|
}
|
|
73
|
+
export interface PlatformInfraSetManyAndCommitVariables {
|
|
74
|
+
input: PlatformInfraSetManyAndCommitInput;
|
|
75
|
+
}
|
|
55
76
|
export interface PlatformResourceInstallationsInstallVariables {
|
|
56
77
|
input: PlatformResourceInstallationsInstallInput;
|
|
57
78
|
}
|
|
@@ -89,9 +110,15 @@ export interface ResourceInstallationsUpgradeVariables {
|
|
|
89
110
|
export interface SaveGraphVariables {
|
|
90
111
|
input: SaveGraphInput;
|
|
91
112
|
}
|
|
113
|
+
export interface SetAndCommitVariables {
|
|
114
|
+
input: SetAndCommitInput;
|
|
115
|
+
}
|
|
92
116
|
export interface SetDataAtPathVariables {
|
|
93
117
|
input: SetDataAtPathInput;
|
|
94
118
|
}
|
|
119
|
+
export interface SetManyAndCommitVariables {
|
|
120
|
+
input: SetManyAndCommitInput;
|
|
121
|
+
}
|
|
95
122
|
export interface StartExecutionVariables {
|
|
96
123
|
input: StartExecutionInput;
|
|
97
124
|
}
|
|
@@ -144,11 +171,26 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
144
171
|
} & StrictSelect<S, InfraInsertNodeAtPathPayloadSelect>) => QueryBuilder<{
|
|
145
172
|
infraInsertNodeAtPath: InferSelectResult<InfraInsertNodeAtPathPayload, S> | null;
|
|
146
173
|
}>;
|
|
174
|
+
infraInsertNodesAtPaths: <S extends InfraInsertNodesAtPathsPayloadSelect>(args: InfraInsertNodesAtPathsVariables, options: {
|
|
175
|
+
select: S;
|
|
176
|
+
} & StrictSelect<S, InfraInsertNodesAtPathsPayloadSelect>) => QueryBuilder<{
|
|
177
|
+
infraInsertNodesAtPaths: InferSelectResult<InfraInsertNodesAtPathsPayload, S> | null;
|
|
178
|
+
}>;
|
|
179
|
+
infraSetAndCommit: <S extends InfraSetAndCommitPayloadSelect>(args: InfraSetAndCommitVariables, options: {
|
|
180
|
+
select: S;
|
|
181
|
+
} & StrictSelect<S, InfraSetAndCommitPayloadSelect>) => QueryBuilder<{
|
|
182
|
+
infraSetAndCommit: InferSelectResult<InfraSetAndCommitPayload, S> | null;
|
|
183
|
+
}>;
|
|
147
184
|
infraSetDataAtPath: <S extends InfraSetDataAtPathPayloadSelect>(args: InfraSetDataAtPathVariables, options: {
|
|
148
185
|
select: S;
|
|
149
186
|
} & StrictSelect<S, InfraSetDataAtPathPayloadSelect>) => QueryBuilder<{
|
|
150
187
|
infraSetDataAtPath: InferSelectResult<InfraSetDataAtPathPayload, S> | null;
|
|
151
188
|
}>;
|
|
189
|
+
infraSetManyAndCommit: <S extends InfraSetManyAndCommitPayloadSelect>(args: InfraSetManyAndCommitVariables, options: {
|
|
190
|
+
select: S;
|
|
191
|
+
} & StrictSelect<S, InfraSetManyAndCommitPayloadSelect>) => QueryBuilder<{
|
|
192
|
+
infraSetManyAndCommit: InferSelectResult<InfraSetManyAndCommitPayload, S> | null;
|
|
193
|
+
}>;
|
|
152
194
|
initEmptyRepo: <S extends InitEmptyRepoPayloadSelect>(args: InitEmptyRepoVariables, options: {
|
|
153
195
|
select: S;
|
|
154
196
|
} & StrictSelect<S, InitEmptyRepoPayloadSelect>) => QueryBuilder<{
|
|
@@ -159,6 +201,11 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
159
201
|
} & StrictSelect<S, InsertNodeAtPathPayloadSelect>) => QueryBuilder<{
|
|
160
202
|
insertNodeAtPath: InferSelectResult<InsertNodeAtPathPayload, S> | null;
|
|
161
203
|
}>;
|
|
204
|
+
insertNodesAtPaths: <S extends InsertNodesAtPathsPayloadSelect>(args: InsertNodesAtPathsVariables, options: {
|
|
205
|
+
select: S;
|
|
206
|
+
} & StrictSelect<S, InsertNodesAtPathsPayloadSelect>) => QueryBuilder<{
|
|
207
|
+
insertNodesAtPaths: InferSelectResult<InsertNodesAtPathsPayload, S> | null;
|
|
208
|
+
}>;
|
|
162
209
|
platformInfraInitEmptyRepo: <S extends PlatformInfraInitEmptyRepoPayloadSelect>(args: PlatformInfraInitEmptyRepoVariables, options: {
|
|
163
210
|
select: S;
|
|
164
211
|
} & StrictSelect<S, PlatformInfraInitEmptyRepoPayloadSelect>) => QueryBuilder<{
|
|
@@ -169,11 +216,26 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
169
216
|
} & StrictSelect<S, PlatformInfraInsertNodeAtPathPayloadSelect>) => QueryBuilder<{
|
|
170
217
|
platformInfraInsertNodeAtPath: InferSelectResult<PlatformInfraInsertNodeAtPathPayload, S> | null;
|
|
171
218
|
}>;
|
|
219
|
+
platformInfraInsertNodesAtPaths: <S extends PlatformInfraInsertNodesAtPathsPayloadSelect>(args: PlatformInfraInsertNodesAtPathsVariables, options: {
|
|
220
|
+
select: S;
|
|
221
|
+
} & StrictSelect<S, PlatformInfraInsertNodesAtPathsPayloadSelect>) => QueryBuilder<{
|
|
222
|
+
platformInfraInsertNodesAtPaths: InferSelectResult<PlatformInfraInsertNodesAtPathsPayload, S> | null;
|
|
223
|
+
}>;
|
|
224
|
+
platformInfraSetAndCommit: <S extends PlatformInfraSetAndCommitPayloadSelect>(args: PlatformInfraSetAndCommitVariables, options: {
|
|
225
|
+
select: S;
|
|
226
|
+
} & StrictSelect<S, PlatformInfraSetAndCommitPayloadSelect>) => QueryBuilder<{
|
|
227
|
+
platformInfraSetAndCommit: InferSelectResult<PlatformInfraSetAndCommitPayload, S> | null;
|
|
228
|
+
}>;
|
|
172
229
|
platformInfraSetDataAtPath: <S extends PlatformInfraSetDataAtPathPayloadSelect>(args: PlatformInfraSetDataAtPathVariables, options: {
|
|
173
230
|
select: S;
|
|
174
231
|
} & StrictSelect<S, PlatformInfraSetDataAtPathPayloadSelect>) => QueryBuilder<{
|
|
175
232
|
platformInfraSetDataAtPath: InferSelectResult<PlatformInfraSetDataAtPathPayload, S> | null;
|
|
176
233
|
}>;
|
|
234
|
+
platformInfraSetManyAndCommit: <S extends PlatformInfraSetManyAndCommitPayloadSelect>(args: PlatformInfraSetManyAndCommitVariables, options: {
|
|
235
|
+
select: S;
|
|
236
|
+
} & StrictSelect<S, PlatformInfraSetManyAndCommitPayloadSelect>) => QueryBuilder<{
|
|
237
|
+
platformInfraSetManyAndCommit: InferSelectResult<PlatformInfraSetManyAndCommitPayload, S> | null;
|
|
238
|
+
}>;
|
|
177
239
|
platformResourceInstallationsInstall: <S extends PlatformResourceInstallationsInstallPayloadSelect>(args: PlatformResourceInstallationsInstallVariables, options: {
|
|
178
240
|
select: S;
|
|
179
241
|
} & StrictSelect<S, PlatformResourceInstallationsInstallPayloadSelect>) => QueryBuilder<{
|
|
@@ -224,11 +286,21 @@ export declare function createMutationOperations(client: OrmClient): {
|
|
|
224
286
|
} & StrictSelect<S, SaveGraphPayloadSelect>) => QueryBuilder<{
|
|
225
287
|
saveGraph: InferSelectResult<SaveGraphPayload, S> | null;
|
|
226
288
|
}>;
|
|
289
|
+
setAndCommit: <S extends SetAndCommitPayloadSelect>(args: SetAndCommitVariables, options: {
|
|
290
|
+
select: S;
|
|
291
|
+
} & StrictSelect<S, SetAndCommitPayloadSelect>) => QueryBuilder<{
|
|
292
|
+
setAndCommit: InferSelectResult<SetAndCommitPayload, S> | null;
|
|
293
|
+
}>;
|
|
227
294
|
setDataAtPath: <S extends SetDataAtPathPayloadSelect>(args: SetDataAtPathVariables, options: {
|
|
228
295
|
select: S;
|
|
229
296
|
} & StrictSelect<S, SetDataAtPathPayloadSelect>) => QueryBuilder<{
|
|
230
297
|
setDataAtPath: InferSelectResult<SetDataAtPathPayload, S> | null;
|
|
231
298
|
}>;
|
|
299
|
+
setManyAndCommit: <S extends SetManyAndCommitPayloadSelect>(args: SetManyAndCommitVariables, options: {
|
|
300
|
+
select: S;
|
|
301
|
+
} & StrictSelect<S, SetManyAndCommitPayloadSelect>) => QueryBuilder<{
|
|
302
|
+
setManyAndCommit: InferSelectResult<SetManyAndCommitPayload, S> | null;
|
|
303
|
+
}>;
|
|
232
304
|
startExecution: <S extends StartExecutionPayloadSelect>(args: StartExecutionVariables, options: {
|
|
233
305
|
select: S;
|
|
234
306
|
} & StrictSelect<S, StartExecutionPayloadSelect>) => QueryBuilder<{
|
|
@@ -110,6 +110,30 @@ export function createMutationOperations(client) {
|
|
|
110
110
|
},
|
|
111
111
|
], connectionFieldsMap, 'InfraInsertNodeAtPathPayload'),
|
|
112
112
|
}),
|
|
113
|
+
infraInsertNodesAtPaths: (args, options) => new QueryBuilder({
|
|
114
|
+
client,
|
|
115
|
+
operation: 'mutation',
|
|
116
|
+
operationName: 'InfraInsertNodesAtPaths',
|
|
117
|
+
fieldName: 'infraInsertNodesAtPaths',
|
|
118
|
+
...buildCustomDocument('mutation', 'InfraInsertNodesAtPaths', 'infraInsertNodesAtPaths', options.select, args, [
|
|
119
|
+
{
|
|
120
|
+
name: 'input',
|
|
121
|
+
type: 'InfraInsertNodesAtPathsInput!',
|
|
122
|
+
},
|
|
123
|
+
], connectionFieldsMap, 'InfraInsertNodesAtPathsPayload'),
|
|
124
|
+
}),
|
|
125
|
+
infraSetAndCommit: (args, options) => new QueryBuilder({
|
|
126
|
+
client,
|
|
127
|
+
operation: 'mutation',
|
|
128
|
+
operationName: 'InfraSetAndCommit',
|
|
129
|
+
fieldName: 'infraSetAndCommit',
|
|
130
|
+
...buildCustomDocument('mutation', 'InfraSetAndCommit', 'infraSetAndCommit', options.select, args, [
|
|
131
|
+
{
|
|
132
|
+
name: 'input',
|
|
133
|
+
type: 'InfraSetAndCommitInput!',
|
|
134
|
+
},
|
|
135
|
+
], connectionFieldsMap, 'InfraSetAndCommitPayload'),
|
|
136
|
+
}),
|
|
113
137
|
infraSetDataAtPath: (args, options) => new QueryBuilder({
|
|
114
138
|
client,
|
|
115
139
|
operation: 'mutation',
|
|
@@ -122,6 +146,18 @@ export function createMutationOperations(client) {
|
|
|
122
146
|
},
|
|
123
147
|
], connectionFieldsMap, 'InfraSetDataAtPathPayload'),
|
|
124
148
|
}),
|
|
149
|
+
infraSetManyAndCommit: (args, options) => new QueryBuilder({
|
|
150
|
+
client,
|
|
151
|
+
operation: 'mutation',
|
|
152
|
+
operationName: 'InfraSetManyAndCommit',
|
|
153
|
+
fieldName: 'infraSetManyAndCommit',
|
|
154
|
+
...buildCustomDocument('mutation', 'InfraSetManyAndCommit', 'infraSetManyAndCommit', options.select, args, [
|
|
155
|
+
{
|
|
156
|
+
name: 'input',
|
|
157
|
+
type: 'InfraSetManyAndCommitInput!',
|
|
158
|
+
},
|
|
159
|
+
], connectionFieldsMap, 'InfraSetManyAndCommitPayload'),
|
|
160
|
+
}),
|
|
125
161
|
initEmptyRepo: (args, options) => new QueryBuilder({
|
|
126
162
|
client,
|
|
127
163
|
operation: 'mutation',
|
|
@@ -146,6 +182,18 @@ export function createMutationOperations(client) {
|
|
|
146
182
|
},
|
|
147
183
|
], connectionFieldsMap, 'InsertNodeAtPathPayload'),
|
|
148
184
|
}),
|
|
185
|
+
insertNodesAtPaths: (args, options) => new QueryBuilder({
|
|
186
|
+
client,
|
|
187
|
+
operation: 'mutation',
|
|
188
|
+
operationName: 'InsertNodesAtPaths',
|
|
189
|
+
fieldName: 'insertNodesAtPaths',
|
|
190
|
+
...buildCustomDocument('mutation', 'InsertNodesAtPaths', 'insertNodesAtPaths', options.select, args, [
|
|
191
|
+
{
|
|
192
|
+
name: 'input',
|
|
193
|
+
type: 'InsertNodesAtPathsInput!',
|
|
194
|
+
},
|
|
195
|
+
], connectionFieldsMap, 'InsertNodesAtPathsPayload'),
|
|
196
|
+
}),
|
|
149
197
|
platformInfraInitEmptyRepo: (args, options) => new QueryBuilder({
|
|
150
198
|
client,
|
|
151
199
|
operation: 'mutation',
|
|
@@ -170,6 +218,30 @@ export function createMutationOperations(client) {
|
|
|
170
218
|
},
|
|
171
219
|
], connectionFieldsMap, 'PlatformInfraInsertNodeAtPathPayload'),
|
|
172
220
|
}),
|
|
221
|
+
platformInfraInsertNodesAtPaths: (args, options) => new QueryBuilder({
|
|
222
|
+
client,
|
|
223
|
+
operation: 'mutation',
|
|
224
|
+
operationName: 'PlatformInfraInsertNodesAtPaths',
|
|
225
|
+
fieldName: 'platformInfraInsertNodesAtPaths',
|
|
226
|
+
...buildCustomDocument('mutation', 'PlatformInfraInsertNodesAtPaths', 'platformInfraInsertNodesAtPaths', options.select, args, [
|
|
227
|
+
{
|
|
228
|
+
name: 'input',
|
|
229
|
+
type: 'PlatformInfraInsertNodesAtPathsInput!',
|
|
230
|
+
},
|
|
231
|
+
], connectionFieldsMap, 'PlatformInfraInsertNodesAtPathsPayload'),
|
|
232
|
+
}),
|
|
233
|
+
platformInfraSetAndCommit: (args, options) => new QueryBuilder({
|
|
234
|
+
client,
|
|
235
|
+
operation: 'mutation',
|
|
236
|
+
operationName: 'PlatformInfraSetAndCommit',
|
|
237
|
+
fieldName: 'platformInfraSetAndCommit',
|
|
238
|
+
...buildCustomDocument('mutation', 'PlatformInfraSetAndCommit', 'platformInfraSetAndCommit', options.select, args, [
|
|
239
|
+
{
|
|
240
|
+
name: 'input',
|
|
241
|
+
type: 'PlatformInfraSetAndCommitInput!',
|
|
242
|
+
},
|
|
243
|
+
], connectionFieldsMap, 'PlatformInfraSetAndCommitPayload'),
|
|
244
|
+
}),
|
|
173
245
|
platformInfraSetDataAtPath: (args, options) => new QueryBuilder({
|
|
174
246
|
client,
|
|
175
247
|
operation: 'mutation',
|
|
@@ -182,6 +254,18 @@ export function createMutationOperations(client) {
|
|
|
182
254
|
},
|
|
183
255
|
], connectionFieldsMap, 'PlatformInfraSetDataAtPathPayload'),
|
|
184
256
|
}),
|
|
257
|
+
platformInfraSetManyAndCommit: (args, options) => new QueryBuilder({
|
|
258
|
+
client,
|
|
259
|
+
operation: 'mutation',
|
|
260
|
+
operationName: 'PlatformInfraSetManyAndCommit',
|
|
261
|
+
fieldName: 'platformInfraSetManyAndCommit',
|
|
262
|
+
...buildCustomDocument('mutation', 'PlatformInfraSetManyAndCommit', 'platformInfraSetManyAndCommit', options.select, args, [
|
|
263
|
+
{
|
|
264
|
+
name: 'input',
|
|
265
|
+
type: 'PlatformInfraSetManyAndCommitInput!',
|
|
266
|
+
},
|
|
267
|
+
], connectionFieldsMap, 'PlatformInfraSetManyAndCommitPayload'),
|
|
268
|
+
}),
|
|
185
269
|
platformResourceInstallationsInstall: (args, options) => new QueryBuilder({
|
|
186
270
|
client,
|
|
187
271
|
operation: 'mutation',
|
|
@@ -302,6 +386,18 @@ export function createMutationOperations(client) {
|
|
|
302
386
|
},
|
|
303
387
|
], connectionFieldsMap, 'SaveGraphPayload'),
|
|
304
388
|
}),
|
|
389
|
+
setAndCommit: (args, options) => new QueryBuilder({
|
|
390
|
+
client,
|
|
391
|
+
operation: 'mutation',
|
|
392
|
+
operationName: 'SetAndCommit',
|
|
393
|
+
fieldName: 'setAndCommit',
|
|
394
|
+
...buildCustomDocument('mutation', 'SetAndCommit', 'setAndCommit', options.select, args, [
|
|
395
|
+
{
|
|
396
|
+
name: 'input',
|
|
397
|
+
type: 'SetAndCommitInput!',
|
|
398
|
+
},
|
|
399
|
+
], connectionFieldsMap, 'SetAndCommitPayload'),
|
|
400
|
+
}),
|
|
305
401
|
setDataAtPath: (args, options) => new QueryBuilder({
|
|
306
402
|
client,
|
|
307
403
|
operation: 'mutation',
|
|
@@ -314,6 +410,18 @@ export function createMutationOperations(client) {
|
|
|
314
410
|
},
|
|
315
411
|
], connectionFieldsMap, 'SetDataAtPathPayload'),
|
|
316
412
|
}),
|
|
413
|
+
setManyAndCommit: (args, options) => new QueryBuilder({
|
|
414
|
+
client,
|
|
415
|
+
operation: 'mutation',
|
|
416
|
+
operationName: 'SetManyAndCommit',
|
|
417
|
+
fieldName: 'setManyAndCommit',
|
|
418
|
+
...buildCustomDocument('mutation', 'SetManyAndCommit', 'setManyAndCommit', options.select, args, [
|
|
419
|
+
{
|
|
420
|
+
name: 'input',
|
|
421
|
+
type: 'SetManyAndCommitInput!',
|
|
422
|
+
},
|
|
423
|
+
], connectionFieldsMap, 'SetManyAndCommitPayload'),
|
|
424
|
+
}),
|
|
317
425
|
startExecution: (args, options) => new QueryBuilder({
|
|
318
426
|
client,
|
|
319
427
|
operation: 'mutation',
|