@constructive-io/react 0.27.0 → 0.27.2
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 +4 -4
package/api/orm/input-types.d.ts
CHANGED
|
@@ -251,7 +251,6 @@ export interface Schema {
|
|
|
251
251
|
description?: string | null;
|
|
252
252
|
smartTags?: Record<string, unknown> | null;
|
|
253
253
|
category?: ObjectCategory | null;
|
|
254
|
-
scope?: number | null;
|
|
255
254
|
tags?: string[] | null;
|
|
256
255
|
isPublic?: boolean | null;
|
|
257
256
|
apiExposure?: ApiExposureLevel | null;
|
|
@@ -267,7 +266,6 @@ export interface Table {
|
|
|
267
266
|
description?: string | null;
|
|
268
267
|
smartTags?: Record<string, unknown> | null;
|
|
269
268
|
category?: ObjectCategory | null;
|
|
270
|
-
scope?: number | null;
|
|
271
269
|
useRls?: boolean | null;
|
|
272
270
|
timestamps?: boolean | null;
|
|
273
271
|
peoplestamps?: boolean | null;
|
|
@@ -292,7 +290,6 @@ export interface CheckConstraint {
|
|
|
292
290
|
expr?: Record<string, unknown> | null;
|
|
293
291
|
smartTags?: Record<string, unknown> | null;
|
|
294
292
|
category?: ObjectCategory | null;
|
|
295
|
-
scope?: number | null;
|
|
296
293
|
tags?: string[] | null;
|
|
297
294
|
createdAt?: string | null;
|
|
298
295
|
updatedAt?: string | null;
|
|
@@ -317,7 +314,6 @@ export interface Field {
|
|
|
317
314
|
max?: number | null;
|
|
318
315
|
tags?: string[] | null;
|
|
319
316
|
category?: ObjectCategory | null;
|
|
320
|
-
scope?: number | null;
|
|
321
317
|
createdAt?: string | null;
|
|
322
318
|
updatedAt?: string | null;
|
|
323
319
|
}
|
|
@@ -332,7 +328,6 @@ export interface SpatialRelation {
|
|
|
332
328
|
operator?: string | null;
|
|
333
329
|
paramName?: string | null;
|
|
334
330
|
category?: ObjectCategory | null;
|
|
335
|
-
scope?: number | null;
|
|
336
331
|
tags?: string[] | null;
|
|
337
332
|
createdAt?: string | null;
|
|
338
333
|
updatedAt?: string | null;
|
|
@@ -351,7 +346,6 @@ export interface ForeignKeyConstraint {
|
|
|
351
346
|
deleteAction?: string | null;
|
|
352
347
|
updateAction?: string | null;
|
|
353
348
|
category?: ObjectCategory | null;
|
|
354
|
-
scope?: number | null;
|
|
355
349
|
tags?: string[] | null;
|
|
356
350
|
createdAt?: string | null;
|
|
357
351
|
updatedAt?: string | null;
|
|
@@ -383,7 +377,6 @@ export interface Index {
|
|
|
383
377
|
opClasses?: string[] | null;
|
|
384
378
|
smartTags?: Record<string, unknown> | null;
|
|
385
379
|
category?: ObjectCategory | null;
|
|
386
|
-
scope?: number | null;
|
|
387
380
|
tags?: string[] | null;
|
|
388
381
|
createdAt?: string | null;
|
|
389
382
|
updatedAt?: string | null;
|
|
@@ -401,7 +394,6 @@ export interface Policy {
|
|
|
401
394
|
data?: Record<string, unknown> | null;
|
|
402
395
|
smartTags?: Record<string, unknown> | null;
|
|
403
396
|
category?: ObjectCategory | null;
|
|
404
|
-
scope?: number | null;
|
|
405
397
|
tags?: string[] | null;
|
|
406
398
|
createdAt?: string | null;
|
|
407
399
|
updatedAt?: string | null;
|
|
@@ -415,7 +407,6 @@ export interface PrimaryKeyConstraint {
|
|
|
415
407
|
fieldIds?: string[] | null;
|
|
416
408
|
smartTags?: Record<string, unknown> | null;
|
|
417
409
|
category?: ObjectCategory | null;
|
|
418
|
-
scope?: number | null;
|
|
419
410
|
tags?: string[] | null;
|
|
420
411
|
createdAt?: string | null;
|
|
421
412
|
updatedAt?: string | null;
|
|
@@ -440,7 +431,6 @@ export interface Trigger {
|
|
|
440
431
|
functionName?: string | null;
|
|
441
432
|
smartTags?: Record<string, unknown> | null;
|
|
442
433
|
category?: ObjectCategory | null;
|
|
443
|
-
scope?: number | null;
|
|
444
434
|
tags?: string[] | null;
|
|
445
435
|
createdAt?: string | null;
|
|
446
436
|
updatedAt?: string | null;
|
|
@@ -455,7 +445,6 @@ export interface UniqueConstraint {
|
|
|
455
445
|
type?: string | null;
|
|
456
446
|
fieldIds?: string[] | null;
|
|
457
447
|
category?: ObjectCategory | null;
|
|
458
|
-
scope?: number | null;
|
|
459
448
|
tags?: string[] | null;
|
|
460
449
|
createdAt?: string | null;
|
|
461
450
|
updatedAt?: string | null;
|
|
@@ -474,7 +463,6 @@ export interface View {
|
|
|
474
463
|
isReadOnly?: boolean | null;
|
|
475
464
|
smartTags?: Record<string, unknown> | null;
|
|
476
465
|
category?: ObjectCategory | null;
|
|
477
|
-
scope?: number | null;
|
|
478
466
|
tags?: string[] | null;
|
|
479
467
|
}
|
|
480
468
|
/** Junction table linking views to their joined tables for referential integrity */
|
|
@@ -555,7 +543,6 @@ export interface Enum {
|
|
|
555
543
|
values?: string[] | null;
|
|
556
544
|
smartTags?: Record<string, unknown> | null;
|
|
557
545
|
category?: ObjectCategory | null;
|
|
558
|
-
scope?: number | null;
|
|
559
546
|
tags?: string[] | null;
|
|
560
547
|
}
|
|
561
548
|
export interface CompositeType {
|
|
@@ -568,7 +555,6 @@ export interface CompositeType {
|
|
|
568
555
|
attributes?: Record<string, unknown> | null;
|
|
569
556
|
smartTags?: Record<string, unknown> | null;
|
|
570
557
|
category?: ObjectCategory | null;
|
|
571
|
-
scope?: number | null;
|
|
572
558
|
tags?: string[] | null;
|
|
573
559
|
}
|
|
574
560
|
/** Join table linking APIs to the database schemas they expose; controls which schemas are accessible through each API */
|
|
@@ -603,12 +589,18 @@ export interface Domain {
|
|
|
603
589
|
databaseId?: string | null;
|
|
604
590
|
/** API endpoint this domain routes to (mutually exclusive with site_id) */
|
|
605
591
|
apiId?: string | null;
|
|
606
|
-
/** Site this domain routes to (mutually exclusive with api_id) */
|
|
592
|
+
/** Site this domain routes to (mutually exclusive with api_id and service_id) */
|
|
607
593
|
siteId?: string | null;
|
|
594
|
+
/** Server deployment this domain routes to (mutually exclusive with api_id and site_id) */
|
|
595
|
+
serviceId?: string | null;
|
|
608
596
|
/** Subdomain portion of the hostname */
|
|
609
597
|
subdomain?: ConstructiveInternalTypeHostname | null;
|
|
610
598
|
/** Root domain of the hostname */
|
|
611
599
|
domain?: ConstructiveInternalTypeHostname | null;
|
|
600
|
+
/** Key/value pairs for selecting and filtering domains */
|
|
601
|
+
labels?: Record<string, unknown> | null;
|
|
602
|
+
/** Freeform metadata for tooling and operational notes */
|
|
603
|
+
annotations?: Record<string, unknown> | null;
|
|
612
604
|
}
|
|
613
605
|
/** SEO and social sharing metadata for a site: page title, description, and Open Graph image */
|
|
614
606
|
export interface SiteMetadatum {
|
|
@@ -715,6 +707,10 @@ export interface Api {
|
|
|
715
707
|
anonRole?: string | null;
|
|
716
708
|
/** Whether this API is publicly accessible without authentication */
|
|
717
709
|
isPublic?: boolean | null;
|
|
710
|
+
/** Key/value pairs for selecting and filtering APIs */
|
|
711
|
+
labels?: Record<string, unknown> | null;
|
|
712
|
+
/** Freeform metadata for tooling and operational notes */
|
|
713
|
+
annotations?: Record<string, unknown> | null;
|
|
718
714
|
}
|
|
719
715
|
/** Top-level site configuration: branding assets, title, and description for a deployed application */
|
|
720
716
|
export interface Site {
|
|
@@ -736,6 +732,10 @@ export interface Site {
|
|
|
736
732
|
logo?: ConstructiveInternalTypeImage | null;
|
|
737
733
|
/** PostgreSQL database name this site connects to */
|
|
738
734
|
dbname?: string | null;
|
|
735
|
+
/** Key/value pairs for selecting and filtering sites */
|
|
736
|
+
labels?: Record<string, unknown> | null;
|
|
737
|
+
/** Freeform metadata for tooling and operational notes */
|
|
738
|
+
annotations?: Record<string, unknown> | null;
|
|
739
739
|
}
|
|
740
740
|
/** Mobile and native app configuration linked to a site, including store links and identifiers */
|
|
741
741
|
export interface App {
|
|
@@ -908,6 +908,10 @@ export interface DatabaseSetting {
|
|
|
908
908
|
enableI18N?: boolean | null;
|
|
909
909
|
/** Extensible JSON for additional settings that do not have dedicated columns */
|
|
910
910
|
options?: Record<string, unknown> | null;
|
|
911
|
+
/** Key/value pairs for selecting and filtering database settings */
|
|
912
|
+
labels?: Record<string, unknown> | null;
|
|
913
|
+
/** Freeform metadata for tooling and operational notes */
|
|
914
|
+
annotations?: Record<string, unknown> | null;
|
|
911
915
|
}
|
|
912
916
|
/** Per-database WebAuthn/passkey runtime configuration; typed replacement for api_modules webauthn_challenge JSONB entries */
|
|
913
917
|
export interface WebauthnSetting {
|
|
@@ -1322,7 +1326,6 @@ export type SchemaSelect = {
|
|
|
1322
1326
|
description?: boolean;
|
|
1323
1327
|
smartTags?: boolean;
|
|
1324
1328
|
category?: boolean;
|
|
1325
|
-
scope?: boolean;
|
|
1326
1329
|
tags?: boolean;
|
|
1327
1330
|
isPublic?: boolean;
|
|
1328
1331
|
apiExposure?: boolean;
|
|
@@ -1389,7 +1392,6 @@ export type TableSelect = {
|
|
|
1389
1392
|
description?: boolean;
|
|
1390
1393
|
smartTags?: boolean;
|
|
1391
1394
|
category?: boolean;
|
|
1392
|
-
scope?: boolean;
|
|
1393
1395
|
useRls?: boolean;
|
|
1394
1396
|
timestamps?: boolean;
|
|
1395
1397
|
peoplestamps?: boolean;
|
|
@@ -1522,7 +1524,6 @@ export type CheckConstraintSelect = {
|
|
|
1522
1524
|
expr?: boolean;
|
|
1523
1525
|
smartTags?: boolean;
|
|
1524
1526
|
category?: boolean;
|
|
1525
|
-
scope?: boolean;
|
|
1526
1527
|
tags?: boolean;
|
|
1527
1528
|
createdAt?: boolean;
|
|
1528
1529
|
updatedAt?: boolean;
|
|
@@ -1553,7 +1554,6 @@ export type FieldSelect = {
|
|
|
1553
1554
|
max?: boolean;
|
|
1554
1555
|
tags?: boolean;
|
|
1555
1556
|
category?: boolean;
|
|
1556
|
-
scope?: boolean;
|
|
1557
1557
|
createdAt?: boolean;
|
|
1558
1558
|
updatedAt?: boolean;
|
|
1559
1559
|
database?: {
|
|
@@ -1586,7 +1586,6 @@ export type SpatialRelationSelect = {
|
|
|
1586
1586
|
operator?: boolean;
|
|
1587
1587
|
paramName?: boolean;
|
|
1588
1588
|
category?: boolean;
|
|
1589
|
-
scope?: boolean;
|
|
1590
1589
|
tags?: boolean;
|
|
1591
1590
|
createdAt?: boolean;
|
|
1592
1591
|
updatedAt?: boolean;
|
|
@@ -1620,7 +1619,6 @@ export type ForeignKeyConstraintSelect = {
|
|
|
1620
1619
|
deleteAction?: boolean;
|
|
1621
1620
|
updateAction?: boolean;
|
|
1622
1621
|
category?: boolean;
|
|
1623
|
-
scope?: boolean;
|
|
1624
1622
|
tags?: boolean;
|
|
1625
1623
|
createdAt?: boolean;
|
|
1626
1624
|
updatedAt?: boolean;
|
|
@@ -1667,7 +1665,6 @@ export type IndexSelect = {
|
|
|
1667
1665
|
opClasses?: boolean;
|
|
1668
1666
|
smartTags?: boolean;
|
|
1669
1667
|
category?: boolean;
|
|
1670
|
-
scope?: boolean;
|
|
1671
1668
|
tags?: boolean;
|
|
1672
1669
|
createdAt?: boolean;
|
|
1673
1670
|
updatedAt?: boolean;
|
|
@@ -1691,7 +1688,6 @@ export type PolicySelect = {
|
|
|
1691
1688
|
data?: boolean;
|
|
1692
1689
|
smartTags?: boolean;
|
|
1693
1690
|
category?: boolean;
|
|
1694
|
-
scope?: boolean;
|
|
1695
1691
|
tags?: boolean;
|
|
1696
1692
|
createdAt?: boolean;
|
|
1697
1693
|
updatedAt?: boolean;
|
|
@@ -1711,7 +1707,6 @@ export type PrimaryKeyConstraintSelect = {
|
|
|
1711
1707
|
fieldIds?: boolean;
|
|
1712
1708
|
smartTags?: boolean;
|
|
1713
1709
|
category?: boolean;
|
|
1714
|
-
scope?: boolean;
|
|
1715
1710
|
tags?: boolean;
|
|
1716
1711
|
createdAt?: boolean;
|
|
1717
1712
|
updatedAt?: boolean;
|
|
@@ -1748,7 +1743,6 @@ export type TriggerSelect = {
|
|
|
1748
1743
|
functionName?: boolean;
|
|
1749
1744
|
smartTags?: boolean;
|
|
1750
1745
|
category?: boolean;
|
|
1751
|
-
scope?: boolean;
|
|
1752
1746
|
tags?: boolean;
|
|
1753
1747
|
createdAt?: boolean;
|
|
1754
1748
|
updatedAt?: boolean;
|
|
@@ -1769,7 +1763,6 @@ export type UniqueConstraintSelect = {
|
|
|
1769
1763
|
type?: boolean;
|
|
1770
1764
|
fieldIds?: boolean;
|
|
1771
1765
|
category?: boolean;
|
|
1772
|
-
scope?: boolean;
|
|
1773
1766
|
tags?: boolean;
|
|
1774
1767
|
createdAt?: boolean;
|
|
1775
1768
|
updatedAt?: boolean;
|
|
@@ -1794,7 +1787,6 @@ export type ViewSelect = {
|
|
|
1794
1787
|
isReadOnly?: boolean;
|
|
1795
1788
|
smartTags?: boolean;
|
|
1796
1789
|
category?: boolean;
|
|
1797
|
-
scope?: boolean;
|
|
1798
1790
|
tags?: boolean;
|
|
1799
1791
|
database?: {
|
|
1800
1792
|
select: DatabaseSelect;
|
|
@@ -1946,7 +1938,6 @@ export type EnumSelect = {
|
|
|
1946
1938
|
values?: boolean;
|
|
1947
1939
|
smartTags?: boolean;
|
|
1948
1940
|
category?: boolean;
|
|
1949
|
-
scope?: boolean;
|
|
1950
1941
|
tags?: boolean;
|
|
1951
1942
|
database?: {
|
|
1952
1943
|
select: DatabaseSelect;
|
|
@@ -1965,7 +1956,6 @@ export type CompositeTypeSelect = {
|
|
|
1965
1956
|
attributes?: boolean;
|
|
1966
1957
|
smartTags?: boolean;
|
|
1967
1958
|
category?: boolean;
|
|
1968
|
-
scope?: boolean;
|
|
1969
1959
|
tags?: boolean;
|
|
1970
1960
|
database?: {
|
|
1971
1961
|
select: DatabaseSelect;
|
|
@@ -2007,8 +1997,11 @@ export type DomainSelect = {
|
|
|
2007
1997
|
databaseId?: boolean;
|
|
2008
1998
|
apiId?: boolean;
|
|
2009
1999
|
siteId?: boolean;
|
|
2000
|
+
serviceId?: boolean;
|
|
2010
2001
|
subdomain?: boolean;
|
|
2011
2002
|
domain?: boolean;
|
|
2003
|
+
labels?: boolean;
|
|
2004
|
+
annotations?: boolean;
|
|
2012
2005
|
api?: {
|
|
2013
2006
|
select: ApiSelect;
|
|
2014
2007
|
};
|
|
@@ -2132,6 +2125,8 @@ export type ApiSelect = {
|
|
|
2132
2125
|
roleName?: boolean;
|
|
2133
2126
|
anonRole?: boolean;
|
|
2134
2127
|
isPublic?: boolean;
|
|
2128
|
+
labels?: boolean;
|
|
2129
|
+
annotations?: boolean;
|
|
2135
2130
|
database?: {
|
|
2136
2131
|
select: DatabaseSelect;
|
|
2137
2132
|
};
|
|
@@ -2173,6 +2168,8 @@ export type SiteSelect = {
|
|
|
2173
2168
|
appleTouchIcon?: boolean;
|
|
2174
2169
|
logo?: boolean;
|
|
2175
2170
|
dbname?: boolean;
|
|
2171
|
+
labels?: boolean;
|
|
2172
|
+
annotations?: boolean;
|
|
2176
2173
|
database?: {
|
|
2177
2174
|
select: DatabaseSelect;
|
|
2178
2175
|
};
|
|
@@ -2602,6 +2599,8 @@ export type DatabaseSettingSelect = {
|
|
|
2602
2599
|
enableBulk?: boolean;
|
|
2603
2600
|
enableI18N?: boolean;
|
|
2604
2601
|
options?: boolean;
|
|
2602
|
+
labels?: boolean;
|
|
2603
|
+
annotations?: boolean;
|
|
2605
2604
|
database?: {
|
|
2606
2605
|
select: DatabaseSelect;
|
|
2607
2606
|
};
|
|
@@ -2708,8 +2707,6 @@ export interface SchemaFilter {
|
|
|
2708
2707
|
smartTags?: JSONFilter;
|
|
2709
2708
|
/** Filter by the object’s `category` field. */
|
|
2710
2709
|
category?: ObjectCategoryFilter;
|
|
2711
|
-
/** Filter by the object’s `scope` field. */
|
|
2712
|
-
scope?: IntFilter;
|
|
2713
2710
|
/** Filter by the object’s `tags` field. */
|
|
2714
2711
|
tags?: StringListFilter;
|
|
2715
2712
|
/** Filter by the object’s `isPublic` field. */
|
|
@@ -2778,8 +2775,6 @@ export interface TableFilter {
|
|
|
2778
2775
|
smartTags?: JSONFilter;
|
|
2779
2776
|
/** Filter by the object’s `category` field. */
|
|
2780
2777
|
category?: ObjectCategoryFilter;
|
|
2781
|
-
/** Filter by the object’s `scope` field. */
|
|
2782
|
-
scope?: IntFilter;
|
|
2783
2778
|
/** Filter by the object’s `useRls` field. */
|
|
2784
2779
|
useRls?: BooleanFilter;
|
|
2785
2780
|
/** Filter by the object’s `timestamps` field. */
|
|
@@ -2908,8 +2903,6 @@ export interface CheckConstraintFilter {
|
|
|
2908
2903
|
smartTags?: JSONFilter;
|
|
2909
2904
|
/** Filter by the object’s `category` field. */
|
|
2910
2905
|
category?: ObjectCategoryFilter;
|
|
2911
|
-
/** Filter by the object’s `scope` field. */
|
|
2912
|
-
scope?: IntFilter;
|
|
2913
2906
|
/** Filter by the object’s `tags` field. */
|
|
2914
2907
|
tags?: StringListFilter;
|
|
2915
2908
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -2966,8 +2959,6 @@ export interface FieldFilter {
|
|
|
2966
2959
|
tags?: StringListFilter;
|
|
2967
2960
|
/** Filter by the object’s `category` field. */
|
|
2968
2961
|
category?: ObjectCategoryFilter;
|
|
2969
|
-
/** Filter by the object’s `scope` field. */
|
|
2970
|
-
scope?: IntFilter;
|
|
2971
2962
|
/** Filter by the object’s `createdAt` field. */
|
|
2972
2963
|
createdAt?: DatetimeFilter;
|
|
2973
2964
|
/** Filter by the object’s `updatedAt` field. */
|
|
@@ -3012,8 +3003,6 @@ export interface SpatialRelationFilter {
|
|
|
3012
3003
|
paramName?: StringFilter;
|
|
3013
3004
|
/** Filter by the object’s `category` field. */
|
|
3014
3005
|
category?: ObjectCategoryFilter;
|
|
3015
|
-
/** Filter by the object’s `scope` field. */
|
|
3016
|
-
scope?: IntFilter;
|
|
3017
3006
|
/** Filter by the object’s `tags` field. */
|
|
3018
3007
|
tags?: StringListFilter;
|
|
3019
3008
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -3064,8 +3053,6 @@ export interface ForeignKeyConstraintFilter {
|
|
|
3064
3053
|
updateAction?: StringFilter;
|
|
3065
3054
|
/** Filter by the object’s `category` field. */
|
|
3066
3055
|
category?: ObjectCategoryFilter;
|
|
3067
|
-
/** Filter by the object’s `scope` field. */
|
|
3068
|
-
scope?: IntFilter;
|
|
3069
3056
|
/** Filter by the object’s `tags` field. */
|
|
3070
3057
|
tags?: StringListFilter;
|
|
3071
3058
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -3146,8 +3133,6 @@ export interface IndexFilter {
|
|
|
3146
3133
|
smartTags?: JSONFilter;
|
|
3147
3134
|
/** Filter by the object’s `category` field. */
|
|
3148
3135
|
category?: ObjectCategoryFilter;
|
|
3149
|
-
/** Filter by the object’s `scope` field. */
|
|
3150
|
-
scope?: IntFilter;
|
|
3151
3136
|
/** Filter by the object’s `tags` field. */
|
|
3152
3137
|
tags?: StringListFilter;
|
|
3153
3138
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -3190,8 +3175,6 @@ export interface PolicyFilter {
|
|
|
3190
3175
|
smartTags?: JSONFilter;
|
|
3191
3176
|
/** Filter by the object’s `category` field. */
|
|
3192
3177
|
category?: ObjectCategoryFilter;
|
|
3193
|
-
/** Filter by the object’s `scope` field. */
|
|
3194
|
-
scope?: IntFilter;
|
|
3195
3178
|
/** Filter by the object’s `tags` field. */
|
|
3196
3179
|
tags?: StringListFilter;
|
|
3197
3180
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -3226,8 +3209,6 @@ export interface PrimaryKeyConstraintFilter {
|
|
|
3226
3209
|
smartTags?: JSONFilter;
|
|
3227
3210
|
/** Filter by the object’s `category` field. */
|
|
3228
3211
|
category?: ObjectCategoryFilter;
|
|
3229
|
-
/** Filter by the object’s `scope` field. */
|
|
3230
|
-
scope?: IntFilter;
|
|
3231
3212
|
/** Filter by the object’s `tags` field. */
|
|
3232
3213
|
tags?: StringListFilter;
|
|
3233
3214
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -3292,8 +3273,6 @@ export interface TriggerFilter {
|
|
|
3292
3273
|
smartTags?: JSONFilter;
|
|
3293
3274
|
/** Filter by the object’s `category` field. */
|
|
3294
3275
|
category?: ObjectCategoryFilter;
|
|
3295
|
-
/** Filter by the object’s `scope` field. */
|
|
3296
|
-
scope?: IntFilter;
|
|
3297
3276
|
/** Filter by the object’s `tags` field. */
|
|
3298
3277
|
tags?: StringListFilter;
|
|
3299
3278
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -3330,8 +3309,6 @@ export interface UniqueConstraintFilter {
|
|
|
3330
3309
|
fieldIds?: UUIDListFilter;
|
|
3331
3310
|
/** Filter by the object’s `category` field. */
|
|
3332
3311
|
category?: ObjectCategoryFilter;
|
|
3333
|
-
/** Filter by the object’s `scope` field. */
|
|
3334
|
-
scope?: IntFilter;
|
|
3335
3312
|
/** Filter by the object’s `tags` field. */
|
|
3336
3313
|
tags?: StringListFilter;
|
|
3337
3314
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -3376,8 +3353,6 @@ export interface ViewFilter {
|
|
|
3376
3353
|
smartTags?: JSONFilter;
|
|
3377
3354
|
/** Filter by the object’s `category` field. */
|
|
3378
3355
|
category?: ObjectCategoryFilter;
|
|
3379
|
-
/** Filter by the object’s `scope` field. */
|
|
3380
|
-
scope?: IntFilter;
|
|
3381
3356
|
/** Filter by the object’s `tags` field. */
|
|
3382
3357
|
tags?: StringListFilter;
|
|
3383
3358
|
/** Checks for all expressions in this list. */
|
|
@@ -3616,8 +3591,6 @@ export interface EnumFilter {
|
|
|
3616
3591
|
smartTags?: JSONFilter;
|
|
3617
3592
|
/** Filter by the object’s `category` field. */
|
|
3618
3593
|
category?: ObjectCategoryFilter;
|
|
3619
|
-
/** Filter by the object’s `scope` field. */
|
|
3620
|
-
scope?: IntFilter;
|
|
3621
3594
|
/** Filter by the object’s `tags` field. */
|
|
3622
3595
|
tags?: StringListFilter;
|
|
3623
3596
|
/** Checks for all expressions in this list. */
|
|
@@ -3650,8 +3623,6 @@ export interface CompositeTypeFilter {
|
|
|
3650
3623
|
smartTags?: JSONFilter;
|
|
3651
3624
|
/** Filter by the object’s `category` field. */
|
|
3652
3625
|
category?: ObjectCategoryFilter;
|
|
3653
|
-
/** Filter by the object’s `scope` field. */
|
|
3654
|
-
scope?: IntFilter;
|
|
3655
3626
|
/** Filter by the object’s `tags` field. */
|
|
3656
3627
|
tags?: StringListFilter;
|
|
3657
3628
|
/** Checks for all expressions in this list. */
|
|
@@ -3716,10 +3687,16 @@ export interface DomainFilter {
|
|
|
3716
3687
|
apiId?: UUIDFilter;
|
|
3717
3688
|
/** Filter by the object’s `siteId` field. */
|
|
3718
3689
|
siteId?: UUIDFilter;
|
|
3690
|
+
/** Filter by the object’s `serviceId` field. */
|
|
3691
|
+
serviceId?: UUIDFilter;
|
|
3719
3692
|
/** Filter by the object’s `subdomain` field. */
|
|
3720
3693
|
subdomain?: ConstructiveInternalTypeHostnameFilter;
|
|
3721
3694
|
/** Filter by the object’s `domain` field. */
|
|
3722
3695
|
domain?: ConstructiveInternalTypeHostnameFilter;
|
|
3696
|
+
/** Filter by the object’s `labels` field. */
|
|
3697
|
+
labels?: JSONFilter;
|
|
3698
|
+
/** Filter by the object’s `annotations` field. */
|
|
3699
|
+
annotations?: JSONFilter;
|
|
3723
3700
|
/** Checks for all expressions in this list. */
|
|
3724
3701
|
and?: DomainFilter[];
|
|
3725
3702
|
/** Checks for any expressions in this list. */
|
|
@@ -3938,6 +3915,10 @@ export interface ApiFilter {
|
|
|
3938
3915
|
anonRole?: StringFilter;
|
|
3939
3916
|
/** Filter by the object’s `isPublic` field. */
|
|
3940
3917
|
isPublic?: BooleanFilter;
|
|
3918
|
+
/** Filter by the object’s `labels` field. */
|
|
3919
|
+
labels?: JSONFilter;
|
|
3920
|
+
/** Filter by the object’s `annotations` field. */
|
|
3921
|
+
annotations?: JSONFilter;
|
|
3941
3922
|
/** Checks for all expressions in this list. */
|
|
3942
3923
|
and?: ApiFilter[];
|
|
3943
3924
|
/** Checks for any expressions in this list. */
|
|
@@ -3986,6 +3967,10 @@ export interface SiteFilter {
|
|
|
3986
3967
|
logo?: ConstructiveInternalTypeImageFilter;
|
|
3987
3968
|
/** Filter by the object’s `dbname` field. */
|
|
3988
3969
|
dbname?: StringFilter;
|
|
3970
|
+
/** Filter by the object’s `labels` field. */
|
|
3971
|
+
labels?: JSONFilter;
|
|
3972
|
+
/** Filter by the object’s `annotations` field. */
|
|
3973
|
+
annotations?: JSONFilter;
|
|
3989
3974
|
/** Checks for all expressions in this list. */
|
|
3990
3975
|
and?: SiteFilter[];
|
|
3991
3976
|
/** Checks for any expressions in this list. */
|
|
@@ -4486,6 +4471,10 @@ export interface DatabaseSettingFilter {
|
|
|
4486
4471
|
enableI18N?: BooleanFilter;
|
|
4487
4472
|
/** Filter by the object’s `options` field. */
|
|
4488
4473
|
options?: JSONFilter;
|
|
4474
|
+
/** Filter by the object’s `labels` field. */
|
|
4475
|
+
labels?: JSONFilter;
|
|
4476
|
+
/** Filter by the object’s `annotations` field. */
|
|
4477
|
+
annotations?: JSONFilter;
|
|
4489
4478
|
/** Checks for all expressions in this list. */
|
|
4490
4479
|
and?: DatabaseSettingFilter[];
|
|
4491
4480
|
/** Checks for any expressions in this list. */
|
|
@@ -4612,31 +4601,31 @@ export interface AstMigrationFilter {
|
|
|
4612
4601
|
not?: AstMigrationFilter;
|
|
4613
4602
|
}
|
|
4614
4603
|
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';
|
|
4615
|
-
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' | '
|
|
4616
|
-
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' | '
|
|
4617
|
-
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' | '
|
|
4618
|
-
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' | '
|
|
4619
|
-
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' | '
|
|
4620
|
-
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' | '
|
|
4604
|
+
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';
|
|
4605
|
+
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';
|
|
4606
|
+
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';
|
|
4607
|
+
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';
|
|
4608
|
+
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';
|
|
4609
|
+
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';
|
|
4621
4610
|
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';
|
|
4622
|
-
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' | '
|
|
4623
|
-
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' | '
|
|
4624
|
-
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' | '
|
|
4611
|
+
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';
|
|
4612
|
+
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';
|
|
4613
|
+
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';
|
|
4625
4614
|
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';
|
|
4626
|
-
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' | '
|
|
4627
|
-
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' | '
|
|
4628
|
-
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' | '
|
|
4615
|
+
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';
|
|
4616
|
+
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';
|
|
4617
|
+
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';
|
|
4629
4618
|
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';
|
|
4630
4619
|
export type ViewGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'VIEW_ID_ASC' | 'VIEW_ID_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'WITH_GRANT_OPTION_ASC' | 'WITH_GRANT_OPTION_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC';
|
|
4631
4620
|
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';
|
|
4632
4621
|
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';
|
|
4633
4622
|
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';
|
|
4634
4623
|
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';
|
|
4635
|
-
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' | '
|
|
4636
|
-
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' | '
|
|
4624
|
+
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';
|
|
4625
|
+
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';
|
|
4637
4626
|
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';
|
|
4638
4627
|
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';
|
|
4639
|
-
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';
|
|
4628
|
+
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';
|
|
4640
4629
|
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';
|
|
4641
4630
|
export type SiteModuleOrderBy = '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' | 'DATA_ASC' | 'DATA_DESC';
|
|
4642
4631
|
export type SiteThemeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'THEME_ASC' | 'THEME_DESC';
|
|
@@ -4644,8 +4633,8 @@ export type CorsSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DE
|
|
|
4644
4633
|
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';
|
|
4645
4634
|
export type PartitionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'STRATEGY_ASC' | 'STRATEGY_DESC' | 'PARTITION_KEY_ID_ASC' | 'PARTITION_KEY_ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'RETENTION_KEEP_TABLE_ASC' | 'RETENTION_KEEP_TABLE_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'NAMING_PATTERN_ASC' | 'NAMING_PATTERN_DESC' | 'IS_PARENTED_ASC' | 'IS_PARENTED_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
4646
4635
|
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';
|
|
4647
|
-
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';
|
|
4648
|
-
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';
|
|
4636
|
+
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';
|
|
4637
|
+
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';
|
|
4649
4638
|
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';
|
|
4650
4639
|
export type ApiSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_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';
|
|
4651
4640
|
export type MigrateFileOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'UPLOAD_ASC' | 'UPLOAD_DESC';
|
|
@@ -4654,7 +4643,7 @@ export type PubkeySettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_
|
|
|
4654
4643
|
export type DatabaseOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SCHEMA_HASH_ASC' | 'SCHEMA_HASH_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
4655
4644
|
export type RlsSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'AUTHENTICATE_SCHEMA_ID_ASC' | 'AUTHENTICATE_SCHEMA_ID_DESC' | 'ROLE_SCHEMA_ID_ASC' | 'ROLE_SCHEMA_ID_DESC' | 'AUTHENTICATE_FUNCTION_ID_ASC' | 'AUTHENTICATE_FUNCTION_ID_DESC' | 'AUTHENTICATE_STRICT_FUNCTION_ID_ASC' | 'AUTHENTICATE_STRICT_FUNCTION_ID_DESC' | 'CURRENT_ROLE_FUNCTION_ID_ASC' | 'CURRENT_ROLE_FUNCTION_ID_DESC' | 'CURRENT_ROLE_ID_FUNCTION_ID_ASC' | 'CURRENT_ROLE_ID_FUNCTION_ID_DESC' | 'CURRENT_USER_AGENT_FUNCTION_ID_ASC' | 'CURRENT_USER_AGENT_FUNCTION_ID_DESC' | 'CURRENT_IP_ADDRESS_FUNCTION_ID_ASC' | 'CURRENT_IP_ADDRESS_FUNCTION_ID_DESC';
|
|
4656
4645
|
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';
|
|
4657
|
-
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';
|
|
4646
|
+
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';
|
|
4658
4647
|
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';
|
|
4659
4648
|
export type AstMigrationOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'REQUIRES_ASC' | 'REQUIRES_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'DEPLOYS_ASC' | 'DEPLOYS_DESC' | 'DEPLOY_ASC' | 'DEPLOY_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';
|
|
4660
4649
|
export interface CreateFunctionInput {
|
|
@@ -4689,7 +4678,6 @@ export interface CreateSchemaInput {
|
|
|
4689
4678
|
description?: string;
|
|
4690
4679
|
smartTags?: Record<string, unknown>;
|
|
4691
4680
|
category?: ObjectCategory;
|
|
4692
|
-
scope?: number;
|
|
4693
4681
|
tags?: string[];
|
|
4694
4682
|
isPublic?: boolean;
|
|
4695
4683
|
apiExposure?: ApiExposureLevel;
|
|
@@ -4703,7 +4691,6 @@ export interface SchemaPatch {
|
|
|
4703
4691
|
description?: string | null;
|
|
4704
4692
|
smartTags?: Record<string, unknown> | null;
|
|
4705
4693
|
category?: ObjectCategory | null;
|
|
4706
|
-
scope?: number | null;
|
|
4707
4694
|
tags?: string[] | null;
|
|
4708
4695
|
isPublic?: boolean | null;
|
|
4709
4696
|
apiExposure?: ApiExposureLevel | null;
|
|
@@ -4727,7 +4714,6 @@ export interface CreateTableInput {
|
|
|
4727
4714
|
description?: string;
|
|
4728
4715
|
smartTags?: Record<string, unknown>;
|
|
4729
4716
|
category?: ObjectCategory;
|
|
4730
|
-
scope?: number;
|
|
4731
4717
|
useRls?: boolean;
|
|
4732
4718
|
timestamps?: boolean;
|
|
4733
4719
|
peoplestamps?: boolean;
|
|
@@ -4749,7 +4735,6 @@ export interface TablePatch {
|
|
|
4749
4735
|
description?: string | null;
|
|
4750
4736
|
smartTags?: Record<string, unknown> | null;
|
|
4751
4737
|
category?: ObjectCategory | null;
|
|
4752
|
-
scope?: number | null;
|
|
4753
4738
|
useRls?: boolean | null;
|
|
4754
4739
|
timestamps?: boolean | null;
|
|
4755
4740
|
peoplestamps?: boolean | null;
|
|
@@ -4782,7 +4767,6 @@ export interface CreateCheckConstraintInput {
|
|
|
4782
4767
|
expr?: Record<string, unknown>;
|
|
4783
4768
|
smartTags?: Record<string, unknown>;
|
|
4784
4769
|
category?: ObjectCategory;
|
|
4785
|
-
scope?: number;
|
|
4786
4770
|
tags?: string[];
|
|
4787
4771
|
};
|
|
4788
4772
|
}
|
|
@@ -4795,7 +4779,6 @@ export interface CheckConstraintPatch {
|
|
|
4795
4779
|
expr?: Record<string, unknown> | null;
|
|
4796
4780
|
smartTags?: Record<string, unknown> | null;
|
|
4797
4781
|
category?: ObjectCategory | null;
|
|
4798
|
-
scope?: number | null;
|
|
4799
4782
|
tags?: string[] | null;
|
|
4800
4783
|
}
|
|
4801
4784
|
export interface UpdateCheckConstraintInput {
|
|
@@ -4828,7 +4811,6 @@ export interface CreateFieldInput {
|
|
|
4828
4811
|
max?: number;
|
|
4829
4812
|
tags?: string[];
|
|
4830
4813
|
category?: ObjectCategory;
|
|
4831
|
-
scope?: number;
|
|
4832
4814
|
};
|
|
4833
4815
|
}
|
|
4834
4816
|
export interface FieldPatch {
|
|
@@ -4850,7 +4832,6 @@ export interface FieldPatch {
|
|
|
4850
4832
|
max?: number | null;
|
|
4851
4833
|
tags?: string[] | null;
|
|
4852
4834
|
category?: ObjectCategory | null;
|
|
4853
|
-
scope?: number | null;
|
|
4854
4835
|
}
|
|
4855
4836
|
export interface UpdateFieldInput {
|
|
4856
4837
|
clientMutationId?: string;
|
|
@@ -4873,7 +4854,6 @@ export interface CreateSpatialRelationInput {
|
|
|
4873
4854
|
operator: string;
|
|
4874
4855
|
paramName?: string;
|
|
4875
4856
|
category?: ObjectCategory;
|
|
4876
|
-
scope?: number;
|
|
4877
4857
|
tags?: string[];
|
|
4878
4858
|
};
|
|
4879
4859
|
}
|
|
@@ -4887,7 +4867,6 @@ export interface SpatialRelationPatch {
|
|
|
4887
4867
|
operator?: string | null;
|
|
4888
4868
|
paramName?: string | null;
|
|
4889
4869
|
category?: ObjectCategory | null;
|
|
4890
|
-
scope?: number | null;
|
|
4891
4870
|
tags?: string[] | null;
|
|
4892
4871
|
}
|
|
4893
4872
|
export interface UpdateSpatialRelationInput {
|
|
@@ -4914,7 +4893,6 @@ export interface CreateForeignKeyConstraintInput {
|
|
|
4914
4893
|
deleteAction?: string;
|
|
4915
4894
|
updateAction?: string;
|
|
4916
4895
|
category?: ObjectCategory;
|
|
4917
|
-
scope?: number;
|
|
4918
4896
|
tags?: string[];
|
|
4919
4897
|
};
|
|
4920
4898
|
}
|
|
@@ -4931,7 +4909,6 @@ export interface ForeignKeyConstraintPatch {
|
|
|
4931
4909
|
deleteAction?: string | null;
|
|
4932
4910
|
updateAction?: string | null;
|
|
4933
4911
|
category?: ObjectCategory | null;
|
|
4934
|
-
scope?: number | null;
|
|
4935
4912
|
tags?: string[] | null;
|
|
4936
4913
|
}
|
|
4937
4914
|
export interface UpdateForeignKeyConstraintInput {
|
|
@@ -4989,7 +4966,6 @@ export interface CreateIndexInput {
|
|
|
4989
4966
|
opClasses?: string[];
|
|
4990
4967
|
smartTags?: Record<string, unknown>;
|
|
4991
4968
|
category?: ObjectCategory;
|
|
4992
|
-
scope?: number;
|
|
4993
4969
|
tags?: string[];
|
|
4994
4970
|
};
|
|
4995
4971
|
}
|
|
@@ -5007,7 +4983,6 @@ export interface IndexPatch {
|
|
|
5007
4983
|
opClasses?: string[] | null;
|
|
5008
4984
|
smartTags?: Record<string, unknown> | null;
|
|
5009
4985
|
category?: ObjectCategory | null;
|
|
5010
|
-
scope?: number | null;
|
|
5011
4986
|
tags?: string[] | null;
|
|
5012
4987
|
}
|
|
5013
4988
|
export interface UpdateIndexInput {
|
|
@@ -5033,7 +5008,6 @@ export interface CreatePolicyInput {
|
|
|
5033
5008
|
data?: Record<string, unknown>;
|
|
5034
5009
|
smartTags?: Record<string, unknown>;
|
|
5035
5010
|
category?: ObjectCategory;
|
|
5036
|
-
scope?: number;
|
|
5037
5011
|
tags?: string[];
|
|
5038
5012
|
};
|
|
5039
5013
|
}
|
|
@@ -5049,7 +5023,6 @@ export interface PolicyPatch {
|
|
|
5049
5023
|
data?: Record<string, unknown> | null;
|
|
5050
5024
|
smartTags?: Record<string, unknown> | null;
|
|
5051
5025
|
category?: ObjectCategory | null;
|
|
5052
|
-
scope?: number | null;
|
|
5053
5026
|
tags?: string[] | null;
|
|
5054
5027
|
}
|
|
5055
5028
|
export interface UpdatePolicyInput {
|
|
@@ -5071,7 +5044,6 @@ export interface CreatePrimaryKeyConstraintInput {
|
|
|
5071
5044
|
fieldIds: string[];
|
|
5072
5045
|
smartTags?: Record<string, unknown>;
|
|
5073
5046
|
category?: ObjectCategory;
|
|
5074
|
-
scope?: number;
|
|
5075
5047
|
tags?: string[];
|
|
5076
5048
|
};
|
|
5077
5049
|
}
|
|
@@ -5083,7 +5055,6 @@ export interface PrimaryKeyConstraintPatch {
|
|
|
5083
5055
|
fieldIds?: string[] | null;
|
|
5084
5056
|
smartTags?: Record<string, unknown> | null;
|
|
5085
5057
|
category?: ObjectCategory | null;
|
|
5086
|
-
scope?: number | null;
|
|
5087
5058
|
tags?: string[] | null;
|
|
5088
5059
|
}
|
|
5089
5060
|
export interface UpdatePrimaryKeyConstraintInput {
|
|
@@ -5133,7 +5104,6 @@ export interface CreateTriggerInput {
|
|
|
5133
5104
|
functionName?: string;
|
|
5134
5105
|
smartTags?: Record<string, unknown>;
|
|
5135
5106
|
category?: ObjectCategory;
|
|
5136
|
-
scope?: number;
|
|
5137
5107
|
tags?: string[];
|
|
5138
5108
|
};
|
|
5139
5109
|
}
|
|
@@ -5145,7 +5115,6 @@ export interface TriggerPatch {
|
|
|
5145
5115
|
functionName?: string | null;
|
|
5146
5116
|
smartTags?: Record<string, unknown> | null;
|
|
5147
5117
|
category?: ObjectCategory | null;
|
|
5148
|
-
scope?: number | null;
|
|
5149
5118
|
tags?: string[] | null;
|
|
5150
5119
|
}
|
|
5151
5120
|
export interface UpdateTriggerInput {
|
|
@@ -5168,7 +5137,6 @@ export interface CreateUniqueConstraintInput {
|
|
|
5168
5137
|
type?: string;
|
|
5169
5138
|
fieldIds: string[];
|
|
5170
5139
|
category?: ObjectCategory;
|
|
5171
|
-
scope?: number;
|
|
5172
5140
|
tags?: string[];
|
|
5173
5141
|
};
|
|
5174
5142
|
}
|
|
@@ -5181,7 +5149,6 @@ export interface UniqueConstraintPatch {
|
|
|
5181
5149
|
type?: string | null;
|
|
5182
5150
|
fieldIds?: string[] | null;
|
|
5183
5151
|
category?: ObjectCategory | null;
|
|
5184
|
-
scope?: number | null;
|
|
5185
5152
|
tags?: string[] | null;
|
|
5186
5153
|
}
|
|
5187
5154
|
export interface UpdateUniqueConstraintInput {
|
|
@@ -5208,7 +5175,6 @@ export interface CreateViewInput {
|
|
|
5208
5175
|
isReadOnly?: boolean;
|
|
5209
5176
|
smartTags?: Record<string, unknown>;
|
|
5210
5177
|
category?: ObjectCategory;
|
|
5211
|
-
scope?: number;
|
|
5212
5178
|
tags?: string[];
|
|
5213
5179
|
};
|
|
5214
5180
|
}
|
|
@@ -5225,7 +5191,6 @@ export interface ViewPatch {
|
|
|
5225
5191
|
isReadOnly?: boolean | null;
|
|
5226
5192
|
smartTags?: Record<string, unknown> | null;
|
|
5227
5193
|
category?: ObjectCategory | null;
|
|
5228
|
-
scope?: number | null;
|
|
5229
5194
|
tags?: string[] | null;
|
|
5230
5195
|
}
|
|
5231
5196
|
export interface UpdateViewInput {
|
|
@@ -5428,7 +5393,6 @@ export interface CreateEnumInput {
|
|
|
5428
5393
|
values?: string[];
|
|
5429
5394
|
smartTags?: Record<string, unknown>;
|
|
5430
5395
|
category?: ObjectCategory;
|
|
5431
|
-
scope?: number;
|
|
5432
5396
|
tags?: string[];
|
|
5433
5397
|
};
|
|
5434
5398
|
}
|
|
@@ -5441,7 +5405,6 @@ export interface EnumPatch {
|
|
|
5441
5405
|
values?: string[] | null;
|
|
5442
5406
|
smartTags?: Record<string, unknown> | null;
|
|
5443
5407
|
category?: ObjectCategory | null;
|
|
5444
|
-
scope?: number | null;
|
|
5445
5408
|
tags?: string[] | null;
|
|
5446
5409
|
}
|
|
5447
5410
|
export interface UpdateEnumInput {
|
|
@@ -5464,7 +5427,6 @@ export interface CreateCompositeTypeInput {
|
|
|
5464
5427
|
attributes?: Record<string, unknown>;
|
|
5465
5428
|
smartTags?: Record<string, unknown>;
|
|
5466
5429
|
category?: ObjectCategory;
|
|
5467
|
-
scope?: number;
|
|
5468
5430
|
tags?: string[];
|
|
5469
5431
|
};
|
|
5470
5432
|
}
|
|
@@ -5477,7 +5439,6 @@ export interface CompositeTypePatch {
|
|
|
5477
5439
|
attributes?: Record<string, unknown> | null;
|
|
5478
5440
|
smartTags?: Record<string, unknown> | null;
|
|
5479
5441
|
category?: ObjectCategory | null;
|
|
5480
|
-
scope?: number | null;
|
|
5481
5442
|
tags?: string[] | null;
|
|
5482
5443
|
}
|
|
5483
5444
|
export interface UpdateCompositeTypeInput {
|
|
@@ -5541,16 +5502,22 @@ export interface CreateDomainInput {
|
|
|
5541
5502
|
databaseId: string;
|
|
5542
5503
|
apiId?: string;
|
|
5543
5504
|
siteId?: string;
|
|
5505
|
+
serviceId?: string;
|
|
5544
5506
|
subdomain?: ConstructiveInternalTypeHostname;
|
|
5545
5507
|
domain?: ConstructiveInternalTypeHostname;
|
|
5508
|
+
labels?: Record<string, unknown>;
|
|
5509
|
+
annotations?: Record<string, unknown>;
|
|
5546
5510
|
};
|
|
5547
5511
|
}
|
|
5548
5512
|
export interface DomainPatch {
|
|
5549
5513
|
databaseId?: string | null;
|
|
5550
5514
|
apiId?: string | null;
|
|
5551
5515
|
siteId?: string | null;
|
|
5516
|
+
serviceId?: string | null;
|
|
5552
5517
|
subdomain?: ConstructiveInternalTypeHostname | null;
|
|
5553
5518
|
domain?: ConstructiveInternalTypeHostname | null;
|
|
5519
|
+
labels?: Record<string, unknown> | null;
|
|
5520
|
+
annotations?: Record<string, unknown> | null;
|
|
5554
5521
|
}
|
|
5555
5522
|
export interface UpdateDomainInput {
|
|
5556
5523
|
clientMutationId?: string;
|
|
@@ -5761,6 +5728,8 @@ export interface CreateApiInput {
|
|
|
5761
5728
|
roleName?: string;
|
|
5762
5729
|
anonRole?: string;
|
|
5763
5730
|
isPublic?: boolean;
|
|
5731
|
+
labels?: Record<string, unknown>;
|
|
5732
|
+
annotations?: Record<string, unknown>;
|
|
5764
5733
|
};
|
|
5765
5734
|
}
|
|
5766
5735
|
export interface ApiPatch {
|
|
@@ -5770,6 +5739,8 @@ export interface ApiPatch {
|
|
|
5770
5739
|
roleName?: string | null;
|
|
5771
5740
|
anonRole?: string | null;
|
|
5772
5741
|
isPublic?: boolean | null;
|
|
5742
|
+
labels?: Record<string, unknown> | null;
|
|
5743
|
+
annotations?: Record<string, unknown> | null;
|
|
5773
5744
|
}
|
|
5774
5745
|
export interface UpdateApiInput {
|
|
5775
5746
|
clientMutationId?: string;
|
|
@@ -5791,6 +5762,8 @@ export interface CreateSiteInput {
|
|
|
5791
5762
|
appleTouchIcon?: ConstructiveInternalTypeImage;
|
|
5792
5763
|
logo?: ConstructiveInternalTypeImage;
|
|
5793
5764
|
dbname?: string;
|
|
5765
|
+
labels?: Record<string, unknown>;
|
|
5766
|
+
annotations?: Record<string, unknown>;
|
|
5794
5767
|
};
|
|
5795
5768
|
}
|
|
5796
5769
|
export interface SitePatch {
|
|
@@ -5802,6 +5775,8 @@ export interface SitePatch {
|
|
|
5802
5775
|
appleTouchIcon?: ConstructiveInternalTypeImage | null;
|
|
5803
5776
|
logo?: ConstructiveInternalTypeImage | null;
|
|
5804
5777
|
dbname?: string | null;
|
|
5778
|
+
labels?: Record<string, unknown> | null;
|
|
5779
|
+
annotations?: Record<string, unknown> | null;
|
|
5805
5780
|
ogImageUpload?: File | null;
|
|
5806
5781
|
faviconUpload?: File | null;
|
|
5807
5782
|
appleTouchIconUpload?: File | null;
|
|
@@ -6092,6 +6067,8 @@ export interface CreateDatabaseSettingInput {
|
|
|
6092
6067
|
enableBulk?: boolean;
|
|
6093
6068
|
enableI18N?: boolean;
|
|
6094
6069
|
options?: Record<string, unknown>;
|
|
6070
|
+
labels?: Record<string, unknown>;
|
|
6071
|
+
annotations?: Record<string, unknown>;
|
|
6095
6072
|
};
|
|
6096
6073
|
}
|
|
6097
6074
|
export interface DatabaseSettingPatch {
|
|
@@ -6109,6 +6086,8 @@ export interface DatabaseSettingPatch {
|
|
|
6109
6086
|
enableBulk?: boolean | null;
|
|
6110
6087
|
enableI18N?: boolean | null;
|
|
6111
6088
|
options?: Record<string, unknown> | null;
|
|
6089
|
+
labels?: Record<string, unknown> | null;
|
|
6090
|
+
annotations?: Record<string, unknown> | null;
|
|
6112
6091
|
}
|
|
6113
6092
|
export interface UpdateDatabaseSettingInput {
|
|
6114
6093
|
clientMutationId?: string;
|
|
@@ -7278,7 +7257,6 @@ export interface SchemaInput {
|
|
|
7278
7257
|
description?: string;
|
|
7279
7258
|
smartTags?: Record<string, unknown>;
|
|
7280
7259
|
category?: ObjectCategory;
|
|
7281
|
-
scope?: number;
|
|
7282
7260
|
tags?: string[];
|
|
7283
7261
|
isPublic?: boolean;
|
|
7284
7262
|
apiExposure?: ApiExposureLevel;
|
|
@@ -7295,7 +7273,6 @@ export interface TableInput {
|
|
|
7295
7273
|
description?: string;
|
|
7296
7274
|
smartTags?: Record<string, unknown>;
|
|
7297
7275
|
category?: ObjectCategory;
|
|
7298
|
-
scope?: number;
|
|
7299
7276
|
useRls?: boolean;
|
|
7300
7277
|
timestamps?: boolean;
|
|
7301
7278
|
peoplestamps?: boolean;
|
|
@@ -7321,7 +7298,6 @@ export interface CheckConstraintInput {
|
|
|
7321
7298
|
expr?: Record<string, unknown>;
|
|
7322
7299
|
smartTags?: Record<string, unknown>;
|
|
7323
7300
|
category?: ObjectCategory;
|
|
7324
|
-
scope?: number;
|
|
7325
7301
|
tags?: string[];
|
|
7326
7302
|
createdAt?: string;
|
|
7327
7303
|
updatedAt?: string;
|
|
@@ -7347,7 +7323,6 @@ export interface FieldInput {
|
|
|
7347
7323
|
max?: number;
|
|
7348
7324
|
tags?: string[];
|
|
7349
7325
|
category?: ObjectCategory;
|
|
7350
|
-
scope?: number;
|
|
7351
7326
|
createdAt?: string;
|
|
7352
7327
|
updatedAt?: string;
|
|
7353
7328
|
}
|
|
@@ -7363,7 +7338,6 @@ export interface SpatialRelationInput {
|
|
|
7363
7338
|
operator: string;
|
|
7364
7339
|
paramName?: string;
|
|
7365
7340
|
category?: ObjectCategory;
|
|
7366
|
-
scope?: number;
|
|
7367
7341
|
tags?: string[];
|
|
7368
7342
|
createdAt?: string;
|
|
7369
7343
|
updatedAt?: string;
|
|
@@ -7383,7 +7357,6 @@ export interface ForeignKeyConstraintInput {
|
|
|
7383
7357
|
deleteAction?: string;
|
|
7384
7358
|
updateAction?: string;
|
|
7385
7359
|
category?: ObjectCategory;
|
|
7386
|
-
scope?: number;
|
|
7387
7360
|
tags?: string[];
|
|
7388
7361
|
createdAt?: string;
|
|
7389
7362
|
updatedAt?: string;
|
|
@@ -7417,7 +7390,6 @@ export interface IndexInput {
|
|
|
7417
7390
|
opClasses?: string[];
|
|
7418
7391
|
smartTags?: Record<string, unknown>;
|
|
7419
7392
|
category?: ObjectCategory;
|
|
7420
|
-
scope?: number;
|
|
7421
7393
|
tags?: string[];
|
|
7422
7394
|
createdAt?: string;
|
|
7423
7395
|
updatedAt?: string;
|
|
@@ -7436,7 +7408,6 @@ export interface PolicyInput {
|
|
|
7436
7408
|
data?: Record<string, unknown>;
|
|
7437
7409
|
smartTags?: Record<string, unknown>;
|
|
7438
7410
|
category?: ObjectCategory;
|
|
7439
|
-
scope?: number;
|
|
7440
7411
|
tags?: string[];
|
|
7441
7412
|
createdAt?: string;
|
|
7442
7413
|
updatedAt?: string;
|
|
@@ -7451,7 +7422,6 @@ export interface PrimaryKeyConstraintInput {
|
|
|
7451
7422
|
fieldIds: string[];
|
|
7452
7423
|
smartTags?: Record<string, unknown>;
|
|
7453
7424
|
category?: ObjectCategory;
|
|
7454
|
-
scope?: number;
|
|
7455
7425
|
tags?: string[];
|
|
7456
7426
|
createdAt?: string;
|
|
7457
7427
|
updatedAt?: string;
|
|
@@ -7478,7 +7448,6 @@ export interface TriggerInput {
|
|
|
7478
7448
|
functionName?: string;
|
|
7479
7449
|
smartTags?: Record<string, unknown>;
|
|
7480
7450
|
category?: ObjectCategory;
|
|
7481
|
-
scope?: number;
|
|
7482
7451
|
tags?: string[];
|
|
7483
7452
|
createdAt?: string;
|
|
7484
7453
|
updatedAt?: string;
|
|
@@ -7494,7 +7463,6 @@ export interface UniqueConstraintInput {
|
|
|
7494
7463
|
type?: string;
|
|
7495
7464
|
fieldIds: string[];
|
|
7496
7465
|
category?: ObjectCategory;
|
|
7497
|
-
scope?: number;
|
|
7498
7466
|
tags?: string[];
|
|
7499
7467
|
createdAt?: string;
|
|
7500
7468
|
updatedAt?: string;
|
|
@@ -7514,7 +7482,6 @@ export interface ViewInput {
|
|
|
7514
7482
|
isReadOnly?: boolean;
|
|
7515
7483
|
smartTags?: Record<string, unknown>;
|
|
7516
7484
|
category?: ObjectCategory;
|
|
7517
|
-
scope?: number;
|
|
7518
7485
|
tags?: string[];
|
|
7519
7486
|
}
|
|
7520
7487
|
/** An input for mutations affecting `ViewTable` */
|
|
@@ -7600,7 +7567,6 @@ export interface EnumInput {
|
|
|
7600
7567
|
values?: string[];
|
|
7601
7568
|
smartTags?: Record<string, unknown>;
|
|
7602
7569
|
category?: ObjectCategory;
|
|
7603
|
-
scope?: number;
|
|
7604
7570
|
tags?: string[];
|
|
7605
7571
|
}
|
|
7606
7572
|
/** An input for mutations affecting `CompositeType` */
|
|
@@ -7614,7 +7580,6 @@ export interface CompositeTypeInput {
|
|
|
7614
7580
|
attributes?: Record<string, unknown>;
|
|
7615
7581
|
smartTags?: Record<string, unknown>;
|
|
7616
7582
|
category?: ObjectCategory;
|
|
7617
|
-
scope?: number;
|
|
7618
7583
|
tags?: string[];
|
|
7619
7584
|
}
|
|
7620
7585
|
/** An input for mutations affecting `ApiSchema` */
|
|
@@ -7649,12 +7614,18 @@ export interface DomainInput {
|
|
|
7649
7614
|
databaseId: string;
|
|
7650
7615
|
/** API endpoint this domain routes to (mutually exclusive with site_id) */
|
|
7651
7616
|
apiId?: string;
|
|
7652
|
-
/** Site this domain routes to (mutually exclusive with api_id) */
|
|
7617
|
+
/** Site this domain routes to (mutually exclusive with api_id and service_id) */
|
|
7653
7618
|
siteId?: string;
|
|
7619
|
+
/** Server deployment this domain routes to (mutually exclusive with api_id and site_id) */
|
|
7620
|
+
serviceId?: string;
|
|
7654
7621
|
/** Subdomain portion of the hostname */
|
|
7655
7622
|
subdomain?: ConstructiveInternalTypeHostname;
|
|
7656
7623
|
/** Root domain of the hostname */
|
|
7657
7624
|
domain?: ConstructiveInternalTypeHostname;
|
|
7625
|
+
/** Key/value pairs for selecting and filtering domains */
|
|
7626
|
+
labels?: Record<string, unknown>;
|
|
7627
|
+
/** Freeform metadata for tooling and operational notes */
|
|
7628
|
+
annotations?: Record<string, unknown>;
|
|
7658
7629
|
}
|
|
7659
7630
|
/** An input for mutations affecting `SiteMetadatum` */
|
|
7660
7631
|
export interface SiteMetadatumInput {
|
|
@@ -7764,6 +7735,10 @@ export interface ApiInput {
|
|
|
7764
7735
|
anonRole?: string;
|
|
7765
7736
|
/** Whether this API is publicly accessible without authentication */
|
|
7766
7737
|
isPublic?: boolean;
|
|
7738
|
+
/** Key/value pairs for selecting and filtering APIs */
|
|
7739
|
+
labels?: Record<string, unknown>;
|
|
7740
|
+
/** Freeform metadata for tooling and operational notes */
|
|
7741
|
+
annotations?: Record<string, unknown>;
|
|
7767
7742
|
}
|
|
7768
7743
|
/** An input for mutations affecting `Site` */
|
|
7769
7744
|
export interface SiteInput {
|
|
@@ -7785,6 +7760,10 @@ export interface SiteInput {
|
|
|
7785
7760
|
logo?: ConstructiveInternalTypeImage;
|
|
7786
7761
|
/** PostgreSQL database name this site connects to */
|
|
7787
7762
|
dbname?: string;
|
|
7763
|
+
/** Key/value pairs for selecting and filtering sites */
|
|
7764
|
+
labels?: Record<string, unknown>;
|
|
7765
|
+
/** Freeform metadata for tooling and operational notes */
|
|
7766
|
+
annotations?: Record<string, unknown>;
|
|
7788
7767
|
}
|
|
7789
7768
|
/** An input for mutations affecting `App` */
|
|
7790
7769
|
export interface AppInput {
|
|
@@ -7961,6 +7940,10 @@ export interface DatabaseSettingInput {
|
|
|
7961
7940
|
enableI18N?: boolean;
|
|
7962
7941
|
/** Extensible JSON for additional settings that do not have dedicated columns */
|
|
7963
7942
|
options?: Record<string, unknown>;
|
|
7943
|
+
/** Key/value pairs for selecting and filtering database settings */
|
|
7944
|
+
labels?: Record<string, unknown>;
|
|
7945
|
+
/** Freeform metadata for tooling and operational notes */
|
|
7946
|
+
annotations?: Record<string, unknown>;
|
|
7964
7947
|
}
|
|
7965
7948
|
/** An input for mutations affecting `WebauthnSetting` */
|
|
7966
7949
|
export interface WebauthnSettingInput {
|
|
@@ -8054,8 +8037,6 @@ export interface TableFilter {
|
|
|
8054
8037
|
smartTags?: JSONFilter;
|
|
8055
8038
|
/** Filter by the object’s `category` field. */
|
|
8056
8039
|
category?: ObjectCategoryFilter;
|
|
8057
|
-
/** Filter by the object’s `scope` field. */
|
|
8058
|
-
scope?: IntFilter;
|
|
8059
8040
|
/** Filter by the object’s `useRls` field. */
|
|
8060
8041
|
useRls?: BooleanFilter;
|
|
8061
8042
|
/** Filter by the object’s `timestamps` field. */
|
|
@@ -8218,8 +8199,6 @@ export interface ViewFilter {
|
|
|
8218
8199
|
smartTags?: JSONFilter;
|
|
8219
8200
|
/** Filter by the object’s `category` field. */
|
|
8220
8201
|
category?: ObjectCategoryFilter;
|
|
8221
|
-
/** Filter by the object’s `scope` field. */
|
|
8222
|
-
scope?: IntFilter;
|
|
8223
8202
|
/** Filter by the object’s `tags` field. */
|
|
8224
8203
|
tags?: StringListFilter;
|
|
8225
8204
|
/** Checks for all expressions in this list. */
|
|
@@ -8296,8 +8275,6 @@ export interface EnumFilter {
|
|
|
8296
8275
|
smartTags?: JSONFilter;
|
|
8297
8276
|
/** Filter by the object’s `category` field. */
|
|
8298
8277
|
category?: ObjectCategoryFilter;
|
|
8299
|
-
/** Filter by the object’s `scope` field. */
|
|
8300
|
-
scope?: IntFilter;
|
|
8301
8278
|
/** Filter by the object’s `tags` field. */
|
|
8302
8279
|
tags?: StringListFilter;
|
|
8303
8280
|
/** Checks for all expressions in this list. */
|
|
@@ -8352,8 +8329,6 @@ export interface CompositeTypeFilter {
|
|
|
8352
8329
|
smartTags?: JSONFilter;
|
|
8353
8330
|
/** Filter by the object’s `category` field. */
|
|
8354
8331
|
category?: ObjectCategoryFilter;
|
|
8355
|
-
/** Filter by the object’s `scope` field. */
|
|
8356
|
-
scope?: IntFilter;
|
|
8357
8332
|
/** Filter by the object’s `tags` field. */
|
|
8358
8333
|
tags?: StringListFilter;
|
|
8359
8334
|
/** Checks for all expressions in this list. */
|
|
@@ -8410,8 +8385,6 @@ export interface CheckConstraintFilter {
|
|
|
8410
8385
|
smartTags?: JSONFilter;
|
|
8411
8386
|
/** Filter by the object’s `category` field. */
|
|
8412
8387
|
category?: ObjectCategoryFilter;
|
|
8413
|
-
/** Filter by the object’s `scope` field. */
|
|
8414
|
-
scope?: IntFilter;
|
|
8415
8388
|
/** Filter by the object’s `tags` field. */
|
|
8416
8389
|
tags?: StringListFilter;
|
|
8417
8390
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -8469,8 +8442,6 @@ export interface FieldFilter {
|
|
|
8469
8442
|
tags?: StringListFilter;
|
|
8470
8443
|
/** Filter by the object’s `category` field. */
|
|
8471
8444
|
category?: ObjectCategoryFilter;
|
|
8472
|
-
/** Filter by the object’s `scope` field. */
|
|
8473
|
-
scope?: IntFilter;
|
|
8474
8445
|
/** Filter by the object’s `createdAt` field. */
|
|
8475
8446
|
createdAt?: DatetimeFilter;
|
|
8476
8447
|
/** Filter by the object’s `updatedAt` field. */
|
|
@@ -8522,8 +8493,6 @@ export interface ForeignKeyConstraintFilter {
|
|
|
8522
8493
|
updateAction?: StringFilter;
|
|
8523
8494
|
/** Filter by the object’s `category` field. */
|
|
8524
8495
|
category?: ObjectCategoryFilter;
|
|
8525
|
-
/** Filter by the object’s `scope` field. */
|
|
8526
|
-
scope?: IntFilter;
|
|
8527
8496
|
/** Filter by the object’s `tags` field. */
|
|
8528
8497
|
tags?: StringListFilter;
|
|
8529
8498
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -8606,8 +8575,6 @@ export interface IndexFilter {
|
|
|
8606
8575
|
smartTags?: JSONFilter;
|
|
8607
8576
|
/** Filter by the object’s `category` field. */
|
|
8608
8577
|
category?: ObjectCategoryFilter;
|
|
8609
|
-
/** Filter by the object’s `scope` field. */
|
|
8610
|
-
scope?: IntFilter;
|
|
8611
8578
|
/** Filter by the object’s `tags` field. */
|
|
8612
8579
|
tags?: StringListFilter;
|
|
8613
8580
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -8651,8 +8618,6 @@ export interface PolicyFilter {
|
|
|
8651
8618
|
smartTags?: JSONFilter;
|
|
8652
8619
|
/** Filter by the object’s `category` field. */
|
|
8653
8620
|
category?: ObjectCategoryFilter;
|
|
8654
|
-
/** Filter by the object’s `scope` field. */
|
|
8655
|
-
scope?: IntFilter;
|
|
8656
8621
|
/** Filter by the object’s `tags` field. */
|
|
8657
8622
|
tags?: StringListFilter;
|
|
8658
8623
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -8688,8 +8653,6 @@ export interface PrimaryKeyConstraintFilter {
|
|
|
8688
8653
|
smartTags?: JSONFilter;
|
|
8689
8654
|
/** Filter by the object’s `category` field. */
|
|
8690
8655
|
category?: ObjectCategoryFilter;
|
|
8691
|
-
/** Filter by the object’s `scope` field. */
|
|
8692
|
-
scope?: IntFilter;
|
|
8693
8656
|
/** Filter by the object’s `tags` field. */
|
|
8694
8657
|
tags?: StringListFilter;
|
|
8695
8658
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -8756,8 +8719,6 @@ export interface TriggerFilter {
|
|
|
8756
8719
|
smartTags?: JSONFilter;
|
|
8757
8720
|
/** Filter by the object’s `category` field. */
|
|
8758
8721
|
category?: ObjectCategoryFilter;
|
|
8759
|
-
/** Filter by the object’s `scope` field. */
|
|
8760
|
-
scope?: IntFilter;
|
|
8761
8722
|
/** Filter by the object’s `tags` field. */
|
|
8762
8723
|
tags?: StringListFilter;
|
|
8763
8724
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -8795,8 +8756,6 @@ export interface UniqueConstraintFilter {
|
|
|
8795
8756
|
fieldIds?: UUIDListFilter;
|
|
8796
8757
|
/** Filter by the object’s `category` field. */
|
|
8797
8758
|
category?: ObjectCategoryFilter;
|
|
8798
|
-
/** Filter by the object’s `scope` field. */
|
|
8799
|
-
scope?: IntFilter;
|
|
8800
8759
|
/** Filter by the object’s `tags` field. */
|
|
8801
8760
|
tags?: StringListFilter;
|
|
8802
8761
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -8928,8 +8887,6 @@ export interface SpatialRelationFilter {
|
|
|
8928
8887
|
paramName?: StringFilter;
|
|
8929
8888
|
/** Filter by the object’s `category` field. */
|
|
8930
8889
|
category?: ObjectCategoryFilter;
|
|
8931
|
-
/** Filter by the object’s `scope` field. */
|
|
8932
|
-
scope?: IntFilter;
|
|
8933
8890
|
/** Filter by the object’s `tags` field. */
|
|
8934
8891
|
tags?: StringListFilter;
|
|
8935
8892
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -9036,10 +8993,16 @@ export interface DomainFilter {
|
|
|
9036
8993
|
apiId?: UUIDFilter;
|
|
9037
8994
|
/** Filter by the object’s `siteId` field. */
|
|
9038
8995
|
siteId?: UUIDFilter;
|
|
8996
|
+
/** Filter by the object’s `serviceId` field. */
|
|
8997
|
+
serviceId?: UUIDFilter;
|
|
9039
8998
|
/** Filter by the object’s `subdomain` field. */
|
|
9040
8999
|
subdomain?: ConstructiveInternalTypeHostnameFilter;
|
|
9041
9000
|
/** Filter by the object’s `domain` field. */
|
|
9042
9001
|
domain?: ConstructiveInternalTypeHostnameFilter;
|
|
9002
|
+
/** Filter by the object’s `labels` field. */
|
|
9003
|
+
labels?: JSONFilter;
|
|
9004
|
+
/** Filter by the object’s `annotations` field. */
|
|
9005
|
+
annotations?: JSONFilter;
|
|
9043
9006
|
/** Checks for all expressions in this list. */
|
|
9044
9007
|
and?: DomainFilter[];
|
|
9045
9008
|
/** Checks for any expressions in this list. */
|
|
@@ -9165,8 +9128,6 @@ export interface SchemaFilter {
|
|
|
9165
9128
|
smartTags?: JSONFilter;
|
|
9166
9129
|
/** Filter by the object’s `category` field. */
|
|
9167
9130
|
category?: ObjectCategoryFilter;
|
|
9168
|
-
/** Filter by the object’s `scope` field. */
|
|
9169
|
-
scope?: IntFilter;
|
|
9170
9131
|
/** Filter by the object’s `tags` field. */
|
|
9171
9132
|
tags?: StringListFilter;
|
|
9172
9133
|
/** Filter by the object’s `isPublic` field. */
|
|
@@ -9337,6 +9298,10 @@ export interface ApiFilter {
|
|
|
9337
9298
|
anonRole?: StringFilter;
|
|
9338
9299
|
/** Filter by the object’s `isPublic` field. */
|
|
9339
9300
|
isPublic?: BooleanFilter;
|
|
9301
|
+
/** Filter by the object’s `labels` field. */
|
|
9302
|
+
labels?: JSONFilter;
|
|
9303
|
+
/** Filter by the object’s `annotations` field. */
|
|
9304
|
+
annotations?: JSONFilter;
|
|
9340
9305
|
/** Checks for all expressions in this list. */
|
|
9341
9306
|
and?: ApiFilter[];
|
|
9342
9307
|
/** Checks for any expressions in this list. */
|
|
@@ -9386,6 +9351,10 @@ export interface SiteFilter {
|
|
|
9386
9351
|
logo?: ConstructiveInternalTypeImageFilter;
|
|
9387
9352
|
/** Filter by the object’s `dbname` field. */
|
|
9388
9353
|
dbname?: StringFilter;
|
|
9354
|
+
/** Filter by the object’s `labels` field. */
|
|
9355
|
+
labels?: JSONFilter;
|
|
9356
|
+
/** Filter by the object’s `annotations` field. */
|
|
9357
|
+
annotations?: JSONFilter;
|
|
9389
9358
|
/** Checks for all expressions in this list. */
|
|
9390
9359
|
and?: SiteFilter[];
|
|
9391
9360
|
/** Checks for any expressions in this list. */
|
|
@@ -9628,31 +9597,6 @@ export interface JSONFilter {
|
|
|
9628
9597
|
/** Contained by the specified JSON. */
|
|
9629
9598
|
containedBy?: Record<string, unknown>;
|
|
9630
9599
|
}
|
|
9631
|
-
/** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */
|
|
9632
|
-
export interface IntFilter {
|
|
9633
|
-
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
9634
|
-
isNull?: boolean;
|
|
9635
|
-
/** Equal to the specified value. */
|
|
9636
|
-
equalTo?: number;
|
|
9637
|
-
/** Not equal to the specified value. */
|
|
9638
|
-
notEqualTo?: number;
|
|
9639
|
-
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
9640
|
-
distinctFrom?: number;
|
|
9641
|
-
/** Equal to the specified value, treating null like an ordinary value. */
|
|
9642
|
-
notDistinctFrom?: number;
|
|
9643
|
-
/** Included in the specified list. */
|
|
9644
|
-
in?: number[];
|
|
9645
|
-
/** Not included in the specified list. */
|
|
9646
|
-
notIn?: number[];
|
|
9647
|
-
/** Less than the specified value. */
|
|
9648
|
-
lessThan?: number;
|
|
9649
|
-
/** Less than or equal to the specified value. */
|
|
9650
|
-
lessThanOrEqualTo?: number;
|
|
9651
|
-
/** Greater than the specified value. */
|
|
9652
|
-
greaterThan?: number;
|
|
9653
|
-
/** Greater than or equal to the specified value. */
|
|
9654
|
-
greaterThanOrEqualTo?: number;
|
|
9655
|
-
}
|
|
9656
9600
|
/** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */
|
|
9657
9601
|
export interface BooleanFilter {
|
|
9658
9602
|
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
@@ -9970,6 +9914,31 @@ export interface UUIDListFilter {
|
|
|
9970
9914
|
/** Any array item is greater than or equal to the specified value. */
|
|
9971
9915
|
anyGreaterThanOrEqualTo?: string;
|
|
9972
9916
|
}
|
|
9917
|
+
/** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */
|
|
9918
|
+
export interface IntFilter {
|
|
9919
|
+
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
9920
|
+
isNull?: boolean;
|
|
9921
|
+
/** Equal to the specified value. */
|
|
9922
|
+
equalTo?: number;
|
|
9923
|
+
/** Not equal to the specified value. */
|
|
9924
|
+
notEqualTo?: number;
|
|
9925
|
+
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
9926
|
+
distinctFrom?: number;
|
|
9927
|
+
/** Equal to the specified value, treating null like an ordinary value. */
|
|
9928
|
+
notDistinctFrom?: number;
|
|
9929
|
+
/** Included in the specified list. */
|
|
9930
|
+
in?: number[];
|
|
9931
|
+
/** Not included in the specified list. */
|
|
9932
|
+
notIn?: number[];
|
|
9933
|
+
/** Less than the specified value. */
|
|
9934
|
+
lessThan?: number;
|
|
9935
|
+
/** Less than or equal to the specified value. */
|
|
9936
|
+
lessThanOrEqualTo?: number;
|
|
9937
|
+
/** Greater than the specified value. */
|
|
9938
|
+
greaterThan?: number;
|
|
9939
|
+
/** Greater than or equal to the specified value. */
|
|
9940
|
+
greaterThanOrEqualTo?: number;
|
|
9941
|
+
}
|
|
9973
9942
|
/** A filter to be used against Float fields. All fields are combined with a logical ‘and.’ */
|
|
9974
9943
|
export interface FloatFilter {
|
|
9975
9944
|
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
@@ -10027,6 +9996,10 @@ export interface DatabaseSettingFilter {
|
|
|
10027
9996
|
enableI18N?: BooleanFilter;
|
|
10028
9997
|
/** Filter by the object’s `options` field. */
|
|
10029
9998
|
options?: JSONFilter;
|
|
9999
|
+
/** Filter by the object’s `labels` field. */
|
|
10000
|
+
labels?: JSONFilter;
|
|
10001
|
+
/** Filter by the object’s `annotations` field. */
|
|
10002
|
+
annotations?: JSONFilter;
|
|
10030
10003
|
/** Checks for all expressions in this list. */
|
|
10031
10004
|
and?: DatabaseSettingFilter[];
|
|
10032
10005
|
/** Checks for any expressions in this list. */
|