@constructive-io/react 0.11.4 → 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 +5 -5
- 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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { AuditLog,
|
|
6
|
+
import type { AuditLog, CryptoAddress, Email, PhoneNumber, RoleType, User, UserConnectedAccount, BooleanFilter, DatetimeFilter, FullTextFilter, IntFilter, InternetAddressFilter, JSONFilter, StringFilter, UUIDFilter } from './types';
|
|
7
7
|
export type ConstructiveInternalTypeEmail = unknown;
|
|
8
8
|
export type ConstructiveInternalTypeImage = unknown;
|
|
9
9
|
export type ConstructiveInternalTypeOrigin = unknown;
|
|
@@ -13,12 +13,12 @@ export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' |
|
|
|
13
13
|
export type PhoneNumberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CC_ASC' | 'CC_DESC' | 'NUMBER_ASC' | 'NUMBER_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14
14
|
/** Methods to use when ordering `CryptoAddress`. */
|
|
15
15
|
export type CryptoAddressOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'ADDRESS_ASC' | 'ADDRESS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
16
|
-
/** Methods to use when ordering `ConnectedAccount`. */
|
|
17
|
-
export type ConnectedAccountOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SERVICE_ASC' | 'SERVICE_DESC' | 'IDENTIFIER_ASC' | 'IDENTIFIER_DESC' | 'DETAILS_ASC' | 'DETAILS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
18
16
|
/** Methods to use when ordering `AuditLog`. */
|
|
19
17
|
export type AuditLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ORIGIN_ASC' | 'ORIGIN_DESC' | 'USER_AGENT_ASC' | 'USER_AGENT_DESC' | 'IP_ADDRESS_ASC' | 'IP_ADDRESS_DESC' | 'SUCCESS_ASC' | 'SUCCESS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
20
18
|
/** Methods to use when ordering `RoleType`. */
|
|
21
19
|
export type RoleTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
20
|
+
/** Methods to use when ordering `UserConnectedAccount`. */
|
|
21
|
+
export type UserConnectedAccountOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SERVICE_ASC' | 'SERVICE_DESC' | 'IDENTIFIER_ASC' | 'IDENTIFIER_DESC' | 'DETAILS_ASC' | 'DETAILS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
22
22
|
/** Methods to use when ordering `User`. */
|
|
23
23
|
export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'PROFILE_PICTURE_ASC' | 'PROFILE_PICTURE_DESC' | 'SEARCH_TSV_ASC' | 'SEARCH_TSV_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
24
24
|
/** A filter to be used against `Email` object types. All fields are combined with a logical ‘and.’ */
|
|
@@ -161,10 +161,6 @@ export interface UserFilter {
|
|
|
161
161
|
ownedCryptoAddresses?: UserToManyCryptoAddressFilter;
|
|
162
162
|
/** `ownedCryptoAddresses` exist. */
|
|
163
163
|
ownedCryptoAddressesExist?: boolean;
|
|
164
|
-
/** Filter by the object’s `ownedConnectedAccounts` relation. */
|
|
165
|
-
ownedConnectedAccounts?: UserToManyConnectedAccountFilter;
|
|
166
|
-
/** `ownedConnectedAccounts` exist. */
|
|
167
|
-
ownedConnectedAccountsExist?: boolean;
|
|
168
164
|
/** Filter by the object’s `auditLogsByActorId` relation. */
|
|
169
165
|
auditLogsByActorId?: UserToManyAuditLogFilter;
|
|
170
166
|
/** `auditLogsByActorId` exist. */
|
|
@@ -396,42 +392,6 @@ export interface CryptoAddressFilter {
|
|
|
396
392
|
/** Filter by the object’s `owner` relation. */
|
|
397
393
|
owner?: UserFilter;
|
|
398
394
|
}
|
|
399
|
-
/** A filter to be used against many `ConnectedAccount` object types. All fields are combined with a logical ‘and.’ */
|
|
400
|
-
export interface UserToManyConnectedAccountFilter {
|
|
401
|
-
/** Filters to entities where at least one related entity matches. */
|
|
402
|
-
some?: ConnectedAccountFilter;
|
|
403
|
-
/** Filters to entities where every related entity matches. */
|
|
404
|
-
every?: ConnectedAccountFilter;
|
|
405
|
-
/** Filters to entities where no related entity matches. */
|
|
406
|
-
none?: ConnectedAccountFilter;
|
|
407
|
-
}
|
|
408
|
-
/** A filter to be used against `ConnectedAccount` object types. All fields are combined with a logical ‘and.’ */
|
|
409
|
-
export interface ConnectedAccountFilter {
|
|
410
|
-
/** Filter by the object’s `id` field. */
|
|
411
|
-
id?: UUIDFilter;
|
|
412
|
-
/** Filter by the object’s `ownerId` field. */
|
|
413
|
-
ownerId?: UUIDFilter;
|
|
414
|
-
/** Filter by the object’s `service` field. */
|
|
415
|
-
service?: StringFilter;
|
|
416
|
-
/** Filter by the object’s `identifier` field. */
|
|
417
|
-
identifier?: StringFilter;
|
|
418
|
-
/** Filter by the object’s `details` field. */
|
|
419
|
-
details?: JSONFilter;
|
|
420
|
-
/** Filter by the object’s `isVerified` field. */
|
|
421
|
-
isVerified?: BooleanFilter;
|
|
422
|
-
/** Filter by the object’s `createdAt` field. */
|
|
423
|
-
createdAt?: DatetimeFilter;
|
|
424
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
425
|
-
updatedAt?: DatetimeFilter;
|
|
426
|
-
/** Checks for all expressions in this list. */
|
|
427
|
-
and?: ConnectedAccountFilter[];
|
|
428
|
-
/** Checks for any expressions in this list. */
|
|
429
|
-
or?: ConnectedAccountFilter[];
|
|
430
|
-
/** Negates the expression. */
|
|
431
|
-
not?: ConnectedAccountFilter;
|
|
432
|
-
/** Filter by the object’s `owner` relation. */
|
|
433
|
-
owner?: UserFilter;
|
|
434
|
-
}
|
|
435
395
|
/** A filter to be used against many `AuditLog` object types. All fields are combined with a logical ‘and.’ */
|
|
436
396
|
export interface UserToManyAuditLogFilter {
|
|
437
397
|
/** Filters to entities where at least one related entity matches. */
|
|
@@ -547,6 +507,31 @@ export interface ConstructiveInternalTypeOriginFilter {
|
|
|
547
507
|
/** Greater than or equal to the specified value (case-insensitive). */
|
|
548
508
|
greaterThanOrEqualToInsensitive?: string;
|
|
549
509
|
}
|
|
510
|
+
/** A filter to be used against `UserConnectedAccount` object types. All fields are combined with a logical ‘and.’ */
|
|
511
|
+
export interface UserConnectedAccountFilter {
|
|
512
|
+
/** Filter by the object’s `id` field. */
|
|
513
|
+
id?: UUIDFilter;
|
|
514
|
+
/** Filter by the object’s `ownerId` field. */
|
|
515
|
+
ownerId?: UUIDFilter;
|
|
516
|
+
/** Filter by the object’s `service` field. */
|
|
517
|
+
service?: StringFilter;
|
|
518
|
+
/** Filter by the object’s `identifier` field. */
|
|
519
|
+
identifier?: StringFilter;
|
|
520
|
+
/** Filter by the object’s `details` field. */
|
|
521
|
+
details?: JSONFilter;
|
|
522
|
+
/** Filter by the object’s `isVerified` field. */
|
|
523
|
+
isVerified?: BooleanFilter;
|
|
524
|
+
/** Filter by the object’s `createdAt` field. */
|
|
525
|
+
createdAt?: DatetimeFilter;
|
|
526
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
527
|
+
updatedAt?: DatetimeFilter;
|
|
528
|
+
/** Checks for all expressions in this list. */
|
|
529
|
+
and?: UserConnectedAccountFilter[];
|
|
530
|
+
/** Checks for any expressions in this list. */
|
|
531
|
+
or?: UserConnectedAccountFilter[];
|
|
532
|
+
/** Negates the expression. */
|
|
533
|
+
not?: UserConnectedAccountFilter;
|
|
534
|
+
}
|
|
550
535
|
export interface SignOutInput {
|
|
551
536
|
clientMutationId?: string;
|
|
552
537
|
}
|
|
@@ -557,6 +542,18 @@ export interface CheckPasswordInput {
|
|
|
557
542
|
clientMutationId?: string;
|
|
558
543
|
password?: string;
|
|
559
544
|
}
|
|
545
|
+
export interface DisconnectAccountInput {
|
|
546
|
+
clientMutationId?: string;
|
|
547
|
+
accountId: string;
|
|
548
|
+
}
|
|
549
|
+
export interface RevokeApiKeyInput {
|
|
550
|
+
clientMutationId?: string;
|
|
551
|
+
keyId: string;
|
|
552
|
+
}
|
|
553
|
+
export interface RevokeSessionInput {
|
|
554
|
+
clientMutationId?: string;
|
|
555
|
+
sessionId: string;
|
|
556
|
+
}
|
|
560
557
|
export interface VerifyPasswordInput {
|
|
561
558
|
clientMutationId?: string;
|
|
562
559
|
password: string;
|
|
@@ -580,18 +577,29 @@ export interface VerifyEmailInput {
|
|
|
580
577
|
emailId?: string;
|
|
581
578
|
token?: string;
|
|
582
579
|
}
|
|
580
|
+
export interface ProvisionNewUserInput {
|
|
581
|
+
clientMutationId?: string;
|
|
582
|
+
email?: string;
|
|
583
|
+
password?: string;
|
|
584
|
+
}
|
|
583
585
|
export interface ResetPasswordInput {
|
|
584
586
|
clientMutationId?: string;
|
|
585
587
|
roleId?: string;
|
|
586
588
|
resetToken?: string;
|
|
587
589
|
newPassword?: string;
|
|
588
590
|
}
|
|
589
|
-
export interface
|
|
591
|
+
export interface CreateApiKeyInput {
|
|
592
|
+
clientMutationId?: string;
|
|
593
|
+
keyName: string;
|
|
594
|
+
accessLevel?: string;
|
|
595
|
+
mfaLevel?: string;
|
|
596
|
+
}
|
|
597
|
+
export interface SignInCrossOriginInput {
|
|
590
598
|
clientMutationId?: string;
|
|
591
599
|
token?: string;
|
|
592
600
|
credentialKind?: string;
|
|
593
601
|
}
|
|
594
|
-
export interface
|
|
602
|
+
export interface SignUpInput {
|
|
595
603
|
clientMutationId?: string;
|
|
596
604
|
email?: string;
|
|
597
605
|
password?: string;
|
|
@@ -599,20 +607,21 @@ export interface SignInInput {
|
|
|
599
607
|
credentialKind?: string;
|
|
600
608
|
csrfToken?: string;
|
|
601
609
|
}
|
|
602
|
-
export interface
|
|
610
|
+
export interface RequestCrossOriginTokenInput {
|
|
603
611
|
clientMutationId?: string;
|
|
604
612
|
email?: string;
|
|
605
613
|
password?: string;
|
|
614
|
+
origin?: ConstructiveInternalTypeOrigin;
|
|
606
615
|
rememberMe?: boolean;
|
|
607
|
-
credentialKind?: string;
|
|
608
|
-
csrfToken?: string;
|
|
609
616
|
}
|
|
610
|
-
export interface
|
|
617
|
+
export interface SignInInput {
|
|
611
618
|
clientMutationId?: string;
|
|
612
619
|
email?: string;
|
|
613
620
|
password?: string;
|
|
614
|
-
origin?: ConstructiveInternalTypeOrigin;
|
|
615
621
|
rememberMe?: boolean;
|
|
622
|
+
credentialKind?: string;
|
|
623
|
+
csrfToken?: string;
|
|
624
|
+
deviceToken?: string;
|
|
616
625
|
}
|
|
617
626
|
export interface ExtendTokenExpiresInput {
|
|
618
627
|
clientMutationId?: string;
|
|
@@ -693,22 +702,18 @@ export interface PhoneNumberInput {
|
|
|
693
702
|
createdAt?: string;
|
|
694
703
|
updatedAt?: string;
|
|
695
704
|
}
|
|
696
|
-
export interface
|
|
705
|
+
export interface CreateUserConnectedAccountInput {
|
|
697
706
|
clientMutationId?: string;
|
|
698
|
-
/** The `
|
|
699
|
-
|
|
707
|
+
/** The `UserConnectedAccount` to be created by this mutation. */
|
|
708
|
+
userConnectedAccount: UserConnectedAccountInput;
|
|
700
709
|
}
|
|
701
|
-
/** An input for mutations affecting `
|
|
702
|
-
export interface
|
|
710
|
+
/** An input for mutations affecting `UserConnectedAccount` */
|
|
711
|
+
export interface UserConnectedAccountInput {
|
|
703
712
|
id?: string;
|
|
704
713
|
ownerId?: string;
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
identifier: string;
|
|
709
|
-
/** Additional profile details extracted from this login method */
|
|
710
|
-
details: unknown;
|
|
711
|
-
/** Whether this connected account has been verified */
|
|
714
|
+
service?: string;
|
|
715
|
+
identifier?: string;
|
|
716
|
+
details?: unknown;
|
|
712
717
|
isVerified?: boolean;
|
|
713
718
|
createdAt?: string;
|
|
714
719
|
updatedAt?: string;
|
|
@@ -820,27 +825,6 @@ export interface PhoneNumberPatch {
|
|
|
820
825
|
createdAt?: string;
|
|
821
826
|
updatedAt?: string;
|
|
822
827
|
}
|
|
823
|
-
export interface UpdateConnectedAccountInput {
|
|
824
|
-
clientMutationId?: string;
|
|
825
|
-
id: string;
|
|
826
|
-
/** An object where the defined keys will be set on the `ConnectedAccount` being updated. */
|
|
827
|
-
connectedAccountPatch: ConnectedAccountPatch;
|
|
828
|
-
}
|
|
829
|
-
/** Represents an update to a `ConnectedAccount`. Fields that are set will be updated. */
|
|
830
|
-
export interface ConnectedAccountPatch {
|
|
831
|
-
id?: string;
|
|
832
|
-
ownerId?: string;
|
|
833
|
-
/** The service used, e.g. `twitter` or `github`. */
|
|
834
|
-
service?: string;
|
|
835
|
-
/** A unique identifier for the user within the service */
|
|
836
|
-
identifier?: string;
|
|
837
|
-
/** Additional profile details extracted from this login method */
|
|
838
|
-
details?: unknown;
|
|
839
|
-
/** Whether this connected account has been verified */
|
|
840
|
-
isVerified?: boolean;
|
|
841
|
-
createdAt?: string;
|
|
842
|
-
updatedAt?: string;
|
|
843
|
-
}
|
|
844
828
|
export interface UpdateAuditLogInput {
|
|
845
829
|
clientMutationId?: string;
|
|
846
830
|
id: string;
|
|
@@ -914,10 +898,6 @@ export interface DeletePhoneNumberInput {
|
|
|
914
898
|
clientMutationId?: string;
|
|
915
899
|
id: string;
|
|
916
900
|
}
|
|
917
|
-
export interface DeleteConnectedAccountInput {
|
|
918
|
-
clientMutationId?: string;
|
|
919
|
-
id: string;
|
|
920
|
-
}
|
|
921
901
|
export interface DeleteAuditLogInput {
|
|
922
902
|
clientMutationId?: string;
|
|
923
903
|
id: string;
|
|
@@ -971,10 +951,10 @@ export interface PhoneNumberConnection {
|
|
|
971
951
|
pageInfo: PageInfo;
|
|
972
952
|
totalCount: number;
|
|
973
953
|
}
|
|
974
|
-
/** A connection to a list of `
|
|
975
|
-
export interface
|
|
976
|
-
nodes:
|
|
977
|
-
edges:
|
|
954
|
+
/** A connection to a list of `UserConnectedAccount` values. */
|
|
955
|
+
export interface UserConnectedAccountConnection {
|
|
956
|
+
nodes: UserConnectedAccount[];
|
|
957
|
+
edges: UserConnectedAccountEdge[];
|
|
978
958
|
pageInfo: PageInfo;
|
|
979
959
|
totalCount: number;
|
|
980
960
|
}
|
|
@@ -1013,6 +993,18 @@ export interface SendAccountDeletionEmailPayload {
|
|
|
1013
993
|
export interface CheckPasswordPayload {
|
|
1014
994
|
clientMutationId?: string | null;
|
|
1015
995
|
}
|
|
996
|
+
export interface DisconnectAccountPayload {
|
|
997
|
+
clientMutationId?: string | null;
|
|
998
|
+
result?: boolean | null;
|
|
999
|
+
}
|
|
1000
|
+
export interface RevokeApiKeyPayload {
|
|
1001
|
+
clientMutationId?: string | null;
|
|
1002
|
+
result?: boolean | null;
|
|
1003
|
+
}
|
|
1004
|
+
export interface RevokeSessionPayload {
|
|
1005
|
+
clientMutationId?: string | null;
|
|
1006
|
+
result?: boolean | null;
|
|
1007
|
+
}
|
|
1016
1008
|
export interface VerifyPasswordPayload {
|
|
1017
1009
|
clientMutationId?: string | null;
|
|
1018
1010
|
result?: boolean | null;
|
|
@@ -1033,26 +1025,34 @@ export interface VerifyEmailPayload {
|
|
|
1033
1025
|
clientMutationId?: string | null;
|
|
1034
1026
|
result?: boolean | null;
|
|
1035
1027
|
}
|
|
1028
|
+
export interface ProvisionNewUserPayload {
|
|
1029
|
+
clientMutationId?: string | null;
|
|
1030
|
+
result?: string | null;
|
|
1031
|
+
}
|
|
1036
1032
|
export interface ResetPasswordPayload {
|
|
1037
1033
|
clientMutationId?: string | null;
|
|
1038
1034
|
result?: boolean | null;
|
|
1039
1035
|
}
|
|
1040
|
-
export interface
|
|
1036
|
+
export interface CreateApiKeyPayload {
|
|
1041
1037
|
clientMutationId?: string | null;
|
|
1042
|
-
result?:
|
|
1038
|
+
result?: CreateApiKeyRecord | null;
|
|
1043
1039
|
}
|
|
1044
|
-
export interface
|
|
1040
|
+
export interface SignInCrossOriginPayload {
|
|
1045
1041
|
clientMutationId?: string | null;
|
|
1046
|
-
result?:
|
|
1042
|
+
result?: SignInCrossOriginRecord | null;
|
|
1047
1043
|
}
|
|
1048
1044
|
export interface SignUpPayload {
|
|
1049
1045
|
clientMutationId?: string | null;
|
|
1050
1046
|
result?: SignUpRecord | null;
|
|
1051
1047
|
}
|
|
1052
|
-
export interface
|
|
1048
|
+
export interface RequestCrossOriginTokenPayload {
|
|
1053
1049
|
clientMutationId?: string | null;
|
|
1054
1050
|
result?: string | null;
|
|
1055
1051
|
}
|
|
1052
|
+
export interface SignInPayload {
|
|
1053
|
+
clientMutationId?: string | null;
|
|
1054
|
+
result?: SignInRecord | null;
|
|
1055
|
+
}
|
|
1056
1056
|
export interface ExtendTokenExpiresPayload {
|
|
1057
1057
|
clientMutationId?: string | null;
|
|
1058
1058
|
result?: ExtendTokenExpiresRecord[] | null;
|
|
@@ -1082,11 +1082,10 @@ export interface CreatePhoneNumberPayload {
|
|
|
1082
1082
|
phoneNumber?: PhoneNumber | null;
|
|
1083
1083
|
phoneNumberEdge?: PhoneNumberEdge | null;
|
|
1084
1084
|
}
|
|
1085
|
-
export interface
|
|
1085
|
+
export interface CreateUserConnectedAccountPayload {
|
|
1086
1086
|
clientMutationId?: string | null;
|
|
1087
|
-
/** The `
|
|
1088
|
-
|
|
1089
|
-
connectedAccountEdge?: ConnectedAccountEdge | null;
|
|
1087
|
+
/** The `UserConnectedAccount` that was created by this mutation. */
|
|
1088
|
+
userConnectedAccount?: UserConnectedAccount | null;
|
|
1090
1089
|
}
|
|
1091
1090
|
export interface CreateAuditLogPayload {
|
|
1092
1091
|
clientMutationId?: string | null;
|
|
@@ -1124,12 +1123,6 @@ export interface UpdatePhoneNumberPayload {
|
|
|
1124
1123
|
phoneNumber?: PhoneNumber | null;
|
|
1125
1124
|
phoneNumberEdge?: PhoneNumberEdge | null;
|
|
1126
1125
|
}
|
|
1127
|
-
export interface UpdateConnectedAccountPayload {
|
|
1128
|
-
clientMutationId?: string | null;
|
|
1129
|
-
/** The `ConnectedAccount` that was updated by this mutation. */
|
|
1130
|
-
connectedAccount?: ConnectedAccount | null;
|
|
1131
|
-
connectedAccountEdge?: ConnectedAccountEdge | null;
|
|
1132
|
-
}
|
|
1133
1126
|
export interface UpdateAuditLogPayload {
|
|
1134
1127
|
clientMutationId?: string | null;
|
|
1135
1128
|
/** The `AuditLog` that was updated by this mutation. */
|
|
@@ -1166,12 +1159,6 @@ export interface DeletePhoneNumberPayload {
|
|
|
1166
1159
|
phoneNumber?: PhoneNumber | null;
|
|
1167
1160
|
phoneNumberEdge?: PhoneNumberEdge | null;
|
|
1168
1161
|
}
|
|
1169
|
-
export interface DeleteConnectedAccountPayload {
|
|
1170
|
-
clientMutationId?: string | null;
|
|
1171
|
-
/** The `ConnectedAccount` that was deleted by this mutation. */
|
|
1172
|
-
connectedAccount?: ConnectedAccount | null;
|
|
1173
|
-
connectedAccountEdge?: ConnectedAccountEdge | null;
|
|
1174
|
-
}
|
|
1175
1162
|
export interface DeleteAuditLogPayload {
|
|
1176
1163
|
clientMutationId?: string | null;
|
|
1177
1164
|
/** The `AuditLog` that was deleted by this mutation. */
|
|
@@ -1253,11 +1240,11 @@ export interface PhoneNumberEdge {
|
|
|
1253
1240
|
/** The `PhoneNumber` at the end of the edge. */
|
|
1254
1241
|
node?: PhoneNumber | null;
|
|
1255
1242
|
}
|
|
1256
|
-
/** A `
|
|
1257
|
-
export interface
|
|
1243
|
+
/** A `UserConnectedAccount` edge in the connection. */
|
|
1244
|
+
export interface UserConnectedAccountEdge {
|
|
1258
1245
|
cursor?: string | null;
|
|
1259
|
-
/** The `
|
|
1260
|
-
node?:
|
|
1246
|
+
/** The `UserConnectedAccount` at the end of the edge. */
|
|
1247
|
+
node?: UserConnectedAccount | null;
|
|
1261
1248
|
}
|
|
1262
1249
|
/** A `AuditLog` edge in the connection. */
|
|
1263
1250
|
export interface AuditLogEdge {
|
|
@@ -1291,7 +1278,11 @@ export interface MetaTable {
|
|
|
1291
1278
|
inflection: MetaInflection;
|
|
1292
1279
|
query: MetaQuery;
|
|
1293
1280
|
}
|
|
1294
|
-
export interface
|
|
1281
|
+
export interface CreateApiKeyRecord {
|
|
1282
|
+
apiKey?: string | null;
|
|
1283
|
+
keyId?: string | null;
|
|
1284
|
+
}
|
|
1285
|
+
export interface SignInCrossOriginRecord {
|
|
1295
1286
|
id?: string | null;
|
|
1296
1287
|
userId?: string | null;
|
|
1297
1288
|
accessToken?: string | null;
|
|
@@ -1299,7 +1290,7 @@ export interface SignInOneTimeTokenRecord {
|
|
|
1299
1290
|
isVerified?: boolean | null;
|
|
1300
1291
|
totpEnabled?: boolean | null;
|
|
1301
1292
|
}
|
|
1302
|
-
export interface
|
|
1293
|
+
export interface SignUpRecord {
|
|
1303
1294
|
id?: string | null;
|
|
1304
1295
|
userId?: string | null;
|
|
1305
1296
|
accessToken?: string | null;
|
|
@@ -1307,13 +1298,15 @@ export interface SignInRecord {
|
|
|
1307
1298
|
isVerified?: boolean | null;
|
|
1308
1299
|
totpEnabled?: boolean | null;
|
|
1309
1300
|
}
|
|
1310
|
-
export interface
|
|
1301
|
+
export interface SignInRecord {
|
|
1311
1302
|
id?: string | null;
|
|
1312
1303
|
userId?: string | null;
|
|
1313
1304
|
accessToken?: string | null;
|
|
1314
1305
|
accessTokenExpiresAt?: string | null;
|
|
1315
1306
|
isVerified?: boolean | null;
|
|
1316
1307
|
totpEnabled?: boolean | null;
|
|
1308
|
+
mfaRequired?: boolean | null;
|
|
1309
|
+
mfaChallengeToken?: string | null;
|
|
1317
1310
|
}
|
|
1318
1311
|
export interface ExtendTokenExpiresRecord {
|
|
1319
1312
|
id?: string | null;
|
package/esm/auth/types.d.ts
CHANGED
|
@@ -34,16 +34,6 @@ export interface CryptoAddress {
|
|
|
34
34
|
createdAt: string | null;
|
|
35
35
|
updatedAt: string | null;
|
|
36
36
|
}
|
|
37
|
-
export interface ConnectedAccount {
|
|
38
|
-
id: string | null;
|
|
39
|
-
ownerId: string | null;
|
|
40
|
-
service: string | null;
|
|
41
|
-
identifier: string | null;
|
|
42
|
-
details: unknown | null;
|
|
43
|
-
isVerified: boolean | null;
|
|
44
|
-
createdAt: string | null;
|
|
45
|
-
updatedAt: string | null;
|
|
46
|
-
}
|
|
47
37
|
export interface AuditLog {
|
|
48
38
|
id: string | null;
|
|
49
39
|
event: string | null;
|
|
@@ -58,6 +48,16 @@ export interface RoleType {
|
|
|
58
48
|
id: number | null;
|
|
59
49
|
name: string | null;
|
|
60
50
|
}
|
|
51
|
+
export interface UserConnectedAccount {
|
|
52
|
+
id: string | null;
|
|
53
|
+
ownerId: string | null;
|
|
54
|
+
service: string | null;
|
|
55
|
+
identifier: string | null;
|
|
56
|
+
details: unknown | null;
|
|
57
|
+
isVerified: boolean | null;
|
|
58
|
+
createdAt: string | null;
|
|
59
|
+
updatedAt: string | null;
|
|
60
|
+
}
|
|
61
61
|
export interface User {
|
|
62
62
|
id: string | null;
|
|
63
63
|
username: string | null;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, SpatialRelation, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, SecureTableProvision, RelationProvision, SessionSecretsModule, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, BlueprintConstruction, StorageModule, EntityTypeProvision, WebauthnCredentialsModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgMemberProfile, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, AppInvite, AppClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, AppPermissionDefault, Ref, Store, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, DevicesModule, UserConnectedAccount, AppMembershipDefault, Commit, RateLimitsModule, MembershipType, OrgMembershipDefault, RlsModule, SqlAction, User, AstMigration, AppMembership, HierarchyModule
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, SpatialRelation, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, SecureTableProvision, RelationProvision, SessionSecretsModule, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, BlueprintConstruction, StorageModule, EntityTypeProvision, WebauthnCredentialsModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgMemberProfile, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, AppInvite, AppClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, AppPermissionDefault, Ref, Store, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, DevicesModule, UserConnectedAccount, AppMembershipDefault, Commit, RateLimitsModule, MembershipType, OrgMembershipDefault, RlsModule, SqlAction, User, AstMigration, AppMembership, HierarchyModule
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -84,6 +84,11 @@ export declare const invalidate: {
|
|
|
84
84
|
/** Invalidate field list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
85
85
|
/** Invalidate a specific field */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
86
86
|
};
|
|
87
|
+
/** Invalidate spatialRelation queries */ readonly spatialRelation: {
|
|
88
|
+
/** Invalidate all spatialRelation queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
89
|
+
/** Invalidate spatialRelation list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
90
|
+
/** Invalidate a specific spatialRelation */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
91
|
+
};
|
|
87
92
|
/** Invalidate foreignKeyConstraint queries */ readonly foreignKeyConstraint: {
|
|
88
93
|
/** Invalidate all foreignKeyConstraint queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
89
94
|
/** Invalidate foreignKeyConstraint list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -149,11 +154,6 @@ export declare const invalidate: {
|
|
|
149
154
|
/** Invalidate embeddingChunk list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
150
155
|
/** Invalidate a specific embeddingChunk */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
151
156
|
};
|
|
152
|
-
/** Invalidate tableTemplateModule queries */ readonly tableTemplateModule: {
|
|
153
|
-
/** Invalidate all tableTemplateModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
154
|
-
/** Invalidate tableTemplateModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
155
|
-
/** Invalidate a specific tableTemplateModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
156
|
-
};
|
|
157
157
|
/** Invalidate secureTableProvision queries */ readonly secureTableProvision: {
|
|
158
158
|
/** Invalidate all secureTableProvision queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
159
159
|
/** Invalidate secureTableProvision list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -164,6 +164,11 @@ export declare const invalidate: {
|
|
|
164
164
|
/** Invalidate relationProvision list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
165
165
|
/** Invalidate a specific relationProvision */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
166
166
|
};
|
|
167
|
+
/** Invalidate sessionSecretsModule queries */ readonly sessionSecretsModule: {
|
|
168
|
+
/** Invalidate all sessionSecretsModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
169
|
+
/** Invalidate sessionSecretsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
170
|
+
/** Invalidate a specific sessionSecretsModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
171
|
+
};
|
|
167
172
|
/** Invalidate schemaGrant queries */ readonly schemaGrant: {
|
|
168
173
|
/** Invalidate all schemaGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
169
174
|
/** Invalidate schemaGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -349,6 +354,16 @@ export declare const invalidate: {
|
|
|
349
354
|
/** Invalidate storageModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
350
355
|
/** Invalidate a specific storageModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
351
356
|
};
|
|
357
|
+
/** Invalidate entityTypeProvision queries */ readonly entityTypeProvision: {
|
|
358
|
+
/** Invalidate all entityTypeProvision queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
359
|
+
/** Invalidate entityTypeProvision list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
360
|
+
/** Invalidate a specific entityTypeProvision */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
361
|
+
};
|
|
362
|
+
/** Invalidate webauthnCredentialsModule queries */ readonly webauthnCredentialsModule: {
|
|
363
|
+
/** Invalidate all webauthnCredentialsModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
364
|
+
/** Invalidate webauthnCredentialsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
365
|
+
/** Invalidate a specific webauthnCredentialsModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
366
|
+
};
|
|
352
367
|
/** Invalidate databaseProvisionModule queries */ readonly databaseProvisionModule: {
|
|
353
368
|
/** Invalidate all databaseProvisionModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
354
369
|
/** Invalidate databaseProvisionModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -389,6 +404,11 @@ export declare const invalidate: {
|
|
|
389
404
|
/** Invalidate orgOwnerGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
390
405
|
/** Invalidate a specific orgOwnerGrant */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
391
406
|
};
|
|
407
|
+
/** Invalidate orgMemberProfile queries */ readonly orgMemberProfile: {
|
|
408
|
+
/** Invalidate all orgMemberProfile queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
409
|
+
/** Invalidate orgMemberProfile list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
410
|
+
/** Invalidate a specific orgMemberProfile */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
411
|
+
};
|
|
392
412
|
/** Invalidate orgGrant queries */ readonly orgGrant: {
|
|
393
413
|
/** Invalidate all orgGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
394
414
|
/** Invalidate orgGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -449,11 +469,6 @@ export declare const invalidate: {
|
|
|
449
469
|
/** Invalidate cryptoAddress list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
450
470
|
/** Invalidate a specific cryptoAddress */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
451
471
|
};
|
|
452
|
-
/** Invalidate connectedAccount queries */ readonly connectedAccount: {
|
|
453
|
-
/** Invalidate all connectedAccount queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
454
|
-
/** Invalidate connectedAccount list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
455
|
-
/** Invalidate a specific connectedAccount */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
456
|
-
};
|
|
457
472
|
/** Invalidate appInvite queries */ readonly appInvite: {
|
|
458
473
|
/** Invalidate all appInvite queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
459
474
|
/** Invalidate appInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -514,10 +529,15 @@ export declare const invalidate: {
|
|
|
514
529
|
/** Invalidate orgLimitDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
515
530
|
/** Invalidate a specific orgLimitDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
516
531
|
};
|
|
517
|
-
/** Invalidate
|
|
518
|
-
/** Invalidate all
|
|
519
|
-
/** Invalidate
|
|
520
|
-
/** Invalidate a specific
|
|
532
|
+
/** Invalidate devicesModule queries */ readonly devicesModule: {
|
|
533
|
+
/** Invalidate all devicesModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
534
|
+
/** Invalidate devicesModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
535
|
+
/** Invalidate a specific devicesModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
536
|
+
};
|
|
537
|
+
/** Invalidate userConnectedAccount queries */ readonly userConnectedAccount: {
|
|
538
|
+
/** Invalidate all userConnectedAccount queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
539
|
+
/** Invalidate userConnectedAccount list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
540
|
+
/** Invalidate a specific userConnectedAccount */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
521
541
|
};
|
|
522
542
|
/** Invalidate appMembershipDefault queries */ readonly appMembershipDefault: {
|
|
523
543
|
/** Invalidate all appMembershipDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -534,6 +554,11 @@ export declare const invalidate: {
|
|
|
534
554
|
/** Invalidate rateLimitsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
535
555
|
/** Invalidate a specific rateLimitsModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
536
556
|
};
|
|
557
|
+
/** Invalidate membershipType queries */ readonly membershipType: {
|
|
558
|
+
/** Invalidate all membershipType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
559
|
+
/** Invalidate membershipType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
560
|
+
/** Invalidate a specific membershipType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
561
|
+
};
|
|
537
562
|
/** Invalidate orgMembershipDefault queries */ readonly orgMembershipDefault: {
|
|
538
563
|
/** Invalidate all orgMembershipDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
539
564
|
/** Invalidate orgMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -594,6 +619,7 @@ export declare const remove: {
|
|
|
594
619
|
/** Remove table from cache */ readonly table: (queryClient: QueryClient, id: string | number) => void;
|
|
595
620
|
/** Remove checkConstraint from cache */ readonly checkConstraint: (queryClient: QueryClient, id: string | number) => void;
|
|
596
621
|
/** Remove field from cache */ readonly field: (queryClient: QueryClient, id: string | number) => void;
|
|
622
|
+
/** Remove spatialRelation from cache */ readonly spatialRelation: (queryClient: QueryClient, id: string | number) => void;
|
|
597
623
|
/** Remove foreignKeyConstraint from cache */ readonly foreignKeyConstraint: (queryClient: QueryClient, id: string | number) => void;
|
|
598
624
|
/** Remove fullTextSearch from cache */ readonly fullTextSearch: (queryClient: QueryClient, id: string | number) => void;
|
|
599
625
|
/** Remove index from cache */ readonly index: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -607,9 +633,9 @@ export declare const remove: {
|
|
|
607
633
|
/** Remove viewGrant from cache */ readonly viewGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
608
634
|
/** Remove viewRule from cache */ readonly viewRule: (queryClient: QueryClient, id: string | number) => void;
|
|
609
635
|
/** Remove embeddingChunk from cache */ readonly embeddingChunk: (queryClient: QueryClient, id: string | number) => void;
|
|
610
|
-
/** Remove tableTemplateModule from cache */ readonly tableTemplateModule: (queryClient: QueryClient, id: string | number) => void;
|
|
611
636
|
/** Remove secureTableProvision from cache */ readonly secureTableProvision: (queryClient: QueryClient, id: string | number) => void;
|
|
612
637
|
/** Remove relationProvision from cache */ readonly relationProvision: (queryClient: QueryClient, id: string | number) => void;
|
|
638
|
+
/** Remove sessionSecretsModule from cache */ readonly sessionSecretsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
613
639
|
/** Remove schemaGrant from cache */ readonly schemaGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
614
640
|
/** Remove defaultPrivilege from cache */ readonly defaultPrivilege: (queryClient: QueryClient, id: string | number) => void;
|
|
615
641
|
/** Remove enum from cache */ readonly enum: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -647,6 +673,8 @@ export declare const remove: {
|
|
|
647
673
|
/** Remove blueprintTemplate from cache */ readonly blueprintTemplate: (queryClient: QueryClient, id: string | number) => void;
|
|
648
674
|
/** Remove blueprintConstruction from cache */ readonly blueprintConstruction: (queryClient: QueryClient, id: string | number) => void;
|
|
649
675
|
/** Remove storageModule from cache */ readonly storageModule: (queryClient: QueryClient, id: string | number) => void;
|
|
676
|
+
/** Remove entityTypeProvision from cache */ readonly entityTypeProvision: (queryClient: QueryClient, id: string | number) => void;
|
|
677
|
+
/** Remove webauthnCredentialsModule from cache */ readonly webauthnCredentialsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
650
678
|
/** Remove databaseProvisionModule from cache */ readonly databaseProvisionModule: (queryClient: QueryClient, id: string | number) => void;
|
|
651
679
|
/** Remove appAdminGrant from cache */ readonly appAdminGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
652
680
|
/** Remove appOwnerGrant from cache */ readonly appOwnerGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -655,6 +683,7 @@ export declare const remove: {
|
|
|
655
683
|
/** Remove orgMember from cache */ readonly orgMember: (queryClient: QueryClient, id: string | number) => void;
|
|
656
684
|
/** Remove orgAdminGrant from cache */ readonly orgAdminGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
657
685
|
/** Remove orgOwnerGrant from cache */ readonly orgOwnerGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
686
|
+
/** Remove orgMemberProfile from cache */ readonly orgMemberProfile: (queryClient: QueryClient, id: string | number) => void;
|
|
658
687
|
/** Remove orgGrant from cache */ readonly orgGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
659
688
|
/** Remove orgChartEdge from cache */ readonly orgChartEdge: (queryClient: QueryClient, id: string | number) => void;
|
|
660
689
|
/** Remove orgChartEdgeGrant from cache */ readonly orgChartEdgeGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -667,7 +696,6 @@ export declare const remove: {
|
|
|
667
696
|
/** Remove email from cache */ readonly email: (queryClient: QueryClient, id: string | number) => void;
|
|
668
697
|
/** Remove phoneNumber from cache */ readonly phoneNumber: (queryClient: QueryClient, id: string | number) => void;
|
|
669
698
|
/** Remove cryptoAddress from cache */ readonly cryptoAddress: (queryClient: QueryClient, id: string | number) => void;
|
|
670
|
-
/** Remove connectedAccount from cache */ readonly connectedAccount: (queryClient: QueryClient, id: string | number) => void;
|
|
671
699
|
/** Remove appInvite from cache */ readonly appInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
672
700
|
/** Remove appClaimedInvite from cache */ readonly appClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
673
701
|
/** Remove orgInvite from cache */ readonly orgInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -680,10 +708,12 @@ export declare const remove: {
|
|
|
680
708
|
/** Remove migrateFile from cache */ readonly migrateFile: (queryClient: QueryClient, id: string | number) => void;
|
|
681
709
|
/** Remove appLimitDefault from cache */ readonly appLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
682
710
|
/** Remove orgLimitDefault from cache */ readonly orgLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
683
|
-
/** Remove
|
|
711
|
+
/** Remove devicesModule from cache */ readonly devicesModule: (queryClient: QueryClient, id: string | number) => void;
|
|
712
|
+
/** Remove userConnectedAccount from cache */ readonly userConnectedAccount: (queryClient: QueryClient, id: string | number) => void;
|
|
684
713
|
/** Remove appMembershipDefault from cache */ readonly appMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
685
714
|
/** Remove commit from cache */ readonly commit: (queryClient: QueryClient, id: string | number) => void;
|
|
686
715
|
/** Remove rateLimitsModule from cache */ readonly rateLimitsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
716
|
+
/** Remove membershipType from cache */ readonly membershipType: (queryClient: QueryClient, id: string | number) => void;
|
|
687
717
|
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
688
718
|
/** Remove rlsModule from cache */ readonly rlsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
689
719
|
/** Remove sqlAction from cache */ readonly sqlAction: (queryClient: QueryClient, id: string | number) => void;
|