@constructive-io/react 0.27.1 → 0.27.3
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/api/orm/input-types.d.ts +144 -171
- package/api/schema-types.d.ts +676 -678
- package/api/types.d.ts +9 -14
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +24 -0
- package/auth/hooks/invalidation.js +64 -0
- package/auth/hooks/mutation-keys.d.ts +56 -0
- package/auth/hooks/mutation-keys.js +44 -1
- package/auth/hooks/mutations/index.d.ts +11 -0
- package/auth/hooks/mutations/index.js +11 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +34 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +26 -0
- package/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
- package/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +26 -0
- package/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +34 -0
- package/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreatePrincipalMutation.js +34 -0
- package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +34 -0
- package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
- package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +26 -0
- package/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
- package/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +39 -0
- package/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
- package/auth/hooks/mutations/useDeletePrincipalMutation.js +39 -0
- package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
- package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +26 -0
- package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
- package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +40 -0
- package/auth/hooks/queries/index.d.ts +9 -1
- package/auth/hooks/queries/index.js +9 -1
- package/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
- package/auth/hooks/queries/useOrgApiKeyListQuery.js +53 -0
- package/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
- package/auth/hooks/queries/useOrgApiKeyListsQuery.js +38 -0
- package/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
- package/auth/hooks/queries/usePrincipalEntitiesQuery.js +38 -0
- package/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
- package/auth/hooks/queries/usePrincipalEntityQuery.js +53 -0
- package/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
- package/auth/hooks/queries/usePrincipalQuery.js +53 -0
- package/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
- package/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +53 -0
- package/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
- package/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +38 -0
- package/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
- package/auth/hooks/queries/usePrincipalsQuery.js +38 -0
- package/auth/hooks/query-keys.d.ts +58 -2
- package/auth/hooks/query-keys.js +34 -2
- package/auth/orm/index.d.ts +32 -4
- package/auth/orm/index.js +8 -0
- package/auth/orm/input-types.d.ts +915 -145
- package/auth/orm/input-types.js +7 -0
- package/auth/orm/models/index.d.ts +4 -0
- package/auth/orm/models/index.js +9 -1
- package/auth/orm/models/orgApiKeyList.d.ts +36 -0
- package/auth/orm/models/orgApiKeyList.js +80 -0
- package/auth/orm/models/principal.d.ts +45 -0
- package/auth/orm/models/principal.js +93 -0
- package/auth/orm/models/principalEntity.d.ts +54 -0
- package/auth/orm/models/principalEntity.js +104 -0
- package/auth/orm/models/principalScopeOverride.d.ts +36 -0
- package/auth/orm/models/principalScopeOverride.js +80 -0
- package/auth/orm/mutation/index.d.ts +33 -1
- package/auth/orm/mutation/index.js +48 -0
- package/auth/orm/query/index.d.ts +4 -4
- package/auth/orm/query/index.js +7 -7
- package/auth/schema-types.d.ts +477 -93
- package/auth/types.d.ts +43 -0
- package/compute/hooks/index.d.ts +1 -1
- package/compute/hooks/index.js +1 -1
- package/compute/hooks/invalidation.d.ts +29 -5
- package/compute/hooks/invalidation.js +73 -9
- package/compute/hooks/mutation-keys.d.ts +60 -12
- package/compute/hooks/mutation-keys.js +41 -10
- package/compute/hooks/mutations/index.d.ts +16 -4
- package/compute/hooks/mutations/index.js +16 -4
- package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceMutation.js +34 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +40 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteResourceEventMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteResourceMutation.js +39 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateResourceEventMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateResourceMutation.js +40 -0
- package/compute/hooks/queries/index.d.ts +10 -2
- package/compute/hooks/queries/index.js +10 -2
- package/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformNamespaceEventQuery.js +53 -0
- package/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformNamespaceQuery.js +53 -0
- package/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformNamespacesQuery.js +38 -0
- package/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceEventQuery.js +53 -0
- package/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceEventsQuery.js +38 -0
- package/compute/hooks/queries/useResourceQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceQuery.js +53 -0
- package/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourcesQuery.js +38 -0
- package/compute/hooks/query-keys.d.ts +68 -12
- package/compute/hooks/query-keys.js +40 -8
- package/compute/orm/index.d.ts +15 -7
- package/compute/orm/index.js +10 -2
- package/compute/orm/input-types.d.ts +1159 -221
- package/compute/orm/input-types.js +4 -0
- package/compute/orm/models/index.d.ts +5 -1
- package/compute/orm/models/index.js +11 -3
- package/compute/orm/models/platformNamespace.d.ts +54 -0
- package/compute/orm/models/platformNamespace.js +104 -0
- package/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/compute/orm/models/platformNamespaceEvent.js +107 -0
- package/compute/orm/models/resource.d.ts +54 -0
- package/compute/orm/models/resource.js +104 -0
- package/compute/orm/models/resourceEvent.d.ts +56 -0
- package/compute/orm/models/resourceEvent.js +107 -0
- package/compute/orm/mutation/index.d.ts +9 -9
- package/compute/orm/mutation/index.js +12 -12
- package/compute/schema-types.d.ts +691 -107
- package/compute/types.d.ts +71 -12
- package/esm/api/orm/input-types.d.ts +144 -171
- package/esm/api/schema-types.d.ts +676 -678
- package/esm/api/types.d.ts +9 -14
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +24 -0
- package/esm/auth/hooks/invalidation.js +65 -1
- package/esm/auth/hooks/mutation-keys.d.ts +56 -0
- package/esm/auth/hooks/mutation-keys.js +43 -0
- package/esm/auth/hooks/mutations/index.d.ts +11 -0
- package/esm/auth/hooks/mutations/index.js +11 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +23 -0
- package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +23 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +31 -0
- package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +23 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +36 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalMutation.js +36 -0
- package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +23 -0
- package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
- package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +37 -0
- package/esm/auth/hooks/queries/index.d.ts +9 -1
- package/esm/auth/hooks/queries/index.js +9 -1
- package/esm/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/useOrgApiKeyListQuery.js +47 -0
- package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.js +32 -0
- package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.js +32 -0
- package/esm/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/usePrincipalEntityQuery.js +47 -0
- package/esm/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/usePrincipalQuery.js +47 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +47 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +32 -0
- package/esm/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/usePrincipalsQuery.js +32 -0
- package/esm/auth/hooks/query-keys.d.ts +58 -2
- package/esm/auth/hooks/query-keys.js +33 -1
- package/esm/auth/orm/index.d.ts +32 -4
- package/esm/auth/orm/index.js +8 -0
- package/esm/auth/orm/input-types.d.ts +915 -145
- package/esm/auth/orm/input-types.js +7 -0
- package/esm/auth/orm/models/index.d.ts +4 -0
- package/esm/auth/orm/models/index.js +4 -0
- package/esm/auth/orm/models/orgApiKeyList.d.ts +36 -0
- package/esm/auth/orm/models/orgApiKeyList.js +76 -0
- package/esm/auth/orm/models/principal.d.ts +45 -0
- package/esm/auth/orm/models/principal.js +89 -0
- package/esm/auth/orm/models/principalEntity.d.ts +54 -0
- package/esm/auth/orm/models/principalEntity.js +100 -0
- package/esm/auth/orm/models/principalScopeOverride.d.ts +36 -0
- package/esm/auth/orm/models/principalScopeOverride.js +76 -0
- package/esm/auth/orm/mutation/index.d.ts +33 -1
- package/esm/auth/orm/mutation/index.js +48 -0
- package/esm/auth/orm/query/index.d.ts +4 -4
- package/esm/auth/orm/query/index.js +7 -7
- package/esm/auth/schema-types.d.ts +477 -93
- package/esm/auth/types.d.ts +43 -0
- package/esm/compute/hooks/index.d.ts +1 -1
- package/esm/compute/hooks/index.js +1 -1
- package/esm/compute/hooks/invalidation.d.ts +29 -5
- package/esm/compute/hooks/invalidation.js +74 -10
- package/esm/compute/hooks/mutation-keys.d.ts +60 -12
- package/esm/compute/hooks/mutation-keys.js +40 -9
- package/esm/compute/hooks/mutations/index.d.ts +16 -4
- package/esm/compute/hooks/mutations/index.js +16 -4
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceMutation.js +31 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteResourceMutation.js +36 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateResourceMutation.js +37 -0
- package/esm/compute/hooks/queries/index.d.ts +10 -2
- package/esm/compute/hooks/queries/index.js +10 -2
- package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformNamespacesQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceEventQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourcesQuery.js +32 -0
- package/esm/compute/hooks/query-keys.d.ts +68 -12
- package/esm/compute/hooks/query-keys.js +39 -7
- package/esm/compute/orm/index.d.ts +15 -7
- package/esm/compute/orm/index.js +10 -2
- package/esm/compute/orm/input-types.d.ts +1159 -221
- package/esm/compute/orm/input-types.js +4 -0
- package/esm/compute/orm/models/index.d.ts +5 -1
- package/esm/compute/orm/models/index.js +5 -1
- package/esm/compute/orm/models/platformNamespace.d.ts +54 -0
- package/esm/compute/orm/models/platformNamespace.js +100 -0
- package/esm/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/esm/compute/orm/models/platformNamespaceEvent.js +103 -0
- package/esm/compute/orm/models/resource.d.ts +54 -0
- package/esm/compute/orm/models/resource.js +100 -0
- package/esm/compute/orm/models/resourceEvent.d.ts +56 -0
- package/esm/compute/orm/models/resourceEvent.js +103 -0
- package/esm/compute/orm/mutation/index.d.ts +9 -9
- package/esm/compute/orm/mutation/index.js +12 -12
- package/esm/compute/schema-types.d.ts +691 -107
- package/esm/compute/types.d.ts +71 -12
- package/esm/modules/hooks/index.d.ts +1 -1
- package/esm/modules/hooks/index.js +1 -1
- package/esm/modules/hooks/invalidation.d.ts +24 -12
- package/esm/modules/hooks/invalidation.js +63 -31
- package/esm/modules/hooks/mutation-keys.d.ts +48 -24
- package/esm/modules/hooks/mutation-keys.js +28 -14
- package/esm/modules/hooks/mutations/index.d.ts +12 -6
- package/esm/modules/hooks/mutations/index.js +12 -6
- package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +37 -0
- package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.js +37 -0
- package/esm/modules/hooks/queries/index.d.ts +8 -4
- package/esm/modules/hooks/queries/index.js +8 -4
- package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.js +32 -0
- package/esm/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/useResourceModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/useResourceModulesQuery.js +32 -0
- package/esm/modules/hooks/query-keys.d.ts +56 -28
- package/esm/modules/hooks/query-keys.js +32 -16
- package/esm/modules/orm/index.d.ts +8 -4
- package/esm/modules/orm/index.js +8 -4
- package/esm/modules/orm/input-types.d.ts +868 -411
- package/esm/modules/orm/models/index.d.ts +4 -2
- package/esm/modules/orm/models/index.js +4 -2
- package/esm/modules/orm/models/principalAuthModule.d.ts +54 -0
- package/esm/modules/orm/models/principalAuthModule.js +100 -0
- package/esm/modules/orm/models/resourceModule.d.ts +54 -0
- package/esm/modules/orm/models/resourceModule.js +100 -0
- package/esm/modules/schema-types.d.ts +451 -169
- package/esm/modules/types.d.ts +75 -33
- package/modules/hooks/index.d.ts +1 -1
- package/modules/hooks/index.js +1 -1
- package/modules/hooks/invalidation.d.ts +24 -12
- package/modules/hooks/invalidation.js +62 -30
- package/modules/hooks/mutation-keys.d.ts +48 -24
- package/modules/hooks/mutation-keys.js +30 -16
- package/modules/hooks/mutations/index.d.ts +12 -6
- package/modules/hooks/mutations/index.js +12 -6
- package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +34 -0
- package/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreateResourceModuleMutation.js +34 -0
- package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +39 -0
- package/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteResourceModuleMutation.js +39 -0
- package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +40 -0
- package/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateResourceModuleMutation.js +40 -0
- package/modules/hooks/queries/index.d.ts +8 -4
- package/modules/hooks/queries/index.js +8 -4
- package/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/usePrincipalAuthModuleQuery.js +53 -0
- package/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/usePrincipalAuthModulesQuery.js +38 -0
- package/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/useResourceModuleQuery.js +53 -0
- package/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/useResourceModulesQuery.js +38 -0
- package/modules/hooks/query-keys.d.ts +56 -28
- package/modules/hooks/query-keys.js +34 -18
- package/modules/orm/index.d.ts +8 -4
- package/modules/orm/index.js +8 -4
- package/modules/orm/input-types.d.ts +868 -411
- package/modules/orm/models/index.d.ts +4 -2
- package/modules/orm/models/index.js +10 -6
- package/modules/orm/models/principalAuthModule.d.ts +54 -0
- package/modules/orm/models/principalAuthModule.js +104 -0
- package/modules/orm/models/resourceModule.d.ts +54 -0
- package/modules/orm/models/resourceModule.js +104 -0
- package/modules/schema-types.d.ts +451 -169
- package/modules/types.d.ts +75 -33
- package/package.json +5 -5
|
@@ -12,27 +12,27 @@ export type ConstructiveInternalTypeUrl = unknown;
|
|
|
12
12
|
export type ObjectCategory = 'CORE' | 'MODULE' | 'PERMISSIONS' | 'AUTH' | 'MEMBERSHIPS' | 'APP';
|
|
13
13
|
export type ApiExposureLevel = 'EXPOSABLE' | 'INTERNAL_ONLY' | 'NEVER_EXPOSE';
|
|
14
14
|
/** Methods to use when ordering `CheckConstraint`. */
|
|
15
|
-
export type CheckConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'EXPR_ASC' | 'EXPR_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
15
|
+
export type CheckConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'EXPR_ASC' | 'EXPR_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
16
16
|
/** Methods to use when ordering `SpatialRelation`. */
|
|
17
|
-
export type SpatialRelationOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'REF_FIELD_ID_ASC' | 'REF_FIELD_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'OPERATOR_ASC' | 'OPERATOR_DESC' | 'PARAM_NAME_ASC' | 'PARAM_NAME_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
17
|
+
export type SpatialRelationOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'REF_FIELD_ID_ASC' | 'REF_FIELD_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'OPERATOR_ASC' | 'OPERATOR_DESC' | 'PARAM_NAME_ASC' | 'PARAM_NAME_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
18
18
|
/** Methods to use when ordering `Field`. */
|
|
19
|
-
export type FieldOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'IS_REQUIRED_ASC' | 'IS_REQUIRED_DESC' | 'API_REQUIRED_ASC' | 'API_REQUIRED_DESC' | 'DEFAULT_VALUE_ASC' | 'DEFAULT_VALUE_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_ORDER_ASC' | 'FIELD_ORDER_DESC' | 'REGEXP_ASC' | 'REGEXP_DESC' | 'CHK_ASC' | 'CHK_DESC' | 'CHK_EXPR_ASC' | 'CHK_EXPR_DESC' | 'MIN_ASC' | 'MIN_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
19
|
+
export type FieldOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'IS_REQUIRED_ASC' | 'IS_REQUIRED_DESC' | 'API_REQUIRED_ASC' | 'API_REQUIRED_DESC' | 'DEFAULT_VALUE_ASC' | 'DEFAULT_VALUE_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_ORDER_ASC' | 'FIELD_ORDER_DESC' | 'REGEXP_ASC' | 'REGEXP_DESC' | 'CHK_ASC' | 'CHK_DESC' | 'CHK_EXPR_ASC' | 'CHK_EXPR_DESC' | 'MIN_ASC' | 'MIN_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
20
20
|
/** Methods to use when ordering `ForeignKeyConstraint`. */
|
|
21
|
-
export type ForeignKeyConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'REF_FIELD_IDS_ASC' | 'REF_FIELD_IDS_DESC' | 'DELETE_ACTION_ASC' | 'DELETE_ACTION_DESC' | 'UPDATE_ACTION_ASC' | 'UPDATE_ACTION_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
21
|
+
export type ForeignKeyConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'REF_FIELD_IDS_ASC' | 'REF_FIELD_IDS_DESC' | 'DELETE_ACTION_ASC' | 'DELETE_ACTION_DESC' | 'UPDATE_ACTION_ASC' | 'UPDATE_ACTION_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
22
22
|
/** Methods to use when ordering `FullTextSearch`. */
|
|
23
23
|
export type FullTextSearchOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'WEIGHTS_ASC' | 'WEIGHTS_DESC' | 'LANGS_ASC' | 'LANGS_DESC' | 'LANG_COLUMN_ASC' | 'LANG_COLUMN_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
24
24
|
/** Methods to use when ordering `Index`. */
|
|
25
|
-
export type IndexOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'INCLUDE_FIELD_IDS_ASC' | 'INCLUDE_FIELD_IDS_DESC' | 'ACCESS_METHOD_ASC' | 'ACCESS_METHOD_DESC' | 'INDEX_PARAMS_ASC' | 'INDEX_PARAMS_DESC' | 'WHERE_CLAUSE_ASC' | 'WHERE_CLAUSE_DESC' | 'IS_UNIQUE_ASC' | 'IS_UNIQUE_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'OP_CLASSES_ASC' | 'OP_CLASSES_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
25
|
+
export type IndexOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'INCLUDE_FIELD_IDS_ASC' | 'INCLUDE_FIELD_IDS_DESC' | 'ACCESS_METHOD_ASC' | 'ACCESS_METHOD_DESC' | 'INDEX_PARAMS_ASC' | 'INDEX_PARAMS_DESC' | 'WHERE_CLAUSE_ASC' | 'WHERE_CLAUSE_DESC' | 'IS_UNIQUE_ASC' | 'IS_UNIQUE_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'OP_CLASSES_ASC' | 'OP_CLASSES_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
26
26
|
/** Methods to use when ordering `Policy`. */
|
|
27
|
-
export type PolicyOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'PERMISSIVE_ASC' | 'PERMISSIVE_DESC' | 'DISABLED_ASC' | 'DISABLED_DESC' | 'POLICY_TYPE_ASC' | 'POLICY_TYPE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
27
|
+
export type PolicyOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'PERMISSIVE_ASC' | 'PERMISSIVE_DESC' | 'DISABLED_ASC' | 'DISABLED_DESC' | 'POLICY_TYPE_ASC' | 'POLICY_TYPE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
28
28
|
/** Methods to use when ordering `PrimaryKeyConstraint`. */
|
|
29
|
-
export type PrimaryKeyConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
29
|
+
export type PrimaryKeyConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
30
30
|
/** Methods to use when ordering `TableGrant`. */
|
|
31
31
|
export type TableGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
32
32
|
/** Methods to use when ordering `Trigger`. */
|
|
33
|
-
export type TriggerOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'FUNCTION_NAME_ASC' | 'FUNCTION_NAME_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
33
|
+
export type TriggerOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'FUNCTION_NAME_ASC' | 'FUNCTION_NAME_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
34
34
|
/** Methods to use when ordering `UniqueConstraint`. */
|
|
35
|
-
export type UniqueConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
35
|
+
export type UniqueConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
36
36
|
/** Methods to use when ordering `ViewTable`. */
|
|
37
37
|
export type ViewTableOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'VIEW_ID_ASC' | 'VIEW_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'JOIN_ORDER_ASC' | 'JOIN_ORDER_DESC';
|
|
38
38
|
/** Methods to use when ordering `ViewGrant`. */
|
|
@@ -40,27 +40,27 @@ export type ViewGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC
|
|
|
40
40
|
/** Methods to use when ordering `ViewRule`. */
|
|
41
41
|
export type ViewRuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'VIEW_ID_ASC' | 'VIEW_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'ACTION_ASC' | 'ACTION_DESC';
|
|
42
42
|
/** Methods to use when ordering `View`. */
|
|
43
|
-
export type ViewOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'VIEW_TYPE_ASC' | 'VIEW_TYPE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'FILTER_TYPE_ASC' | 'FILTER_TYPE_DESC' | 'FILTER_DATA_ASC' | 'FILTER_DATA_DESC' | 'SECURITY_INVOKER_ASC' | 'SECURITY_INVOKER_DESC' | 'IS_READ_ONLY_ASC' | 'IS_READ_ONLY_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
43
|
+
export type ViewOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'VIEW_TYPE_ASC' | 'VIEW_TYPE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'FILTER_TYPE_ASC' | 'FILTER_TYPE_DESC' | 'FILTER_DATA_ASC' | 'FILTER_DATA_DESC' | 'SECURITY_INVOKER_ASC' | 'SECURITY_INVOKER_DESC' | 'IS_READ_ONLY_ASC' | 'IS_READ_ONLY_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC';
|
|
44
44
|
/** Methods to use when ordering `EmbeddingChunk`. */
|
|
45
45
|
export type EmbeddingChunkOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'EMBEDDING_FIELD_ID_ASC' | 'EMBEDDING_FIELD_ID_DESC' | 'CHUNKS_TABLE_ID_ASC' | 'CHUNKS_TABLE_ID_DESC' | 'CHUNKS_TABLE_NAME_ASC' | 'CHUNKS_TABLE_NAME_DESC' | 'CONTENT_FIELD_NAME_ASC' | 'CONTENT_FIELD_NAME_DESC' | 'DIMENSIONS_ASC' | 'DIMENSIONS_DESC' | 'METRIC_ASC' | 'METRIC_DESC' | 'CHUNK_SIZE_ASC' | 'CHUNK_SIZE_DESC' | 'CHUNK_OVERLAP_ASC' | 'CHUNK_OVERLAP_DESC' | 'CHUNK_STRATEGY_ASC' | 'CHUNK_STRATEGY_DESC' | 'METADATA_FIELDS_ASC' | 'METADATA_FIELDS_DESC' | 'SEARCH_INDEXES_ASC' | 'SEARCH_INDEXES_DESC' | 'ENQUEUE_CHUNKING_JOB_ASC' | 'ENQUEUE_CHUNKING_JOB_DESC' | 'CHUNKING_TASK_NAME_ASC' | 'CHUNKING_TASK_NAME_DESC' | 'EMBEDDING_MODEL_ASC' | 'EMBEDDING_MODEL_DESC' | 'EMBEDDING_PROVIDER_ASC' | 'EMBEDDING_PROVIDER_DESC' | 'PARENT_FK_FIELD_ID_ASC' | 'PARENT_FK_FIELD_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
46
46
|
/** Methods to use when ordering `Table`. */
|
|
47
|
-
export type TableOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
47
|
+
export type TableOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC' | 'TIMESTAMPS_ASC' | 'TIMESTAMPS_DESC' | 'PEOPLESTAMPS_ASC' | 'PEOPLESTAMPS_DESC' | 'PLURAL_NAME_ASC' | 'PLURAL_NAME_DESC' | 'SINGULAR_NAME_ASC' | 'SINGULAR_NAME_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'PARTITIONED_ASC' | 'PARTITIONED_DESC' | 'PARTITION_STRATEGY_ASC' | 'PARTITION_STRATEGY_DESC' | 'PARTITION_KEY_NAMES_ASC' | 'PARTITION_KEY_NAMES_DESC' | 'PARTITION_KEY_TYPES_ASC' | 'PARTITION_KEY_TYPES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'INHERITS_ID_ASC' | 'INHERITS_ID_DESC';
|
|
48
48
|
/** Methods to use when ordering `SchemaGrant`. */
|
|
49
49
|
export type SchemaGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
50
50
|
/** Methods to use when ordering `DefaultPrivilege`. */
|
|
51
51
|
export type DefaultPrivilegeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'OBJECT_TYPE_ASC' | 'OBJECT_TYPE_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC';
|
|
52
52
|
/** Methods to use when ordering `Enum`. */
|
|
53
|
-
export type EnumOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'VALUES_ASC' | 'VALUES_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
53
|
+
export type EnumOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'VALUES_ASC' | 'VALUES_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC';
|
|
54
54
|
/** Methods to use when ordering `Function`. */
|
|
55
55
|
export type FunctionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
56
56
|
/** Methods to use when ordering `CompositeType`. */
|
|
57
|
-
export type CompositeTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ATTRIBUTES_ASC' | 'ATTRIBUTES_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
57
|
+
export type CompositeTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ATTRIBUTES_ASC' | 'ATTRIBUTES_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC';
|
|
58
58
|
/** Methods to use when ordering `ApiModule`. */
|
|
59
59
|
export type ApiModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATA_ASC' | 'DATA_DESC';
|
|
60
60
|
/** Methods to use when ordering `ApiSchema`. */
|
|
61
61
|
export type ApiSchemaOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC';
|
|
62
62
|
/** Methods to use when ordering `Domain`. */
|
|
63
|
-
export type DomainOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'SUBDOMAIN_ASC' | 'SUBDOMAIN_DESC' | 'DOMAIN_ASC' | 'DOMAIN_DESC';
|
|
63
|
+
export type DomainOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'SERVICE_ID_ASC' | 'SERVICE_ID_DESC' | 'SUBDOMAIN_ASC' | 'SUBDOMAIN_DESC' | 'DOMAIN_ASC' | 'DOMAIN_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC';
|
|
64
64
|
/** Methods to use when ordering `SiteMetadatum`. */
|
|
65
65
|
export type SiteMetadatumOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'OG_IMAGE_ASC' | 'OG_IMAGE_DESC';
|
|
66
66
|
/** Methods to use when ordering `SiteModule`. */
|
|
@@ -70,7 +70,7 @@ export type SiteThemeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC
|
|
|
70
70
|
/** Methods to use when ordering `CorsSetting`. */
|
|
71
71
|
export type CorsSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC';
|
|
72
72
|
/** Methods to use when ordering `Schema`. */
|
|
73
|
-
export type SchemaOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SCHEMA_NAME_ASC' | 'SCHEMA_NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | '
|
|
73
|
+
export type SchemaOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SCHEMA_NAME_ASC' | 'SCHEMA_NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'IS_PUBLIC_ASC' | 'IS_PUBLIC_DESC' | 'API_EXPOSURE_ASC' | 'API_EXPOSURE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
74
74
|
/** Methods to use when ordering `TriggerFunction`. */
|
|
75
75
|
export type TriggerFunctionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CODE_ASC' | 'CODE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
76
76
|
/** Methods to use when ordering `Partition`. */
|
|
@@ -78,9 +78,9 @@ export type PartitionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC
|
|
|
78
78
|
/** Methods to use when ordering `DatabaseTransfer`. */
|
|
79
79
|
export type DatabaseTransferOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TARGET_OWNER_ID_ASC' | 'TARGET_OWNER_ID_DESC' | 'SOURCE_APPROVED_ASC' | 'SOURCE_APPROVED_DESC' | 'TARGET_APPROVED_ASC' | 'TARGET_APPROVED_DESC' | 'SOURCE_APPROVED_AT_ASC' | 'SOURCE_APPROVED_AT_DESC' | 'TARGET_APPROVED_AT_ASC' | 'TARGET_APPROVED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'INITIATED_BY_ASC' | 'INITIATED_BY_DESC' | 'NOTES_ASC' | 'NOTES_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC';
|
|
80
80
|
/** Methods to use when ordering `Api`. */
|
|
81
|
-
export type ApiOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DBNAME_ASC' | 'DBNAME_DESC' | 'ROLE_NAME_ASC' | 'ROLE_NAME_DESC' | 'ANON_ROLE_ASC' | 'ANON_ROLE_DESC' | 'IS_PUBLIC_ASC' | 'IS_PUBLIC_DESC';
|
|
81
|
+
export type ApiOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DBNAME_ASC' | 'DBNAME_DESC' | 'ROLE_NAME_ASC' | 'ROLE_NAME_DESC' | 'ANON_ROLE_ASC' | 'ANON_ROLE_DESC' | 'IS_PUBLIC_ASC' | 'IS_PUBLIC_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC';
|
|
82
82
|
/** Methods to use when ordering `Site`. */
|
|
83
|
-
export type SiteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'OG_IMAGE_ASC' | 'OG_IMAGE_DESC' | 'FAVICON_ASC' | 'FAVICON_DESC' | 'APPLE_TOUCH_ICON_ASC' | 'APPLE_TOUCH_ICON_DESC' | 'LOGO_ASC' | 'LOGO_DESC' | 'DBNAME_ASC' | 'DBNAME_DESC';
|
|
83
|
+
export type SiteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'OG_IMAGE_ASC' | 'OG_IMAGE_DESC' | 'FAVICON_ASC' | 'FAVICON_DESC' | 'APPLE_TOUCH_ICON_ASC' | 'APPLE_TOUCH_ICON_DESC' | 'LOGO_ASC' | 'LOGO_DESC' | 'DBNAME_ASC' | 'DBNAME_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC';
|
|
84
84
|
/** Methods to use when ordering `App`. */
|
|
85
85
|
export type AppOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'APP_IMAGE_ASC' | 'APP_IMAGE_DESC' | 'APP_STORE_LINK_ASC' | 'APP_STORE_LINK_DESC' | 'APP_STORE_ID_ASC' | 'APP_STORE_ID_DESC' | 'APP_ID_PREFIX_ASC' | 'APP_ID_PREFIX_DESC' | 'PLAY_STORE_LINK_ASC' | 'PLAY_STORE_LINK_DESC';
|
|
86
86
|
/** Methods to use when ordering `ApiSetting`. */
|
|
@@ -98,7 +98,7 @@ export type RlsSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DES
|
|
|
98
98
|
/** Methods to use when ordering `SqlAction`. */
|
|
99
99
|
export type SqlActionOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'DEPS_ASC' | 'DEPS_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'CONTENT_ASC' | 'CONTENT_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ACTION_ASC' | 'ACTION_DESC' | 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
|
|
100
100
|
/** Methods to use when ordering `DatabaseSetting`. */
|
|
101
|
-
export type DatabaseSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENABLE_AGGREGATES_ASC' | 'ENABLE_AGGREGATES_DESC' | 'ENABLE_POSTGIS_ASC' | 'ENABLE_POSTGIS_DESC' | 'ENABLE_SEARCH_ASC' | 'ENABLE_SEARCH_DESC' | 'ENABLE_DIRECT_UPLOADS_ASC' | 'ENABLE_DIRECT_UPLOADS_DESC' | 'ENABLE_PRESIGNED_UPLOADS_ASC' | 'ENABLE_PRESIGNED_UPLOADS_DESC' | 'ENABLE_MANY_TO_MANY_ASC' | 'ENABLE_MANY_TO_MANY_DESC' | 'ENABLE_CONNECTION_FILTER_ASC' | 'ENABLE_CONNECTION_FILTER_DESC' | 'ENABLE_LTREE_ASC' | 'ENABLE_LTREE_DESC' | 'ENABLE_LLM_ASC' | 'ENABLE_LLM_DESC' | 'ENABLE_REALTIME_ASC' | 'ENABLE_REALTIME_DESC' | 'ENABLE_BULK_ASC' | 'ENABLE_BULK_DESC' | 'ENABLE_I18N_ASC' | 'ENABLE_I18N_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC';
|
|
101
|
+
export type DatabaseSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENABLE_AGGREGATES_ASC' | 'ENABLE_AGGREGATES_DESC' | 'ENABLE_POSTGIS_ASC' | 'ENABLE_POSTGIS_DESC' | 'ENABLE_SEARCH_ASC' | 'ENABLE_SEARCH_DESC' | 'ENABLE_DIRECT_UPLOADS_ASC' | 'ENABLE_DIRECT_UPLOADS_DESC' | 'ENABLE_PRESIGNED_UPLOADS_ASC' | 'ENABLE_PRESIGNED_UPLOADS_DESC' | 'ENABLE_MANY_TO_MANY_ASC' | 'ENABLE_MANY_TO_MANY_DESC' | 'ENABLE_CONNECTION_FILTER_ASC' | 'ENABLE_CONNECTION_FILTER_DESC' | 'ENABLE_LTREE_ASC' | 'ENABLE_LTREE_DESC' | 'ENABLE_LLM_ASC' | 'ENABLE_LLM_DESC' | 'ENABLE_REALTIME_ASC' | 'ENABLE_REALTIME_DESC' | 'ENABLE_BULK_ASC' | 'ENABLE_BULK_DESC' | 'ENABLE_I18N_ASC' | 'ENABLE_I18N_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC';
|
|
102
102
|
/** Methods to use when ordering `WebauthnSetting`. */
|
|
103
103
|
export type WebauthnSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'CREDENTIALS_SCHEMA_ID_ASC' | 'CREDENTIALS_SCHEMA_ID_DESC' | 'SESSIONS_SCHEMA_ID_ASC' | 'SESSIONS_SCHEMA_ID_DESC' | 'SESSION_SECRETS_SCHEMA_ID_ASC' | 'SESSION_SECRETS_SCHEMA_ID_DESC' | 'CREDENTIALS_TABLE_ID_ASC' | 'CREDENTIALS_TABLE_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SESSION_SECRETS_TABLE_ID_ASC' | 'SESSION_SECRETS_TABLE_ID_DESC' | 'USER_FIELD_ID_ASC' | 'USER_FIELD_ID_DESC' | 'RP_ID_ASC' | 'RP_ID_DESC' | 'RP_NAME_ASC' | 'RP_NAME_DESC' | 'ORIGIN_ALLOWLIST_ASC' | 'ORIGIN_ALLOWLIST_DESC' | 'ATTESTATION_TYPE_ASC' | 'ATTESTATION_TYPE_DESC' | 'REQUIRE_USER_VERIFICATION_ASC' | 'REQUIRE_USER_VERIFICATION_DESC' | 'RESIDENT_KEY_ASC' | 'RESIDENT_KEY_DESC' | 'CHALLENGE_EXPIRY_SECONDS_ASC' | 'CHALLENGE_EXPIRY_SECONDS_DESC';
|
|
104
104
|
/** Methods to use when ordering `AstMigration`. */
|
|
@@ -123,8 +123,6 @@ export interface CheckConstraintFilter {
|
|
|
123
123
|
smartTags?: JSONFilter;
|
|
124
124
|
/** Filter by the object’s `category` field. */
|
|
125
125
|
category?: ObjectCategoryFilter;
|
|
126
|
-
/** Filter by the object’s `scope` field. */
|
|
127
|
-
scope?: IntFilter;
|
|
128
126
|
/** Filter by the object’s `tags` field. */
|
|
129
127
|
tags?: StringListFilter;
|
|
130
128
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -383,8 +381,6 @@ export interface SchemaFilter {
|
|
|
383
381
|
smartTags?: JSONFilter;
|
|
384
382
|
/** Filter by the object’s `category` field. */
|
|
385
383
|
category?: ObjectCategoryFilter;
|
|
386
|
-
/** Filter by the object’s `scope` field. */
|
|
387
|
-
scope?: IntFilter;
|
|
388
384
|
/** Filter by the object’s `tags` field. */
|
|
389
385
|
tags?: StringListFilter;
|
|
390
386
|
/** Filter by the object’s `isPublic` field. */
|
|
@@ -488,8 +484,6 @@ export interface TableFilter {
|
|
|
488
484
|
smartTags?: JSONFilter;
|
|
489
485
|
/** Filter by the object’s `category` field. */
|
|
490
486
|
category?: ObjectCategoryFilter;
|
|
491
|
-
/** Filter by the object’s `scope` field. */
|
|
492
|
-
scope?: IntFilter;
|
|
493
487
|
/** Filter by the object’s `useRls` field. */
|
|
494
488
|
useRls?: BooleanFilter;
|
|
495
489
|
/** Filter by the object’s `timestamps` field. */
|
|
@@ -657,8 +651,6 @@ export interface FieldFilter {
|
|
|
657
651
|
tags?: StringListFilter;
|
|
658
652
|
/** Filter by the object’s `category` field. */
|
|
659
653
|
category?: ObjectCategoryFilter;
|
|
660
|
-
/** Filter by the object’s `scope` field. */
|
|
661
|
-
scope?: IntFilter;
|
|
662
654
|
/** Filter by the object’s `createdAt` field. */
|
|
663
655
|
createdAt?: DatetimeFilter;
|
|
664
656
|
/** Filter by the object’s `updatedAt` field. */
|
|
@@ -713,8 +705,6 @@ export interface SpatialRelationFilter {
|
|
|
713
705
|
paramName?: StringFilter;
|
|
714
706
|
/** Filter by the object’s `category` field. */
|
|
715
707
|
category?: ObjectCategoryFilter;
|
|
716
|
-
/** Filter by the object’s `scope` field. */
|
|
717
|
-
scope?: IntFilter;
|
|
718
708
|
/** Filter by the object’s `tags` field. */
|
|
719
709
|
tags?: StringListFilter;
|
|
720
710
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -775,8 +765,6 @@ export interface ForeignKeyConstraintFilter {
|
|
|
775
765
|
updateAction?: StringFilter;
|
|
776
766
|
/** Filter by the object’s `category` field. */
|
|
777
767
|
category?: ObjectCategoryFilter;
|
|
778
|
-
/** Filter by the object’s `scope` field. */
|
|
779
|
-
scope?: IntFilter;
|
|
780
768
|
/** Filter by the object’s `tags` field. */
|
|
781
769
|
tags?: StringListFilter;
|
|
782
770
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -877,8 +865,6 @@ export interface IndexFilter {
|
|
|
877
865
|
smartTags?: JSONFilter;
|
|
878
866
|
/** Filter by the object’s `category` field. */
|
|
879
867
|
category?: ObjectCategoryFilter;
|
|
880
|
-
/** Filter by the object’s `scope` field. */
|
|
881
|
-
scope?: IntFilter;
|
|
882
868
|
/** Filter by the object’s `tags` field. */
|
|
883
869
|
tags?: StringListFilter;
|
|
884
870
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -931,8 +917,6 @@ export interface PolicyFilter {
|
|
|
931
917
|
smartTags?: JSONFilter;
|
|
932
918
|
/** Filter by the object’s `category` field. */
|
|
933
919
|
category?: ObjectCategoryFilter;
|
|
934
|
-
/** Filter by the object’s `scope` field. */
|
|
935
|
-
scope?: IntFilter;
|
|
936
920
|
/** Filter by the object’s `tags` field. */
|
|
937
921
|
tags?: StringListFilter;
|
|
938
922
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -977,8 +961,6 @@ export interface PrimaryKeyConstraintFilter {
|
|
|
977
961
|
smartTags?: JSONFilter;
|
|
978
962
|
/** Filter by the object’s `category` field. */
|
|
979
963
|
category?: ObjectCategoryFilter;
|
|
980
|
-
/** Filter by the object’s `scope` field. */
|
|
981
|
-
scope?: IntFilter;
|
|
982
964
|
/** Filter by the object’s `tags` field. */
|
|
983
965
|
tags?: StringListFilter;
|
|
984
966
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -1063,8 +1045,6 @@ export interface TriggerFilter {
|
|
|
1063
1045
|
smartTags?: JSONFilter;
|
|
1064
1046
|
/** Filter by the object’s `category` field. */
|
|
1065
1047
|
category?: ObjectCategoryFilter;
|
|
1066
|
-
/** Filter by the object’s `scope` field. */
|
|
1067
|
-
scope?: IntFilter;
|
|
1068
1048
|
/** Filter by the object’s `tags` field. */
|
|
1069
1049
|
tags?: StringListFilter;
|
|
1070
1050
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -1111,8 +1091,6 @@ export interface UniqueConstraintFilter {
|
|
|
1111
1091
|
fieldIds?: UUIDListFilter;
|
|
1112
1092
|
/** Filter by the object’s `category` field. */
|
|
1113
1093
|
category?: ObjectCategoryFilter;
|
|
1114
|
-
/** Filter by the object’s `scope` field. */
|
|
1115
|
-
scope?: IntFilter;
|
|
1116
1094
|
/** Filter by the object’s `tags` field. */
|
|
1117
1095
|
tags?: StringListFilter;
|
|
1118
1096
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -1167,8 +1145,6 @@ export interface ViewFilter {
|
|
|
1167
1145
|
smartTags?: JSONFilter;
|
|
1168
1146
|
/** Filter by the object’s `category` field. */
|
|
1169
1147
|
category?: ObjectCategoryFilter;
|
|
1170
|
-
/** Filter by the object’s `scope` field. */
|
|
1171
|
-
scope?: IntFilter;
|
|
1172
1148
|
/** Filter by the object’s `tags` field. */
|
|
1173
1149
|
tags?: StringListFilter;
|
|
1174
1150
|
/** Checks for all expressions in this list. */
|
|
@@ -1545,8 +1521,6 @@ export interface EnumFilter {
|
|
|
1545
1521
|
smartTags?: JSONFilter;
|
|
1546
1522
|
/** Filter by the object’s `category` field. */
|
|
1547
1523
|
category?: ObjectCategoryFilter;
|
|
1548
|
-
/** Filter by the object’s `scope` field. */
|
|
1549
|
-
scope?: IntFilter;
|
|
1550
1524
|
/** Filter by the object’s `tags` field. */
|
|
1551
1525
|
tags?: StringListFilter;
|
|
1552
1526
|
/** Checks for all expressions in this list. */
|
|
@@ -1619,8 +1593,6 @@ export interface CompositeTypeFilter {
|
|
|
1619
1593
|
smartTags?: JSONFilter;
|
|
1620
1594
|
/** Filter by the object’s `category` field. */
|
|
1621
1595
|
category?: ObjectCategoryFilter;
|
|
1622
|
-
/** Filter by the object’s `scope` field. */
|
|
1623
|
-
scope?: IntFilter;
|
|
1624
1596
|
/** Filter by the object’s `tags` field. */
|
|
1625
1597
|
tags?: StringListFilter;
|
|
1626
1598
|
/** Checks for all expressions in this list. */
|
|
@@ -1682,6 +1654,10 @@ export interface ApiFilter {
|
|
|
1682
1654
|
anonRole?: StringFilter;
|
|
1683
1655
|
/** Filter by the object’s `isPublic` field. */
|
|
1684
1656
|
isPublic?: BooleanFilter;
|
|
1657
|
+
/** Filter by the object’s `labels` field. */
|
|
1658
|
+
labels?: JSONFilter;
|
|
1659
|
+
/** Filter by the object’s `annotations` field. */
|
|
1660
|
+
annotations?: JSONFilter;
|
|
1685
1661
|
/** Checks for all expressions in this list. */
|
|
1686
1662
|
and?: ApiFilter[];
|
|
1687
1663
|
/** Checks for any expressions in this list. */
|
|
@@ -1769,10 +1745,16 @@ export interface DomainFilter {
|
|
|
1769
1745
|
apiId?: UUIDFilter;
|
|
1770
1746
|
/** Filter by the object’s `siteId` field. */
|
|
1771
1747
|
siteId?: UUIDFilter;
|
|
1748
|
+
/** Filter by the object’s `serviceId` field. */
|
|
1749
|
+
serviceId?: UUIDFilter;
|
|
1772
1750
|
/** Filter by the object’s `subdomain` field. */
|
|
1773
1751
|
subdomain?: ConstructiveInternalTypeHostnameFilter;
|
|
1774
1752
|
/** Filter by the object’s `domain` field. */
|
|
1775
1753
|
domain?: ConstructiveInternalTypeHostnameFilter;
|
|
1754
|
+
/** Filter by the object’s `labels` field. */
|
|
1755
|
+
labels?: JSONFilter;
|
|
1756
|
+
/** Filter by the object’s `annotations` field. */
|
|
1757
|
+
annotations?: JSONFilter;
|
|
1776
1758
|
/** Checks for all expressions in this list. */
|
|
1777
1759
|
and?: DomainFilter[];
|
|
1778
1760
|
/** Checks for any expressions in this list. */
|
|
@@ -1887,6 +1869,10 @@ export interface SiteFilter {
|
|
|
1887
1869
|
logo?: ConstructiveInternalTypeImageFilter;
|
|
1888
1870
|
/** Filter by the object’s `dbname` field. */
|
|
1889
1871
|
dbname?: StringFilter;
|
|
1872
|
+
/** Filter by the object’s `labels` field. */
|
|
1873
|
+
labels?: JSONFilter;
|
|
1874
|
+
/** Filter by the object’s `annotations` field. */
|
|
1875
|
+
annotations?: JSONFilter;
|
|
1890
1876
|
/** Checks for all expressions in this list. */
|
|
1891
1877
|
and?: SiteFilter[];
|
|
1892
1878
|
/** Checks for any expressions in this list. */
|
|
@@ -2716,6 +2702,10 @@ export interface DatabaseSettingFilter {
|
|
|
2716
2702
|
enableI18N?: BooleanFilter;
|
|
2717
2703
|
/** Filter by the object’s `options` field. */
|
|
2718
2704
|
options?: JSONFilter;
|
|
2705
|
+
/** Filter by the object’s `labels` field. */
|
|
2706
|
+
labels?: JSONFilter;
|
|
2707
|
+
/** Filter by the object’s `annotations` field. */
|
|
2708
|
+
annotations?: JSONFilter;
|
|
2719
2709
|
/** Checks for all expressions in this list. */
|
|
2720
2710
|
and?: DatabaseSettingFilter[];
|
|
2721
2711
|
/** Checks for any expressions in this list. */
|
|
@@ -3266,28 +3256,6 @@ export interface ViewGrantInput {
|
|
|
3266
3256
|
withGrantOption?: boolean;
|
|
3267
3257
|
isGrant?: boolean;
|
|
3268
3258
|
}
|
|
3269
|
-
export interface CreateApiInput {
|
|
3270
|
-
clientMutationId?: string;
|
|
3271
|
-
/** The `Api` to be created by this mutation. */
|
|
3272
|
-
api: ApiInput;
|
|
3273
|
-
}
|
|
3274
|
-
/** An input for mutations affecting `Api` */
|
|
3275
|
-
export interface ApiInput {
|
|
3276
|
-
/** Unique identifier for this API */
|
|
3277
|
-
id?: string;
|
|
3278
|
-
/** Reference to the metaschema database this API serves */
|
|
3279
|
-
databaseId: string;
|
|
3280
|
-
/** Unique name for this API within its database */
|
|
3281
|
-
name: string;
|
|
3282
|
-
/** PostgreSQL database name to connect to */
|
|
3283
|
-
dbname?: string;
|
|
3284
|
-
/** PostgreSQL role used for authenticated requests */
|
|
3285
|
-
roleName?: string;
|
|
3286
|
-
/** PostgreSQL role used for anonymous/unauthenticated requests */
|
|
3287
|
-
anonRole?: string;
|
|
3288
|
-
/** Whether this API is publicly accessible without authentication */
|
|
3289
|
-
isPublic?: boolean;
|
|
3290
|
-
}
|
|
3291
3259
|
export interface CreateCorsSettingInput {
|
|
3292
3260
|
clientMutationId?: string;
|
|
3293
3261
|
/** The `CorsSetting` to be created by this mutation. */
|
|
@@ -3355,6 +3323,32 @@ export interface SiteModuleInput {
|
|
|
3355
3323
|
/** JSON configuration data for this module */
|
|
3356
3324
|
data: unknown;
|
|
3357
3325
|
}
|
|
3326
|
+
export interface CreateApiInput {
|
|
3327
|
+
clientMutationId?: string;
|
|
3328
|
+
/** The `Api` to be created by this mutation. */
|
|
3329
|
+
api: ApiInput;
|
|
3330
|
+
}
|
|
3331
|
+
/** An input for mutations affecting `Api` */
|
|
3332
|
+
export interface ApiInput {
|
|
3333
|
+
/** Unique identifier for this API */
|
|
3334
|
+
id?: string;
|
|
3335
|
+
/** Reference to the metaschema database this API serves */
|
|
3336
|
+
databaseId: string;
|
|
3337
|
+
/** Unique name for this API within its database */
|
|
3338
|
+
name: string;
|
|
3339
|
+
/** PostgreSQL database name to connect to */
|
|
3340
|
+
dbname?: string;
|
|
3341
|
+
/** PostgreSQL role used for authenticated requests */
|
|
3342
|
+
roleName?: string;
|
|
3343
|
+
/** PostgreSQL role used for anonymous/unauthenticated requests */
|
|
3344
|
+
anonRole?: string;
|
|
3345
|
+
/** Whether this API is publicly accessible without authentication */
|
|
3346
|
+
isPublic?: boolean;
|
|
3347
|
+
/** Key/value pairs for selecting and filtering APIs */
|
|
3348
|
+
labels?: unknown;
|
|
3349
|
+
/** Freeform metadata for tooling and operational notes */
|
|
3350
|
+
annotations?: unknown;
|
|
3351
|
+
}
|
|
3358
3352
|
export interface CreateSiteMetadatumInput {
|
|
3359
3353
|
clientMutationId?: string;
|
|
3360
3354
|
/** The `SiteMetadatum` to be created by this mutation. */
|
|
@@ -3462,26 +3456,6 @@ export interface TableGrantInput {
|
|
|
3462
3456
|
createdAt?: string;
|
|
3463
3457
|
updatedAt?: string;
|
|
3464
3458
|
}
|
|
3465
|
-
export interface CreateDomainInput {
|
|
3466
|
-
clientMutationId?: string;
|
|
3467
|
-
/** The `Domain` to be created by this mutation. */
|
|
3468
|
-
domain: DomainInput;
|
|
3469
|
-
}
|
|
3470
|
-
/** An input for mutations affecting `Domain` */
|
|
3471
|
-
export interface DomainInput {
|
|
3472
|
-
/** Unique identifier for this domain record */
|
|
3473
|
-
id?: string;
|
|
3474
|
-
/** Reference to the metaschema database this domain belongs to */
|
|
3475
|
-
databaseId: string;
|
|
3476
|
-
/** API endpoint this domain routes to (mutually exclusive with site_id) */
|
|
3477
|
-
apiId?: string;
|
|
3478
|
-
/** Site this domain routes to (mutually exclusive with api_id) */
|
|
3479
|
-
siteId?: string;
|
|
3480
|
-
/** Subdomain portion of the hostname */
|
|
3481
|
-
subdomain?: ConstructiveInternalTypeHostname;
|
|
3482
|
-
/** Root domain of the hostname */
|
|
3483
|
-
domain?: ConstructiveInternalTypeHostname;
|
|
3484
|
-
}
|
|
3485
3459
|
export interface CreateRlsSettingInput {
|
|
3486
3460
|
clientMutationId?: string;
|
|
3487
3461
|
/** The `RlsSetting` to be created by this mutation. */
|
|
@@ -3549,6 +3523,32 @@ export interface PartitionInput {
|
|
|
3549
3523
|
createdAt?: string;
|
|
3550
3524
|
updatedAt?: string;
|
|
3551
3525
|
}
|
|
3526
|
+
export interface CreateDomainInput {
|
|
3527
|
+
clientMutationId?: string;
|
|
3528
|
+
/** The `Domain` to be created by this mutation. */
|
|
3529
|
+
domain: DomainInput;
|
|
3530
|
+
}
|
|
3531
|
+
/** An input for mutations affecting `Domain` */
|
|
3532
|
+
export interface DomainInput {
|
|
3533
|
+
/** Unique identifier for this domain record */
|
|
3534
|
+
id?: string;
|
|
3535
|
+
/** Reference to the metaschema database this domain belongs to */
|
|
3536
|
+
databaseId: string;
|
|
3537
|
+
/** API endpoint this domain routes to (mutually exclusive with site_id) */
|
|
3538
|
+
apiId?: string;
|
|
3539
|
+
/** Site this domain routes to (mutually exclusive with api_id and service_id) */
|
|
3540
|
+
siteId?: string;
|
|
3541
|
+
/** Server deployment this domain routes to (mutually exclusive with api_id and site_id) */
|
|
3542
|
+
serviceId?: string;
|
|
3543
|
+
/** Subdomain portion of the hostname */
|
|
3544
|
+
subdomain?: ConstructiveInternalTypeHostname;
|
|
3545
|
+
/** Root domain of the hostname */
|
|
3546
|
+
domain?: ConstructiveInternalTypeHostname;
|
|
3547
|
+
/** Key/value pairs for selecting and filtering domains */
|
|
3548
|
+
labels?: unknown;
|
|
3549
|
+
/** Freeform metadata for tooling and operational notes */
|
|
3550
|
+
annotations?: unknown;
|
|
3551
|
+
}
|
|
3552
3552
|
export interface CreateCompositeTypeInput {
|
|
3553
3553
|
clientMutationId?: string;
|
|
3554
3554
|
/** The `CompositeType` to be created by this mutation. */
|
|
@@ -3565,7 +3565,6 @@ export interface CompositeTypeInput {
|
|
|
3565
3565
|
attributes?: unknown;
|
|
3566
3566
|
smartTags?: unknown;
|
|
3567
3567
|
category?: ObjectCategory;
|
|
3568
|
-
scope?: number;
|
|
3569
3568
|
tags?: string[];
|
|
3570
3569
|
}
|
|
3571
3570
|
export interface CreateEnumInput {
|
|
@@ -3584,30 +3583,8 @@ export interface EnumInput {
|
|
|
3584
3583
|
values?: string[];
|
|
3585
3584
|
smartTags?: unknown;
|
|
3586
3585
|
category?: ObjectCategory;
|
|
3587
|
-
scope?: number;
|
|
3588
3586
|
tags?: string[];
|
|
3589
3587
|
}
|
|
3590
|
-
export interface CreateSqlActionInput {
|
|
3591
|
-
clientMutationId?: string;
|
|
3592
|
-
/** The `SqlAction` to be created by this mutation. */
|
|
3593
|
-
sqlAction: SqlActionInput;
|
|
3594
|
-
}
|
|
3595
|
-
/** An input for mutations affecting `SqlAction` */
|
|
3596
|
-
export interface SqlActionInput {
|
|
3597
|
-
id?: number;
|
|
3598
|
-
name?: string;
|
|
3599
|
-
databaseId?: string;
|
|
3600
|
-
deploy?: string;
|
|
3601
|
-
deps?: string[];
|
|
3602
|
-
payload?: unknown;
|
|
3603
|
-
content?: string;
|
|
3604
|
-
revert?: string;
|
|
3605
|
-
verify?: string;
|
|
3606
|
-
createdAt?: string;
|
|
3607
|
-
action?: string;
|
|
3608
|
-
actionId?: string;
|
|
3609
|
-
actorId?: string;
|
|
3610
|
-
}
|
|
3611
3588
|
export interface CreateViewInput {
|
|
3612
3589
|
clientMutationId?: string;
|
|
3613
3590
|
/** The `View` to be created by this mutation. */
|
|
@@ -3628,108 +3605,28 @@ export interface ViewInput {
|
|
|
3628
3605
|
isReadOnly?: boolean;
|
|
3629
3606
|
smartTags?: unknown;
|
|
3630
3607
|
category?: ObjectCategory;
|
|
3631
|
-
scope?: number;
|
|
3632
3608
|
tags?: string[];
|
|
3633
3609
|
}
|
|
3634
|
-
export interface
|
|
3635
|
-
clientMutationId?: string;
|
|
3636
|
-
/** The `DatabaseSetting` to be created by this mutation. */
|
|
3637
|
-
databaseSetting: DatabaseSettingInput;
|
|
3638
|
-
}
|
|
3639
|
-
/** An input for mutations affecting `DatabaseSetting` */
|
|
3640
|
-
export interface DatabaseSettingInput {
|
|
3641
|
-
/** Unique identifier for this settings record */
|
|
3642
|
-
id?: string;
|
|
3643
|
-
/** Reference to the metaschema database these settings apply to */
|
|
3644
|
-
databaseId: string;
|
|
3645
|
-
/** Enable aggregate queries (sum, avg, min, max, etc.) in the GraphQL API */
|
|
3646
|
-
enableAggregates?: boolean;
|
|
3647
|
-
/** Enable PostGIS spatial types and operators in the GraphQL API */
|
|
3648
|
-
enablePostgis?: boolean;
|
|
3649
|
-
/** Enable unified search (tsvector, BM25, pg_trgm, pgvector) in the GraphQL API */
|
|
3650
|
-
enableSearch?: boolean;
|
|
3651
|
-
/** Enable direct (multipart) file upload mutations in the GraphQL API */
|
|
3652
|
-
enableDirectUploads?: boolean;
|
|
3653
|
-
/** Enable presigned URL upload flow for S3/MinIO storage */
|
|
3654
|
-
enablePresignedUploads?: boolean;
|
|
3655
|
-
/** Enable many-to-many relationship queries in the GraphQL API */
|
|
3656
|
-
enableManyToMany?: boolean;
|
|
3657
|
-
/** Enable connection filter (where argument) in the GraphQL API */
|
|
3658
|
-
enableConnectionFilter?: boolean;
|
|
3659
|
-
/** Enable ltree hierarchical data type support in the GraphQL API */
|
|
3660
|
-
enableLtree?: boolean;
|
|
3661
|
-
/** Enable LLM/AI integration features in the GraphQL API */
|
|
3662
|
-
enableLlm?: boolean;
|
|
3663
|
-
/** Enable realtime subscriptions (cursor-tracked change delivery) in the GraphQL API */
|
|
3664
|
-
enableRealtime?: boolean;
|
|
3665
|
-
/** Enable bulk mutation operations (insert, upsert, update, delete) in the GraphQL API */
|
|
3666
|
-
enableBulk?: boolean;
|
|
3667
|
-
/** Enable internationalization plugin (localeStrings field, translation table discovery) in the GraphQL API */
|
|
3668
|
-
enableI18N?: boolean;
|
|
3669
|
-
/** Extensible JSON for additional settings that do not have dedicated columns */
|
|
3670
|
-
options?: unknown;
|
|
3671
|
-
}
|
|
3672
|
-
export interface CreateApiSettingInput {
|
|
3673
|
-
clientMutationId?: string;
|
|
3674
|
-
/** The `ApiSetting` to be created by this mutation. */
|
|
3675
|
-
apiSetting: ApiSettingInput;
|
|
3676
|
-
}
|
|
3677
|
-
/** An input for mutations affecting `ApiSetting` */
|
|
3678
|
-
export interface ApiSettingInput {
|
|
3679
|
-
/** Unique identifier for this API settings record */
|
|
3680
|
-
id?: string;
|
|
3681
|
-
/** Reference to the metaschema database */
|
|
3682
|
-
databaseId: string;
|
|
3683
|
-
/** API these settings override for */
|
|
3684
|
-
apiId: string;
|
|
3685
|
-
/** Override: enable aggregate queries (NULL = inherit from database_settings) */
|
|
3686
|
-
enableAggregates?: boolean;
|
|
3687
|
-
/** Override: enable PostGIS spatial types (NULL = inherit from database_settings) */
|
|
3688
|
-
enablePostgis?: boolean;
|
|
3689
|
-
/** Override: enable unified search (NULL = inherit from database_settings) */
|
|
3690
|
-
enableSearch?: boolean;
|
|
3691
|
-
/** Override: enable direct (multipart) file uploads (NULL = inherit from database_settings) */
|
|
3692
|
-
enableDirectUploads?: boolean;
|
|
3693
|
-
/** Override: enable presigned URL upload flow (NULL = inherit from database_settings) */
|
|
3694
|
-
enablePresignedUploads?: boolean;
|
|
3695
|
-
/** Override: enable many-to-many relationships (NULL = inherit from database_settings) */
|
|
3696
|
-
enableManyToMany?: boolean;
|
|
3697
|
-
/** Override: enable connection filter (NULL = inherit from database_settings) */
|
|
3698
|
-
enableConnectionFilter?: boolean;
|
|
3699
|
-
/** Override: enable ltree hierarchical data type (NULL = inherit from database_settings) */
|
|
3700
|
-
enableLtree?: boolean;
|
|
3701
|
-
/** Override: enable LLM/AI integration features (NULL = inherit from database_settings) */
|
|
3702
|
-
enableLlm?: boolean;
|
|
3703
|
-
/** Override: enable realtime subscriptions (NULL = inherit from database_settings) */
|
|
3704
|
-
enableRealtime?: boolean;
|
|
3705
|
-
/** Override: enable bulk mutations (NULL = inherit from database_settings) */
|
|
3706
|
-
enableBulk?: boolean;
|
|
3707
|
-
/** Override: enable internationalization plugin (NULL = inherit from database_settings) */
|
|
3708
|
-
enableI18N?: boolean;
|
|
3709
|
-
/** Extensible JSON for additional per-API settings that do not have dedicated columns */
|
|
3710
|
-
options?: unknown;
|
|
3711
|
-
}
|
|
3712
|
-
export interface CreateDatabaseTransferInput {
|
|
3610
|
+
export interface CreateSqlActionInput {
|
|
3713
3611
|
clientMutationId?: string;
|
|
3714
|
-
/** The `
|
|
3715
|
-
|
|
3612
|
+
/** The `SqlAction` to be created by this mutation. */
|
|
3613
|
+
sqlAction: SqlActionInput;
|
|
3716
3614
|
}
|
|
3717
|
-
/** An input for mutations affecting `
|
|
3718
|
-
export interface
|
|
3719
|
-
id?:
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
notes?: string;
|
|
3729
|
-
expiresAt?: string;
|
|
3615
|
+
/** An input for mutations affecting `SqlAction` */
|
|
3616
|
+
export interface SqlActionInput {
|
|
3617
|
+
id?: number;
|
|
3618
|
+
name?: string;
|
|
3619
|
+
databaseId?: string;
|
|
3620
|
+
deploy?: string;
|
|
3621
|
+
deps?: string[];
|
|
3622
|
+
payload?: unknown;
|
|
3623
|
+
content?: string;
|
|
3624
|
+
revert?: string;
|
|
3625
|
+
verify?: string;
|
|
3730
3626
|
createdAt?: string;
|
|
3731
|
-
|
|
3732
|
-
|
|
3627
|
+
action?: string;
|
|
3628
|
+
actionId?: string;
|
|
3629
|
+
actorId?: string;
|
|
3733
3630
|
}
|
|
3734
3631
|
export interface CreatePrimaryKeyConstraintInput {
|
|
3735
3632
|
clientMutationId?: string;
|
|
@@ -3746,7 +3643,6 @@ export interface PrimaryKeyConstraintInput {
|
|
|
3746
3643
|
fieldIds: string[];
|
|
3747
3644
|
smartTags?: unknown;
|
|
3748
3645
|
category?: ObjectCategory;
|
|
3749
|
-
scope?: number;
|
|
3750
3646
|
tags?: string[];
|
|
3751
3647
|
createdAt?: string;
|
|
3752
3648
|
updatedAt?: string;
|
|
@@ -3766,7 +3662,6 @@ export interface TriggerInput {
|
|
|
3766
3662
|
functionName?: string;
|
|
3767
3663
|
smartTags?: unknown;
|
|
3768
3664
|
category?: ObjectCategory;
|
|
3769
|
-
scope?: number;
|
|
3770
3665
|
tags?: string[];
|
|
3771
3666
|
createdAt?: string;
|
|
3772
3667
|
updatedAt?: string;
|
|
@@ -3787,7 +3682,6 @@ export interface CheckConstraintInput {
|
|
|
3787
3682
|
expr?: unknown;
|
|
3788
3683
|
smartTags?: unknown;
|
|
3789
3684
|
category?: ObjectCategory;
|
|
3790
|
-
scope?: number;
|
|
3791
3685
|
tags?: string[];
|
|
3792
3686
|
createdAt?: string;
|
|
3793
3687
|
updatedAt?: string;
|
|
@@ -3808,7 +3702,6 @@ export interface UniqueConstraintInput {
|
|
|
3808
3702
|
type?: string;
|
|
3809
3703
|
fieldIds: string[];
|
|
3810
3704
|
category?: ObjectCategory;
|
|
3811
|
-
scope?: number;
|
|
3812
3705
|
tags?: string[];
|
|
3813
3706
|
createdAt?: string;
|
|
3814
3707
|
updatedAt?: string;
|
|
@@ -3830,7 +3723,6 @@ export interface SpatialRelationInput {
|
|
|
3830
3723
|
operator: string;
|
|
3831
3724
|
paramName?: string;
|
|
3832
3725
|
category?: ObjectCategory;
|
|
3833
|
-
scope?: number;
|
|
3834
3726
|
tags?: string[];
|
|
3835
3727
|
createdAt?: string;
|
|
3836
3728
|
updatedAt?: string;
|
|
@@ -3854,62 +3746,71 @@ export interface PolicyInput {
|
|
|
3854
3746
|
data?: unknown;
|
|
3855
3747
|
smartTags?: unknown;
|
|
3856
3748
|
category?: ObjectCategory;
|
|
3857
|
-
scope?: number;
|
|
3858
3749
|
tags?: string[];
|
|
3859
3750
|
createdAt?: string;
|
|
3860
3751
|
updatedAt?: string;
|
|
3861
3752
|
}
|
|
3862
|
-
export interface
|
|
3863
|
-
clientMutationId?: string;
|
|
3864
|
-
/** The `App` to be created by this mutation. */
|
|
3865
|
-
app: AppInput;
|
|
3866
|
-
}
|
|
3867
|
-
/** An input for mutations affecting `App` */
|
|
3868
|
-
export interface AppInput {
|
|
3869
|
-
/** Unique identifier for this app */
|
|
3870
|
-
id?: string;
|
|
3871
|
-
/** Reference to the metaschema database this app belongs to */
|
|
3872
|
-
databaseId: string;
|
|
3873
|
-
/** Site this app is associated with (one app per site) */
|
|
3874
|
-
siteId: string;
|
|
3875
|
-
/** Display name of the app */
|
|
3876
|
-
name?: string;
|
|
3877
|
-
/** App icon or promotional image */
|
|
3878
|
-
appImage?: ConstructiveInternalTypeImage;
|
|
3879
|
-
/** URL to the Apple App Store listing */
|
|
3880
|
-
appStoreLink?: ConstructiveInternalTypeUrl;
|
|
3881
|
-
/** Apple App Store application identifier */
|
|
3882
|
-
appStoreId?: string;
|
|
3883
|
-
/** Apple App ID prefix (Team ID) for universal links and associated domains */
|
|
3884
|
-
appIdPrefix?: string;
|
|
3885
|
-
/** URL to the Google Play Store listing */
|
|
3886
|
-
playStoreLink?: ConstructiveInternalTypeUrl;
|
|
3887
|
-
}
|
|
3888
|
-
export interface CreateSiteInput {
|
|
3753
|
+
export interface CreateApiSettingInput {
|
|
3889
3754
|
clientMutationId?: string;
|
|
3890
|
-
/** The `
|
|
3891
|
-
|
|
3755
|
+
/** The `ApiSetting` to be created by this mutation. */
|
|
3756
|
+
apiSetting: ApiSettingInput;
|
|
3892
3757
|
}
|
|
3893
|
-
/** An input for mutations affecting `
|
|
3894
|
-
export interface
|
|
3895
|
-
/** Unique identifier for this
|
|
3758
|
+
/** An input for mutations affecting `ApiSetting` */
|
|
3759
|
+
export interface ApiSettingInput {
|
|
3760
|
+
/** Unique identifier for this API settings record */
|
|
3896
3761
|
id?: string;
|
|
3897
|
-
/** Reference to the metaschema database
|
|
3762
|
+
/** Reference to the metaschema database */
|
|
3898
3763
|
databaseId: string;
|
|
3899
|
-
/**
|
|
3900
|
-
|
|
3901
|
-
/**
|
|
3902
|
-
|
|
3903
|
-
/**
|
|
3904
|
-
|
|
3905
|
-
/**
|
|
3906
|
-
|
|
3907
|
-
/**
|
|
3908
|
-
|
|
3909
|
-
/**
|
|
3910
|
-
|
|
3911
|
-
/**
|
|
3912
|
-
|
|
3764
|
+
/** API these settings override for */
|
|
3765
|
+
apiId: string;
|
|
3766
|
+
/** Override: enable aggregate queries (NULL = inherit from database_settings) */
|
|
3767
|
+
enableAggregates?: boolean;
|
|
3768
|
+
/** Override: enable PostGIS spatial types (NULL = inherit from database_settings) */
|
|
3769
|
+
enablePostgis?: boolean;
|
|
3770
|
+
/** Override: enable unified search (NULL = inherit from database_settings) */
|
|
3771
|
+
enableSearch?: boolean;
|
|
3772
|
+
/** Override: enable direct (multipart) file uploads (NULL = inherit from database_settings) */
|
|
3773
|
+
enableDirectUploads?: boolean;
|
|
3774
|
+
/** Override: enable presigned URL upload flow (NULL = inherit from database_settings) */
|
|
3775
|
+
enablePresignedUploads?: boolean;
|
|
3776
|
+
/** Override: enable many-to-many relationships (NULL = inherit from database_settings) */
|
|
3777
|
+
enableManyToMany?: boolean;
|
|
3778
|
+
/** Override: enable connection filter (NULL = inherit from database_settings) */
|
|
3779
|
+
enableConnectionFilter?: boolean;
|
|
3780
|
+
/** Override: enable ltree hierarchical data type (NULL = inherit from database_settings) */
|
|
3781
|
+
enableLtree?: boolean;
|
|
3782
|
+
/** Override: enable LLM/AI integration features (NULL = inherit from database_settings) */
|
|
3783
|
+
enableLlm?: boolean;
|
|
3784
|
+
/** Override: enable realtime subscriptions (NULL = inherit from database_settings) */
|
|
3785
|
+
enableRealtime?: boolean;
|
|
3786
|
+
/** Override: enable bulk mutations (NULL = inherit from database_settings) */
|
|
3787
|
+
enableBulk?: boolean;
|
|
3788
|
+
/** Override: enable internationalization plugin (NULL = inherit from database_settings) */
|
|
3789
|
+
enableI18N?: boolean;
|
|
3790
|
+
/** Extensible JSON for additional per-API settings that do not have dedicated columns */
|
|
3791
|
+
options?: unknown;
|
|
3792
|
+
}
|
|
3793
|
+
export interface CreateDatabaseTransferInput {
|
|
3794
|
+
clientMutationId?: string;
|
|
3795
|
+
/** The `DatabaseTransfer` to be created by this mutation. */
|
|
3796
|
+
databaseTransfer: DatabaseTransferInput;
|
|
3797
|
+
}
|
|
3798
|
+
/** An input for mutations affecting `DatabaseTransfer` */
|
|
3799
|
+
export interface DatabaseTransferInput {
|
|
3800
|
+
id?: string;
|
|
3801
|
+
databaseId: string;
|
|
3802
|
+
targetOwnerId: string;
|
|
3803
|
+
sourceApproved?: boolean;
|
|
3804
|
+
targetApproved?: boolean;
|
|
3805
|
+
sourceApprovedAt?: string;
|
|
3806
|
+
targetApprovedAt?: string;
|
|
3807
|
+
status?: string;
|
|
3808
|
+
initiatedBy: string;
|
|
3809
|
+
notes?: string;
|
|
3810
|
+
expiresAt?: string;
|
|
3811
|
+
createdAt?: string;
|
|
3812
|
+
updatedAt?: string;
|
|
3813
|
+
completedAt?: string;
|
|
3913
3814
|
}
|
|
3914
3815
|
export interface CreateIndexInput {
|
|
3915
3816
|
clientMutationId?: string;
|
|
@@ -3932,11 +3833,108 @@ export interface IndexInput {
|
|
|
3932
3833
|
opClasses?: string[];
|
|
3933
3834
|
smartTags?: unknown;
|
|
3934
3835
|
category?: ObjectCategory;
|
|
3935
|
-
scope?: number;
|
|
3936
3836
|
tags?: string[];
|
|
3937
3837
|
createdAt?: string;
|
|
3938
3838
|
updatedAt?: string;
|
|
3939
3839
|
}
|
|
3840
|
+
export interface CreateAppInput {
|
|
3841
|
+
clientMutationId?: string;
|
|
3842
|
+
/** The `App` to be created by this mutation. */
|
|
3843
|
+
app: AppInput;
|
|
3844
|
+
}
|
|
3845
|
+
/** An input for mutations affecting `App` */
|
|
3846
|
+
export interface AppInput {
|
|
3847
|
+
/** Unique identifier for this app */
|
|
3848
|
+
id?: string;
|
|
3849
|
+
/** Reference to the metaschema database this app belongs to */
|
|
3850
|
+
databaseId: string;
|
|
3851
|
+
/** Site this app is associated with (one app per site) */
|
|
3852
|
+
siteId: string;
|
|
3853
|
+
/** Display name of the app */
|
|
3854
|
+
name?: string;
|
|
3855
|
+
/** App icon or promotional image */
|
|
3856
|
+
appImage?: ConstructiveInternalTypeImage;
|
|
3857
|
+
/** URL to the Apple App Store listing */
|
|
3858
|
+
appStoreLink?: ConstructiveInternalTypeUrl;
|
|
3859
|
+
/** Apple App Store application identifier */
|
|
3860
|
+
appStoreId?: string;
|
|
3861
|
+
/** Apple App ID prefix (Team ID) for universal links and associated domains */
|
|
3862
|
+
appIdPrefix?: string;
|
|
3863
|
+
/** URL to the Google Play Store listing */
|
|
3864
|
+
playStoreLink?: ConstructiveInternalTypeUrl;
|
|
3865
|
+
}
|
|
3866
|
+
export interface CreateDatabaseSettingInput {
|
|
3867
|
+
clientMutationId?: string;
|
|
3868
|
+
/** The `DatabaseSetting` to be created by this mutation. */
|
|
3869
|
+
databaseSetting: DatabaseSettingInput;
|
|
3870
|
+
}
|
|
3871
|
+
/** An input for mutations affecting `DatabaseSetting` */
|
|
3872
|
+
export interface DatabaseSettingInput {
|
|
3873
|
+
/** Unique identifier for this settings record */
|
|
3874
|
+
id?: string;
|
|
3875
|
+
/** Reference to the metaschema database these settings apply to */
|
|
3876
|
+
databaseId: string;
|
|
3877
|
+
/** Enable aggregate queries (sum, avg, min, max, etc.) in the GraphQL API */
|
|
3878
|
+
enableAggregates?: boolean;
|
|
3879
|
+
/** Enable PostGIS spatial types and operators in the GraphQL API */
|
|
3880
|
+
enablePostgis?: boolean;
|
|
3881
|
+
/** Enable unified search (tsvector, BM25, pg_trgm, pgvector) in the GraphQL API */
|
|
3882
|
+
enableSearch?: boolean;
|
|
3883
|
+
/** Enable direct (multipart) file upload mutations in the GraphQL API */
|
|
3884
|
+
enableDirectUploads?: boolean;
|
|
3885
|
+
/** Enable presigned URL upload flow for S3/MinIO storage */
|
|
3886
|
+
enablePresignedUploads?: boolean;
|
|
3887
|
+
/** Enable many-to-many relationship queries in the GraphQL API */
|
|
3888
|
+
enableManyToMany?: boolean;
|
|
3889
|
+
/** Enable connection filter (where argument) in the GraphQL API */
|
|
3890
|
+
enableConnectionFilter?: boolean;
|
|
3891
|
+
/** Enable ltree hierarchical data type support in the GraphQL API */
|
|
3892
|
+
enableLtree?: boolean;
|
|
3893
|
+
/** Enable LLM/AI integration features in the GraphQL API */
|
|
3894
|
+
enableLlm?: boolean;
|
|
3895
|
+
/** Enable realtime subscriptions (cursor-tracked change delivery) in the GraphQL API */
|
|
3896
|
+
enableRealtime?: boolean;
|
|
3897
|
+
/** Enable bulk mutation operations (insert, upsert, update, delete) in the GraphQL API */
|
|
3898
|
+
enableBulk?: boolean;
|
|
3899
|
+
/** Enable internationalization plugin (localeStrings field, translation table discovery) in the GraphQL API */
|
|
3900
|
+
enableI18N?: boolean;
|
|
3901
|
+
/** Extensible JSON for additional settings that do not have dedicated columns */
|
|
3902
|
+
options?: unknown;
|
|
3903
|
+
/** Key/value pairs for selecting and filtering database settings */
|
|
3904
|
+
labels?: unknown;
|
|
3905
|
+
/** Freeform metadata for tooling and operational notes */
|
|
3906
|
+
annotations?: unknown;
|
|
3907
|
+
}
|
|
3908
|
+
export interface CreateSiteInput {
|
|
3909
|
+
clientMutationId?: string;
|
|
3910
|
+
/** The `Site` to be created by this mutation. */
|
|
3911
|
+
site: SiteInput;
|
|
3912
|
+
}
|
|
3913
|
+
/** An input for mutations affecting `Site` */
|
|
3914
|
+
export interface SiteInput {
|
|
3915
|
+
/** Unique identifier for this site */
|
|
3916
|
+
id?: string;
|
|
3917
|
+
/** Reference to the metaschema database this site belongs to */
|
|
3918
|
+
databaseId: string;
|
|
3919
|
+
/** Display title for the site (max 120 characters) */
|
|
3920
|
+
title?: string;
|
|
3921
|
+
/** Short description of the site (max 120 characters) */
|
|
3922
|
+
description?: string;
|
|
3923
|
+
/** Open Graph image used for social media link previews */
|
|
3924
|
+
ogImage?: ConstructiveInternalTypeImage;
|
|
3925
|
+
/** Browser favicon attachment */
|
|
3926
|
+
favicon?: ConstructiveInternalTypeAttachment;
|
|
3927
|
+
/** Apple touch icon for iOS home screen bookmarks */
|
|
3928
|
+
appleTouchIcon?: ConstructiveInternalTypeImage;
|
|
3929
|
+
/** Primary logo image for the site */
|
|
3930
|
+
logo?: ConstructiveInternalTypeImage;
|
|
3931
|
+
/** PostgreSQL database name this site connects to */
|
|
3932
|
+
dbname?: string;
|
|
3933
|
+
/** Key/value pairs for selecting and filtering sites */
|
|
3934
|
+
labels?: unknown;
|
|
3935
|
+
/** Freeform metadata for tooling and operational notes */
|
|
3936
|
+
annotations?: unknown;
|
|
3937
|
+
}
|
|
3940
3938
|
export interface CreateForeignKeyConstraintInput {
|
|
3941
3939
|
clientMutationId?: string;
|
|
3942
3940
|
/** The `ForeignKeyConstraint` to be created by this mutation. */
|
|
@@ -3957,7 +3955,6 @@ export interface ForeignKeyConstraintInput {
|
|
|
3957
3955
|
deleteAction?: string;
|
|
3958
3956
|
updateAction?: string;
|
|
3959
3957
|
category?: ObjectCategory;
|
|
3960
|
-
scope?: number;
|
|
3961
3958
|
tags?: string[];
|
|
3962
3959
|
createdAt?: string;
|
|
3963
3960
|
updatedAt?: string;
|
|
@@ -4071,7 +4068,6 @@ export interface SchemaInput {
|
|
|
4071
4068
|
description?: string;
|
|
4072
4069
|
smartTags?: unknown;
|
|
4073
4070
|
category?: ObjectCategory;
|
|
4074
|
-
scope?: number;
|
|
4075
4071
|
tags?: string[];
|
|
4076
4072
|
isPublic?: boolean;
|
|
4077
4073
|
apiExposure?: ApiExposureLevel;
|
|
@@ -4104,7 +4100,6 @@ export interface FieldInput {
|
|
|
4104
4100
|
max?: number;
|
|
4105
4101
|
tags?: string[];
|
|
4106
4102
|
category?: ObjectCategory;
|
|
4107
|
-
scope?: number;
|
|
4108
4103
|
createdAt?: string;
|
|
4109
4104
|
updatedAt?: string;
|
|
4110
4105
|
}
|
|
@@ -4123,7 +4118,6 @@ export interface TableInput {
|
|
|
4123
4118
|
description?: string;
|
|
4124
4119
|
smartTags?: unknown;
|
|
4125
4120
|
category?: ObjectCategory;
|
|
4126
|
-
scope?: number;
|
|
4127
4121
|
useRls?: boolean;
|
|
4128
4122
|
timestamps?: boolean;
|
|
4129
4123
|
peoplestamps?: boolean;
|
|
@@ -4250,30 +4244,6 @@ export interface ViewGrantPatch {
|
|
|
4250
4244
|
withGrantOption?: boolean;
|
|
4251
4245
|
isGrant?: boolean;
|
|
4252
4246
|
}
|
|
4253
|
-
export interface UpdateApiInput {
|
|
4254
|
-
clientMutationId?: string;
|
|
4255
|
-
/** Unique identifier for this API */
|
|
4256
|
-
id: string;
|
|
4257
|
-
/** An object where the defined keys will be set on the `Api` being updated. */
|
|
4258
|
-
apiPatch: ApiPatch;
|
|
4259
|
-
}
|
|
4260
|
-
/** Represents an update to a `Api`. Fields that are set will be updated. */
|
|
4261
|
-
export interface ApiPatch {
|
|
4262
|
-
/** Unique identifier for this API */
|
|
4263
|
-
id?: string;
|
|
4264
|
-
/** Reference to the metaschema database this API serves */
|
|
4265
|
-
databaseId?: string;
|
|
4266
|
-
/** Unique name for this API within its database */
|
|
4267
|
-
name?: string;
|
|
4268
|
-
/** PostgreSQL database name to connect to */
|
|
4269
|
-
dbname?: string;
|
|
4270
|
-
/** PostgreSQL role used for authenticated requests */
|
|
4271
|
-
roleName?: string;
|
|
4272
|
-
/** PostgreSQL role used for anonymous/unauthenticated requests */
|
|
4273
|
-
anonRole?: string;
|
|
4274
|
-
/** Whether this API is publicly accessible without authentication */
|
|
4275
|
-
isPublic?: boolean;
|
|
4276
|
-
}
|
|
4277
4247
|
export interface UpdateCorsSettingInput {
|
|
4278
4248
|
clientMutationId?: string;
|
|
4279
4249
|
/** Unique identifier for this CORS settings record */
|
|
@@ -4348,6 +4318,34 @@ export interface SiteModulePatch {
|
|
|
4348
4318
|
/** JSON configuration data for this module */
|
|
4349
4319
|
data?: unknown;
|
|
4350
4320
|
}
|
|
4321
|
+
export interface UpdateApiInput {
|
|
4322
|
+
clientMutationId?: string;
|
|
4323
|
+
/** Unique identifier for this API */
|
|
4324
|
+
id: string;
|
|
4325
|
+
/** An object where the defined keys will be set on the `Api` being updated. */
|
|
4326
|
+
apiPatch: ApiPatch;
|
|
4327
|
+
}
|
|
4328
|
+
/** Represents an update to a `Api`. Fields that are set will be updated. */
|
|
4329
|
+
export interface ApiPatch {
|
|
4330
|
+
/** Unique identifier for this API */
|
|
4331
|
+
id?: string;
|
|
4332
|
+
/** Reference to the metaschema database this API serves */
|
|
4333
|
+
databaseId?: string;
|
|
4334
|
+
/** Unique name for this API within its database */
|
|
4335
|
+
name?: string;
|
|
4336
|
+
/** PostgreSQL database name to connect to */
|
|
4337
|
+
dbname?: string;
|
|
4338
|
+
/** PostgreSQL role used for authenticated requests */
|
|
4339
|
+
roleName?: string;
|
|
4340
|
+
/** PostgreSQL role used for anonymous/unauthenticated requests */
|
|
4341
|
+
anonRole?: string;
|
|
4342
|
+
/** Whether this API is publicly accessible without authentication */
|
|
4343
|
+
isPublic?: boolean;
|
|
4344
|
+
/** Key/value pairs for selecting and filtering APIs */
|
|
4345
|
+
labels?: unknown;
|
|
4346
|
+
/** Freeform metadata for tooling and operational notes */
|
|
4347
|
+
annotations?: unknown;
|
|
4348
|
+
}
|
|
4351
4349
|
export interface UpdateSiteMetadatumInput {
|
|
4352
4350
|
clientMutationId?: string;
|
|
4353
4351
|
/** Unique identifier for this metadata record */
|
|
@@ -4465,28 +4463,6 @@ export interface TableGrantPatch {
|
|
|
4465
4463
|
createdAt?: string;
|
|
4466
4464
|
updatedAt?: string;
|
|
4467
4465
|
}
|
|
4468
|
-
export interface UpdateDomainInput {
|
|
4469
|
-
clientMutationId?: string;
|
|
4470
|
-
/** Unique identifier for this domain record */
|
|
4471
|
-
id: string;
|
|
4472
|
-
/** An object where the defined keys will be set on the `Domain` being updated. */
|
|
4473
|
-
domainPatch: DomainPatch;
|
|
4474
|
-
}
|
|
4475
|
-
/** Represents an update to a `Domain`. Fields that are set will be updated. */
|
|
4476
|
-
export interface DomainPatch {
|
|
4477
|
-
/** Unique identifier for this domain record */
|
|
4478
|
-
id?: string;
|
|
4479
|
-
/** Reference to the metaschema database this domain belongs to */
|
|
4480
|
-
databaseId?: string;
|
|
4481
|
-
/** API endpoint this domain routes to (mutually exclusive with site_id) */
|
|
4482
|
-
apiId?: string;
|
|
4483
|
-
/** Site this domain routes to (mutually exclusive with api_id) */
|
|
4484
|
-
siteId?: string;
|
|
4485
|
-
/** Subdomain portion of the hostname */
|
|
4486
|
-
subdomain?: ConstructiveInternalTypeHostname;
|
|
4487
|
-
/** Root domain of the hostname */
|
|
4488
|
-
domain?: ConstructiveInternalTypeHostname;
|
|
4489
|
-
}
|
|
4490
4466
|
export interface UpdateRlsSettingInput {
|
|
4491
4467
|
clientMutationId?: string;
|
|
4492
4468
|
/** Unique identifier for this RLS settings record */
|
|
@@ -4558,6 +4534,34 @@ export interface PartitionPatch {
|
|
|
4558
4534
|
createdAt?: string;
|
|
4559
4535
|
updatedAt?: string;
|
|
4560
4536
|
}
|
|
4537
|
+
export interface UpdateDomainInput {
|
|
4538
|
+
clientMutationId?: string;
|
|
4539
|
+
/** Unique identifier for this domain record */
|
|
4540
|
+
id: string;
|
|
4541
|
+
/** An object where the defined keys will be set on the `Domain` being updated. */
|
|
4542
|
+
domainPatch: DomainPatch;
|
|
4543
|
+
}
|
|
4544
|
+
/** Represents an update to a `Domain`. Fields that are set will be updated. */
|
|
4545
|
+
export interface DomainPatch {
|
|
4546
|
+
/** Unique identifier for this domain record */
|
|
4547
|
+
id?: string;
|
|
4548
|
+
/** Reference to the metaschema database this domain belongs to */
|
|
4549
|
+
databaseId?: string;
|
|
4550
|
+
/** API endpoint this domain routes to (mutually exclusive with site_id) */
|
|
4551
|
+
apiId?: string;
|
|
4552
|
+
/** Site this domain routes to (mutually exclusive with api_id and service_id) */
|
|
4553
|
+
siteId?: string;
|
|
4554
|
+
/** Server deployment this domain routes to (mutually exclusive with api_id and site_id) */
|
|
4555
|
+
serviceId?: string;
|
|
4556
|
+
/** Subdomain portion of the hostname */
|
|
4557
|
+
subdomain?: ConstructiveInternalTypeHostname;
|
|
4558
|
+
/** Root domain of the hostname */
|
|
4559
|
+
domain?: ConstructiveInternalTypeHostname;
|
|
4560
|
+
/** Key/value pairs for selecting and filtering domains */
|
|
4561
|
+
labels?: unknown;
|
|
4562
|
+
/** Freeform metadata for tooling and operational notes */
|
|
4563
|
+
annotations?: unknown;
|
|
4564
|
+
}
|
|
4561
4565
|
export interface UpdateCompositeTypeInput {
|
|
4562
4566
|
clientMutationId?: string;
|
|
4563
4567
|
id: string;
|
|
@@ -4575,7 +4579,6 @@ export interface CompositeTypePatch {
|
|
|
4575
4579
|
attributes?: unknown;
|
|
4576
4580
|
smartTags?: unknown;
|
|
4577
4581
|
category?: ObjectCategory;
|
|
4578
|
-
scope?: number;
|
|
4579
4582
|
tags?: string[];
|
|
4580
4583
|
}
|
|
4581
4584
|
export interface UpdateEnumInput {
|
|
@@ -4595,7 +4598,6 @@ export interface EnumPatch {
|
|
|
4595
4598
|
values?: string[];
|
|
4596
4599
|
smartTags?: unknown;
|
|
4597
4600
|
category?: ObjectCategory;
|
|
4598
|
-
scope?: number;
|
|
4599
4601
|
tags?: string[];
|
|
4600
4602
|
}
|
|
4601
4603
|
export interface UpdateViewInput {
|
|
@@ -4619,114 +4621,8 @@ export interface ViewPatch {
|
|
|
4619
4621
|
isReadOnly?: boolean;
|
|
4620
4622
|
smartTags?: unknown;
|
|
4621
4623
|
category?: ObjectCategory;
|
|
4622
|
-
scope?: number;
|
|
4623
4624
|
tags?: string[];
|
|
4624
4625
|
}
|
|
4625
|
-
export interface UpdateDatabaseSettingInput {
|
|
4626
|
-
clientMutationId?: string;
|
|
4627
|
-
/** Unique identifier for this settings record */
|
|
4628
|
-
id: string;
|
|
4629
|
-
/** An object where the defined keys will be set on the `DatabaseSetting` being updated. */
|
|
4630
|
-
databaseSettingPatch: DatabaseSettingPatch;
|
|
4631
|
-
}
|
|
4632
|
-
/** Represents an update to a `DatabaseSetting`. Fields that are set will be updated. */
|
|
4633
|
-
export interface DatabaseSettingPatch {
|
|
4634
|
-
/** Unique identifier for this settings record */
|
|
4635
|
-
id?: string;
|
|
4636
|
-
/** Reference to the metaschema database these settings apply to */
|
|
4637
|
-
databaseId?: string;
|
|
4638
|
-
/** Enable aggregate queries (sum, avg, min, max, etc.) in the GraphQL API */
|
|
4639
|
-
enableAggregates?: boolean;
|
|
4640
|
-
/** Enable PostGIS spatial types and operators in the GraphQL API */
|
|
4641
|
-
enablePostgis?: boolean;
|
|
4642
|
-
/** Enable unified search (tsvector, BM25, pg_trgm, pgvector) in the GraphQL API */
|
|
4643
|
-
enableSearch?: boolean;
|
|
4644
|
-
/** Enable direct (multipart) file upload mutations in the GraphQL API */
|
|
4645
|
-
enableDirectUploads?: boolean;
|
|
4646
|
-
/** Enable presigned URL upload flow for S3/MinIO storage */
|
|
4647
|
-
enablePresignedUploads?: boolean;
|
|
4648
|
-
/** Enable many-to-many relationship queries in the GraphQL API */
|
|
4649
|
-
enableManyToMany?: boolean;
|
|
4650
|
-
/** Enable connection filter (where argument) in the GraphQL API */
|
|
4651
|
-
enableConnectionFilter?: boolean;
|
|
4652
|
-
/** Enable ltree hierarchical data type support in the GraphQL API */
|
|
4653
|
-
enableLtree?: boolean;
|
|
4654
|
-
/** Enable LLM/AI integration features in the GraphQL API */
|
|
4655
|
-
enableLlm?: boolean;
|
|
4656
|
-
/** Enable realtime subscriptions (cursor-tracked change delivery) in the GraphQL API */
|
|
4657
|
-
enableRealtime?: boolean;
|
|
4658
|
-
/** Enable bulk mutation operations (insert, upsert, update, delete) in the GraphQL API */
|
|
4659
|
-
enableBulk?: boolean;
|
|
4660
|
-
/** Enable internationalization plugin (localeStrings field, translation table discovery) in the GraphQL API */
|
|
4661
|
-
enableI18N?: boolean;
|
|
4662
|
-
/** Extensible JSON for additional settings that do not have dedicated columns */
|
|
4663
|
-
options?: unknown;
|
|
4664
|
-
}
|
|
4665
|
-
export interface UpdateApiSettingInput {
|
|
4666
|
-
clientMutationId?: string;
|
|
4667
|
-
/** Unique identifier for this API settings record */
|
|
4668
|
-
id: string;
|
|
4669
|
-
/** An object where the defined keys will be set on the `ApiSetting` being updated. */
|
|
4670
|
-
apiSettingPatch: ApiSettingPatch;
|
|
4671
|
-
}
|
|
4672
|
-
/** Represents an update to a `ApiSetting`. Fields that are set will be updated. */
|
|
4673
|
-
export interface ApiSettingPatch {
|
|
4674
|
-
/** Unique identifier for this API settings record */
|
|
4675
|
-
id?: string;
|
|
4676
|
-
/** Reference to the metaschema database */
|
|
4677
|
-
databaseId?: string;
|
|
4678
|
-
/** API these settings override for */
|
|
4679
|
-
apiId?: string;
|
|
4680
|
-
/** Override: enable aggregate queries (NULL = inherit from database_settings) */
|
|
4681
|
-
enableAggregates?: boolean;
|
|
4682
|
-
/** Override: enable PostGIS spatial types (NULL = inherit from database_settings) */
|
|
4683
|
-
enablePostgis?: boolean;
|
|
4684
|
-
/** Override: enable unified search (NULL = inherit from database_settings) */
|
|
4685
|
-
enableSearch?: boolean;
|
|
4686
|
-
/** Override: enable direct (multipart) file uploads (NULL = inherit from database_settings) */
|
|
4687
|
-
enableDirectUploads?: boolean;
|
|
4688
|
-
/** Override: enable presigned URL upload flow (NULL = inherit from database_settings) */
|
|
4689
|
-
enablePresignedUploads?: boolean;
|
|
4690
|
-
/** Override: enable many-to-many relationships (NULL = inherit from database_settings) */
|
|
4691
|
-
enableManyToMany?: boolean;
|
|
4692
|
-
/** Override: enable connection filter (NULL = inherit from database_settings) */
|
|
4693
|
-
enableConnectionFilter?: boolean;
|
|
4694
|
-
/** Override: enable ltree hierarchical data type (NULL = inherit from database_settings) */
|
|
4695
|
-
enableLtree?: boolean;
|
|
4696
|
-
/** Override: enable LLM/AI integration features (NULL = inherit from database_settings) */
|
|
4697
|
-
enableLlm?: boolean;
|
|
4698
|
-
/** Override: enable realtime subscriptions (NULL = inherit from database_settings) */
|
|
4699
|
-
enableRealtime?: boolean;
|
|
4700
|
-
/** Override: enable bulk mutations (NULL = inherit from database_settings) */
|
|
4701
|
-
enableBulk?: boolean;
|
|
4702
|
-
/** Override: enable internationalization plugin (NULL = inherit from database_settings) */
|
|
4703
|
-
enableI18N?: boolean;
|
|
4704
|
-
/** Extensible JSON for additional per-API settings that do not have dedicated columns */
|
|
4705
|
-
options?: unknown;
|
|
4706
|
-
}
|
|
4707
|
-
export interface UpdateDatabaseTransferInput {
|
|
4708
|
-
clientMutationId?: string;
|
|
4709
|
-
id: string;
|
|
4710
|
-
/** An object where the defined keys will be set on the `DatabaseTransfer` being updated. */
|
|
4711
|
-
databaseTransferPatch: DatabaseTransferPatch;
|
|
4712
|
-
}
|
|
4713
|
-
/** Represents an update to a `DatabaseTransfer`. Fields that are set will be updated. */
|
|
4714
|
-
export interface DatabaseTransferPatch {
|
|
4715
|
-
id?: string;
|
|
4716
|
-
databaseId?: string;
|
|
4717
|
-
targetOwnerId?: string;
|
|
4718
|
-
sourceApproved?: boolean;
|
|
4719
|
-
targetApproved?: boolean;
|
|
4720
|
-
sourceApprovedAt?: string;
|
|
4721
|
-
targetApprovedAt?: string;
|
|
4722
|
-
status?: string;
|
|
4723
|
-
initiatedBy?: string;
|
|
4724
|
-
notes?: string;
|
|
4725
|
-
expiresAt?: string;
|
|
4726
|
-
createdAt?: string;
|
|
4727
|
-
updatedAt?: string;
|
|
4728
|
-
completedAt?: string;
|
|
4729
|
-
}
|
|
4730
4626
|
export interface UpdatePrimaryKeyConstraintInput {
|
|
4731
4627
|
clientMutationId?: string;
|
|
4732
4628
|
id: string;
|
|
@@ -4743,7 +4639,6 @@ export interface PrimaryKeyConstraintPatch {
|
|
|
4743
4639
|
fieldIds?: string[];
|
|
4744
4640
|
smartTags?: unknown;
|
|
4745
4641
|
category?: ObjectCategory;
|
|
4746
|
-
scope?: number;
|
|
4747
4642
|
tags?: string[];
|
|
4748
4643
|
createdAt?: string;
|
|
4749
4644
|
updatedAt?: string;
|
|
@@ -4764,7 +4659,6 @@ export interface TriggerPatch {
|
|
|
4764
4659
|
functionName?: string;
|
|
4765
4660
|
smartTags?: unknown;
|
|
4766
4661
|
category?: ObjectCategory;
|
|
4767
|
-
scope?: number;
|
|
4768
4662
|
tags?: string[];
|
|
4769
4663
|
createdAt?: string;
|
|
4770
4664
|
updatedAt?: string;
|
|
@@ -4786,7 +4680,6 @@ export interface CheckConstraintPatch {
|
|
|
4786
4680
|
expr?: unknown;
|
|
4787
4681
|
smartTags?: unknown;
|
|
4788
4682
|
category?: ObjectCategory;
|
|
4789
|
-
scope?: number;
|
|
4790
4683
|
tags?: string[];
|
|
4791
4684
|
createdAt?: string;
|
|
4792
4685
|
updatedAt?: string;
|
|
@@ -4808,7 +4701,6 @@ export interface UniqueConstraintPatch {
|
|
|
4808
4701
|
type?: string;
|
|
4809
4702
|
fieldIds?: string[];
|
|
4810
4703
|
category?: ObjectCategory;
|
|
4811
|
-
scope?: number;
|
|
4812
4704
|
tags?: string[];
|
|
4813
4705
|
createdAt?: string;
|
|
4814
4706
|
updatedAt?: string;
|
|
@@ -4831,7 +4723,6 @@ export interface SpatialRelationPatch {
|
|
|
4831
4723
|
operator?: string;
|
|
4832
4724
|
paramName?: string;
|
|
4833
4725
|
category?: ObjectCategory;
|
|
4834
|
-
scope?: number;
|
|
4835
4726
|
tags?: string[];
|
|
4836
4727
|
createdAt?: string;
|
|
4837
4728
|
updatedAt?: string;
|
|
@@ -4856,7 +4747,97 @@ export interface PolicyPatch {
|
|
|
4856
4747
|
data?: unknown;
|
|
4857
4748
|
smartTags?: unknown;
|
|
4858
4749
|
category?: ObjectCategory;
|
|
4859
|
-
|
|
4750
|
+
tags?: string[];
|
|
4751
|
+
createdAt?: string;
|
|
4752
|
+
updatedAt?: string;
|
|
4753
|
+
}
|
|
4754
|
+
export interface UpdateApiSettingInput {
|
|
4755
|
+
clientMutationId?: string;
|
|
4756
|
+
/** Unique identifier for this API settings record */
|
|
4757
|
+
id: string;
|
|
4758
|
+
/** An object where the defined keys will be set on the `ApiSetting` being updated. */
|
|
4759
|
+
apiSettingPatch: ApiSettingPatch;
|
|
4760
|
+
}
|
|
4761
|
+
/** Represents an update to a `ApiSetting`. Fields that are set will be updated. */
|
|
4762
|
+
export interface ApiSettingPatch {
|
|
4763
|
+
/** Unique identifier for this API settings record */
|
|
4764
|
+
id?: string;
|
|
4765
|
+
/** Reference to the metaschema database */
|
|
4766
|
+
databaseId?: string;
|
|
4767
|
+
/** API these settings override for */
|
|
4768
|
+
apiId?: string;
|
|
4769
|
+
/** Override: enable aggregate queries (NULL = inherit from database_settings) */
|
|
4770
|
+
enableAggregates?: boolean;
|
|
4771
|
+
/** Override: enable PostGIS spatial types (NULL = inherit from database_settings) */
|
|
4772
|
+
enablePostgis?: boolean;
|
|
4773
|
+
/** Override: enable unified search (NULL = inherit from database_settings) */
|
|
4774
|
+
enableSearch?: boolean;
|
|
4775
|
+
/** Override: enable direct (multipart) file uploads (NULL = inherit from database_settings) */
|
|
4776
|
+
enableDirectUploads?: boolean;
|
|
4777
|
+
/** Override: enable presigned URL upload flow (NULL = inherit from database_settings) */
|
|
4778
|
+
enablePresignedUploads?: boolean;
|
|
4779
|
+
/** Override: enable many-to-many relationships (NULL = inherit from database_settings) */
|
|
4780
|
+
enableManyToMany?: boolean;
|
|
4781
|
+
/** Override: enable connection filter (NULL = inherit from database_settings) */
|
|
4782
|
+
enableConnectionFilter?: boolean;
|
|
4783
|
+
/** Override: enable ltree hierarchical data type (NULL = inherit from database_settings) */
|
|
4784
|
+
enableLtree?: boolean;
|
|
4785
|
+
/** Override: enable LLM/AI integration features (NULL = inherit from database_settings) */
|
|
4786
|
+
enableLlm?: boolean;
|
|
4787
|
+
/** Override: enable realtime subscriptions (NULL = inherit from database_settings) */
|
|
4788
|
+
enableRealtime?: boolean;
|
|
4789
|
+
/** Override: enable bulk mutations (NULL = inherit from database_settings) */
|
|
4790
|
+
enableBulk?: boolean;
|
|
4791
|
+
/** Override: enable internationalization plugin (NULL = inherit from database_settings) */
|
|
4792
|
+
enableI18N?: boolean;
|
|
4793
|
+
/** Extensible JSON for additional per-API settings that do not have dedicated columns */
|
|
4794
|
+
options?: unknown;
|
|
4795
|
+
}
|
|
4796
|
+
export interface UpdateDatabaseTransferInput {
|
|
4797
|
+
clientMutationId?: string;
|
|
4798
|
+
id: string;
|
|
4799
|
+
/** An object where the defined keys will be set on the `DatabaseTransfer` being updated. */
|
|
4800
|
+
databaseTransferPatch: DatabaseTransferPatch;
|
|
4801
|
+
}
|
|
4802
|
+
/** Represents an update to a `DatabaseTransfer`. Fields that are set will be updated. */
|
|
4803
|
+
export interface DatabaseTransferPatch {
|
|
4804
|
+
id?: string;
|
|
4805
|
+
databaseId?: string;
|
|
4806
|
+
targetOwnerId?: string;
|
|
4807
|
+
sourceApproved?: boolean;
|
|
4808
|
+
targetApproved?: boolean;
|
|
4809
|
+
sourceApprovedAt?: string;
|
|
4810
|
+
targetApprovedAt?: string;
|
|
4811
|
+
status?: string;
|
|
4812
|
+
initiatedBy?: string;
|
|
4813
|
+
notes?: string;
|
|
4814
|
+
expiresAt?: string;
|
|
4815
|
+
createdAt?: string;
|
|
4816
|
+
updatedAt?: string;
|
|
4817
|
+
completedAt?: string;
|
|
4818
|
+
}
|
|
4819
|
+
export interface UpdateIndexInput {
|
|
4820
|
+
clientMutationId?: string;
|
|
4821
|
+
id: string;
|
|
4822
|
+
/** An object where the defined keys will be set on the `Index` being updated. */
|
|
4823
|
+
indexPatch: IndexPatch;
|
|
4824
|
+
}
|
|
4825
|
+
/** Represents an update to a `Index`. Fields that are set will be updated. */
|
|
4826
|
+
export interface IndexPatch {
|
|
4827
|
+
id?: string;
|
|
4828
|
+
databaseId?: string;
|
|
4829
|
+
tableId?: string;
|
|
4830
|
+
name?: string;
|
|
4831
|
+
fieldIds?: string[];
|
|
4832
|
+
includeFieldIds?: string[];
|
|
4833
|
+
accessMethod?: string;
|
|
4834
|
+
indexParams?: unknown;
|
|
4835
|
+
whereClause?: unknown;
|
|
4836
|
+
isUnique?: boolean;
|
|
4837
|
+
options?: unknown;
|
|
4838
|
+
opClasses?: string[];
|
|
4839
|
+
smartTags?: unknown;
|
|
4840
|
+
category?: ObjectCategory;
|
|
4860
4841
|
tags?: string[];
|
|
4861
4842
|
createdAt?: string;
|
|
4862
4843
|
updatedAt?: string;
|
|
@@ -4891,6 +4872,50 @@ export interface AppPatch {
|
|
|
4891
4872
|
/** Upload for App icon or promotional image */
|
|
4892
4873
|
appImageUpload?: File;
|
|
4893
4874
|
}
|
|
4875
|
+
export interface UpdateDatabaseSettingInput {
|
|
4876
|
+
clientMutationId?: string;
|
|
4877
|
+
/** Unique identifier for this settings record */
|
|
4878
|
+
id: string;
|
|
4879
|
+
/** An object where the defined keys will be set on the `DatabaseSetting` being updated. */
|
|
4880
|
+
databaseSettingPatch: DatabaseSettingPatch;
|
|
4881
|
+
}
|
|
4882
|
+
/** Represents an update to a `DatabaseSetting`. Fields that are set will be updated. */
|
|
4883
|
+
export interface DatabaseSettingPatch {
|
|
4884
|
+
/** Unique identifier for this settings record */
|
|
4885
|
+
id?: string;
|
|
4886
|
+
/** Reference to the metaschema database these settings apply to */
|
|
4887
|
+
databaseId?: string;
|
|
4888
|
+
/** Enable aggregate queries (sum, avg, min, max, etc.) in the GraphQL API */
|
|
4889
|
+
enableAggregates?: boolean;
|
|
4890
|
+
/** Enable PostGIS spatial types and operators in the GraphQL API */
|
|
4891
|
+
enablePostgis?: boolean;
|
|
4892
|
+
/** Enable unified search (tsvector, BM25, pg_trgm, pgvector) in the GraphQL API */
|
|
4893
|
+
enableSearch?: boolean;
|
|
4894
|
+
/** Enable direct (multipart) file upload mutations in the GraphQL API */
|
|
4895
|
+
enableDirectUploads?: boolean;
|
|
4896
|
+
/** Enable presigned URL upload flow for S3/MinIO storage */
|
|
4897
|
+
enablePresignedUploads?: boolean;
|
|
4898
|
+
/** Enable many-to-many relationship queries in the GraphQL API */
|
|
4899
|
+
enableManyToMany?: boolean;
|
|
4900
|
+
/** Enable connection filter (where argument) in the GraphQL API */
|
|
4901
|
+
enableConnectionFilter?: boolean;
|
|
4902
|
+
/** Enable ltree hierarchical data type support in the GraphQL API */
|
|
4903
|
+
enableLtree?: boolean;
|
|
4904
|
+
/** Enable LLM/AI integration features in the GraphQL API */
|
|
4905
|
+
enableLlm?: boolean;
|
|
4906
|
+
/** Enable realtime subscriptions (cursor-tracked change delivery) in the GraphQL API */
|
|
4907
|
+
enableRealtime?: boolean;
|
|
4908
|
+
/** Enable bulk mutation operations (insert, upsert, update, delete) in the GraphQL API */
|
|
4909
|
+
enableBulk?: boolean;
|
|
4910
|
+
/** Enable internationalization plugin (localeStrings field, translation table discovery) in the GraphQL API */
|
|
4911
|
+
enableI18N?: boolean;
|
|
4912
|
+
/** Extensible JSON for additional settings that do not have dedicated columns */
|
|
4913
|
+
options?: unknown;
|
|
4914
|
+
/** Key/value pairs for selecting and filtering database settings */
|
|
4915
|
+
labels?: unknown;
|
|
4916
|
+
/** Freeform metadata for tooling and operational notes */
|
|
4917
|
+
annotations?: unknown;
|
|
4918
|
+
}
|
|
4894
4919
|
export interface UpdateSiteInput {
|
|
4895
4920
|
clientMutationId?: string;
|
|
4896
4921
|
/** Unique identifier for this site */
|
|
@@ -4918,6 +4943,10 @@ export interface SitePatch {
|
|
|
4918
4943
|
logo?: ConstructiveInternalTypeImage;
|
|
4919
4944
|
/** PostgreSQL database name this site connects to */
|
|
4920
4945
|
dbname?: string;
|
|
4946
|
+
/** Key/value pairs for selecting and filtering sites */
|
|
4947
|
+
labels?: unknown;
|
|
4948
|
+
/** Freeform metadata for tooling and operational notes */
|
|
4949
|
+
annotations?: unknown;
|
|
4921
4950
|
/** Upload for Open Graph image used for social media link previews */
|
|
4922
4951
|
ogImageUpload?: File;
|
|
4923
4952
|
/** Upload for Browser favicon attachment */
|
|
@@ -4927,33 +4956,6 @@ export interface SitePatch {
|
|
|
4927
4956
|
/** Upload for Primary logo image for the site */
|
|
4928
4957
|
logoUpload?: File;
|
|
4929
4958
|
}
|
|
4930
|
-
export interface UpdateIndexInput {
|
|
4931
|
-
clientMutationId?: string;
|
|
4932
|
-
id: string;
|
|
4933
|
-
/** An object where the defined keys will be set on the `Index` being updated. */
|
|
4934
|
-
indexPatch: IndexPatch;
|
|
4935
|
-
}
|
|
4936
|
-
/** Represents an update to a `Index`. Fields that are set will be updated. */
|
|
4937
|
-
export interface IndexPatch {
|
|
4938
|
-
id?: string;
|
|
4939
|
-
databaseId?: string;
|
|
4940
|
-
tableId?: string;
|
|
4941
|
-
name?: string;
|
|
4942
|
-
fieldIds?: string[];
|
|
4943
|
-
includeFieldIds?: string[];
|
|
4944
|
-
accessMethod?: string;
|
|
4945
|
-
indexParams?: unknown;
|
|
4946
|
-
whereClause?: unknown;
|
|
4947
|
-
isUnique?: boolean;
|
|
4948
|
-
options?: unknown;
|
|
4949
|
-
opClasses?: string[];
|
|
4950
|
-
smartTags?: unknown;
|
|
4951
|
-
category?: ObjectCategory;
|
|
4952
|
-
scope?: number;
|
|
4953
|
-
tags?: string[];
|
|
4954
|
-
createdAt?: string;
|
|
4955
|
-
updatedAt?: string;
|
|
4956
|
-
}
|
|
4957
4959
|
export interface UpdateForeignKeyConstraintInput {
|
|
4958
4960
|
clientMutationId?: string;
|
|
4959
4961
|
id: string;
|
|
@@ -4975,7 +4977,6 @@ export interface ForeignKeyConstraintPatch {
|
|
|
4975
4977
|
deleteAction?: string;
|
|
4976
4978
|
updateAction?: string;
|
|
4977
4979
|
category?: ObjectCategory;
|
|
4978
|
-
scope?: number;
|
|
4979
4980
|
tags?: string[];
|
|
4980
4981
|
createdAt?: string;
|
|
4981
4982
|
updatedAt?: string;
|
|
@@ -5072,7 +5073,6 @@ export interface SchemaPatch {
|
|
|
5072
5073
|
description?: string;
|
|
5073
5074
|
smartTags?: unknown;
|
|
5074
5075
|
category?: ObjectCategory;
|
|
5075
|
-
scope?: number;
|
|
5076
5076
|
tags?: string[];
|
|
5077
5077
|
isPublic?: boolean;
|
|
5078
5078
|
apiExposure?: ApiExposureLevel;
|
|
@@ -5106,7 +5106,6 @@ export interface FieldPatch {
|
|
|
5106
5106
|
max?: number;
|
|
5107
5107
|
tags?: string[];
|
|
5108
5108
|
category?: ObjectCategory;
|
|
5109
|
-
scope?: number;
|
|
5110
5109
|
createdAt?: string;
|
|
5111
5110
|
updatedAt?: string;
|
|
5112
5111
|
}
|
|
@@ -5126,7 +5125,6 @@ export interface TablePatch {
|
|
|
5126
5125
|
description?: string;
|
|
5127
5126
|
smartTags?: unknown;
|
|
5128
5127
|
category?: ObjectCategory;
|
|
5129
|
-
scope?: number;
|
|
5130
5128
|
useRls?: boolean;
|
|
5131
5129
|
timestamps?: boolean;
|
|
5132
5130
|
peoplestamps?: boolean;
|
|
@@ -5171,11 +5169,6 @@ export interface DeleteViewGrantInput {
|
|
|
5171
5169
|
clientMutationId?: string;
|
|
5172
5170
|
id: string;
|
|
5173
5171
|
}
|
|
5174
|
-
export interface DeleteApiInput {
|
|
5175
|
-
clientMutationId?: string;
|
|
5176
|
-
/** Unique identifier for this API */
|
|
5177
|
-
id: string;
|
|
5178
|
-
}
|
|
5179
5172
|
export interface DeleteCorsSettingInput {
|
|
5180
5173
|
clientMutationId?: string;
|
|
5181
5174
|
/** Unique identifier for this CORS settings record */
|
|
@@ -5195,6 +5188,11 @@ export interface DeleteSiteModuleInput {
|
|
|
5195
5188
|
/** Unique identifier for this site module record */
|
|
5196
5189
|
id: string;
|
|
5197
5190
|
}
|
|
5191
|
+
export interface DeleteApiInput {
|
|
5192
|
+
clientMutationId?: string;
|
|
5193
|
+
/** Unique identifier for this API */
|
|
5194
|
+
id: string;
|
|
5195
|
+
}
|
|
5198
5196
|
export interface DeleteSiteMetadatumInput {
|
|
5199
5197
|
clientMutationId?: string;
|
|
5200
5198
|
/** Unique identifier for this metadata record */
|
|
@@ -5221,11 +5219,6 @@ export interface DeleteTableGrantInput {
|
|
|
5221
5219
|
clientMutationId?: string;
|
|
5222
5220
|
id: string;
|
|
5223
5221
|
}
|
|
5224
|
-
export interface DeleteDomainInput {
|
|
5225
|
-
clientMutationId?: string;
|
|
5226
|
-
/** Unique identifier for this domain record */
|
|
5227
|
-
id: string;
|
|
5228
|
-
}
|
|
5229
5222
|
export interface DeleteRlsSettingInput {
|
|
5230
5223
|
clientMutationId?: string;
|
|
5231
5224
|
/** Unique identifier for this RLS settings record */
|
|
@@ -5239,6 +5232,11 @@ export interface DeletePartitionInput {
|
|
|
5239
5232
|
clientMutationId?: string;
|
|
5240
5233
|
id: string;
|
|
5241
5234
|
}
|
|
5235
|
+
export interface DeleteDomainInput {
|
|
5236
|
+
clientMutationId?: string;
|
|
5237
|
+
/** Unique identifier for this domain record */
|
|
5238
|
+
id: string;
|
|
5239
|
+
}
|
|
5242
5240
|
export interface DeleteCompositeTypeInput {
|
|
5243
5241
|
clientMutationId?: string;
|
|
5244
5242
|
id: string;
|
|
@@ -5251,41 +5249,40 @@ export interface DeleteViewInput {
|
|
|
5251
5249
|
clientMutationId?: string;
|
|
5252
5250
|
id: string;
|
|
5253
5251
|
}
|
|
5254
|
-
export interface
|
|
5252
|
+
export interface DeletePrimaryKeyConstraintInput {
|
|
5255
5253
|
clientMutationId?: string;
|
|
5256
|
-
/** Unique identifier for this settings record */
|
|
5257
5254
|
id: string;
|
|
5258
5255
|
}
|
|
5259
|
-
export interface
|
|
5256
|
+
export interface DeleteTriggerInput {
|
|
5260
5257
|
clientMutationId?: string;
|
|
5261
|
-
/** Unique identifier for this API settings record */
|
|
5262
5258
|
id: string;
|
|
5263
5259
|
}
|
|
5264
|
-
export interface
|
|
5260
|
+
export interface DeleteCheckConstraintInput {
|
|
5265
5261
|
clientMutationId?: string;
|
|
5266
5262
|
id: string;
|
|
5267
5263
|
}
|
|
5268
|
-
export interface
|
|
5264
|
+
export interface DeleteUniqueConstraintInput {
|
|
5269
5265
|
clientMutationId?: string;
|
|
5270
5266
|
id: string;
|
|
5271
5267
|
}
|
|
5272
|
-
export interface
|
|
5268
|
+
export interface DeleteSpatialRelationInput {
|
|
5273
5269
|
clientMutationId?: string;
|
|
5274
5270
|
id: string;
|
|
5275
5271
|
}
|
|
5276
|
-
export interface
|
|
5272
|
+
export interface DeletePolicyInput {
|
|
5277
5273
|
clientMutationId?: string;
|
|
5278
5274
|
id: string;
|
|
5279
5275
|
}
|
|
5280
|
-
export interface
|
|
5276
|
+
export interface DeleteApiSettingInput {
|
|
5281
5277
|
clientMutationId?: string;
|
|
5278
|
+
/** Unique identifier for this API settings record */
|
|
5282
5279
|
id: string;
|
|
5283
5280
|
}
|
|
5284
|
-
export interface
|
|
5281
|
+
export interface DeleteDatabaseTransferInput {
|
|
5285
5282
|
clientMutationId?: string;
|
|
5286
5283
|
id: string;
|
|
5287
5284
|
}
|
|
5288
|
-
export interface
|
|
5285
|
+
export interface DeleteIndexInput {
|
|
5289
5286
|
clientMutationId?: string;
|
|
5290
5287
|
id: string;
|
|
5291
5288
|
}
|
|
@@ -5294,13 +5291,14 @@ export interface DeleteAppInput {
|
|
|
5294
5291
|
/** Unique identifier for this app */
|
|
5295
5292
|
id: string;
|
|
5296
5293
|
}
|
|
5297
|
-
export interface
|
|
5294
|
+
export interface DeleteDatabaseSettingInput {
|
|
5298
5295
|
clientMutationId?: string;
|
|
5299
|
-
/** Unique identifier for this
|
|
5296
|
+
/** Unique identifier for this settings record */
|
|
5300
5297
|
id: string;
|
|
5301
5298
|
}
|
|
5302
|
-
export interface
|
|
5299
|
+
export interface DeleteSiteInput {
|
|
5303
5300
|
clientMutationId?: string;
|
|
5301
|
+
/** Unique identifier for this site */
|
|
5304
5302
|
id: string;
|
|
5305
5303
|
}
|
|
5306
5304
|
export interface DeleteForeignKeyConstraintInput {
|
|
@@ -5393,13 +5391,6 @@ export interface ViewGrantConnection {
|
|
|
5393
5391
|
pageInfo: PageInfo;
|
|
5394
5392
|
totalCount: number;
|
|
5395
5393
|
}
|
|
5396
|
-
/** A connection to a list of `Api` values. */
|
|
5397
|
-
export interface ApiConnection {
|
|
5398
|
-
nodes: Api[];
|
|
5399
|
-
edges: ApiEdge[];
|
|
5400
|
-
pageInfo: PageInfo;
|
|
5401
|
-
totalCount: number;
|
|
5402
|
-
}
|
|
5403
5394
|
/** A connection to a list of `CorsSetting` values. */
|
|
5404
5395
|
export interface CorsSettingConnection {
|
|
5405
5396
|
nodes: CorsSetting[];
|
|
@@ -5428,6 +5419,13 @@ export interface SiteModuleConnection {
|
|
|
5428
5419
|
pageInfo: PageInfo;
|
|
5429
5420
|
totalCount: number;
|
|
5430
5421
|
}
|
|
5422
|
+
/** A connection to a list of `Api` values. */
|
|
5423
|
+
export interface ApiConnection {
|
|
5424
|
+
nodes: Api[];
|
|
5425
|
+
edges: ApiEdge[];
|
|
5426
|
+
pageInfo: PageInfo;
|
|
5427
|
+
totalCount: number;
|
|
5428
|
+
}
|
|
5431
5429
|
/** A connection to a list of `SiteMetadatum` values. */
|
|
5432
5430
|
export interface SiteMetadatumConnection {
|
|
5433
5431
|
nodes: SiteMetadatum[];
|
|
@@ -5470,13 +5468,6 @@ export interface TableGrantConnection {
|
|
|
5470
5468
|
pageInfo: PageInfo;
|
|
5471
5469
|
totalCount: number;
|
|
5472
5470
|
}
|
|
5473
|
-
/** A connection to a list of `Domain` values. */
|
|
5474
|
-
export interface DomainConnection {
|
|
5475
|
-
nodes: Domain[];
|
|
5476
|
-
edges: DomainEdge[];
|
|
5477
|
-
pageInfo: PageInfo;
|
|
5478
|
-
totalCount: number;
|
|
5479
|
-
}
|
|
5480
5471
|
/** A connection to a list of `RlsSetting` values. */
|
|
5481
5472
|
export interface RlsSettingConnection {
|
|
5482
5473
|
nodes: RlsSetting[];
|
|
@@ -5498,6 +5489,13 @@ export interface PartitionConnection {
|
|
|
5498
5489
|
pageInfo: PageInfo;
|
|
5499
5490
|
totalCount: number;
|
|
5500
5491
|
}
|
|
5492
|
+
/** A connection to a list of `Domain` values. */
|
|
5493
|
+
export interface DomainConnection {
|
|
5494
|
+
nodes: Domain[];
|
|
5495
|
+
edges: DomainEdge[];
|
|
5496
|
+
pageInfo: PageInfo;
|
|
5497
|
+
totalCount: number;
|
|
5498
|
+
}
|
|
5501
5499
|
/** A connection to a list of `CompositeType` values. */
|
|
5502
5500
|
export interface CompositeTypeConnection {
|
|
5503
5501
|
nodes: CompositeType[];
|
|
@@ -5512,13 +5510,6 @@ export interface EnumConnection {
|
|
|
5512
5510
|
pageInfo: PageInfo;
|
|
5513
5511
|
totalCount: number;
|
|
5514
5512
|
}
|
|
5515
|
-
/** A connection to a list of `SqlAction` values. */
|
|
5516
|
-
export interface SqlActionConnection {
|
|
5517
|
-
nodes: SqlAction[];
|
|
5518
|
-
edges: SqlActionEdge[];
|
|
5519
|
-
pageInfo: PageInfo;
|
|
5520
|
-
totalCount: number;
|
|
5521
|
-
}
|
|
5522
5513
|
/** A connection to a list of `View` values. */
|
|
5523
5514
|
export interface ViewConnection {
|
|
5524
5515
|
nodes: View[];
|
|
@@ -5526,24 +5517,10 @@ export interface ViewConnection {
|
|
|
5526
5517
|
pageInfo: PageInfo;
|
|
5527
5518
|
totalCount: number;
|
|
5528
5519
|
}
|
|
5529
|
-
/** A connection to a list of `
|
|
5530
|
-
export interface
|
|
5531
|
-
nodes:
|
|
5532
|
-
edges:
|
|
5533
|
-
pageInfo: PageInfo;
|
|
5534
|
-
totalCount: number;
|
|
5535
|
-
}
|
|
5536
|
-
/** A connection to a list of `ApiSetting` values. */
|
|
5537
|
-
export interface ApiSettingConnection {
|
|
5538
|
-
nodes: ApiSetting[];
|
|
5539
|
-
edges: ApiSettingEdge[];
|
|
5540
|
-
pageInfo: PageInfo;
|
|
5541
|
-
totalCount: number;
|
|
5542
|
-
}
|
|
5543
|
-
/** A connection to a list of `DatabaseTransfer` values. */
|
|
5544
|
-
export interface DatabaseTransferConnection {
|
|
5545
|
-
nodes: DatabaseTransfer[];
|
|
5546
|
-
edges: DatabaseTransferEdge[];
|
|
5520
|
+
/** A connection to a list of `SqlAction` values. */
|
|
5521
|
+
export interface SqlActionConnection {
|
|
5522
|
+
nodes: SqlAction[];
|
|
5523
|
+
edges: SqlActionEdge[];
|
|
5547
5524
|
pageInfo: PageInfo;
|
|
5548
5525
|
totalCount: number;
|
|
5549
5526
|
}
|
|
@@ -5589,6 +5566,27 @@ export interface PolicyConnection {
|
|
|
5589
5566
|
pageInfo: PageInfo;
|
|
5590
5567
|
totalCount: number;
|
|
5591
5568
|
}
|
|
5569
|
+
/** A connection to a list of `ApiSetting` values. */
|
|
5570
|
+
export interface ApiSettingConnection {
|
|
5571
|
+
nodes: ApiSetting[];
|
|
5572
|
+
edges: ApiSettingEdge[];
|
|
5573
|
+
pageInfo: PageInfo;
|
|
5574
|
+
totalCount: number;
|
|
5575
|
+
}
|
|
5576
|
+
/** A connection to a list of `DatabaseTransfer` values. */
|
|
5577
|
+
export interface DatabaseTransferConnection {
|
|
5578
|
+
nodes: DatabaseTransfer[];
|
|
5579
|
+
edges: DatabaseTransferEdge[];
|
|
5580
|
+
pageInfo: PageInfo;
|
|
5581
|
+
totalCount: number;
|
|
5582
|
+
}
|
|
5583
|
+
/** A connection to a list of `Index` values. */
|
|
5584
|
+
export interface IndexConnection {
|
|
5585
|
+
nodes: Index[];
|
|
5586
|
+
edges: IndexEdge[];
|
|
5587
|
+
pageInfo: PageInfo;
|
|
5588
|
+
totalCount: number;
|
|
5589
|
+
}
|
|
5592
5590
|
/** A connection to a list of `App` values. */
|
|
5593
5591
|
export interface AppConnection {
|
|
5594
5592
|
nodes: App[];
|
|
@@ -5596,6 +5594,13 @@ export interface AppConnection {
|
|
|
5596
5594
|
pageInfo: PageInfo;
|
|
5597
5595
|
totalCount: number;
|
|
5598
5596
|
}
|
|
5597
|
+
/** A connection to a list of `DatabaseSetting` values. */
|
|
5598
|
+
export interface DatabaseSettingConnection {
|
|
5599
|
+
nodes: DatabaseSetting[];
|
|
5600
|
+
edges: DatabaseSettingEdge[];
|
|
5601
|
+
pageInfo: PageInfo;
|
|
5602
|
+
totalCount: number;
|
|
5603
|
+
}
|
|
5599
5604
|
/** A connection to a list of `Site` values. */
|
|
5600
5605
|
export interface SiteConnection {
|
|
5601
5606
|
nodes: Site[];
|
|
@@ -5603,13 +5608,6 @@ export interface SiteConnection {
|
|
|
5603
5608
|
pageInfo: PageInfo;
|
|
5604
5609
|
totalCount: number;
|
|
5605
5610
|
}
|
|
5606
|
-
/** A connection to a list of `Index` values. */
|
|
5607
|
-
export interface IndexConnection {
|
|
5608
|
-
nodes: Index[];
|
|
5609
|
-
edges: IndexEdge[];
|
|
5610
|
-
pageInfo: PageInfo;
|
|
5611
|
-
totalCount: number;
|
|
5612
|
-
}
|
|
5613
5611
|
/** A connection to a list of `ForeignKeyConstraint` values. */
|
|
5614
5612
|
export interface ForeignKeyConstraintConnection {
|
|
5615
5613
|
nodes: ForeignKeyConstraint[];
|
|
@@ -5740,12 +5738,6 @@ export interface CreateViewGrantPayload {
|
|
|
5740
5738
|
viewGrant?: ViewGrant | null;
|
|
5741
5739
|
viewGrantEdge?: ViewGrantEdge | null;
|
|
5742
5740
|
}
|
|
5743
|
-
export interface CreateApiPayload {
|
|
5744
|
-
clientMutationId?: string | null;
|
|
5745
|
-
/** The `Api` that was created by this mutation. */
|
|
5746
|
-
api?: Api | null;
|
|
5747
|
-
apiEdge?: ApiEdge | null;
|
|
5748
|
-
}
|
|
5749
5741
|
export interface CreateCorsSettingPayload {
|
|
5750
5742
|
clientMutationId?: string | null;
|
|
5751
5743
|
/** The `CorsSetting` that was created by this mutation. */
|
|
@@ -5770,6 +5762,12 @@ export interface CreateSiteModulePayload {
|
|
|
5770
5762
|
siteModule?: SiteModule | null;
|
|
5771
5763
|
siteModuleEdge?: SiteModuleEdge | null;
|
|
5772
5764
|
}
|
|
5765
|
+
export interface CreateApiPayload {
|
|
5766
|
+
clientMutationId?: string | null;
|
|
5767
|
+
/** The `Api` that was created by this mutation. */
|
|
5768
|
+
api?: Api | null;
|
|
5769
|
+
apiEdge?: ApiEdge | null;
|
|
5770
|
+
}
|
|
5773
5771
|
export interface CreateSiteMetadatumPayload {
|
|
5774
5772
|
clientMutationId?: string | null;
|
|
5775
5773
|
/** The `SiteMetadatum` that was created by this mutation. */
|
|
@@ -5806,12 +5804,6 @@ export interface CreateTableGrantPayload {
|
|
|
5806
5804
|
tableGrant?: TableGrant | null;
|
|
5807
5805
|
tableGrantEdge?: TableGrantEdge | null;
|
|
5808
5806
|
}
|
|
5809
|
-
export interface CreateDomainPayload {
|
|
5810
|
-
clientMutationId?: string | null;
|
|
5811
|
-
/** The `Domain` that was created by this mutation. */
|
|
5812
|
-
domain?: Domain | null;
|
|
5813
|
-
domainEdge?: DomainEdge | null;
|
|
5814
|
-
}
|
|
5815
5807
|
export interface CreateRlsSettingPayload {
|
|
5816
5808
|
clientMutationId?: string | null;
|
|
5817
5809
|
/** The `RlsSetting` that was created by this mutation. */
|
|
@@ -5830,6 +5822,12 @@ export interface CreatePartitionPayload {
|
|
|
5830
5822
|
partition?: Partition | null;
|
|
5831
5823
|
partitionEdge?: PartitionEdge | null;
|
|
5832
5824
|
}
|
|
5825
|
+
export interface CreateDomainPayload {
|
|
5826
|
+
clientMutationId?: string | null;
|
|
5827
|
+
/** The `Domain` that was created by this mutation. */
|
|
5828
|
+
domain?: Domain | null;
|
|
5829
|
+
domainEdge?: DomainEdge | null;
|
|
5830
|
+
}
|
|
5833
5831
|
export interface CreateCompositeTypePayload {
|
|
5834
5832
|
clientMutationId?: string | null;
|
|
5835
5833
|
/** The `CompositeType` that was created by this mutation. */
|
|
@@ -5842,34 +5840,16 @@ export interface CreateEnumPayload {
|
|
|
5842
5840
|
enum?: Enum | null;
|
|
5843
5841
|
enumEdge?: EnumEdge | null;
|
|
5844
5842
|
}
|
|
5845
|
-
export interface CreateSqlActionPayload {
|
|
5846
|
-
clientMutationId?: string | null;
|
|
5847
|
-
/** The `SqlAction` that was created by this mutation. */
|
|
5848
|
-
sqlAction?: SqlAction | null;
|
|
5849
|
-
}
|
|
5850
5843
|
export interface CreateViewPayload {
|
|
5851
5844
|
clientMutationId?: string | null;
|
|
5852
5845
|
/** The `View` that was created by this mutation. */
|
|
5853
5846
|
view?: View | null;
|
|
5854
5847
|
viewEdge?: ViewEdge | null;
|
|
5855
5848
|
}
|
|
5856
|
-
export interface
|
|
5857
|
-
clientMutationId?: string | null;
|
|
5858
|
-
/** The `DatabaseSetting` that was created by this mutation. */
|
|
5859
|
-
databaseSetting?: DatabaseSetting | null;
|
|
5860
|
-
databaseSettingEdge?: DatabaseSettingEdge | null;
|
|
5861
|
-
}
|
|
5862
|
-
export interface CreateApiSettingPayload {
|
|
5863
|
-
clientMutationId?: string | null;
|
|
5864
|
-
/** The `ApiSetting` that was created by this mutation. */
|
|
5865
|
-
apiSetting?: ApiSetting | null;
|
|
5866
|
-
apiSettingEdge?: ApiSettingEdge | null;
|
|
5867
|
-
}
|
|
5868
|
-
export interface CreateDatabaseTransferPayload {
|
|
5849
|
+
export interface CreateSqlActionPayload {
|
|
5869
5850
|
clientMutationId?: string | null;
|
|
5870
|
-
/** The `
|
|
5871
|
-
|
|
5872
|
-
databaseTransferEdge?: DatabaseTransferEdge | null;
|
|
5851
|
+
/** The `SqlAction` that was created by this mutation. */
|
|
5852
|
+
sqlAction?: SqlAction | null;
|
|
5873
5853
|
}
|
|
5874
5854
|
export interface CreatePrimaryKeyConstraintPayload {
|
|
5875
5855
|
clientMutationId?: string | null;
|
|
@@ -5907,24 +5887,42 @@ export interface CreatePolicyPayload {
|
|
|
5907
5887
|
policy?: Policy | null;
|
|
5908
5888
|
policyEdge?: PolicyEdge | null;
|
|
5909
5889
|
}
|
|
5890
|
+
export interface CreateApiSettingPayload {
|
|
5891
|
+
clientMutationId?: string | null;
|
|
5892
|
+
/** The `ApiSetting` that was created by this mutation. */
|
|
5893
|
+
apiSetting?: ApiSetting | null;
|
|
5894
|
+
apiSettingEdge?: ApiSettingEdge | null;
|
|
5895
|
+
}
|
|
5896
|
+
export interface CreateDatabaseTransferPayload {
|
|
5897
|
+
clientMutationId?: string | null;
|
|
5898
|
+
/** The `DatabaseTransfer` that was created by this mutation. */
|
|
5899
|
+
databaseTransfer?: DatabaseTransfer | null;
|
|
5900
|
+
databaseTransferEdge?: DatabaseTransferEdge | null;
|
|
5901
|
+
}
|
|
5902
|
+
export interface CreateIndexPayload {
|
|
5903
|
+
clientMutationId?: string | null;
|
|
5904
|
+
/** The `Index` that was created by this mutation. */
|
|
5905
|
+
index?: Index | null;
|
|
5906
|
+
indexEdge?: IndexEdge | null;
|
|
5907
|
+
}
|
|
5910
5908
|
export interface CreateAppPayload {
|
|
5911
5909
|
clientMutationId?: string | null;
|
|
5912
5910
|
/** The `App` that was created by this mutation. */
|
|
5913
5911
|
app?: App | null;
|
|
5914
5912
|
appEdge?: AppEdge | null;
|
|
5915
5913
|
}
|
|
5914
|
+
export interface CreateDatabaseSettingPayload {
|
|
5915
|
+
clientMutationId?: string | null;
|
|
5916
|
+
/** The `DatabaseSetting` that was created by this mutation. */
|
|
5917
|
+
databaseSetting?: DatabaseSetting | null;
|
|
5918
|
+
databaseSettingEdge?: DatabaseSettingEdge | null;
|
|
5919
|
+
}
|
|
5916
5920
|
export interface CreateSitePayload {
|
|
5917
5921
|
clientMutationId?: string | null;
|
|
5918
5922
|
/** The `Site` that was created by this mutation. */
|
|
5919
5923
|
site?: Site | null;
|
|
5920
5924
|
siteEdge?: SiteEdge | null;
|
|
5921
5925
|
}
|
|
5922
|
-
export interface CreateIndexPayload {
|
|
5923
|
-
clientMutationId?: string | null;
|
|
5924
|
-
/** The `Index` that was created by this mutation. */
|
|
5925
|
-
index?: Index | null;
|
|
5926
|
-
indexEdge?: IndexEdge | null;
|
|
5927
|
-
}
|
|
5928
5926
|
export interface CreateForeignKeyConstraintPayload {
|
|
5929
5927
|
clientMutationId?: string | null;
|
|
5930
5928
|
/** The `ForeignKeyConstraint` that was created by this mutation. */
|
|
@@ -6008,12 +6006,6 @@ export interface UpdateViewGrantPayload {
|
|
|
6008
6006
|
viewGrant?: ViewGrant | null;
|
|
6009
6007
|
viewGrantEdge?: ViewGrantEdge | null;
|
|
6010
6008
|
}
|
|
6011
|
-
export interface UpdateApiPayload {
|
|
6012
|
-
clientMutationId?: string | null;
|
|
6013
|
-
/** The `Api` that was updated by this mutation. */
|
|
6014
|
-
api?: Api | null;
|
|
6015
|
-
apiEdge?: ApiEdge | null;
|
|
6016
|
-
}
|
|
6017
6009
|
export interface UpdateCorsSettingPayload {
|
|
6018
6010
|
clientMutationId?: string | null;
|
|
6019
6011
|
/** The `CorsSetting` that was updated by this mutation. */
|
|
@@ -6038,6 +6030,12 @@ export interface UpdateSiteModulePayload {
|
|
|
6038
6030
|
siteModule?: SiteModule | null;
|
|
6039
6031
|
siteModuleEdge?: SiteModuleEdge | null;
|
|
6040
6032
|
}
|
|
6033
|
+
export interface UpdateApiPayload {
|
|
6034
|
+
clientMutationId?: string | null;
|
|
6035
|
+
/** The `Api` that was updated by this mutation. */
|
|
6036
|
+
api?: Api | null;
|
|
6037
|
+
apiEdge?: ApiEdge | null;
|
|
6038
|
+
}
|
|
6041
6039
|
export interface UpdateSiteMetadatumPayload {
|
|
6042
6040
|
clientMutationId?: string | null;
|
|
6043
6041
|
/** The `SiteMetadatum` that was updated by this mutation. */
|
|
@@ -6074,12 +6072,6 @@ export interface UpdateTableGrantPayload {
|
|
|
6074
6072
|
tableGrant?: TableGrant | null;
|
|
6075
6073
|
tableGrantEdge?: TableGrantEdge | null;
|
|
6076
6074
|
}
|
|
6077
|
-
export interface UpdateDomainPayload {
|
|
6078
|
-
clientMutationId?: string | null;
|
|
6079
|
-
/** The `Domain` that was updated by this mutation. */
|
|
6080
|
-
domain?: Domain | null;
|
|
6081
|
-
domainEdge?: DomainEdge | null;
|
|
6082
|
-
}
|
|
6083
6075
|
export interface UpdateRlsSettingPayload {
|
|
6084
6076
|
clientMutationId?: string | null;
|
|
6085
6077
|
/** The `RlsSetting` that was updated by this mutation. */
|
|
@@ -6098,6 +6090,12 @@ export interface UpdatePartitionPayload {
|
|
|
6098
6090
|
partition?: Partition | null;
|
|
6099
6091
|
partitionEdge?: PartitionEdge | null;
|
|
6100
6092
|
}
|
|
6093
|
+
export interface UpdateDomainPayload {
|
|
6094
|
+
clientMutationId?: string | null;
|
|
6095
|
+
/** The `Domain` that was updated by this mutation. */
|
|
6096
|
+
domain?: Domain | null;
|
|
6097
|
+
domainEdge?: DomainEdge | null;
|
|
6098
|
+
}
|
|
6101
6099
|
export interface UpdateCompositeTypePayload {
|
|
6102
6100
|
clientMutationId?: string | null;
|
|
6103
6101
|
/** The `CompositeType` that was updated by this mutation. */
|
|
@@ -6116,24 +6114,6 @@ export interface UpdateViewPayload {
|
|
|
6116
6114
|
view?: View | null;
|
|
6117
6115
|
viewEdge?: ViewEdge | null;
|
|
6118
6116
|
}
|
|
6119
|
-
export interface UpdateDatabaseSettingPayload {
|
|
6120
|
-
clientMutationId?: string | null;
|
|
6121
|
-
/** The `DatabaseSetting` that was updated by this mutation. */
|
|
6122
|
-
databaseSetting?: DatabaseSetting | null;
|
|
6123
|
-
databaseSettingEdge?: DatabaseSettingEdge | null;
|
|
6124
|
-
}
|
|
6125
|
-
export interface UpdateApiSettingPayload {
|
|
6126
|
-
clientMutationId?: string | null;
|
|
6127
|
-
/** The `ApiSetting` that was updated by this mutation. */
|
|
6128
|
-
apiSetting?: ApiSetting | null;
|
|
6129
|
-
apiSettingEdge?: ApiSettingEdge | null;
|
|
6130
|
-
}
|
|
6131
|
-
export interface UpdateDatabaseTransferPayload {
|
|
6132
|
-
clientMutationId?: string | null;
|
|
6133
|
-
/** The `DatabaseTransfer` that was updated by this mutation. */
|
|
6134
|
-
databaseTransfer?: DatabaseTransfer | null;
|
|
6135
|
-
databaseTransferEdge?: DatabaseTransferEdge | null;
|
|
6136
|
-
}
|
|
6137
6117
|
export interface UpdatePrimaryKeyConstraintPayload {
|
|
6138
6118
|
clientMutationId?: string | null;
|
|
6139
6119
|
/** The `PrimaryKeyConstraint` that was updated by this mutation. */
|
|
@@ -6170,24 +6150,42 @@ export interface UpdatePolicyPayload {
|
|
|
6170
6150
|
policy?: Policy | null;
|
|
6171
6151
|
policyEdge?: PolicyEdge | null;
|
|
6172
6152
|
}
|
|
6153
|
+
export interface UpdateApiSettingPayload {
|
|
6154
|
+
clientMutationId?: string | null;
|
|
6155
|
+
/** The `ApiSetting` that was updated by this mutation. */
|
|
6156
|
+
apiSetting?: ApiSetting | null;
|
|
6157
|
+
apiSettingEdge?: ApiSettingEdge | null;
|
|
6158
|
+
}
|
|
6159
|
+
export interface UpdateDatabaseTransferPayload {
|
|
6160
|
+
clientMutationId?: string | null;
|
|
6161
|
+
/** The `DatabaseTransfer` that was updated by this mutation. */
|
|
6162
|
+
databaseTransfer?: DatabaseTransfer | null;
|
|
6163
|
+
databaseTransferEdge?: DatabaseTransferEdge | null;
|
|
6164
|
+
}
|
|
6165
|
+
export interface UpdateIndexPayload {
|
|
6166
|
+
clientMutationId?: string | null;
|
|
6167
|
+
/** The `Index` that was updated by this mutation. */
|
|
6168
|
+
index?: Index | null;
|
|
6169
|
+
indexEdge?: IndexEdge | null;
|
|
6170
|
+
}
|
|
6173
6171
|
export interface UpdateAppPayload {
|
|
6174
6172
|
clientMutationId?: string | null;
|
|
6175
6173
|
/** The `App` that was updated by this mutation. */
|
|
6176
6174
|
app?: App | null;
|
|
6177
6175
|
appEdge?: AppEdge | null;
|
|
6178
6176
|
}
|
|
6177
|
+
export interface UpdateDatabaseSettingPayload {
|
|
6178
|
+
clientMutationId?: string | null;
|
|
6179
|
+
/** The `DatabaseSetting` that was updated by this mutation. */
|
|
6180
|
+
databaseSetting?: DatabaseSetting | null;
|
|
6181
|
+
databaseSettingEdge?: DatabaseSettingEdge | null;
|
|
6182
|
+
}
|
|
6179
6183
|
export interface UpdateSitePayload {
|
|
6180
6184
|
clientMutationId?: string | null;
|
|
6181
6185
|
/** The `Site` that was updated by this mutation. */
|
|
6182
6186
|
site?: Site | null;
|
|
6183
6187
|
siteEdge?: SiteEdge | null;
|
|
6184
6188
|
}
|
|
6185
|
-
export interface UpdateIndexPayload {
|
|
6186
|
-
clientMutationId?: string | null;
|
|
6187
|
-
/** The `Index` that was updated by this mutation. */
|
|
6188
|
-
index?: Index | null;
|
|
6189
|
-
indexEdge?: IndexEdge | null;
|
|
6190
|
-
}
|
|
6191
6189
|
export interface UpdateForeignKeyConstraintPayload {
|
|
6192
6190
|
clientMutationId?: string | null;
|
|
6193
6191
|
/** The `ForeignKeyConstraint` that was updated by this mutation. */
|
|
@@ -6266,12 +6264,6 @@ export interface DeleteViewGrantPayload {
|
|
|
6266
6264
|
viewGrant?: ViewGrant | null;
|
|
6267
6265
|
viewGrantEdge?: ViewGrantEdge | null;
|
|
6268
6266
|
}
|
|
6269
|
-
export interface DeleteApiPayload {
|
|
6270
|
-
clientMutationId?: string | null;
|
|
6271
|
-
/** The `Api` that was deleted by this mutation. */
|
|
6272
|
-
api?: Api | null;
|
|
6273
|
-
apiEdge?: ApiEdge | null;
|
|
6274
|
-
}
|
|
6275
6267
|
export interface DeleteCorsSettingPayload {
|
|
6276
6268
|
clientMutationId?: string | null;
|
|
6277
6269
|
/** The `CorsSetting` that was deleted by this mutation. */
|
|
@@ -6296,6 +6288,12 @@ export interface DeleteSiteModulePayload {
|
|
|
6296
6288
|
siteModule?: SiteModule | null;
|
|
6297
6289
|
siteModuleEdge?: SiteModuleEdge | null;
|
|
6298
6290
|
}
|
|
6291
|
+
export interface DeleteApiPayload {
|
|
6292
|
+
clientMutationId?: string | null;
|
|
6293
|
+
/** The `Api` that was deleted by this mutation. */
|
|
6294
|
+
api?: Api | null;
|
|
6295
|
+
apiEdge?: ApiEdge | null;
|
|
6296
|
+
}
|
|
6299
6297
|
export interface DeleteSiteMetadatumPayload {
|
|
6300
6298
|
clientMutationId?: string | null;
|
|
6301
6299
|
/** The `SiteMetadatum` that was deleted by this mutation. */
|
|
@@ -6332,12 +6330,6 @@ export interface DeleteTableGrantPayload {
|
|
|
6332
6330
|
tableGrant?: TableGrant | null;
|
|
6333
6331
|
tableGrantEdge?: TableGrantEdge | null;
|
|
6334
6332
|
}
|
|
6335
|
-
export interface DeleteDomainPayload {
|
|
6336
|
-
clientMutationId?: string | null;
|
|
6337
|
-
/** The `Domain` that was deleted by this mutation. */
|
|
6338
|
-
domain?: Domain | null;
|
|
6339
|
-
domainEdge?: DomainEdge | null;
|
|
6340
|
-
}
|
|
6341
6333
|
export interface DeleteRlsSettingPayload {
|
|
6342
6334
|
clientMutationId?: string | null;
|
|
6343
6335
|
/** The `RlsSetting` that was deleted by this mutation. */
|
|
@@ -6356,6 +6348,12 @@ export interface DeletePartitionPayload {
|
|
|
6356
6348
|
partition?: Partition | null;
|
|
6357
6349
|
partitionEdge?: PartitionEdge | null;
|
|
6358
6350
|
}
|
|
6351
|
+
export interface DeleteDomainPayload {
|
|
6352
|
+
clientMutationId?: string | null;
|
|
6353
|
+
/** The `Domain` that was deleted by this mutation. */
|
|
6354
|
+
domain?: Domain | null;
|
|
6355
|
+
domainEdge?: DomainEdge | null;
|
|
6356
|
+
}
|
|
6359
6357
|
export interface DeleteCompositeTypePayload {
|
|
6360
6358
|
clientMutationId?: string | null;
|
|
6361
6359
|
/** The `CompositeType` that was deleted by this mutation. */
|
|
@@ -6374,24 +6372,6 @@ export interface DeleteViewPayload {
|
|
|
6374
6372
|
view?: View | null;
|
|
6375
6373
|
viewEdge?: ViewEdge | null;
|
|
6376
6374
|
}
|
|
6377
|
-
export interface DeleteDatabaseSettingPayload {
|
|
6378
|
-
clientMutationId?: string | null;
|
|
6379
|
-
/** The `DatabaseSetting` that was deleted by this mutation. */
|
|
6380
|
-
databaseSetting?: DatabaseSetting | null;
|
|
6381
|
-
databaseSettingEdge?: DatabaseSettingEdge | null;
|
|
6382
|
-
}
|
|
6383
|
-
export interface DeleteApiSettingPayload {
|
|
6384
|
-
clientMutationId?: string | null;
|
|
6385
|
-
/** The `ApiSetting` that was deleted by this mutation. */
|
|
6386
|
-
apiSetting?: ApiSetting | null;
|
|
6387
|
-
apiSettingEdge?: ApiSettingEdge | null;
|
|
6388
|
-
}
|
|
6389
|
-
export interface DeleteDatabaseTransferPayload {
|
|
6390
|
-
clientMutationId?: string | null;
|
|
6391
|
-
/** The `DatabaseTransfer` that was deleted by this mutation. */
|
|
6392
|
-
databaseTransfer?: DatabaseTransfer | null;
|
|
6393
|
-
databaseTransferEdge?: DatabaseTransferEdge | null;
|
|
6394
|
-
}
|
|
6395
6375
|
export interface DeletePrimaryKeyConstraintPayload {
|
|
6396
6376
|
clientMutationId?: string | null;
|
|
6397
6377
|
/** The `PrimaryKeyConstraint` that was deleted by this mutation. */
|
|
@@ -6428,24 +6408,42 @@ export interface DeletePolicyPayload {
|
|
|
6428
6408
|
policy?: Policy | null;
|
|
6429
6409
|
policyEdge?: PolicyEdge | null;
|
|
6430
6410
|
}
|
|
6411
|
+
export interface DeleteApiSettingPayload {
|
|
6412
|
+
clientMutationId?: string | null;
|
|
6413
|
+
/** The `ApiSetting` that was deleted by this mutation. */
|
|
6414
|
+
apiSetting?: ApiSetting | null;
|
|
6415
|
+
apiSettingEdge?: ApiSettingEdge | null;
|
|
6416
|
+
}
|
|
6417
|
+
export interface DeleteDatabaseTransferPayload {
|
|
6418
|
+
clientMutationId?: string | null;
|
|
6419
|
+
/** The `DatabaseTransfer` that was deleted by this mutation. */
|
|
6420
|
+
databaseTransfer?: DatabaseTransfer | null;
|
|
6421
|
+
databaseTransferEdge?: DatabaseTransferEdge | null;
|
|
6422
|
+
}
|
|
6423
|
+
export interface DeleteIndexPayload {
|
|
6424
|
+
clientMutationId?: string | null;
|
|
6425
|
+
/** The `Index` that was deleted by this mutation. */
|
|
6426
|
+
index?: Index | null;
|
|
6427
|
+
indexEdge?: IndexEdge | null;
|
|
6428
|
+
}
|
|
6431
6429
|
export interface DeleteAppPayload {
|
|
6432
6430
|
clientMutationId?: string | null;
|
|
6433
6431
|
/** The `App` that was deleted by this mutation. */
|
|
6434
6432
|
app?: App | null;
|
|
6435
6433
|
appEdge?: AppEdge | null;
|
|
6436
6434
|
}
|
|
6435
|
+
export interface DeleteDatabaseSettingPayload {
|
|
6436
|
+
clientMutationId?: string | null;
|
|
6437
|
+
/** The `DatabaseSetting` that was deleted by this mutation. */
|
|
6438
|
+
databaseSetting?: DatabaseSetting | null;
|
|
6439
|
+
databaseSettingEdge?: DatabaseSettingEdge | null;
|
|
6440
|
+
}
|
|
6437
6441
|
export interface DeleteSitePayload {
|
|
6438
6442
|
clientMutationId?: string | null;
|
|
6439
6443
|
/** The `Site` that was deleted by this mutation. */
|
|
6440
6444
|
site?: Site | null;
|
|
6441
6445
|
siteEdge?: SiteEdge | null;
|
|
6442
6446
|
}
|
|
6443
|
-
export interface DeleteIndexPayload {
|
|
6444
|
-
clientMutationId?: string | null;
|
|
6445
|
-
/** The `Index` that was deleted by this mutation. */
|
|
6446
|
-
index?: Index | null;
|
|
6447
|
-
indexEdge?: IndexEdge | null;
|
|
6448
|
-
}
|
|
6449
6447
|
export interface DeleteForeignKeyConstraintPayload {
|
|
6450
6448
|
clientMutationId?: string | null;
|
|
6451
6449
|
/** The `ForeignKeyConstraint` that was deleted by this mutation. */
|
|
@@ -6555,12 +6553,6 @@ export interface ViewGrantEdge {
|
|
|
6555
6553
|
/** The `ViewGrant` at the end of the edge. */
|
|
6556
6554
|
node?: ViewGrant | null;
|
|
6557
6555
|
}
|
|
6558
|
-
/** A `Api` edge in the connection. */
|
|
6559
|
-
export interface ApiEdge {
|
|
6560
|
-
cursor?: string | null;
|
|
6561
|
-
/** The `Api` at the end of the edge. */
|
|
6562
|
-
node?: Api | null;
|
|
6563
|
-
}
|
|
6564
6556
|
/** A `CorsSetting` edge in the connection. */
|
|
6565
6557
|
export interface CorsSettingEdge {
|
|
6566
6558
|
cursor?: string | null;
|
|
@@ -6585,6 +6577,12 @@ export interface SiteModuleEdge {
|
|
|
6585
6577
|
/** The `SiteModule` at the end of the edge. */
|
|
6586
6578
|
node?: SiteModule | null;
|
|
6587
6579
|
}
|
|
6580
|
+
/** A `Api` edge in the connection. */
|
|
6581
|
+
export interface ApiEdge {
|
|
6582
|
+
cursor?: string | null;
|
|
6583
|
+
/** The `Api` at the end of the edge. */
|
|
6584
|
+
node?: Api | null;
|
|
6585
|
+
}
|
|
6588
6586
|
/** A `SiteMetadatum` edge in the connection. */
|
|
6589
6587
|
export interface SiteMetadatumEdge {
|
|
6590
6588
|
cursor?: string | null;
|
|
@@ -6621,12 +6619,6 @@ export interface TableGrantEdge {
|
|
|
6621
6619
|
/** The `TableGrant` at the end of the edge. */
|
|
6622
6620
|
node?: TableGrant | null;
|
|
6623
6621
|
}
|
|
6624
|
-
/** A `Domain` edge in the connection. */
|
|
6625
|
-
export interface DomainEdge {
|
|
6626
|
-
cursor?: string | null;
|
|
6627
|
-
/** The `Domain` at the end of the edge. */
|
|
6628
|
-
node?: Domain | null;
|
|
6629
|
-
}
|
|
6630
6622
|
/** A `RlsSetting` edge in the connection. */
|
|
6631
6623
|
export interface RlsSettingEdge {
|
|
6632
6624
|
cursor?: string | null;
|
|
@@ -6645,6 +6637,12 @@ export interface PartitionEdge {
|
|
|
6645
6637
|
/** The `Partition` at the end of the edge. */
|
|
6646
6638
|
node?: Partition | null;
|
|
6647
6639
|
}
|
|
6640
|
+
/** A `Domain` edge in the connection. */
|
|
6641
|
+
export interface DomainEdge {
|
|
6642
|
+
cursor?: string | null;
|
|
6643
|
+
/** The `Domain` at the end of the edge. */
|
|
6644
|
+
node?: Domain | null;
|
|
6645
|
+
}
|
|
6648
6646
|
/** A `CompositeType` edge in the connection. */
|
|
6649
6647
|
export interface CompositeTypeEdge {
|
|
6650
6648
|
cursor?: string | null;
|
|
@@ -6657,35 +6655,17 @@ export interface EnumEdge {
|
|
|
6657
6655
|
/** The `Enum` at the end of the edge. */
|
|
6658
6656
|
node?: Enum | null;
|
|
6659
6657
|
}
|
|
6660
|
-
/** A `SqlAction` edge in the connection. */
|
|
6661
|
-
export interface SqlActionEdge {
|
|
6662
|
-
cursor?: string | null;
|
|
6663
|
-
/** The `SqlAction` at the end of the edge. */
|
|
6664
|
-
node?: SqlAction | null;
|
|
6665
|
-
}
|
|
6666
6658
|
/** A `View` edge in the connection. */
|
|
6667
6659
|
export interface ViewEdge {
|
|
6668
6660
|
cursor?: string | null;
|
|
6669
6661
|
/** The `View` at the end of the edge. */
|
|
6670
6662
|
node?: View | null;
|
|
6671
6663
|
}
|
|
6672
|
-
/** A `
|
|
6673
|
-
export interface
|
|
6674
|
-
cursor?: string | null;
|
|
6675
|
-
/** The `DatabaseSetting` at the end of the edge. */
|
|
6676
|
-
node?: DatabaseSetting | null;
|
|
6677
|
-
}
|
|
6678
|
-
/** A `ApiSetting` edge in the connection. */
|
|
6679
|
-
export interface ApiSettingEdge {
|
|
6680
|
-
cursor?: string | null;
|
|
6681
|
-
/** The `ApiSetting` at the end of the edge. */
|
|
6682
|
-
node?: ApiSetting | null;
|
|
6683
|
-
}
|
|
6684
|
-
/** A `DatabaseTransfer` edge in the connection. */
|
|
6685
|
-
export interface DatabaseTransferEdge {
|
|
6664
|
+
/** A `SqlAction` edge in the connection. */
|
|
6665
|
+
export interface SqlActionEdge {
|
|
6686
6666
|
cursor?: string | null;
|
|
6687
|
-
/** The `
|
|
6688
|
-
node?:
|
|
6667
|
+
/** The `SqlAction` at the end of the edge. */
|
|
6668
|
+
node?: SqlAction | null;
|
|
6689
6669
|
}
|
|
6690
6670
|
/** A `PrimaryKeyConstraint` edge in the connection. */
|
|
6691
6671
|
export interface PrimaryKeyConstraintEdge {
|
|
@@ -6723,24 +6703,42 @@ export interface PolicyEdge {
|
|
|
6723
6703
|
/** The `Policy` at the end of the edge. */
|
|
6724
6704
|
node?: Policy | null;
|
|
6725
6705
|
}
|
|
6706
|
+
/** A `ApiSetting` edge in the connection. */
|
|
6707
|
+
export interface ApiSettingEdge {
|
|
6708
|
+
cursor?: string | null;
|
|
6709
|
+
/** The `ApiSetting` at the end of the edge. */
|
|
6710
|
+
node?: ApiSetting | null;
|
|
6711
|
+
}
|
|
6712
|
+
/** A `DatabaseTransfer` edge in the connection. */
|
|
6713
|
+
export interface DatabaseTransferEdge {
|
|
6714
|
+
cursor?: string | null;
|
|
6715
|
+
/** The `DatabaseTransfer` at the end of the edge. */
|
|
6716
|
+
node?: DatabaseTransfer | null;
|
|
6717
|
+
}
|
|
6718
|
+
/** A `Index` edge in the connection. */
|
|
6719
|
+
export interface IndexEdge {
|
|
6720
|
+
cursor?: string | null;
|
|
6721
|
+
/** The `Index` at the end of the edge. */
|
|
6722
|
+
node?: Index | null;
|
|
6723
|
+
}
|
|
6726
6724
|
/** A `App` edge in the connection. */
|
|
6727
6725
|
export interface AppEdge {
|
|
6728
6726
|
cursor?: string | null;
|
|
6729
6727
|
/** The `App` at the end of the edge. */
|
|
6730
6728
|
node?: App | null;
|
|
6731
6729
|
}
|
|
6730
|
+
/** A `DatabaseSetting` edge in the connection. */
|
|
6731
|
+
export interface DatabaseSettingEdge {
|
|
6732
|
+
cursor?: string | null;
|
|
6733
|
+
/** The `DatabaseSetting` at the end of the edge. */
|
|
6734
|
+
node?: DatabaseSetting | null;
|
|
6735
|
+
}
|
|
6732
6736
|
/** A `Site` edge in the connection. */
|
|
6733
6737
|
export interface SiteEdge {
|
|
6734
6738
|
cursor?: string | null;
|
|
6735
6739
|
/** The `Site` at the end of the edge. */
|
|
6736
6740
|
node?: Site | null;
|
|
6737
6741
|
}
|
|
6738
|
-
/** A `Index` edge in the connection. */
|
|
6739
|
-
export interface IndexEdge {
|
|
6740
|
-
cursor?: string | null;
|
|
6741
|
-
/** The `Index` at the end of the edge. */
|
|
6742
|
-
node?: Index | null;
|
|
6743
|
-
}
|
|
6744
6742
|
/** A `ForeignKeyConstraint` edge in the connection. */
|
|
6745
6743
|
export interface ForeignKeyConstraintEdge {
|
|
6746
6744
|
cursor?: string | null;
|