@constructive-io/react 0.12.0 → 0.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/hooks/index.d.ts +1 -1
- package/admin/hooks/index.js +1 -1
- package/admin/hooks/invalidation.d.ts +18 -12
- package/admin/hooks/invalidation.js +48 -32
- package/admin/hooks/mutation-keys.d.ts +36 -24
- package/admin/hooks/mutation-keys.js +22 -15
- package/admin/hooks/mutations/index.d.ts +9 -6
- package/admin/hooks/mutations/index.js +9 -6
- package/admin/hooks/mutations/useCreateOrgMemberProfileMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgMemberProfileMutation.js +34 -0
- package/admin/hooks/mutations/useDeleteOrgMemberProfileMutation.d.ts +38 -0
- package/{public/hooks/mutations/useDeleteConnectedAccountMutation.js → admin/hooks/mutations/useDeleteOrgMemberProfileMutation.js} +7 -7
- package/admin/hooks/mutations/useUpdateOrgMemberProfileMutation.d.ts +40 -0
- package/{auth/hooks/mutations/useUpdateConnectedAccountMutation.js → admin/hooks/mutations/useUpdateOrgMemberProfileMutation.js} +9 -9
- package/admin/hooks/queries/index.d.ts +6 -4
- package/admin/hooks/queries/index.js +6 -4
- package/admin/hooks/queries/useOrgMemberProfileQuery.d.ts +65 -0
- package/{public/hooks/queries/useConnectedAccountQuery.js → admin/hooks/queries/useOrgMemberProfileQuery.js} +14 -14
- package/admin/hooks/queries/useOrgMemberProfilesQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgMemberProfilesQuery.js +38 -0
- package/admin/hooks/query-keys.d.ts +42 -28
- package/admin/hooks/query-keys.js +25 -17
- package/admin/orm/index.d.ts +6 -4
- package/admin/orm/index.js +6 -4
- package/admin/orm/input-types.d.ts +503 -295
- package/admin/orm/models/index.d.ts +3 -2
- package/admin/orm/models/index.js +7 -5
- package/admin/orm/models/orgMemberProfile.d.ts +56 -0
- package/{auth/orm/models/connectedAccount.js → admin/orm/models/orgMemberProfile.js} +26 -26
- package/admin/schema-types.d.ts +449 -288
- package/admin/types.d.ts +40 -22
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +6 -6
- package/auth/hooks/invalidation.js +16 -16
- package/auth/hooks/mutation-keys.d.ts +28 -18
- package/auth/hooks/mutation-keys.js +30 -15
- package/auth/hooks/mutations/index.d.ts +9 -6
- package/auth/hooks/mutations/index.js +9 -6
- package/auth/hooks/mutations/useCreateApiKeyMutation.d.ts +20 -0
- package/auth/hooks/mutations/{useOneTimeTokenMutation.js → useCreateApiKeyMutation.js} +5 -5
- package/auth/hooks/mutations/useCreateUserConnectedAccountMutation.d.ts +34 -0
- package/auth/hooks/mutations/{useCreateConnectedAccountMutation.js → useCreateUserConnectedAccountMutation.js} +6 -6
- package/auth/hooks/mutations/useDisconnectAccountMutation.d.ts +20 -0
- package/auth/hooks/mutations/{useSignInOneTimeTokenMutation.js → useDisconnectAccountMutation.js} +5 -5
- package/auth/hooks/mutations/useProvisionNewUserMutation.d.ts +20 -0
- package/{public/hooks/mutations/useSignInOneTimeTokenMutation.js → auth/hooks/mutations/useProvisionNewUserMutation.js} +5 -5
- package/auth/hooks/mutations/useRequestCrossOriginTokenMutation.d.ts +20 -0
- package/auth/hooks/mutations/useRequestCrossOriginTokenMutation.js +26 -0
- package/auth/hooks/mutations/useRevokeApiKeyMutation.d.ts +20 -0
- package/{public/hooks/mutations/useOneTimeTokenMutation.js → auth/hooks/mutations/useRevokeApiKeyMutation.js} +5 -5
- package/auth/hooks/mutations/useRevokeSessionMutation.d.ts +20 -0
- package/auth/hooks/mutations/useRevokeSessionMutation.js +26 -0
- package/auth/hooks/mutations/useSignInCrossOriginMutation.d.ts +20 -0
- package/auth/hooks/mutations/useSignInCrossOriginMutation.js +26 -0
- package/auth/hooks/queries/index.d.ts +4 -3
- package/auth/hooks/queries/index.js +4 -3
- package/auth/hooks/queries/useRequireStepUpQuery.d.ts +53 -0
- package/auth/hooks/queries/useRequireStepUpQuery.js +53 -0
- package/auth/hooks/queries/useUserConnectedAccountQuery.d.ts +65 -0
- package/auth/hooks/queries/useUserConnectedAccountQuery.js +53 -0
- package/auth/hooks/queries/useUserConnectedAccountsQuery.d.ts +69 -0
- package/auth/hooks/queries/useUserConnectedAccountsQuery.js +38 -0
- package/auth/hooks/query-keys.d.ts +18 -16
- package/auth/hooks/query-keys.js +11 -10
- package/auth/orm/index.d.ts +45 -15
- package/auth/orm/index.js +2 -2
- package/auth/orm/input-types.d.ts +186 -251
- package/auth/orm/input-types.js +0 -1
- package/auth/orm/models/index.d.ts +1 -1
- package/auth/orm/models/index.js +3 -3
- package/auth/orm/models/userConnectedAccount.d.ts +38 -0
- package/auth/orm/models/userConnectedAccount.js +76 -0
- package/auth/orm/mutation/index.d.ts +56 -16
- package/auth/orm/mutation/index.js +78 -18
- package/auth/orm/query/index.d.ts +12 -4
- package/auth/orm/query/index.js +19 -7
- package/auth/schema-types.d.ts +112 -119
- package/auth/types.d.ts +10 -10
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +18 -12
- package/esm/admin/hooks/invalidation.js +49 -33
- package/esm/admin/hooks/mutation-keys.d.ts +36 -24
- package/esm/admin/hooks/mutation-keys.js +21 -14
- package/esm/admin/hooks/mutations/index.d.ts +9 -6
- package/esm/admin/hooks/mutations/index.js +9 -6
- package/esm/admin/hooks/mutations/useCreateOrgMemberProfileMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgMemberProfileMutation.js +31 -0
- package/esm/admin/hooks/mutations/useDeleteOrgMemberProfileMutation.d.ts +38 -0
- package/esm/{public/hooks/mutations/useDeleteConnectedAccountMutation.js → admin/hooks/mutations/useDeleteOrgMemberProfileMutation.js} +8 -8
- package/esm/admin/hooks/mutations/useUpdateOrgMemberProfileMutation.d.ts +40 -0
- package/esm/{public/hooks/mutations/useUpdateConnectedAccountMutation.js → admin/hooks/mutations/useUpdateOrgMemberProfileMutation.js} +10 -10
- package/esm/admin/hooks/queries/index.d.ts +6 -4
- package/esm/admin/hooks/queries/index.js +6 -4
- package/esm/admin/hooks/queries/useOrgMemberProfileQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgMemberProfileQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgMemberProfilesQuery.d.ts +69 -0
- package/esm/{public/hooks/queries/useConnectedAccountsQuery.js → admin/hooks/queries/useOrgMemberProfilesQuery.js} +11 -11
- package/esm/admin/hooks/query-keys.d.ts +42 -28
- package/esm/admin/hooks/query-keys.js +24 -16
- package/esm/admin/orm/index.d.ts +6 -4
- package/esm/admin/orm/index.js +6 -4
- package/esm/admin/orm/input-types.d.ts +503 -295
- package/esm/admin/orm/models/index.d.ts +3 -2
- package/esm/admin/orm/models/index.js +3 -2
- package/esm/admin/orm/models/orgMemberProfile.d.ts +56 -0
- package/esm/{auth/orm/models/connectedAccount.js → admin/orm/models/orgMemberProfile.js} +24 -24
- package/esm/admin/schema-types.d.ts +449 -288
- package/esm/admin/types.d.ts +40 -22
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +6 -6
- package/esm/auth/hooks/invalidation.js +17 -17
- package/esm/auth/hooks/mutation-keys.d.ts +28 -18
- package/esm/auth/hooks/mutation-keys.js +29 -14
- package/esm/auth/hooks/mutations/index.d.ts +9 -6
- package/esm/auth/hooks/mutations/index.js +9 -6
- package/esm/auth/hooks/mutations/useCreateApiKeyMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/{useOneTimeTokenMutation.js → useCreateApiKeyMutation.js} +4 -4
- package/esm/auth/hooks/mutations/useCreateUserConnectedAccountMutation.d.ts +34 -0
- package/esm/{public/hooks/mutations/useCreateConnectedAccountMutation.js → auth/hooks/mutations/useCreateUserConnectedAccountMutation.js} +7 -7
- package/esm/auth/hooks/mutations/useDisconnectAccountMutation.d.ts +20 -0
- package/esm/{public/hooks/mutations/useSignInOneTimeTokenMutation.js → auth/hooks/mutations/useDisconnectAccountMutation.js} +4 -4
- package/esm/auth/hooks/mutations/useProvisionNewUserMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/{useSignInOneTimeTokenMutation.js → useProvisionNewUserMutation.js} +4 -4
- package/esm/auth/hooks/mutations/useRequestCrossOriginTokenMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useRequestCrossOriginTokenMutation.js +23 -0
- package/esm/auth/hooks/mutations/useRevokeApiKeyMutation.d.ts +20 -0
- package/esm/{public/hooks/mutations/useOneTimeTokenMutation.js → auth/hooks/mutations/useRevokeApiKeyMutation.js} +4 -4
- package/esm/auth/hooks/mutations/useRevokeSessionMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useRevokeSessionMutation.js +23 -0
- package/esm/auth/hooks/mutations/useSignInCrossOriginMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useSignInCrossOriginMutation.js +23 -0
- package/esm/auth/hooks/queries/index.d.ts +4 -3
- package/esm/auth/hooks/queries/index.js +4 -3
- package/esm/auth/hooks/queries/useRequireStepUpQuery.d.ts +53 -0
- package/esm/auth/hooks/queries/useRequireStepUpQuery.js +47 -0
- package/esm/auth/hooks/queries/useUserConnectedAccountQuery.d.ts +65 -0
- package/esm/{public/hooks/queries/useTableTemplateModuleQuery.js → auth/hooks/queries/useUserConnectedAccountQuery.js} +11 -11
- package/esm/auth/hooks/queries/useUserConnectedAccountsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/useUserConnectedAccountsQuery.js +32 -0
- package/esm/auth/hooks/query-keys.d.ts +18 -16
- package/esm/auth/hooks/query-keys.js +10 -9
- package/esm/auth/orm/index.d.ts +45 -15
- package/esm/auth/orm/index.js +2 -2
- package/esm/auth/orm/input-types.d.ts +186 -251
- package/esm/auth/orm/input-types.js +0 -1
- package/esm/auth/orm/models/index.d.ts +1 -1
- package/esm/auth/orm/models/index.js +1 -1
- package/esm/auth/orm/models/userConnectedAccount.d.ts +38 -0
- package/esm/auth/orm/models/userConnectedAccount.js +72 -0
- package/esm/auth/orm/mutation/index.d.ts +56 -16
- package/esm/auth/orm/mutation/index.js +78 -18
- package/esm/auth/orm/query/index.d.ts +12 -4
- package/esm/auth/orm/query/index.js +19 -7
- package/esm/auth/schema-types.d.ts +112 -119
- package/esm/auth/types.d.ts +10 -10
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +47 -17
- package/esm/public/hooks/invalidation.js +122 -42
- package/esm/public/hooks/mutation-keys.d.ts +112 -40
- package/esm/public/hooks/mutation-keys.js +83 -27
- package/esm/public/hooks/mutations/index.d.ts +31 -12
- package/esm/public/hooks/mutations/index.js +31 -12
- package/esm/public/hooks/mutations/useCreateApiKeyMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useCreateApiKeyMutation.js +23 -0
- package/esm/public/hooks/mutations/useCreateDevicesModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateTableTemplateModuleMutation.js → useCreateDevicesModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateEntityTypeProvisionMutation.d.ts +48 -0
- package/esm/public/hooks/mutations/useCreateEntityTypeProvisionMutation.js +38 -0
- package/esm/public/hooks/mutations/useCreateOrgMemberProfileMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgMemberProfileMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateSessionSecretsModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateSessionSecretsModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateSpatialRelationMutation.d.ts +34 -0
- package/esm/{auth/hooks/mutations/useCreateConnectedAccountMutation.js → public/hooks/mutations/useCreateSpatialRelationMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateUserConnectedAccountMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateUserConnectedAccountMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useDeleteDevicesModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteTableTemplateModuleMutation.js → useDeleteDevicesModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteEntityTypeProvisionMutation.d.ts +52 -0
- package/esm/public/hooks/mutations/useDeleteEntityTypeProvisionMutation.js +43 -0
- package/esm/public/hooks/mutations/useDeleteOrgMemberProfileMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteOrgMemberProfileMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteSessionSecretsModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteSessionSecretsModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteSpatialRelationMutation.d.ts +38 -0
- package/esm/{auth/hooks/mutations/useDeleteConnectedAccountMutation.js → public/hooks/mutations/useDeleteSpatialRelationMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDisconnectAccountMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useDisconnectAccountMutation.js +23 -0
- package/esm/public/hooks/mutations/useProvisionNewUserMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useProvisionNewUserMutation.js +23 -0
- package/esm/public/hooks/mutations/useProvisionSpatialRelationMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useProvisionSpatialRelationMutation.js +23 -0
- package/esm/public/hooks/mutations/useRequestCrossOriginTokenMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useRequestCrossOriginTokenMutation.js +23 -0
- package/esm/public/hooks/mutations/useRevokeApiKeyMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useRevokeApiKeyMutation.js +23 -0
- package/esm/public/hooks/mutations/useRevokeSessionMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useRevokeSessionMutation.js +23 -0
- package/esm/public/hooks/mutations/useSignInCrossOriginMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useSignInCrossOriginMutation.js +23 -0
- package/esm/public/hooks/mutations/useUpdateDevicesModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateTableTemplateModuleMutation.js → useUpdateDevicesModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateEntityTypeProvisionMutation.d.ts +54 -0
- package/esm/public/hooks/mutations/useUpdateEntityTypeProvisionMutation.js +44 -0
- package/esm/public/hooks/mutations/useUpdateOrgMemberProfileMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateOrgMemberProfileMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateSessionSecretsModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateSessionSecretsModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateSpatialRelationMutation.d.ts +40 -0
- package/esm/{auth/hooks/mutations/useUpdateConnectedAccountMutation.js → public/hooks/mutations/useUpdateSpatialRelationMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.js +37 -0
- package/esm/public/hooks/queries/index.d.ts +19 -7
- package/esm/public/hooks/queries/index.js +19 -7
- package/esm/public/hooks/queries/useDevicesModuleQuery.d.ts +65 -0
- package/esm/{auth/hooks/queries/useConnectedAccountQuery.js → public/hooks/queries/useDevicesModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useDevicesModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useDevicesModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useEntityTypeProvisionQuery.d.ts +93 -0
- package/esm/public/hooks/queries/useEntityTypeProvisionQuery.js +54 -0
- package/esm/public/hooks/queries/useEntityTypeProvisionsQuery.d.ts +97 -0
- package/esm/public/hooks/queries/useEntityTypeProvisionsQuery.js +39 -0
- package/esm/public/hooks/queries/useOrgMemberProfileQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useOrgMemberProfileQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgMemberProfilesQuery.d.ts +69 -0
- package/esm/{auth/hooks/queries/useConnectedAccountsQuery.js → public/hooks/queries/useOrgMemberProfilesQuery.js} +11 -11
- package/esm/public/hooks/queries/useRequireStepUpQuery.d.ts +53 -0
- package/esm/public/hooks/queries/useRequireStepUpQuery.js +47 -0
- package/esm/public/hooks/queries/useResolveBlueprintFieldQuery.d.ts +53 -0
- package/esm/public/hooks/queries/useResolveBlueprintFieldQuery.js +47 -0
- package/esm/public/hooks/queries/useSessionSecretsModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useSessionSecretsModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useSessionSecretsModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useSessionSecretsModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useSpatialRelationQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useConnectedAccountQuery.js → useSpatialRelationQuery.js} +11 -11
- package/esm/public/hooks/queries/useSpatialRelationsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useSpatialRelationsQuery.js +32 -0
- package/esm/public/hooks/queries/useUserConnectedAccountQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useUserConnectedAccountQuery.js +47 -0
- package/esm/public/hooks/queries/useUserConnectedAccountsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useUserConnectedAccountsQuery.js +32 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsModulesQuery.js +32 -0
- package/esm/public/hooks/query-keys.d.ts +116 -42
- package/esm/public/hooks/query-keys.js +66 -24
- package/esm/public/orm/index.d.ts +69 -19
- package/esm/public/orm/index.js +16 -6
- package/esm/public/orm/input-types.d.ts +2047 -640
- package/esm/public/orm/input-types.js +15 -6
- package/esm/public/orm/models/devicesModule.d.ts +56 -0
- package/esm/public/orm/models/devicesModule.js +96 -0
- package/esm/public/orm/models/entityTypeProvision.d.ts +56 -0
- package/esm/public/orm/models/{tableTemplateModule.js → entityTypeProvision.js} +24 -24
- package/esm/public/orm/models/index.d.ts +8 -3
- package/esm/public/orm/models/index.js +8 -3
- package/esm/public/orm/models/orgMemberProfile.d.ts +56 -0
- package/esm/public/orm/models/{connectedAccount.js → orgMemberProfile.js} +24 -24
- package/esm/public/orm/models/sessionSecretsModule.d.ts +56 -0
- package/esm/public/orm/models/sessionSecretsModule.js +96 -0
- package/esm/public/orm/models/spatialRelation.d.ts +56 -0
- package/esm/public/orm/models/spatialRelation.js +96 -0
- package/esm/public/orm/models/userConnectedAccount.d.ts +38 -0
- package/esm/public/orm/models/userConnectedAccount.js +72 -0
- package/esm/public/orm/models/webauthnCredentialsModule.d.ts +56 -0
- package/esm/public/orm/models/webauthnCredentialsModule.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +72 -20
- package/esm/public/orm/mutation/index.js +96 -24
- package/esm/public/orm/query/index.d.ts +24 -2
- package/esm/public/orm/query/index.js +36 -4
- package/esm/public/schema-types.d.ts +1550 -611
- package/esm/public/types.d.ts +98 -28
- package/package.json +2 -2
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +47 -17
- package/public/hooks/invalidation.js +121 -41
- package/public/hooks/mutation-keys.d.ts +112 -40
- package/public/hooks/mutation-keys.js +86 -30
- package/public/hooks/mutations/index.d.ts +31 -12
- package/public/hooks/mutations/index.js +31 -12
- package/public/hooks/mutations/useCreateApiKeyMutation.d.ts +20 -0
- package/public/hooks/mutations/useCreateApiKeyMutation.js +26 -0
- package/public/hooks/mutations/useCreateDevicesModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateTableTemplateModuleMutation.js → useCreateDevicesModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateEntityTypeProvisionMutation.d.ts +48 -0
- package/public/hooks/mutations/useCreateEntityTypeProvisionMutation.js +41 -0
- package/public/hooks/mutations/useCreateOrgMemberProfileMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgMemberProfileMutation.js +34 -0
- package/public/hooks/mutations/useCreateSessionSecretsModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateSessionSecretsModuleMutation.js +34 -0
- package/public/hooks/mutations/useCreateSpatialRelationMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateConnectedAccountMutation.js → useCreateSpatialRelationMutation.js} +6 -6
- package/public/hooks/mutations/useCreateUserConnectedAccountMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateUserConnectedAccountMutation.js +34 -0
- package/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.js +34 -0
- package/public/hooks/mutations/useDeleteDevicesModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteTableTemplateModuleMutation.js → useDeleteDevicesModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteEntityTypeProvisionMutation.d.ts +52 -0
- package/public/hooks/mutations/useDeleteEntityTypeProvisionMutation.js +46 -0
- package/public/hooks/mutations/useDeleteOrgMemberProfileMutation.d.ts +38 -0
- package/{auth/hooks/mutations/useDeleteConnectedAccountMutation.js → public/hooks/mutations/useDeleteOrgMemberProfileMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteSessionSecretsModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteSessionSecretsModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteSpatialRelationMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteSpatialRelationMutation.js +39 -0
- package/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.js +39 -0
- package/public/hooks/mutations/useDisconnectAccountMutation.d.ts +20 -0
- package/public/hooks/mutations/useDisconnectAccountMutation.js +26 -0
- package/public/hooks/mutations/useProvisionNewUserMutation.d.ts +20 -0
- package/public/hooks/mutations/useProvisionNewUserMutation.js +26 -0
- package/public/hooks/mutations/useProvisionSpatialRelationMutation.d.ts +20 -0
- package/public/hooks/mutations/useProvisionSpatialRelationMutation.js +26 -0
- package/public/hooks/mutations/useRequestCrossOriginTokenMutation.d.ts +20 -0
- package/public/hooks/mutations/useRequestCrossOriginTokenMutation.js +26 -0
- package/public/hooks/mutations/useRevokeApiKeyMutation.d.ts +20 -0
- package/public/hooks/mutations/useRevokeApiKeyMutation.js +26 -0
- package/public/hooks/mutations/useRevokeSessionMutation.d.ts +20 -0
- package/public/hooks/mutations/useRevokeSessionMutation.js +26 -0
- package/public/hooks/mutations/useSignInCrossOriginMutation.d.ts +20 -0
- package/public/hooks/mutations/useSignInCrossOriginMutation.js +26 -0
- package/public/hooks/mutations/useUpdateDevicesModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateTableTemplateModuleMutation.js → useUpdateDevicesModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateEntityTypeProvisionMutation.d.ts +54 -0
- package/public/hooks/mutations/useUpdateEntityTypeProvisionMutation.js +47 -0
- package/public/hooks/mutations/useUpdateOrgMemberProfileMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateConnectedAccountMutation.js → useUpdateOrgMemberProfileMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateSessionSecretsModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateSessionSecretsModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateSpatialRelationMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateSpatialRelationMutation.js +40 -0
- package/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.js +40 -0
- package/public/hooks/queries/index.d.ts +19 -7
- package/public/hooks/queries/index.js +19 -7
- package/public/hooks/queries/useDevicesModuleQuery.d.ts +65 -0
- package/public/hooks/queries/{useTableTemplateModuleQuery.js → useDevicesModuleQuery.js} +14 -14
- package/public/hooks/queries/useDevicesModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useDevicesModulesQuery.js +38 -0
- package/public/hooks/queries/useEntityTypeProvisionQuery.d.ts +93 -0
- package/public/hooks/queries/useEntityTypeProvisionQuery.js +60 -0
- package/public/hooks/queries/useEntityTypeProvisionsQuery.d.ts +97 -0
- package/public/hooks/queries/useEntityTypeProvisionsQuery.js +45 -0
- package/public/hooks/queries/useOrgMemberProfileQuery.d.ts +65 -0
- package/{auth/hooks/queries/useConnectedAccountQuery.js → public/hooks/queries/useOrgMemberProfileQuery.js} +14 -14
- package/public/hooks/queries/useOrgMemberProfilesQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgMemberProfilesQuery.js +38 -0
- package/public/hooks/queries/useRequireStepUpQuery.d.ts +53 -0
- package/public/hooks/queries/useRequireStepUpQuery.js +53 -0
- package/public/hooks/queries/useResolveBlueprintFieldQuery.d.ts +53 -0
- package/public/hooks/queries/useResolveBlueprintFieldQuery.js +53 -0
- package/public/hooks/queries/useSessionSecretsModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useSessionSecretsModuleQuery.js +53 -0
- package/public/hooks/queries/useSessionSecretsModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useSessionSecretsModulesQuery.js +38 -0
- package/public/hooks/queries/useSpatialRelationQuery.d.ts +65 -0
- package/public/hooks/queries/useSpatialRelationQuery.js +53 -0
- package/public/hooks/queries/useSpatialRelationsQuery.d.ts +69 -0
- package/public/hooks/queries/useSpatialRelationsQuery.js +38 -0
- package/public/hooks/queries/useUserConnectedAccountQuery.d.ts +65 -0
- package/public/hooks/queries/useUserConnectedAccountQuery.js +53 -0
- package/public/hooks/queries/useUserConnectedAccountsQuery.d.ts +69 -0
- package/public/hooks/queries/useUserConnectedAccountsQuery.js +38 -0
- package/public/hooks/queries/useWebauthnCredentialsModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useWebauthnCredentialsModuleQuery.js +53 -0
- package/public/hooks/queries/useWebauthnCredentialsModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useWebauthnCredentialsModulesQuery.js +38 -0
- package/public/hooks/query-keys.d.ts +116 -42
- package/public/hooks/query-keys.js +69 -27
- package/public/orm/index.d.ts +69 -19
- package/public/orm/index.js +16 -6
- package/public/orm/input-types.d.ts +2047 -640
- package/public/orm/input-types.js +15 -6
- package/public/orm/models/devicesModule.d.ts +56 -0
- package/public/orm/models/devicesModule.js +100 -0
- package/public/orm/models/entityTypeProvision.d.ts +56 -0
- package/public/orm/models/{tableTemplateModule.js → entityTypeProvision.js} +26 -26
- package/public/orm/models/index.d.ts +8 -3
- package/public/orm/models/index.js +19 -9
- package/public/orm/models/orgMemberProfile.d.ts +56 -0
- package/public/orm/models/{connectedAccount.js → orgMemberProfile.js} +26 -26
- package/public/orm/models/sessionSecretsModule.d.ts +56 -0
- package/public/orm/models/sessionSecretsModule.js +100 -0
- package/public/orm/models/spatialRelation.d.ts +56 -0
- package/public/orm/models/spatialRelation.js +100 -0
- package/public/orm/models/userConnectedAccount.d.ts +38 -0
- package/public/orm/models/userConnectedAccount.js +76 -0
- package/public/orm/models/webauthnCredentialsModule.d.ts +56 -0
- package/public/orm/models/webauthnCredentialsModule.js +100 -0
- package/public/orm/mutation/index.d.ts +72 -20
- package/public/orm/mutation/index.js +96 -24
- package/public/orm/query/index.d.ts +24 -2
- package/public/orm/query/index.js +36 -4
- package/public/schema-types.d.ts +1550 -611
- package/public/types.d.ts +98 -28
- package/auth/hooks/mutations/useCreateConnectedAccountMutation.d.ts +0 -34
- package/auth/hooks/mutations/useDeleteConnectedAccountMutation.d.ts +0 -38
- package/auth/hooks/mutations/useOneTimeTokenMutation.d.ts +0 -20
- package/auth/hooks/mutations/useSignInOneTimeTokenMutation.d.ts +0 -20
- package/auth/hooks/mutations/useUpdateConnectedAccountMutation.d.ts +0 -40
- package/auth/hooks/queries/useConnectedAccountQuery.d.ts +0 -65
- package/auth/hooks/queries/useConnectedAccountsQuery.d.ts +0 -69
- package/auth/hooks/queries/useConnectedAccountsQuery.js +0 -38
- package/auth/orm/models/connectedAccount.d.ts +0 -56
- package/esm/auth/hooks/mutations/useCreateConnectedAccountMutation.d.ts +0 -34
- package/esm/auth/hooks/mutations/useDeleteConnectedAccountMutation.d.ts +0 -38
- package/esm/auth/hooks/mutations/useOneTimeTokenMutation.d.ts +0 -20
- package/esm/auth/hooks/mutations/useSignInOneTimeTokenMutation.d.ts +0 -20
- package/esm/auth/hooks/mutations/useUpdateConnectedAccountMutation.d.ts +0 -40
- package/esm/auth/hooks/queries/useConnectedAccountQuery.d.ts +0 -65
- package/esm/auth/hooks/queries/useConnectedAccountsQuery.d.ts +0 -69
- package/esm/auth/orm/models/connectedAccount.d.ts +0 -56
- package/esm/public/hooks/mutations/useCreateConnectedAccountMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateTableTemplateModuleMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useDeleteConnectedAccountMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteTableTemplateModuleMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useOneTimeTokenMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useSignInOneTimeTokenMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useUpdateConnectedAccountMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateTableTemplateModuleMutation.d.ts +0 -40
- package/esm/public/hooks/queries/useConnectedAccountQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useConnectedAccountsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useTableTemplateModuleQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useTableTemplateModulesQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useTableTemplateModulesQuery.js +0 -32
- package/esm/public/orm/models/connectedAccount.d.ts +0 -56
- package/esm/public/orm/models/tableTemplateModule.d.ts +0 -56
- package/public/hooks/mutations/useCreateConnectedAccountMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateTableTemplateModuleMutation.d.ts +0 -34
- package/public/hooks/mutations/useDeleteConnectedAccountMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteTableTemplateModuleMutation.d.ts +0 -38
- package/public/hooks/mutations/useOneTimeTokenMutation.d.ts +0 -20
- package/public/hooks/mutations/useSignInOneTimeTokenMutation.d.ts +0 -20
- package/public/hooks/mutations/useUpdateConnectedAccountMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateTableTemplateModuleMutation.d.ts +0 -40
- package/public/hooks/queries/useConnectedAccountQuery.d.ts +0 -65
- package/public/hooks/queries/useConnectedAccountsQuery.d.ts +0 -69
- package/public/hooks/queries/useConnectedAccountsQuery.js +0 -38
- package/public/hooks/queries/useTableTemplateModuleQuery.d.ts +0 -65
- package/public/hooks/queries/useTableTemplateModulesQuery.d.ts +0 -69
- package/public/hooks/queries/useTableTemplateModulesQuery.js +0 -38
- package/public/orm/models/connectedAccount.d.ts +0 -56
- package/public/orm/models/tableTemplateModule.d.ts +0 -56
|
@@ -75,6 +75,12 @@ export declare const fieldMutationKeys: {
|
|
|
75
75
|
/** Update field mutation key */ readonly update: (id: string | number) => readonly ["mutation", "field", "update", string | number];
|
|
76
76
|
/** Delete field mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "field", "delete", string | number];
|
|
77
77
|
};
|
|
78
|
+
export declare const spatialRelationMutationKeys: {
|
|
79
|
+
/** All spatialRelation mutation keys */ readonly all: readonly ["mutation", "spatialrelation"];
|
|
80
|
+
/** Create spatialRelation mutation key */ readonly create: () => readonly ["mutation", "spatialrelation", "create"];
|
|
81
|
+
/** Update spatialRelation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "spatialrelation", "update", string | number];
|
|
82
|
+
/** Delete spatialRelation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "spatialrelation", "delete", string | number];
|
|
83
|
+
};
|
|
78
84
|
export declare const foreignKeyConstraintMutationKeys: {
|
|
79
85
|
/** All foreignKeyConstraint mutation keys */ readonly all: readonly ["mutation", "foreignkeyconstraint"];
|
|
80
86
|
/** Create foreignKeyConstraint mutation key */ readonly create: () => readonly ["mutation", "foreignkeyconstraint", "create"];
|
|
@@ -153,12 +159,6 @@ export declare const embeddingChunkMutationKeys: {
|
|
|
153
159
|
/** Update embeddingChunk mutation key */ readonly update: (id: string | number) => readonly ["mutation", "embeddingchunk", "update", string | number];
|
|
154
160
|
/** Delete embeddingChunk mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "embeddingchunk", "delete", string | number];
|
|
155
161
|
};
|
|
156
|
-
export declare const tableTemplateModuleMutationKeys: {
|
|
157
|
-
/** All tableTemplateModule mutation keys */ readonly all: readonly ["mutation", "tabletemplatemodule"];
|
|
158
|
-
/** Create tableTemplateModule mutation key */ readonly create: () => readonly ["mutation", "tabletemplatemodule", "create"];
|
|
159
|
-
/** Update tableTemplateModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "tabletemplatemodule", "update", string | number];
|
|
160
|
-
/** Delete tableTemplateModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "tabletemplatemodule", "delete", string | number];
|
|
161
|
-
};
|
|
162
162
|
export declare const secureTableProvisionMutationKeys: {
|
|
163
163
|
/** All secureTableProvision mutation keys */ readonly all: readonly ["mutation", "securetableprovision"];
|
|
164
164
|
/** Create secureTableProvision mutation key */ readonly create: () => readonly ["mutation", "securetableprovision", "create"];
|
|
@@ -171,6 +171,12 @@ export declare const relationProvisionMutationKeys: {
|
|
|
171
171
|
/** Update relationProvision mutation key */ readonly update: (id: string | number) => readonly ["mutation", "relationprovision", "update", string | number];
|
|
172
172
|
/** Delete relationProvision mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "relationprovision", "delete", string | number];
|
|
173
173
|
};
|
|
174
|
+
export declare const sessionSecretsModuleMutationKeys: {
|
|
175
|
+
/** All sessionSecretsModule mutation keys */ readonly all: readonly ["mutation", "sessionsecretsmodule"];
|
|
176
|
+
/** Create sessionSecretsModule mutation key */ readonly create: () => readonly ["mutation", "sessionsecretsmodule", "create"];
|
|
177
|
+
/** Update sessionSecretsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "sessionsecretsmodule", "update", string | number];
|
|
178
|
+
/** Delete sessionSecretsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "sessionsecretsmodule", "delete", string | number];
|
|
179
|
+
};
|
|
174
180
|
export declare const schemaGrantMutationKeys: {
|
|
175
181
|
/** All schemaGrant mutation keys */ readonly all: readonly ["mutation", "schemagrant"];
|
|
176
182
|
/** Create schemaGrant mutation key */ readonly create: () => readonly ["mutation", "schemagrant", "create"];
|
|
@@ -393,6 +399,18 @@ export declare const storageModuleMutationKeys: {
|
|
|
393
399
|
/** Update storageModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "storagemodule", "update", string | number];
|
|
394
400
|
/** Delete storageModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "storagemodule", "delete", string | number];
|
|
395
401
|
};
|
|
402
|
+
export declare const entityTypeProvisionMutationKeys: {
|
|
403
|
+
/** All entityTypeProvision mutation keys */ readonly all: readonly ["mutation", "entitytypeprovision"];
|
|
404
|
+
/** Create entityTypeProvision mutation key */ readonly create: () => readonly ["mutation", "entitytypeprovision", "create"];
|
|
405
|
+
/** Update entityTypeProvision mutation key */ readonly update: (id: string | number) => readonly ["mutation", "entitytypeprovision", "update", string | number];
|
|
406
|
+
/** Delete entityTypeProvision mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "entitytypeprovision", "delete", string | number];
|
|
407
|
+
};
|
|
408
|
+
export declare const webauthnCredentialsModuleMutationKeys: {
|
|
409
|
+
/** All webauthnCredentialsModule mutation keys */ readonly all: readonly ["mutation", "webauthncredentialsmodule"];
|
|
410
|
+
/** Create webauthnCredentialsModule mutation key */ readonly create: () => readonly ["mutation", "webauthncredentialsmodule", "create"];
|
|
411
|
+
/** Update webauthnCredentialsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webauthncredentialsmodule", "update", string | number];
|
|
412
|
+
/** Delete webauthnCredentialsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webauthncredentialsmodule", "delete", string | number];
|
|
413
|
+
};
|
|
396
414
|
export declare const databaseProvisionModuleMutationKeys: {
|
|
397
415
|
/** All databaseProvisionModule mutation keys */ readonly all: readonly ["mutation", "databaseprovisionmodule"];
|
|
398
416
|
/** Create databaseProvisionModule mutation key */ readonly create: () => readonly ["mutation", "databaseprovisionmodule", "create"];
|
|
@@ -441,6 +459,12 @@ export declare const orgOwnerGrantMutationKeys: {
|
|
|
441
459
|
/** Update orgOwnerGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgownergrant", "update", string | number];
|
|
442
460
|
/** Delete orgOwnerGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgownergrant", "delete", string | number];
|
|
443
461
|
};
|
|
462
|
+
export declare const orgMemberProfileMutationKeys: {
|
|
463
|
+
/** All orgMemberProfile mutation keys */ readonly all: readonly ["mutation", "orgmemberprofile"];
|
|
464
|
+
/** Create orgMemberProfile mutation key */ readonly create: () => readonly ["mutation", "orgmemberprofile", "create"];
|
|
465
|
+
/** Update orgMemberProfile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmemberprofile", "update", string | number];
|
|
466
|
+
/** Delete orgMemberProfile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmemberprofile", "delete", string | number];
|
|
467
|
+
};
|
|
444
468
|
export declare const orgGrantMutationKeys: {
|
|
445
469
|
/** All orgGrant mutation keys */ readonly all: readonly ["mutation", "orggrant"];
|
|
446
470
|
/** Create orgGrant mutation key */ readonly create: () => readonly ["mutation", "orggrant", "create"];
|
|
@@ -513,12 +537,6 @@ export declare const cryptoAddressMutationKeys: {
|
|
|
513
537
|
/** Update cryptoAddress mutation key */ readonly update: (id: string | number) => readonly ["mutation", "cryptoaddress", "update", string | number];
|
|
514
538
|
/** Delete cryptoAddress mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "cryptoaddress", "delete", string | number];
|
|
515
539
|
};
|
|
516
|
-
export declare const connectedAccountMutationKeys: {
|
|
517
|
-
/** All connectedAccount mutation keys */ readonly all: readonly ["mutation", "connectedaccount"];
|
|
518
|
-
/** Create connectedAccount mutation key */ readonly create: () => readonly ["mutation", "connectedaccount", "create"];
|
|
519
|
-
/** Update connectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "connectedaccount", "update", string | number];
|
|
520
|
-
/** Delete connectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "connectedaccount", "delete", string | number];
|
|
521
|
-
};
|
|
522
540
|
export declare const appInviteMutationKeys: {
|
|
523
541
|
/** All appInvite mutation keys */ readonly all: readonly ["mutation", "appinvite"];
|
|
524
542
|
/** Create appInvite mutation key */ readonly create: () => readonly ["mutation", "appinvite", "create"];
|
|
@@ -591,11 +609,17 @@ export declare const orgLimitDefaultMutationKeys: {
|
|
|
591
609
|
/** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
|
|
592
610
|
/** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
|
|
593
611
|
};
|
|
594
|
-
export declare const
|
|
595
|
-
/** All
|
|
596
|
-
/** Create
|
|
597
|
-
/** Update
|
|
598
|
-
/** Delete
|
|
612
|
+
export declare const devicesModuleMutationKeys: {
|
|
613
|
+
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
614
|
+
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
615
|
+
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
616
|
+
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
617
|
+
};
|
|
618
|
+
export declare const userConnectedAccountMutationKeys: {
|
|
619
|
+
/** All userConnectedAccount mutation keys */ readonly all: readonly ["mutation", "userconnectedaccount"];
|
|
620
|
+
/** Create userConnectedAccount mutation key */ readonly create: () => readonly ["mutation", "userconnectedaccount", "create"];
|
|
621
|
+
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
622
|
+
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
599
623
|
};
|
|
600
624
|
export declare const appMembershipDefaultMutationKeys: {
|
|
601
625
|
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
@@ -615,6 +639,12 @@ export declare const rateLimitsModuleMutationKeys: {
|
|
|
615
639
|
/** Update rateLimitsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "update", string | number];
|
|
616
640
|
/** Delete rateLimitsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "delete", string | number];
|
|
617
641
|
};
|
|
642
|
+
export declare const membershipTypeMutationKeys: {
|
|
643
|
+
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
644
|
+
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
645
|
+
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
646
|
+
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
647
|
+
};
|
|
618
648
|
export declare const orgMembershipDefaultMutationKeys: {
|
|
619
649
|
/** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
|
|
620
650
|
/** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];
|
|
@@ -663,6 +693,9 @@ export declare const customMutationKeys: {
|
|
|
663
693
|
/** Mutation key for acceptDatabaseTransfer */ readonly acceptDatabaseTransfer: (identifier?: string) => readonly ["mutation", "acceptDatabaseTransfer", string] | readonly ["mutation", "acceptDatabaseTransfer"];
|
|
664
694
|
/** Mutation key for cancelDatabaseTransfer */ readonly cancelDatabaseTransfer: (identifier?: string) => readonly ["mutation", "cancelDatabaseTransfer", string] | readonly ["mutation", "cancelDatabaseTransfer"];
|
|
665
695
|
/** Mutation key for rejectDatabaseTransfer */ readonly rejectDatabaseTransfer: (identifier?: string) => readonly ["mutation", "rejectDatabaseTransfer", string] | readonly ["mutation", "rejectDatabaseTransfer"];
|
|
696
|
+
/** Mutation key for disconnectAccount */ readonly disconnectAccount: (identifier?: string) => readonly ["mutation", "disconnectAccount", string] | readonly ["mutation", "disconnectAccount"];
|
|
697
|
+
/** Mutation key for revokeApiKey */ readonly revokeApiKey: (identifier?: string) => readonly ["mutation", "revokeApiKey", string] | readonly ["mutation", "revokeApiKey"];
|
|
698
|
+
/** Mutation key for revokeSession */ readonly revokeSession: (identifier?: string) => readonly ["mutation", "revokeSession", string] | readonly ["mutation", "revokeSession"];
|
|
666
699
|
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
667
700
|
/** Mutation key for verifyTotp */ readonly verifyTotp: (identifier?: string) => readonly ["mutation", "verifyTotp", string] | readonly ["mutation", "verifyTotp"];
|
|
668
701
|
/** Mutation key for submitAppInviteCode */ readonly submitAppInviteCode: (identifier?: string) => readonly ["mutation", "submitAppInviteCode", string] | readonly ["mutation", "submitAppInviteCode"];
|
|
@@ -674,9 +707,12 @@ export declare const customMutationKeys: {
|
|
|
674
707
|
/** Mutation key for freezeObjects */ readonly freezeObjects: (identifier?: string) => readonly ["mutation", "freezeObjects", string] | readonly ["mutation", "freezeObjects"];
|
|
675
708
|
/** Mutation key for initEmptyRepo */ readonly initEmptyRepo: (identifier?: string) => readonly ["mutation", "initEmptyRepo", string] | readonly ["mutation", "initEmptyRepo"];
|
|
676
709
|
/** Mutation key for constructBlueprint */ readonly constructBlueprint: (identifier?: string) => readonly ["mutation", "constructBlueprint", string] | readonly ["mutation", "constructBlueprint"];
|
|
710
|
+
/** Mutation key for provisionNewUser */ readonly provisionNewUser: (identifier?: string) => readonly ["mutation", "provisionNewUser", string] | readonly ["mutation", "provisionNewUser"];
|
|
677
711
|
/** Mutation key for resetPassword */ readonly resetPassword: (identifier?: string) => readonly ["mutation", "resetPassword", string] | readonly ["mutation", "resetPassword"];
|
|
678
712
|
/** Mutation key for removeNodeAtPath */ readonly removeNodeAtPath: (identifier?: string) => readonly ["mutation", "removeNodeAtPath", string] | readonly ["mutation", "removeNodeAtPath"];
|
|
679
713
|
/** Mutation key for copyTemplateToBlueprint */ readonly copyTemplateToBlueprint: (identifier?: string) => readonly ["mutation", "copyTemplateToBlueprint", string] | readonly ["mutation", "copyTemplateToBlueprint"];
|
|
714
|
+
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
715
|
+
/** Mutation key for provisionSpatialRelation */ readonly provisionSpatialRelation: (identifier?: string) => readonly ["mutation", "provisionSpatialRelation", string] | readonly ["mutation", "provisionSpatialRelation"];
|
|
680
716
|
/** Mutation key for bootstrapUser */ readonly bootstrapUser: (identifier?: string) => readonly ["mutation", "bootstrapUser", string] | readonly ["mutation", "bootstrapUser"];
|
|
681
717
|
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
682
718
|
/** Mutation key for provisionUniqueConstraint */ readonly provisionUniqueConstraint: (identifier?: string) => readonly ["mutation", "provisionUniqueConstraint", string] | readonly ["mutation", "provisionUniqueConstraint"];
|
|
@@ -690,12 +726,12 @@ export declare const customMutationKeys: {
|
|
|
690
726
|
/** Mutation key for setAndCommit */ readonly setAndCommit: (identifier?: string) => readonly ["mutation", "setAndCommit", string] | readonly ["mutation", "setAndCommit"];
|
|
691
727
|
/** Mutation key for provisionRelation */ readonly provisionRelation: (identifier?: string) => readonly ["mutation", "provisionRelation", string] | readonly ["mutation", "provisionRelation"];
|
|
692
728
|
/** Mutation key for applyRls */ readonly applyRls: (identifier?: string) => readonly ["mutation", "applyRls", string] | readonly ["mutation", "applyRls"];
|
|
693
|
-
/** Mutation key for
|
|
729
|
+
/** Mutation key for signInCrossOrigin */ readonly signInCrossOrigin: (identifier?: string) => readonly ["mutation", "signInCrossOrigin", string] | readonly ["mutation", "signInCrossOrigin"];
|
|
694
730
|
/** Mutation key for createUserDatabase */ readonly createUserDatabase: (identifier?: string) => readonly ["mutation", "createUserDatabase", string] | readonly ["mutation", "createUserDatabase"];
|
|
695
731
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
696
|
-
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
697
732
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
698
|
-
/** Mutation key for
|
|
733
|
+
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
734
|
+
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
699
735
|
/** Mutation key for provisionTable */ readonly provisionTable: (identifier?: string) => readonly ["mutation", "provisionTable", string] | readonly ["mutation", "provisionTable"];
|
|
700
736
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
701
737
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
@@ -798,6 +834,12 @@ export declare const mutationKeys: {
|
|
|
798
834
|
/** Update field mutation key */ readonly update: (id: string | number) => readonly ["mutation", "field", "update", string | number];
|
|
799
835
|
/** Delete field mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "field", "delete", string | number];
|
|
800
836
|
};
|
|
837
|
+
readonly spatialRelation: {
|
|
838
|
+
/** All spatialRelation mutation keys */ readonly all: readonly ["mutation", "spatialrelation"];
|
|
839
|
+
/** Create spatialRelation mutation key */ readonly create: () => readonly ["mutation", "spatialrelation", "create"];
|
|
840
|
+
/** Update spatialRelation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "spatialrelation", "update", string | number];
|
|
841
|
+
/** Delete spatialRelation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "spatialrelation", "delete", string | number];
|
|
842
|
+
};
|
|
801
843
|
readonly foreignKeyConstraint: {
|
|
802
844
|
/** All foreignKeyConstraint mutation keys */ readonly all: readonly ["mutation", "foreignkeyconstraint"];
|
|
803
845
|
/** Create foreignKeyConstraint mutation key */ readonly create: () => readonly ["mutation", "foreignkeyconstraint", "create"];
|
|
@@ -876,12 +918,6 @@ export declare const mutationKeys: {
|
|
|
876
918
|
/** Update embeddingChunk mutation key */ readonly update: (id: string | number) => readonly ["mutation", "embeddingchunk", "update", string | number];
|
|
877
919
|
/** Delete embeddingChunk mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "embeddingchunk", "delete", string | number];
|
|
878
920
|
};
|
|
879
|
-
readonly tableTemplateModule: {
|
|
880
|
-
/** All tableTemplateModule mutation keys */ readonly all: readonly ["mutation", "tabletemplatemodule"];
|
|
881
|
-
/** Create tableTemplateModule mutation key */ readonly create: () => readonly ["mutation", "tabletemplatemodule", "create"];
|
|
882
|
-
/** Update tableTemplateModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "tabletemplatemodule", "update", string | number];
|
|
883
|
-
/** Delete tableTemplateModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "tabletemplatemodule", "delete", string | number];
|
|
884
|
-
};
|
|
885
921
|
readonly secureTableProvision: {
|
|
886
922
|
/** All secureTableProvision mutation keys */ readonly all: readonly ["mutation", "securetableprovision"];
|
|
887
923
|
/** Create secureTableProvision mutation key */ readonly create: () => readonly ["mutation", "securetableprovision", "create"];
|
|
@@ -894,6 +930,12 @@ export declare const mutationKeys: {
|
|
|
894
930
|
/** Update relationProvision mutation key */ readonly update: (id: string | number) => readonly ["mutation", "relationprovision", "update", string | number];
|
|
895
931
|
/** Delete relationProvision mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "relationprovision", "delete", string | number];
|
|
896
932
|
};
|
|
933
|
+
readonly sessionSecretsModule: {
|
|
934
|
+
/** All sessionSecretsModule mutation keys */ readonly all: readonly ["mutation", "sessionsecretsmodule"];
|
|
935
|
+
/** Create sessionSecretsModule mutation key */ readonly create: () => readonly ["mutation", "sessionsecretsmodule", "create"];
|
|
936
|
+
/** Update sessionSecretsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "sessionsecretsmodule", "update", string | number];
|
|
937
|
+
/** Delete sessionSecretsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "sessionsecretsmodule", "delete", string | number];
|
|
938
|
+
};
|
|
897
939
|
readonly schemaGrant: {
|
|
898
940
|
/** All schemaGrant mutation keys */ readonly all: readonly ["mutation", "schemagrant"];
|
|
899
941
|
/** Create schemaGrant mutation key */ readonly create: () => readonly ["mutation", "schemagrant", "create"];
|
|
@@ -1116,6 +1158,18 @@ export declare const mutationKeys: {
|
|
|
1116
1158
|
/** Update storageModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "storagemodule", "update", string | number];
|
|
1117
1159
|
/** Delete storageModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "storagemodule", "delete", string | number];
|
|
1118
1160
|
};
|
|
1161
|
+
readonly entityTypeProvision: {
|
|
1162
|
+
/** All entityTypeProvision mutation keys */ readonly all: readonly ["mutation", "entitytypeprovision"];
|
|
1163
|
+
/** Create entityTypeProvision mutation key */ readonly create: () => readonly ["mutation", "entitytypeprovision", "create"];
|
|
1164
|
+
/** Update entityTypeProvision mutation key */ readonly update: (id: string | number) => readonly ["mutation", "entitytypeprovision", "update", string | number];
|
|
1165
|
+
/** Delete entityTypeProvision mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "entitytypeprovision", "delete", string | number];
|
|
1166
|
+
};
|
|
1167
|
+
readonly webauthnCredentialsModule: {
|
|
1168
|
+
/** All webauthnCredentialsModule mutation keys */ readonly all: readonly ["mutation", "webauthncredentialsmodule"];
|
|
1169
|
+
/** Create webauthnCredentialsModule mutation key */ readonly create: () => readonly ["mutation", "webauthncredentialsmodule", "create"];
|
|
1170
|
+
/** Update webauthnCredentialsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webauthncredentialsmodule", "update", string | number];
|
|
1171
|
+
/** Delete webauthnCredentialsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webauthncredentialsmodule", "delete", string | number];
|
|
1172
|
+
};
|
|
1119
1173
|
readonly databaseProvisionModule: {
|
|
1120
1174
|
/** All databaseProvisionModule mutation keys */ readonly all: readonly ["mutation", "databaseprovisionmodule"];
|
|
1121
1175
|
/** Create databaseProvisionModule mutation key */ readonly create: () => readonly ["mutation", "databaseprovisionmodule", "create"];
|
|
@@ -1164,6 +1218,12 @@ export declare const mutationKeys: {
|
|
|
1164
1218
|
/** Update orgOwnerGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgownergrant", "update", string | number];
|
|
1165
1219
|
/** Delete orgOwnerGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgownergrant", "delete", string | number];
|
|
1166
1220
|
};
|
|
1221
|
+
readonly orgMemberProfile: {
|
|
1222
|
+
/** All orgMemberProfile mutation keys */ readonly all: readonly ["mutation", "orgmemberprofile"];
|
|
1223
|
+
/** Create orgMemberProfile mutation key */ readonly create: () => readonly ["mutation", "orgmemberprofile", "create"];
|
|
1224
|
+
/** Update orgMemberProfile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmemberprofile", "update", string | number];
|
|
1225
|
+
/** Delete orgMemberProfile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmemberprofile", "delete", string | number];
|
|
1226
|
+
};
|
|
1167
1227
|
readonly orgGrant: {
|
|
1168
1228
|
/** All orgGrant mutation keys */ readonly all: readonly ["mutation", "orggrant"];
|
|
1169
1229
|
/** Create orgGrant mutation key */ readonly create: () => readonly ["mutation", "orggrant", "create"];
|
|
@@ -1236,12 +1296,6 @@ export declare const mutationKeys: {
|
|
|
1236
1296
|
/** Update cryptoAddress mutation key */ readonly update: (id: string | number) => readonly ["mutation", "cryptoaddress", "update", string | number];
|
|
1237
1297
|
/** Delete cryptoAddress mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "cryptoaddress", "delete", string | number];
|
|
1238
1298
|
};
|
|
1239
|
-
readonly connectedAccount: {
|
|
1240
|
-
/** All connectedAccount mutation keys */ readonly all: readonly ["mutation", "connectedaccount"];
|
|
1241
|
-
/** Create connectedAccount mutation key */ readonly create: () => readonly ["mutation", "connectedaccount", "create"];
|
|
1242
|
-
/** Update connectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "connectedaccount", "update", string | number];
|
|
1243
|
-
/** Delete connectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "connectedaccount", "delete", string | number];
|
|
1244
|
-
};
|
|
1245
1299
|
readonly appInvite: {
|
|
1246
1300
|
/** All appInvite mutation keys */ readonly all: readonly ["mutation", "appinvite"];
|
|
1247
1301
|
/** Create appInvite mutation key */ readonly create: () => readonly ["mutation", "appinvite", "create"];
|
|
@@ -1314,11 +1368,17 @@ export declare const mutationKeys: {
|
|
|
1314
1368
|
/** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
|
|
1315
1369
|
/** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
|
|
1316
1370
|
};
|
|
1317
|
-
readonly
|
|
1318
|
-
/** All
|
|
1319
|
-
/** Create
|
|
1320
|
-
/** Update
|
|
1321
|
-
/** Delete
|
|
1371
|
+
readonly devicesModule: {
|
|
1372
|
+
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
1373
|
+
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
1374
|
+
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
1375
|
+
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
1376
|
+
};
|
|
1377
|
+
readonly userConnectedAccount: {
|
|
1378
|
+
/** All userConnectedAccount mutation keys */ readonly all: readonly ["mutation", "userconnectedaccount"];
|
|
1379
|
+
/** Create userConnectedAccount mutation key */ readonly create: () => readonly ["mutation", "userconnectedaccount", "create"];
|
|
1380
|
+
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
1381
|
+
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
1322
1382
|
};
|
|
1323
1383
|
readonly appMembershipDefault: {
|
|
1324
1384
|
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
@@ -1338,6 +1398,12 @@ export declare const mutationKeys: {
|
|
|
1338
1398
|
/** Update rateLimitsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "update", string | number];
|
|
1339
1399
|
/** Delete rateLimitsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "delete", string | number];
|
|
1340
1400
|
};
|
|
1401
|
+
readonly membershipType: {
|
|
1402
|
+
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
1403
|
+
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
1404
|
+
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
1405
|
+
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
1406
|
+
};
|
|
1341
1407
|
readonly orgMembershipDefault: {
|
|
1342
1408
|
/** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
|
|
1343
1409
|
/** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];
|
|
@@ -1386,6 +1452,9 @@ export declare const mutationKeys: {
|
|
|
1386
1452
|
/** Mutation key for acceptDatabaseTransfer */ readonly acceptDatabaseTransfer: (identifier?: string) => readonly ["mutation", "acceptDatabaseTransfer", string] | readonly ["mutation", "acceptDatabaseTransfer"];
|
|
1387
1453
|
/** Mutation key for cancelDatabaseTransfer */ readonly cancelDatabaseTransfer: (identifier?: string) => readonly ["mutation", "cancelDatabaseTransfer", string] | readonly ["mutation", "cancelDatabaseTransfer"];
|
|
1388
1454
|
/** Mutation key for rejectDatabaseTransfer */ readonly rejectDatabaseTransfer: (identifier?: string) => readonly ["mutation", "rejectDatabaseTransfer", string] | readonly ["mutation", "rejectDatabaseTransfer"];
|
|
1455
|
+
/** Mutation key for disconnectAccount */ readonly disconnectAccount: (identifier?: string) => readonly ["mutation", "disconnectAccount", string] | readonly ["mutation", "disconnectAccount"];
|
|
1456
|
+
/** Mutation key for revokeApiKey */ readonly revokeApiKey: (identifier?: string) => readonly ["mutation", "revokeApiKey", string] | readonly ["mutation", "revokeApiKey"];
|
|
1457
|
+
/** Mutation key for revokeSession */ readonly revokeSession: (identifier?: string) => readonly ["mutation", "revokeSession", string] | readonly ["mutation", "revokeSession"];
|
|
1389
1458
|
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
1390
1459
|
/** Mutation key for verifyTotp */ readonly verifyTotp: (identifier?: string) => readonly ["mutation", "verifyTotp", string] | readonly ["mutation", "verifyTotp"];
|
|
1391
1460
|
/** Mutation key for submitAppInviteCode */ readonly submitAppInviteCode: (identifier?: string) => readonly ["mutation", "submitAppInviteCode", string] | readonly ["mutation", "submitAppInviteCode"];
|
|
@@ -1397,9 +1466,12 @@ export declare const mutationKeys: {
|
|
|
1397
1466
|
/** Mutation key for freezeObjects */ readonly freezeObjects: (identifier?: string) => readonly ["mutation", "freezeObjects", string] | readonly ["mutation", "freezeObjects"];
|
|
1398
1467
|
/** Mutation key for initEmptyRepo */ readonly initEmptyRepo: (identifier?: string) => readonly ["mutation", "initEmptyRepo", string] | readonly ["mutation", "initEmptyRepo"];
|
|
1399
1468
|
/** Mutation key for constructBlueprint */ readonly constructBlueprint: (identifier?: string) => readonly ["mutation", "constructBlueprint", string] | readonly ["mutation", "constructBlueprint"];
|
|
1469
|
+
/** Mutation key for provisionNewUser */ readonly provisionNewUser: (identifier?: string) => readonly ["mutation", "provisionNewUser", string] | readonly ["mutation", "provisionNewUser"];
|
|
1400
1470
|
/** Mutation key for resetPassword */ readonly resetPassword: (identifier?: string) => readonly ["mutation", "resetPassword", string] | readonly ["mutation", "resetPassword"];
|
|
1401
1471
|
/** Mutation key for removeNodeAtPath */ readonly removeNodeAtPath: (identifier?: string) => readonly ["mutation", "removeNodeAtPath", string] | readonly ["mutation", "removeNodeAtPath"];
|
|
1402
1472
|
/** Mutation key for copyTemplateToBlueprint */ readonly copyTemplateToBlueprint: (identifier?: string) => readonly ["mutation", "copyTemplateToBlueprint", string] | readonly ["mutation", "copyTemplateToBlueprint"];
|
|
1473
|
+
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
1474
|
+
/** Mutation key for provisionSpatialRelation */ readonly provisionSpatialRelation: (identifier?: string) => readonly ["mutation", "provisionSpatialRelation", string] | readonly ["mutation", "provisionSpatialRelation"];
|
|
1403
1475
|
/** Mutation key for bootstrapUser */ readonly bootstrapUser: (identifier?: string) => readonly ["mutation", "bootstrapUser", string] | readonly ["mutation", "bootstrapUser"];
|
|
1404
1476
|
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
1405
1477
|
/** Mutation key for provisionUniqueConstraint */ readonly provisionUniqueConstraint: (identifier?: string) => readonly ["mutation", "provisionUniqueConstraint", string] | readonly ["mutation", "provisionUniqueConstraint"];
|
|
@@ -1413,12 +1485,12 @@ export declare const mutationKeys: {
|
|
|
1413
1485
|
/** Mutation key for setAndCommit */ readonly setAndCommit: (identifier?: string) => readonly ["mutation", "setAndCommit", string] | readonly ["mutation", "setAndCommit"];
|
|
1414
1486
|
/** Mutation key for provisionRelation */ readonly provisionRelation: (identifier?: string) => readonly ["mutation", "provisionRelation", string] | readonly ["mutation", "provisionRelation"];
|
|
1415
1487
|
/** Mutation key for applyRls */ readonly applyRls: (identifier?: string) => readonly ["mutation", "applyRls", string] | readonly ["mutation", "applyRls"];
|
|
1416
|
-
/** Mutation key for
|
|
1488
|
+
/** Mutation key for signInCrossOrigin */ readonly signInCrossOrigin: (identifier?: string) => readonly ["mutation", "signInCrossOrigin", string] | readonly ["mutation", "signInCrossOrigin"];
|
|
1417
1489
|
/** Mutation key for createUserDatabase */ readonly createUserDatabase: (identifier?: string) => readonly ["mutation", "createUserDatabase", string] | readonly ["mutation", "createUserDatabase"];
|
|
1418
1490
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
1419
|
-
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
1420
1491
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
1421
|
-
/** Mutation key for
|
|
1492
|
+
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
1493
|
+
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
1422
1494
|
/** Mutation key for provisionTable */ readonly provisionTable: (identifier?: string) => readonly ["mutation", "provisionTable", string] | readonly ["mutation", "provisionTable"];
|
|
1423
1495
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
1424
1496
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
@@ -90,6 +90,12 @@ export const fieldMutationKeys = {
|
|
|
90
90
|
/** Update field mutation key */ update: (id) => ['mutation', 'field', 'update', id],
|
|
91
91
|
/** Delete field mutation key */ delete: (id) => ['mutation', 'field', 'delete', id],
|
|
92
92
|
};
|
|
93
|
+
export const spatialRelationMutationKeys = {
|
|
94
|
+
/** All spatialRelation mutation keys */ all: ['mutation', 'spatialrelation'],
|
|
95
|
+
/** Create spatialRelation mutation key */ create: () => ['mutation', 'spatialrelation', 'create'],
|
|
96
|
+
/** Update spatialRelation mutation key */ update: (id) => ['mutation', 'spatialrelation', 'update', id],
|
|
97
|
+
/** Delete spatialRelation mutation key */ delete: (id) => ['mutation', 'spatialrelation', 'delete', id],
|
|
98
|
+
};
|
|
93
99
|
export const foreignKeyConstraintMutationKeys = {
|
|
94
100
|
/** All foreignKeyConstraint mutation keys */ all: ['mutation', 'foreignkeyconstraint'],
|
|
95
101
|
/** Create foreignKeyConstraint mutation key */ create: () => ['mutation', 'foreignkeyconstraint', 'create'],
|
|
@@ -168,12 +174,6 @@ export const embeddingChunkMutationKeys = {
|
|
|
168
174
|
/** Update embeddingChunk mutation key */ update: (id) => ['mutation', 'embeddingchunk', 'update', id],
|
|
169
175
|
/** Delete embeddingChunk mutation key */ delete: (id) => ['mutation', 'embeddingchunk', 'delete', id],
|
|
170
176
|
};
|
|
171
|
-
export const tableTemplateModuleMutationKeys = {
|
|
172
|
-
/** All tableTemplateModule mutation keys */ all: ['mutation', 'tabletemplatemodule'],
|
|
173
|
-
/** Create tableTemplateModule mutation key */ create: () => ['mutation', 'tabletemplatemodule', 'create'],
|
|
174
|
-
/** Update tableTemplateModule mutation key */ update: (id) => ['mutation', 'tabletemplatemodule', 'update', id],
|
|
175
|
-
/** Delete tableTemplateModule mutation key */ delete: (id) => ['mutation', 'tabletemplatemodule', 'delete', id],
|
|
176
|
-
};
|
|
177
177
|
export const secureTableProvisionMutationKeys = {
|
|
178
178
|
/** All secureTableProvision mutation keys */ all: ['mutation', 'securetableprovision'],
|
|
179
179
|
/** Create secureTableProvision mutation key */ create: () => ['mutation', 'securetableprovision', 'create'],
|
|
@@ -186,6 +186,12 @@ export const relationProvisionMutationKeys = {
|
|
|
186
186
|
/** Update relationProvision mutation key */ update: (id) => ['mutation', 'relationprovision', 'update', id],
|
|
187
187
|
/** Delete relationProvision mutation key */ delete: (id) => ['mutation', 'relationprovision', 'delete', id],
|
|
188
188
|
};
|
|
189
|
+
export const sessionSecretsModuleMutationKeys = {
|
|
190
|
+
/** All sessionSecretsModule mutation keys */ all: ['mutation', 'sessionsecretsmodule'],
|
|
191
|
+
/** Create sessionSecretsModule mutation key */ create: () => ['mutation', 'sessionsecretsmodule', 'create'],
|
|
192
|
+
/** Update sessionSecretsModule mutation key */ update: (id) => ['mutation', 'sessionsecretsmodule', 'update', id],
|
|
193
|
+
/** Delete sessionSecretsModule mutation key */ delete: (id) => ['mutation', 'sessionsecretsmodule', 'delete', id],
|
|
194
|
+
};
|
|
189
195
|
export const schemaGrantMutationKeys = {
|
|
190
196
|
/** All schemaGrant mutation keys */ all: ['mutation', 'schemagrant'],
|
|
191
197
|
/** Create schemaGrant mutation key */ create: () => ['mutation', 'schemagrant', 'create'],
|
|
@@ -426,6 +432,21 @@ export const storageModuleMutationKeys = {
|
|
|
426
432
|
/** Update storageModule mutation key */ update: (id) => ['mutation', 'storagemodule', 'update', id],
|
|
427
433
|
/** Delete storageModule mutation key */ delete: (id) => ['mutation', 'storagemodule', 'delete', id],
|
|
428
434
|
};
|
|
435
|
+
export const entityTypeProvisionMutationKeys = {
|
|
436
|
+
/** All entityTypeProvision mutation keys */ all: ['mutation', 'entitytypeprovision'],
|
|
437
|
+
/** Create entityTypeProvision mutation key */ create: () => ['mutation', 'entitytypeprovision', 'create'],
|
|
438
|
+
/** Update entityTypeProvision mutation key */ update: (id) => ['mutation', 'entitytypeprovision', 'update', id],
|
|
439
|
+
/** Delete entityTypeProvision mutation key */ delete: (id) => ['mutation', 'entitytypeprovision', 'delete', id],
|
|
440
|
+
};
|
|
441
|
+
export const webauthnCredentialsModuleMutationKeys = {
|
|
442
|
+
/** All webauthnCredentialsModule mutation keys */ all: [
|
|
443
|
+
'mutation',
|
|
444
|
+
'webauthncredentialsmodule',
|
|
445
|
+
],
|
|
446
|
+
/** Create webauthnCredentialsModule mutation key */ create: () => ['mutation', 'webauthncredentialsmodule', 'create'],
|
|
447
|
+
/** Update webauthnCredentialsModule mutation key */ update: (id) => ['mutation', 'webauthncredentialsmodule', 'update', id],
|
|
448
|
+
/** Delete webauthnCredentialsModule mutation key */ delete: (id) => ['mutation', 'webauthncredentialsmodule', 'delete', id],
|
|
449
|
+
};
|
|
429
450
|
export const databaseProvisionModuleMutationKeys = {
|
|
430
451
|
/** All databaseProvisionModule mutation keys */ all: [
|
|
431
452
|
'mutation',
|
|
@@ -477,6 +498,12 @@ export const orgOwnerGrantMutationKeys = {
|
|
|
477
498
|
/** Update orgOwnerGrant mutation key */ update: (id) => ['mutation', 'orgownergrant', 'update', id],
|
|
478
499
|
/** Delete orgOwnerGrant mutation key */ delete: (id) => ['mutation', 'orgownergrant', 'delete', id],
|
|
479
500
|
};
|
|
501
|
+
export const orgMemberProfileMutationKeys = {
|
|
502
|
+
/** All orgMemberProfile mutation keys */ all: ['mutation', 'orgmemberprofile'],
|
|
503
|
+
/** Create orgMemberProfile mutation key */ create: () => ['mutation', 'orgmemberprofile', 'create'],
|
|
504
|
+
/** Update orgMemberProfile mutation key */ update: (id) => ['mutation', 'orgmemberprofile', 'update', id],
|
|
505
|
+
/** Delete orgMemberProfile mutation key */ delete: (id) => ['mutation', 'orgmemberprofile', 'delete', id],
|
|
506
|
+
};
|
|
480
507
|
export const orgGrantMutationKeys = {
|
|
481
508
|
/** All orgGrant mutation keys */ all: ['mutation', 'orggrant'],
|
|
482
509
|
/** Create orgGrant mutation key */ create: () => ['mutation', 'orggrant', 'create'],
|
|
@@ -549,12 +576,6 @@ export const cryptoAddressMutationKeys = {
|
|
|
549
576
|
/** Update cryptoAddress mutation key */ update: (id) => ['mutation', 'cryptoaddress', 'update', id],
|
|
550
577
|
/** Delete cryptoAddress mutation key */ delete: (id) => ['mutation', 'cryptoaddress', 'delete', id],
|
|
551
578
|
};
|
|
552
|
-
export const connectedAccountMutationKeys = {
|
|
553
|
-
/** All connectedAccount mutation keys */ all: ['mutation', 'connectedaccount'],
|
|
554
|
-
/** Create connectedAccount mutation key */ create: () => ['mutation', 'connectedaccount', 'create'],
|
|
555
|
-
/** Update connectedAccount mutation key */ update: (id) => ['mutation', 'connectedaccount', 'update', id],
|
|
556
|
-
/** Delete connectedAccount mutation key */ delete: (id) => ['mutation', 'connectedaccount', 'delete', id],
|
|
557
|
-
};
|
|
558
579
|
export const appInviteMutationKeys = {
|
|
559
580
|
/** All appInvite mutation keys */ all: ['mutation', 'appinvite'],
|
|
560
581
|
/** Create appInvite mutation key */ create: () => ['mutation', 'appinvite', 'create'],
|
|
@@ -627,11 +648,17 @@ export const orgLimitDefaultMutationKeys = {
|
|
|
627
648
|
/** Update orgLimitDefault mutation key */ update: (id) => ['mutation', 'orglimitdefault', 'update', id],
|
|
628
649
|
/** Delete orgLimitDefault mutation key */ delete: (id) => ['mutation', 'orglimitdefault', 'delete', id],
|
|
629
650
|
};
|
|
630
|
-
export const
|
|
631
|
-
/** All
|
|
632
|
-
/** Create
|
|
633
|
-
/** Update
|
|
634
|
-
/** Delete
|
|
651
|
+
export const devicesModuleMutationKeys = {
|
|
652
|
+
/** All devicesModule mutation keys */ all: ['mutation', 'devicesmodule'],
|
|
653
|
+
/** Create devicesModule mutation key */ create: () => ['mutation', 'devicesmodule', 'create'],
|
|
654
|
+
/** Update devicesModule mutation key */ update: (id) => ['mutation', 'devicesmodule', 'update', id],
|
|
655
|
+
/** Delete devicesModule mutation key */ delete: (id) => ['mutation', 'devicesmodule', 'delete', id],
|
|
656
|
+
};
|
|
657
|
+
export const userConnectedAccountMutationKeys = {
|
|
658
|
+
/** All userConnectedAccount mutation keys */ all: ['mutation', 'userconnectedaccount'],
|
|
659
|
+
/** Create userConnectedAccount mutation key */ create: () => ['mutation', 'userconnectedaccount', 'create'],
|
|
660
|
+
/** Update userConnectedAccount mutation key */ update: (id) => ['mutation', 'userconnectedaccount', 'update', id],
|
|
661
|
+
/** Delete userConnectedAccount mutation key */ delete: (id) => ['mutation', 'userconnectedaccount', 'delete', id],
|
|
635
662
|
};
|
|
636
663
|
export const appMembershipDefaultMutationKeys = {
|
|
637
664
|
/** All appMembershipDefault mutation keys */ all: ['mutation', 'appmembershipdefault'],
|
|
@@ -651,6 +678,12 @@ export const rateLimitsModuleMutationKeys = {
|
|
|
651
678
|
/** Update rateLimitsModule mutation key */ update: (id) => ['mutation', 'ratelimitsmodule', 'update', id],
|
|
652
679
|
/** Delete rateLimitsModule mutation key */ delete: (id) => ['mutation', 'ratelimitsmodule', 'delete', id],
|
|
653
680
|
};
|
|
681
|
+
export const membershipTypeMutationKeys = {
|
|
682
|
+
/** All membershipType mutation keys */ all: ['mutation', 'membershiptype'],
|
|
683
|
+
/** Create membershipType mutation key */ create: () => ['mutation', 'membershiptype', 'create'],
|
|
684
|
+
/** Update membershipType mutation key */ update: (id) => ['mutation', 'membershiptype', 'update', id],
|
|
685
|
+
/** Delete membershipType mutation key */ delete: (id) => ['mutation', 'membershiptype', 'delete', id],
|
|
686
|
+
};
|
|
654
687
|
export const orgMembershipDefaultMutationKeys = {
|
|
655
688
|
/** All orgMembershipDefault mutation keys */ all: ['mutation', 'orgmembershipdefault'],
|
|
656
689
|
/** Create orgMembershipDefault mutation key */ create: () => ['mutation', 'orgmembershipdefault', 'create'],
|
|
@@ -712,6 +745,15 @@ export const customMutationKeys = {
|
|
|
712
745
|
/** Mutation key for rejectDatabaseTransfer */ rejectDatabaseTransfer: (identifier) => identifier
|
|
713
746
|
? ['mutation', 'rejectDatabaseTransfer', identifier]
|
|
714
747
|
: ['mutation', 'rejectDatabaseTransfer'],
|
|
748
|
+
/** Mutation key for disconnectAccount */ disconnectAccount: (identifier) => identifier
|
|
749
|
+
? ['mutation', 'disconnectAccount', identifier]
|
|
750
|
+
: ['mutation', 'disconnectAccount'],
|
|
751
|
+
/** Mutation key for revokeApiKey */ revokeApiKey: (identifier) => identifier
|
|
752
|
+
? ['mutation', 'revokeApiKey', identifier]
|
|
753
|
+
: ['mutation', 'revokeApiKey'],
|
|
754
|
+
/** Mutation key for revokeSession */ revokeSession: (identifier) => identifier
|
|
755
|
+
? ['mutation', 'revokeSession', identifier]
|
|
756
|
+
: ['mutation', 'revokeSession'],
|
|
715
757
|
/** Mutation key for verifyPassword */ verifyPassword: (identifier) => identifier
|
|
716
758
|
? ['mutation', 'verifyPassword', identifier]
|
|
717
759
|
: ['mutation', 'verifyPassword'],
|
|
@@ -745,6 +787,9 @@ export const customMutationKeys = {
|
|
|
745
787
|
/** Mutation key for constructBlueprint */ constructBlueprint: (identifier) => identifier
|
|
746
788
|
? ['mutation', 'constructBlueprint', identifier]
|
|
747
789
|
: ['mutation', 'constructBlueprint'],
|
|
790
|
+
/** Mutation key for provisionNewUser */ provisionNewUser: (identifier) => identifier
|
|
791
|
+
? ['mutation', 'provisionNewUser', identifier]
|
|
792
|
+
: ['mutation', 'provisionNewUser'],
|
|
748
793
|
/** Mutation key for resetPassword */ resetPassword: (identifier) => identifier
|
|
749
794
|
? ['mutation', 'resetPassword', identifier]
|
|
750
795
|
: ['mutation', 'resetPassword'],
|
|
@@ -754,6 +799,12 @@ export const customMutationKeys = {
|
|
|
754
799
|
/** Mutation key for copyTemplateToBlueprint */ copyTemplateToBlueprint: (identifier) => identifier
|
|
755
800
|
? ['mutation', 'copyTemplateToBlueprint', identifier]
|
|
756
801
|
: ['mutation', 'copyTemplateToBlueprint'],
|
|
802
|
+
/** Mutation key for createApiKey */ createApiKey: (identifier) => identifier
|
|
803
|
+
? ['mutation', 'createApiKey', identifier]
|
|
804
|
+
: ['mutation', 'createApiKey'],
|
|
805
|
+
/** Mutation key for provisionSpatialRelation */ provisionSpatialRelation: (identifier) => identifier
|
|
806
|
+
? ['mutation', 'provisionSpatialRelation', identifier]
|
|
807
|
+
: ['mutation', 'provisionSpatialRelation'],
|
|
757
808
|
/** Mutation key for bootstrapUser */ bootstrapUser: (identifier) => identifier
|
|
758
809
|
? ['mutation', 'bootstrapUser', identifier]
|
|
759
810
|
: ['mutation', 'bootstrapUser'],
|
|
@@ -793,20 +844,20 @@ export const customMutationKeys = {
|
|
|
793
844
|
/** Mutation key for applyRls */ applyRls: (identifier) => identifier
|
|
794
845
|
? ['mutation', 'applyRls', identifier]
|
|
795
846
|
: ['mutation', 'applyRls'],
|
|
796
|
-
/** Mutation key for
|
|
797
|
-
? ['mutation', '
|
|
798
|
-
: ['mutation', '
|
|
847
|
+
/** Mutation key for signInCrossOrigin */ signInCrossOrigin: (identifier) => identifier
|
|
848
|
+
? ['mutation', 'signInCrossOrigin', identifier]
|
|
849
|
+
: ['mutation', 'signInCrossOrigin'],
|
|
799
850
|
/** Mutation key for createUserDatabase */ createUserDatabase: (identifier) => identifier
|
|
800
851
|
? ['mutation', 'createUserDatabase', identifier]
|
|
801
852
|
: ['mutation', 'createUserDatabase'],
|
|
802
853
|
/** Mutation key for extendTokenExpires */ extendTokenExpires: (identifier) => identifier
|
|
803
854
|
? ['mutation', 'extendTokenExpires', identifier]
|
|
804
855
|
: ['mutation', 'extendTokenExpires'],
|
|
805
|
-
/** Mutation key for signIn */ signIn: (identifier) => identifier ? ['mutation', 'signIn', identifier] : ['mutation', 'signIn'],
|
|
806
856
|
/** Mutation key for signUp */ signUp: (identifier) => identifier ? ['mutation', 'signUp', identifier] : ['mutation', 'signUp'],
|
|
807
|
-
/** Mutation key for
|
|
808
|
-
? ['mutation', '
|
|
809
|
-
: ['mutation', '
|
|
857
|
+
/** Mutation key for requestCrossOriginToken */ requestCrossOriginToken: (identifier) => identifier
|
|
858
|
+
? ['mutation', 'requestCrossOriginToken', identifier]
|
|
859
|
+
: ['mutation', 'requestCrossOriginToken'],
|
|
860
|
+
/** Mutation key for signIn */ signIn: (identifier) => identifier ? ['mutation', 'signIn', identifier] : ['mutation', 'signIn'],
|
|
810
861
|
/** Mutation key for provisionTable */ provisionTable: (identifier) => identifier
|
|
811
862
|
? ['mutation', 'provisionTable', identifier]
|
|
812
863
|
: ['mutation', 'provisionTable'],
|
|
@@ -861,6 +912,7 @@ export const mutationKeys = {
|
|
|
861
912
|
table: tableMutationKeys,
|
|
862
913
|
checkConstraint: checkConstraintMutationKeys,
|
|
863
914
|
field: fieldMutationKeys,
|
|
915
|
+
spatialRelation: spatialRelationMutationKeys,
|
|
864
916
|
foreignKeyConstraint: foreignKeyConstraintMutationKeys,
|
|
865
917
|
fullTextSearch: fullTextSearchMutationKeys,
|
|
866
918
|
index: indexMutationKeys,
|
|
@@ -874,9 +926,9 @@ export const mutationKeys = {
|
|
|
874
926
|
viewGrant: viewGrantMutationKeys,
|
|
875
927
|
viewRule: viewRuleMutationKeys,
|
|
876
928
|
embeddingChunk: embeddingChunkMutationKeys,
|
|
877
|
-
tableTemplateModule: tableTemplateModuleMutationKeys,
|
|
878
929
|
secureTableProvision: secureTableProvisionMutationKeys,
|
|
879
930
|
relationProvision: relationProvisionMutationKeys,
|
|
931
|
+
sessionSecretsModule: sessionSecretsModuleMutationKeys,
|
|
880
932
|
schemaGrant: schemaGrantMutationKeys,
|
|
881
933
|
defaultPrivilege: defaultPrivilegeMutationKeys,
|
|
882
934
|
enum: enumMutationKeys,
|
|
@@ -914,6 +966,8 @@ export const mutationKeys = {
|
|
|
914
966
|
blueprintTemplate: blueprintTemplateMutationKeys,
|
|
915
967
|
blueprintConstruction: blueprintConstructionMutationKeys,
|
|
916
968
|
storageModule: storageModuleMutationKeys,
|
|
969
|
+
entityTypeProvision: entityTypeProvisionMutationKeys,
|
|
970
|
+
webauthnCredentialsModule: webauthnCredentialsModuleMutationKeys,
|
|
917
971
|
databaseProvisionModule: databaseProvisionModuleMutationKeys,
|
|
918
972
|
appAdminGrant: appAdminGrantMutationKeys,
|
|
919
973
|
appOwnerGrant: appOwnerGrantMutationKeys,
|
|
@@ -922,6 +976,7 @@ export const mutationKeys = {
|
|
|
922
976
|
orgMember: orgMemberMutationKeys,
|
|
923
977
|
orgAdminGrant: orgAdminGrantMutationKeys,
|
|
924
978
|
orgOwnerGrant: orgOwnerGrantMutationKeys,
|
|
979
|
+
orgMemberProfile: orgMemberProfileMutationKeys,
|
|
925
980
|
orgGrant: orgGrantMutationKeys,
|
|
926
981
|
orgChartEdge: orgChartEdgeMutationKeys,
|
|
927
982
|
orgChartEdgeGrant: orgChartEdgeGrantMutationKeys,
|
|
@@ -934,7 +989,6 @@ export const mutationKeys = {
|
|
|
934
989
|
email: emailMutationKeys,
|
|
935
990
|
phoneNumber: phoneNumberMutationKeys,
|
|
936
991
|
cryptoAddress: cryptoAddressMutationKeys,
|
|
937
|
-
connectedAccount: connectedAccountMutationKeys,
|
|
938
992
|
appInvite: appInviteMutationKeys,
|
|
939
993
|
appClaimedInvite: appClaimedInviteMutationKeys,
|
|
940
994
|
orgInvite: orgInviteMutationKeys,
|
|
@@ -947,10 +1001,12 @@ export const mutationKeys = {
|
|
|
947
1001
|
migrateFile: migrateFileMutationKeys,
|
|
948
1002
|
appLimitDefault: appLimitDefaultMutationKeys,
|
|
949
1003
|
orgLimitDefault: orgLimitDefaultMutationKeys,
|
|
950
|
-
|
|
1004
|
+
devicesModule: devicesModuleMutationKeys,
|
|
1005
|
+
userConnectedAccount: userConnectedAccountMutationKeys,
|
|
951
1006
|
appMembershipDefault: appMembershipDefaultMutationKeys,
|
|
952
1007
|
commit: commitMutationKeys,
|
|
953
1008
|
rateLimitsModule: rateLimitsModuleMutationKeys,
|
|
1009
|
+
membershipType: membershipTypeMutationKeys,
|
|
954
1010
|
orgMembershipDefault: orgMembershipDefaultMutationKeys,
|
|
955
1011
|
rlsModule: rlsModuleMutationKeys,
|
|
956
1012
|
sqlAction: sqlActionMutationKeys,
|