@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
package/auth/schema-types.d.ts
CHANGED
|
@@ -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/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, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitDefault, OrgLimitDefault, OrgAdminGrant, OrgOwnerGrant,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitDefault, OrgLimitDefault, OrgAdminGrant, OrgOwnerGrant, AppLimit, AppAchievement, AppStep, AppClaimedInvite, OrgChartEdgeGrant, OrgLimit, MembershipType, AppGrant, AppMembershipDefault, OrgClaimedInvite, OrgGrant, OrgChartEdge, OrgMembershipDefault, OrgMemberProfile, AppLevel, AppInvite, OrgInvite, AppMembership, OrgMembership
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
package/esm/admin/hooks/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitDefault, OrgLimitDefault, OrgAdminGrant, OrgOwnerGrant,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, OrgMember, AppPermissionDefault, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitDefault, OrgLimitDefault, OrgAdminGrant, OrgOwnerGrant, AppLimit, AppAchievement, AppStep, AppClaimedInvite, OrgChartEdgeGrant, OrgLimit, MembershipType, AppGrant, AppMembershipDefault, OrgClaimedInvite, OrgGrant, OrgChartEdge, OrgMembershipDefault, OrgMemberProfile, AppLevel, AppInvite, OrgInvite, AppMembership, OrgMembership
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -94,11 +94,6 @@ export declare const invalidate: {
|
|
|
94
94
|
/** Invalidate orgOwnerGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
95
95
|
/** Invalidate a specific orgOwnerGrant */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
96
96
|
};
|
|
97
|
-
/** Invalidate membershipType queries */ readonly membershipType: {
|
|
98
|
-
/** Invalidate all membershipType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
99
|
-
/** Invalidate membershipType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
100
|
-
/** Invalidate a specific membershipType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
101
|
-
};
|
|
102
97
|
/** Invalidate appLimit queries */ readonly appLimit: {
|
|
103
98
|
/** Invalidate all appLimit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
104
99
|
/** Invalidate appLimit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -129,6 +124,11 @@ export declare const invalidate: {
|
|
|
129
124
|
/** Invalidate orgLimit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
130
125
|
/** Invalidate a specific orgLimit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
131
126
|
};
|
|
127
|
+
/** Invalidate membershipType queries */ readonly membershipType: {
|
|
128
|
+
/** Invalidate all membershipType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
129
|
+
/** Invalidate membershipType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
130
|
+
/** Invalidate a specific membershipType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
131
|
+
};
|
|
132
132
|
/** Invalidate appGrant queries */ readonly appGrant: {
|
|
133
133
|
/** Invalidate all appGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
134
134
|
/** Invalidate appGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -159,6 +159,11 @@ export declare const invalidate: {
|
|
|
159
159
|
/** Invalidate orgMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
160
160
|
/** Invalidate a specific orgMembershipDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
161
161
|
};
|
|
162
|
+
/** Invalidate orgMemberProfile queries */ readonly orgMemberProfile: {
|
|
163
|
+
/** Invalidate all orgMemberProfile queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
164
|
+
/** Invalidate orgMemberProfile list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
165
|
+
/** Invalidate a specific orgMemberProfile */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
166
|
+
};
|
|
162
167
|
/** Invalidate appLevel queries */ readonly appLevel: {
|
|
163
168
|
/** Invalidate all appLevel queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
164
169
|
/** Invalidate appLevel list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -169,6 +174,11 @@ export declare const invalidate: {
|
|
|
169
174
|
/** Invalidate appInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
170
175
|
/** Invalidate a specific appInvite */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
171
176
|
};
|
|
177
|
+
/** Invalidate orgInvite queries */ readonly orgInvite: {
|
|
178
|
+
/** Invalidate all orgInvite queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
179
|
+
/** Invalidate orgInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
180
|
+
/** Invalidate a specific orgInvite */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
181
|
+
};
|
|
172
182
|
/** Invalidate appMembership queries */ readonly appMembership: {
|
|
173
183
|
/** Invalidate all appMembership queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
174
184
|
/** Invalidate appMembership list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -179,11 +189,6 @@ export declare const invalidate: {
|
|
|
179
189
|
/** Invalidate orgMembership list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
180
190
|
/** Invalidate a specific orgMembership */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
181
191
|
};
|
|
182
|
-
/** Invalidate orgInvite queries */ readonly orgInvite: {
|
|
183
|
-
/** Invalidate all orgInvite queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
184
|
-
/** Invalidate orgInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
185
|
-
/** Invalidate a specific orgInvite */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
186
|
-
};
|
|
187
192
|
};
|
|
188
193
|
/**
|
|
189
194
|
|
|
@@ -211,22 +216,23 @@ export declare const remove: {
|
|
|
211
216
|
/** Remove orgLimitDefault from cache */ readonly orgLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
212
217
|
/** Remove orgAdminGrant from cache */ readonly orgAdminGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
213
218
|
/** Remove orgOwnerGrant from cache */ readonly orgOwnerGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
214
|
-
/** Remove membershipType from cache */ readonly membershipType: (queryClient: QueryClient, id: string | number) => void;
|
|
215
219
|
/** Remove appLimit from cache */ readonly appLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
216
220
|
/** Remove appAchievement from cache */ readonly appAchievement: (queryClient: QueryClient, id: string | number) => void;
|
|
217
221
|
/** Remove appStep from cache */ readonly appStep: (queryClient: QueryClient, id: string | number) => void;
|
|
218
222
|
/** Remove appClaimedInvite from cache */ readonly appClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
219
223
|
/** Remove orgChartEdgeGrant from cache */ readonly orgChartEdgeGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
220
224
|
/** Remove orgLimit from cache */ readonly orgLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
225
|
+
/** Remove membershipType from cache */ readonly membershipType: (queryClient: QueryClient, id: string | number) => void;
|
|
221
226
|
/** Remove appGrant from cache */ readonly appGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
222
227
|
/** Remove appMembershipDefault from cache */ readonly appMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
223
228
|
/** Remove orgClaimedInvite from cache */ readonly orgClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
224
229
|
/** Remove orgGrant from cache */ readonly orgGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
225
230
|
/** Remove orgChartEdge from cache */ readonly orgChartEdge: (queryClient: QueryClient, id: string | number) => void;
|
|
226
231
|
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
232
|
+
/** Remove orgMemberProfile from cache */ readonly orgMemberProfile: (queryClient: QueryClient, id: string | number) => void;
|
|
227
233
|
/** Remove appLevel from cache */ readonly appLevel: (queryClient: QueryClient, id: string | number) => void;
|
|
228
234
|
/** Remove appInvite from cache */ readonly appInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
235
|
+
/** Remove orgInvite from cache */ readonly orgInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
229
236
|
/** Remove appMembership from cache */ readonly appMembership: (queryClient: QueryClient, id: string | number) => void;
|
|
230
237
|
/** Remove orgMembership from cache */ readonly orgMembership: (queryClient: QueryClient, id: string | number) => void;
|
|
231
|
-
/** Remove orgInvite from cache */ readonly orgInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
232
238
|
};
|