@constructive-io/react 0.12.0 → 0.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/hooks/index.d.ts +1 -1
- package/admin/hooks/index.js +1 -1
- package/admin/hooks/invalidation.d.ts +18 -12
- package/admin/hooks/invalidation.js +48 -32
- package/admin/hooks/mutation-keys.d.ts +36 -24
- package/admin/hooks/mutation-keys.js +22 -15
- package/admin/hooks/mutations/index.d.ts +9 -6
- package/admin/hooks/mutations/index.js +9 -6
- package/admin/hooks/mutations/useCreateOrgMemberProfileMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgMemberProfileMutation.js +34 -0
- package/admin/hooks/mutations/useDeleteOrgMemberProfileMutation.d.ts +38 -0
- package/{public/hooks/mutations/useDeleteConnectedAccountMutation.js → admin/hooks/mutations/useDeleteOrgMemberProfileMutation.js} +7 -7
- package/admin/hooks/mutations/useUpdateOrgMemberProfileMutation.d.ts +40 -0
- package/{auth/hooks/mutations/useUpdateConnectedAccountMutation.js → admin/hooks/mutations/useUpdateOrgMemberProfileMutation.js} +9 -9
- package/admin/hooks/queries/index.d.ts +6 -4
- package/admin/hooks/queries/index.js +6 -4
- package/admin/hooks/queries/useOrgMemberProfileQuery.d.ts +65 -0
- package/{public/hooks/queries/useConnectedAccountQuery.js → admin/hooks/queries/useOrgMemberProfileQuery.js} +14 -14
- package/admin/hooks/queries/useOrgMemberProfilesQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgMemberProfilesQuery.js +38 -0
- package/admin/hooks/query-keys.d.ts +42 -28
- package/admin/hooks/query-keys.js +25 -17
- package/admin/orm/index.d.ts +6 -4
- package/admin/orm/index.js +6 -4
- package/admin/orm/input-types.d.ts +503 -295
- package/admin/orm/models/index.d.ts +3 -2
- package/admin/orm/models/index.js +7 -5
- package/admin/orm/models/orgMemberProfile.d.ts +56 -0
- package/{auth/orm/models/connectedAccount.js → admin/orm/models/orgMemberProfile.js} +26 -26
- package/admin/schema-types.d.ts +449 -288
- package/admin/types.d.ts +40 -22
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +6 -6
- package/auth/hooks/invalidation.js +16 -16
- package/auth/hooks/mutation-keys.d.ts +28 -18
- package/auth/hooks/mutation-keys.js +30 -15
- package/auth/hooks/mutations/index.d.ts +9 -6
- package/auth/hooks/mutations/index.js +9 -6
- package/auth/hooks/mutations/useCreateApiKeyMutation.d.ts +20 -0
- package/auth/hooks/mutations/{useOneTimeTokenMutation.js → useCreateApiKeyMutation.js} +5 -5
- package/auth/hooks/mutations/useCreateUserConnectedAccountMutation.d.ts +34 -0
- package/auth/hooks/mutations/{useCreateConnectedAccountMutation.js → useCreateUserConnectedAccountMutation.js} +6 -6
- package/auth/hooks/mutations/useDisconnectAccountMutation.d.ts +20 -0
- package/auth/hooks/mutations/{useSignInOneTimeTokenMutation.js → useDisconnectAccountMutation.js} +5 -5
- package/auth/hooks/mutations/useProvisionNewUserMutation.d.ts +20 -0
- package/{public/hooks/mutations/useSignInOneTimeTokenMutation.js → auth/hooks/mutations/useProvisionNewUserMutation.js} +5 -5
- package/auth/hooks/mutations/useRequestCrossOriginTokenMutation.d.ts +20 -0
- package/auth/hooks/mutations/useRequestCrossOriginTokenMutation.js +26 -0
- package/auth/hooks/mutations/useRevokeApiKeyMutation.d.ts +20 -0
- package/{public/hooks/mutations/useOneTimeTokenMutation.js → auth/hooks/mutations/useRevokeApiKeyMutation.js} +5 -5
- package/auth/hooks/mutations/useRevokeSessionMutation.d.ts +20 -0
- package/auth/hooks/mutations/useRevokeSessionMutation.js +26 -0
- package/auth/hooks/mutations/useSignInCrossOriginMutation.d.ts +20 -0
- package/auth/hooks/mutations/useSignInCrossOriginMutation.js +26 -0
- package/auth/hooks/queries/index.d.ts +4 -3
- package/auth/hooks/queries/index.js +4 -3
- package/auth/hooks/queries/useRequireStepUpQuery.d.ts +53 -0
- package/auth/hooks/queries/useRequireStepUpQuery.js +53 -0
- package/auth/hooks/queries/useUserConnectedAccountQuery.d.ts +65 -0
- package/auth/hooks/queries/useUserConnectedAccountQuery.js +53 -0
- package/auth/hooks/queries/useUserConnectedAccountsQuery.d.ts +69 -0
- package/auth/hooks/queries/useUserConnectedAccountsQuery.js +38 -0
- package/auth/hooks/query-keys.d.ts +18 -16
- package/auth/hooks/query-keys.js +11 -10
- package/auth/orm/index.d.ts +45 -15
- package/auth/orm/index.js +2 -2
- package/auth/orm/input-types.d.ts +186 -251
- package/auth/orm/input-types.js +0 -1
- package/auth/orm/models/index.d.ts +1 -1
- package/auth/orm/models/index.js +3 -3
- package/auth/orm/models/userConnectedAccount.d.ts +38 -0
- package/auth/orm/models/userConnectedAccount.js +76 -0
- package/auth/orm/mutation/index.d.ts +56 -16
- package/auth/orm/mutation/index.js +78 -18
- package/auth/orm/query/index.d.ts +12 -4
- package/auth/orm/query/index.js +19 -7
- package/auth/schema-types.d.ts +112 -119
- package/auth/types.d.ts +10 -10
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +18 -12
- package/esm/admin/hooks/invalidation.js +49 -33
- package/esm/admin/hooks/mutation-keys.d.ts +36 -24
- package/esm/admin/hooks/mutation-keys.js +21 -14
- package/esm/admin/hooks/mutations/index.d.ts +9 -6
- package/esm/admin/hooks/mutations/index.js +9 -6
- package/esm/admin/hooks/mutations/useCreateOrgMemberProfileMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgMemberProfileMutation.js +31 -0
- package/esm/admin/hooks/mutations/useDeleteOrgMemberProfileMutation.d.ts +38 -0
- package/esm/{public/hooks/mutations/useDeleteConnectedAccountMutation.js → admin/hooks/mutations/useDeleteOrgMemberProfileMutation.js} +8 -8
- package/esm/admin/hooks/mutations/useUpdateOrgMemberProfileMutation.d.ts +40 -0
- package/esm/{public/hooks/mutations/useUpdateConnectedAccountMutation.js → admin/hooks/mutations/useUpdateOrgMemberProfileMutation.js} +10 -10
- package/esm/admin/hooks/queries/index.d.ts +6 -4
- package/esm/admin/hooks/queries/index.js +6 -4
- package/esm/admin/hooks/queries/useOrgMemberProfileQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgMemberProfileQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgMemberProfilesQuery.d.ts +69 -0
- package/esm/{public/hooks/queries/useConnectedAccountsQuery.js → admin/hooks/queries/useOrgMemberProfilesQuery.js} +11 -11
- package/esm/admin/hooks/query-keys.d.ts +42 -28
- package/esm/admin/hooks/query-keys.js +24 -16
- package/esm/admin/orm/index.d.ts +6 -4
- package/esm/admin/orm/index.js +6 -4
- package/esm/admin/orm/input-types.d.ts +503 -295
- package/esm/admin/orm/models/index.d.ts +3 -2
- package/esm/admin/orm/models/index.js +3 -2
- package/esm/admin/orm/models/orgMemberProfile.d.ts +56 -0
- package/esm/{auth/orm/models/connectedAccount.js → admin/orm/models/orgMemberProfile.js} +24 -24
- package/esm/admin/schema-types.d.ts +449 -288
- package/esm/admin/types.d.ts +40 -22
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +6 -6
- package/esm/auth/hooks/invalidation.js +17 -17
- package/esm/auth/hooks/mutation-keys.d.ts +28 -18
- package/esm/auth/hooks/mutation-keys.js +29 -14
- package/esm/auth/hooks/mutations/index.d.ts +9 -6
- package/esm/auth/hooks/mutations/index.js +9 -6
- package/esm/auth/hooks/mutations/useCreateApiKeyMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/{useOneTimeTokenMutation.js → useCreateApiKeyMutation.js} +4 -4
- package/esm/auth/hooks/mutations/useCreateUserConnectedAccountMutation.d.ts +34 -0
- package/esm/{public/hooks/mutations/useCreateConnectedAccountMutation.js → auth/hooks/mutations/useCreateUserConnectedAccountMutation.js} +7 -7
- package/esm/auth/hooks/mutations/useDisconnectAccountMutation.d.ts +20 -0
- package/esm/{public/hooks/mutations/useSignInOneTimeTokenMutation.js → auth/hooks/mutations/useDisconnectAccountMutation.js} +4 -4
- package/esm/auth/hooks/mutations/useProvisionNewUserMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/{useSignInOneTimeTokenMutation.js → useProvisionNewUserMutation.js} +4 -4
- package/esm/auth/hooks/mutations/useRequestCrossOriginTokenMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useRequestCrossOriginTokenMutation.js +23 -0
- package/esm/auth/hooks/mutations/useRevokeApiKeyMutation.d.ts +20 -0
- package/esm/{public/hooks/mutations/useOneTimeTokenMutation.js → auth/hooks/mutations/useRevokeApiKeyMutation.js} +4 -4
- package/esm/auth/hooks/mutations/useRevokeSessionMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useRevokeSessionMutation.js +23 -0
- package/esm/auth/hooks/mutations/useSignInCrossOriginMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useSignInCrossOriginMutation.js +23 -0
- package/esm/auth/hooks/queries/index.d.ts +4 -3
- package/esm/auth/hooks/queries/index.js +4 -3
- package/esm/auth/hooks/queries/useRequireStepUpQuery.d.ts +53 -0
- package/esm/auth/hooks/queries/useRequireStepUpQuery.js +47 -0
- package/esm/auth/hooks/queries/useUserConnectedAccountQuery.d.ts +65 -0
- package/esm/{public/hooks/queries/useTableTemplateModuleQuery.js → auth/hooks/queries/useUserConnectedAccountQuery.js} +11 -11
- package/esm/auth/hooks/queries/useUserConnectedAccountsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/useUserConnectedAccountsQuery.js +32 -0
- package/esm/auth/hooks/query-keys.d.ts +18 -16
- package/esm/auth/hooks/query-keys.js +10 -9
- package/esm/auth/orm/index.d.ts +45 -15
- package/esm/auth/orm/index.js +2 -2
- package/esm/auth/orm/input-types.d.ts +186 -251
- package/esm/auth/orm/input-types.js +0 -1
- package/esm/auth/orm/models/index.d.ts +1 -1
- package/esm/auth/orm/models/index.js +1 -1
- package/esm/auth/orm/models/userConnectedAccount.d.ts +38 -0
- package/esm/auth/orm/models/userConnectedAccount.js +72 -0
- package/esm/auth/orm/mutation/index.d.ts +56 -16
- package/esm/auth/orm/mutation/index.js +78 -18
- package/esm/auth/orm/query/index.d.ts +12 -4
- package/esm/auth/orm/query/index.js +19 -7
- package/esm/auth/schema-types.d.ts +112 -119
- package/esm/auth/types.d.ts +10 -10
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +47 -17
- package/esm/public/hooks/invalidation.js +122 -42
- package/esm/public/hooks/mutation-keys.d.ts +112 -40
- package/esm/public/hooks/mutation-keys.js +83 -27
- package/esm/public/hooks/mutations/index.d.ts +31 -12
- package/esm/public/hooks/mutations/index.js +31 -12
- package/esm/public/hooks/mutations/useCreateApiKeyMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useCreateApiKeyMutation.js +23 -0
- package/esm/public/hooks/mutations/useCreateDevicesModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateTableTemplateModuleMutation.js → useCreateDevicesModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateEntityTypeProvisionMutation.d.ts +48 -0
- package/esm/public/hooks/mutations/useCreateEntityTypeProvisionMutation.js +38 -0
- package/esm/public/hooks/mutations/useCreateOrgMemberProfileMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgMemberProfileMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateSessionSecretsModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateSessionSecretsModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateSpatialRelationMutation.d.ts +34 -0
- package/esm/{auth/hooks/mutations/useCreateConnectedAccountMutation.js → public/hooks/mutations/useCreateSpatialRelationMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateUserConnectedAccountMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateUserConnectedAccountMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useDeleteDevicesModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteTableTemplateModuleMutation.js → useDeleteDevicesModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteEntityTypeProvisionMutation.d.ts +52 -0
- package/esm/public/hooks/mutations/useDeleteEntityTypeProvisionMutation.js +43 -0
- package/esm/public/hooks/mutations/useDeleteOrgMemberProfileMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteOrgMemberProfileMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteSessionSecretsModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteSessionSecretsModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteSpatialRelationMutation.d.ts +38 -0
- package/esm/{auth/hooks/mutations/useDeleteConnectedAccountMutation.js → public/hooks/mutations/useDeleteSpatialRelationMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDisconnectAccountMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useDisconnectAccountMutation.js +23 -0
- package/esm/public/hooks/mutations/useProvisionNewUserMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useProvisionNewUserMutation.js +23 -0
- package/esm/public/hooks/mutations/useProvisionSpatialRelationMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useProvisionSpatialRelationMutation.js +23 -0
- package/esm/public/hooks/mutations/useRequestCrossOriginTokenMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useRequestCrossOriginTokenMutation.js +23 -0
- package/esm/public/hooks/mutations/useRevokeApiKeyMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useRevokeApiKeyMutation.js +23 -0
- package/esm/public/hooks/mutations/useRevokeSessionMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useRevokeSessionMutation.js +23 -0
- package/esm/public/hooks/mutations/useSignInCrossOriginMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useSignInCrossOriginMutation.js +23 -0
- package/esm/public/hooks/mutations/useUpdateDevicesModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateTableTemplateModuleMutation.js → useUpdateDevicesModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateEntityTypeProvisionMutation.d.ts +54 -0
- package/esm/public/hooks/mutations/useUpdateEntityTypeProvisionMutation.js +44 -0
- package/esm/public/hooks/mutations/useUpdateOrgMemberProfileMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateOrgMemberProfileMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateSessionSecretsModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateSessionSecretsModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateSpatialRelationMutation.d.ts +40 -0
- package/esm/{auth/hooks/mutations/useUpdateConnectedAccountMutation.js → public/hooks/mutations/useUpdateSpatialRelationMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.js +37 -0
- package/esm/public/hooks/queries/index.d.ts +19 -7
- package/esm/public/hooks/queries/index.js +19 -7
- package/esm/public/hooks/queries/useDevicesModuleQuery.d.ts +65 -0
- package/esm/{auth/hooks/queries/useConnectedAccountQuery.js → public/hooks/queries/useDevicesModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useDevicesModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useDevicesModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useEntityTypeProvisionQuery.d.ts +93 -0
- package/esm/public/hooks/queries/useEntityTypeProvisionQuery.js +54 -0
- package/esm/public/hooks/queries/useEntityTypeProvisionsQuery.d.ts +97 -0
- package/esm/public/hooks/queries/useEntityTypeProvisionsQuery.js +39 -0
- package/esm/public/hooks/queries/useOrgMemberProfileQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useOrgMemberProfileQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgMemberProfilesQuery.d.ts +69 -0
- package/esm/{auth/hooks/queries/useConnectedAccountsQuery.js → public/hooks/queries/useOrgMemberProfilesQuery.js} +11 -11
- package/esm/public/hooks/queries/useRequireStepUpQuery.d.ts +53 -0
- package/esm/public/hooks/queries/useRequireStepUpQuery.js +47 -0
- package/esm/public/hooks/queries/useResolveBlueprintFieldQuery.d.ts +53 -0
- package/esm/public/hooks/queries/useResolveBlueprintFieldQuery.js +47 -0
- package/esm/public/hooks/queries/useSessionSecretsModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useSessionSecretsModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useSessionSecretsModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useSessionSecretsModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useSpatialRelationQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useConnectedAccountQuery.js → useSpatialRelationQuery.js} +11 -11
- package/esm/public/hooks/queries/useSpatialRelationsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useSpatialRelationsQuery.js +32 -0
- package/esm/public/hooks/queries/useUserConnectedAccountQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useUserConnectedAccountQuery.js +47 -0
- package/esm/public/hooks/queries/useUserConnectedAccountsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useUserConnectedAccountsQuery.js +32 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsModulesQuery.js +32 -0
- package/esm/public/hooks/query-keys.d.ts +116 -42
- package/esm/public/hooks/query-keys.js +66 -24
- package/esm/public/orm/index.d.ts +69 -19
- package/esm/public/orm/index.js +16 -6
- package/esm/public/orm/input-types.d.ts +2047 -640
- package/esm/public/orm/input-types.js +15 -6
- package/esm/public/orm/models/devicesModule.d.ts +56 -0
- package/esm/public/orm/models/devicesModule.js +96 -0
- package/esm/public/orm/models/entityTypeProvision.d.ts +56 -0
- package/esm/public/orm/models/{tableTemplateModule.js → entityTypeProvision.js} +24 -24
- package/esm/public/orm/models/index.d.ts +8 -3
- package/esm/public/orm/models/index.js +8 -3
- package/esm/public/orm/models/orgMemberProfile.d.ts +56 -0
- package/esm/public/orm/models/{connectedAccount.js → orgMemberProfile.js} +24 -24
- package/esm/public/orm/models/sessionSecretsModule.d.ts +56 -0
- package/esm/public/orm/models/sessionSecretsModule.js +96 -0
- package/esm/public/orm/models/spatialRelation.d.ts +56 -0
- package/esm/public/orm/models/spatialRelation.js +96 -0
- package/esm/public/orm/models/userConnectedAccount.d.ts +38 -0
- package/esm/public/orm/models/userConnectedAccount.js +72 -0
- package/esm/public/orm/models/webauthnCredentialsModule.d.ts +56 -0
- package/esm/public/orm/models/webauthnCredentialsModule.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +72 -20
- package/esm/public/orm/mutation/index.js +96 -24
- package/esm/public/orm/query/index.d.ts +24 -2
- package/esm/public/orm/query/index.js +36 -4
- package/esm/public/schema-types.d.ts +1550 -611
- package/esm/public/types.d.ts +98 -28
- package/package.json +2 -2
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +47 -17
- package/public/hooks/invalidation.js +121 -41
- package/public/hooks/mutation-keys.d.ts +112 -40
- package/public/hooks/mutation-keys.js +86 -30
- package/public/hooks/mutations/index.d.ts +31 -12
- package/public/hooks/mutations/index.js +31 -12
- package/public/hooks/mutations/useCreateApiKeyMutation.d.ts +20 -0
- package/public/hooks/mutations/useCreateApiKeyMutation.js +26 -0
- package/public/hooks/mutations/useCreateDevicesModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateTableTemplateModuleMutation.js → useCreateDevicesModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateEntityTypeProvisionMutation.d.ts +48 -0
- package/public/hooks/mutations/useCreateEntityTypeProvisionMutation.js +41 -0
- package/public/hooks/mutations/useCreateOrgMemberProfileMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgMemberProfileMutation.js +34 -0
- package/public/hooks/mutations/useCreateSessionSecretsModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateSessionSecretsModuleMutation.js +34 -0
- package/public/hooks/mutations/useCreateSpatialRelationMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateConnectedAccountMutation.js → useCreateSpatialRelationMutation.js} +6 -6
- package/public/hooks/mutations/useCreateUserConnectedAccountMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateUserConnectedAccountMutation.js +34 -0
- package/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.js +34 -0
- package/public/hooks/mutations/useDeleteDevicesModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteTableTemplateModuleMutation.js → useDeleteDevicesModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteEntityTypeProvisionMutation.d.ts +52 -0
- package/public/hooks/mutations/useDeleteEntityTypeProvisionMutation.js +46 -0
- package/public/hooks/mutations/useDeleteOrgMemberProfileMutation.d.ts +38 -0
- package/{auth/hooks/mutations/useDeleteConnectedAccountMutation.js → public/hooks/mutations/useDeleteOrgMemberProfileMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteSessionSecretsModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteSessionSecretsModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteSpatialRelationMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteSpatialRelationMutation.js +39 -0
- package/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.js +39 -0
- package/public/hooks/mutations/useDisconnectAccountMutation.d.ts +20 -0
- package/public/hooks/mutations/useDisconnectAccountMutation.js +26 -0
- package/public/hooks/mutations/useProvisionNewUserMutation.d.ts +20 -0
- package/public/hooks/mutations/useProvisionNewUserMutation.js +26 -0
- package/public/hooks/mutations/useProvisionSpatialRelationMutation.d.ts +20 -0
- package/public/hooks/mutations/useProvisionSpatialRelationMutation.js +26 -0
- package/public/hooks/mutations/useRequestCrossOriginTokenMutation.d.ts +20 -0
- package/public/hooks/mutations/useRequestCrossOriginTokenMutation.js +26 -0
- package/public/hooks/mutations/useRevokeApiKeyMutation.d.ts +20 -0
- package/public/hooks/mutations/useRevokeApiKeyMutation.js +26 -0
- package/public/hooks/mutations/useRevokeSessionMutation.d.ts +20 -0
- package/public/hooks/mutations/useRevokeSessionMutation.js +26 -0
- package/public/hooks/mutations/useSignInCrossOriginMutation.d.ts +20 -0
- package/public/hooks/mutations/useSignInCrossOriginMutation.js +26 -0
- package/public/hooks/mutations/useUpdateDevicesModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateTableTemplateModuleMutation.js → useUpdateDevicesModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateEntityTypeProvisionMutation.d.ts +54 -0
- package/public/hooks/mutations/useUpdateEntityTypeProvisionMutation.js +47 -0
- package/public/hooks/mutations/useUpdateOrgMemberProfileMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateConnectedAccountMutation.js → useUpdateOrgMemberProfileMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateSessionSecretsModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateSessionSecretsModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateSpatialRelationMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateSpatialRelationMutation.js +40 -0
- package/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.js +40 -0
- package/public/hooks/queries/index.d.ts +19 -7
- package/public/hooks/queries/index.js +19 -7
- package/public/hooks/queries/useDevicesModuleQuery.d.ts +65 -0
- package/public/hooks/queries/{useTableTemplateModuleQuery.js → useDevicesModuleQuery.js} +14 -14
- package/public/hooks/queries/useDevicesModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useDevicesModulesQuery.js +38 -0
- package/public/hooks/queries/useEntityTypeProvisionQuery.d.ts +93 -0
- package/public/hooks/queries/useEntityTypeProvisionQuery.js +60 -0
- package/public/hooks/queries/useEntityTypeProvisionsQuery.d.ts +97 -0
- package/public/hooks/queries/useEntityTypeProvisionsQuery.js +45 -0
- package/public/hooks/queries/useOrgMemberProfileQuery.d.ts +65 -0
- package/{auth/hooks/queries/useConnectedAccountQuery.js → public/hooks/queries/useOrgMemberProfileQuery.js} +14 -14
- package/public/hooks/queries/useOrgMemberProfilesQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgMemberProfilesQuery.js +38 -0
- package/public/hooks/queries/useRequireStepUpQuery.d.ts +53 -0
- package/public/hooks/queries/useRequireStepUpQuery.js +53 -0
- package/public/hooks/queries/useResolveBlueprintFieldQuery.d.ts +53 -0
- package/public/hooks/queries/useResolveBlueprintFieldQuery.js +53 -0
- package/public/hooks/queries/useSessionSecretsModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useSessionSecretsModuleQuery.js +53 -0
- package/public/hooks/queries/useSessionSecretsModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useSessionSecretsModulesQuery.js +38 -0
- package/public/hooks/queries/useSpatialRelationQuery.d.ts +65 -0
- package/public/hooks/queries/useSpatialRelationQuery.js +53 -0
- package/public/hooks/queries/useSpatialRelationsQuery.d.ts +69 -0
- package/public/hooks/queries/useSpatialRelationsQuery.js +38 -0
- package/public/hooks/queries/useUserConnectedAccountQuery.d.ts +65 -0
- package/public/hooks/queries/useUserConnectedAccountQuery.js +53 -0
- package/public/hooks/queries/useUserConnectedAccountsQuery.d.ts +69 -0
- package/public/hooks/queries/useUserConnectedAccountsQuery.js +38 -0
- package/public/hooks/queries/useWebauthnCredentialsModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useWebauthnCredentialsModuleQuery.js +53 -0
- package/public/hooks/queries/useWebauthnCredentialsModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useWebauthnCredentialsModulesQuery.js +38 -0
- package/public/hooks/query-keys.d.ts +116 -42
- package/public/hooks/query-keys.js +69 -27
- package/public/orm/index.d.ts +69 -19
- package/public/orm/index.js +16 -6
- package/public/orm/input-types.d.ts +2047 -640
- package/public/orm/input-types.js +15 -6
- package/public/orm/models/devicesModule.d.ts +56 -0
- package/public/orm/models/devicesModule.js +100 -0
- package/public/orm/models/entityTypeProvision.d.ts +56 -0
- package/public/orm/models/{tableTemplateModule.js → entityTypeProvision.js} +26 -26
- package/public/orm/models/index.d.ts +8 -3
- package/public/orm/models/index.js +19 -9
- package/public/orm/models/orgMemberProfile.d.ts +56 -0
- package/public/orm/models/{connectedAccount.js → orgMemberProfile.js} +26 -26
- package/public/orm/models/sessionSecretsModule.d.ts +56 -0
- package/public/orm/models/sessionSecretsModule.js +100 -0
- package/public/orm/models/spatialRelation.d.ts +56 -0
- package/public/orm/models/spatialRelation.js +100 -0
- package/public/orm/models/userConnectedAccount.d.ts +38 -0
- package/public/orm/models/userConnectedAccount.js +76 -0
- package/public/orm/models/webauthnCredentialsModule.d.ts +56 -0
- package/public/orm/models/webauthnCredentialsModule.js +100 -0
- package/public/orm/mutation/index.d.ts +72 -20
- package/public/orm/mutation/index.js +96 -24
- package/public/orm/query/index.d.ts +24 -2
- package/public/orm/query/index.js +36 -4
- package/public/schema-types.d.ts +1550 -611
- package/public/types.d.ts +98 -28
- package/auth/hooks/mutations/useCreateConnectedAccountMutation.d.ts +0 -34
- package/auth/hooks/mutations/useDeleteConnectedAccountMutation.d.ts +0 -38
- package/auth/hooks/mutations/useOneTimeTokenMutation.d.ts +0 -20
- package/auth/hooks/mutations/useSignInOneTimeTokenMutation.d.ts +0 -20
- package/auth/hooks/mutations/useUpdateConnectedAccountMutation.d.ts +0 -40
- package/auth/hooks/queries/useConnectedAccountQuery.d.ts +0 -65
- package/auth/hooks/queries/useConnectedAccountsQuery.d.ts +0 -69
- package/auth/hooks/queries/useConnectedAccountsQuery.js +0 -38
- package/auth/orm/models/connectedAccount.d.ts +0 -56
- package/esm/auth/hooks/mutations/useCreateConnectedAccountMutation.d.ts +0 -34
- package/esm/auth/hooks/mutations/useDeleteConnectedAccountMutation.d.ts +0 -38
- package/esm/auth/hooks/mutations/useOneTimeTokenMutation.d.ts +0 -20
- package/esm/auth/hooks/mutations/useSignInOneTimeTokenMutation.d.ts +0 -20
- package/esm/auth/hooks/mutations/useUpdateConnectedAccountMutation.d.ts +0 -40
- package/esm/auth/hooks/queries/useConnectedAccountQuery.d.ts +0 -65
- package/esm/auth/hooks/queries/useConnectedAccountsQuery.d.ts +0 -69
- package/esm/auth/orm/models/connectedAccount.d.ts +0 -56
- package/esm/public/hooks/mutations/useCreateConnectedAccountMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateTableTemplateModuleMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useDeleteConnectedAccountMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteTableTemplateModuleMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useOneTimeTokenMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useSignInOneTimeTokenMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useUpdateConnectedAccountMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateTableTemplateModuleMutation.d.ts +0 -40
- package/esm/public/hooks/queries/useConnectedAccountQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useConnectedAccountsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useTableTemplateModuleQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useTableTemplateModulesQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useTableTemplateModulesQuery.js +0 -32
- package/esm/public/orm/models/connectedAccount.d.ts +0 -56
- package/esm/public/orm/models/tableTemplateModule.d.ts +0 -56
- package/public/hooks/mutations/useCreateConnectedAccountMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateTableTemplateModuleMutation.d.ts +0 -34
- package/public/hooks/mutations/useDeleteConnectedAccountMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteTableTemplateModuleMutation.d.ts +0 -38
- package/public/hooks/mutations/useOneTimeTokenMutation.d.ts +0 -20
- package/public/hooks/mutations/useSignInOneTimeTokenMutation.d.ts +0 -20
- package/public/hooks/mutations/useUpdateConnectedAccountMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateTableTemplateModuleMutation.d.ts +0 -40
- package/public/hooks/queries/useConnectedAccountQuery.d.ts +0 -65
- package/public/hooks/queries/useConnectedAccountsQuery.d.ts +0 -69
- package/public/hooks/queries/useConnectedAccountsQuery.js +0 -38
- package/public/hooks/queries/useTableTemplateModuleQuery.d.ts +0 -65
- package/public/hooks/queries/useTableTemplateModulesQuery.d.ts +0 -69
- package/public/hooks/queries/useTableTemplateModulesQuery.js +0 -38
- package/public/orm/models/connectedAccount.d.ts +0 -56
- package/public/orm/models/tableTemplateModule.d.ts +0 -56
|
@@ -273,21 +273,6 @@ export interface CryptoAddress {
|
|
|
273
273
|
createdAt?: string | null;
|
|
274
274
|
updatedAt?: string | null;
|
|
275
275
|
}
|
|
276
|
-
/** OAuth and social login connections linking external service accounts to users */
|
|
277
|
-
export interface ConnectedAccount {
|
|
278
|
-
id: string;
|
|
279
|
-
ownerId?: string | null;
|
|
280
|
-
/** The service used, e.g. `twitter` or `github`. */
|
|
281
|
-
service?: string | null;
|
|
282
|
-
/** A unique identifier for the user within the service */
|
|
283
|
-
identifier?: string | null;
|
|
284
|
-
/** Additional profile details extracted from this login method */
|
|
285
|
-
details?: Record<string, unknown> | null;
|
|
286
|
-
/** Whether this connected account has been verified */
|
|
287
|
-
isVerified?: boolean | null;
|
|
288
|
-
createdAt?: string | null;
|
|
289
|
-
updatedAt?: string | null;
|
|
290
|
-
}
|
|
291
276
|
/** Append-only audit log of authentication events (sign-in, sign-up, password changes, etc.) */
|
|
292
277
|
export interface AuditLog {
|
|
293
278
|
id: string;
|
|
@@ -310,6 +295,16 @@ export interface RoleType {
|
|
|
310
295
|
id: number;
|
|
311
296
|
name?: string | null;
|
|
312
297
|
}
|
|
298
|
+
export interface UserConnectedAccount {
|
|
299
|
+
id: string;
|
|
300
|
+
ownerId?: string | null;
|
|
301
|
+
service?: string | null;
|
|
302
|
+
identifier?: string | null;
|
|
303
|
+
details?: Record<string, unknown> | null;
|
|
304
|
+
isVerified?: boolean | null;
|
|
305
|
+
createdAt?: string | null;
|
|
306
|
+
updatedAt?: string | null;
|
|
307
|
+
}
|
|
313
308
|
export interface User {
|
|
314
309
|
id: string;
|
|
315
310
|
username?: string | null;
|
|
@@ -346,28 +341,26 @@ export interface PhoneNumberRelations {
|
|
|
346
341
|
export interface CryptoAddressRelations {
|
|
347
342
|
owner?: User | null;
|
|
348
343
|
}
|
|
349
|
-
export interface ConnectedAccountRelations {
|
|
350
|
-
owner?: User | null;
|
|
351
|
-
}
|
|
352
344
|
export interface AuditLogRelations {
|
|
353
345
|
actor?: User | null;
|
|
354
346
|
}
|
|
355
347
|
export interface RoleTypeRelations {
|
|
356
348
|
}
|
|
349
|
+
export interface UserConnectedAccountRelations {
|
|
350
|
+
}
|
|
357
351
|
export interface UserRelations {
|
|
358
352
|
roleType?: RoleType | null;
|
|
359
353
|
ownedEmails?: ConnectionResult<Email>;
|
|
360
354
|
ownedPhoneNumbers?: ConnectionResult<PhoneNumber>;
|
|
361
355
|
ownedCryptoAddresses?: ConnectionResult<CryptoAddress>;
|
|
362
|
-
ownedConnectedAccounts?: ConnectionResult<ConnectedAccount>;
|
|
363
356
|
auditLogsByActorId?: ConnectionResult<AuditLog>;
|
|
364
357
|
}
|
|
365
358
|
export type EmailWithRelations = Email & EmailRelations;
|
|
366
359
|
export type PhoneNumberWithRelations = PhoneNumber & PhoneNumberRelations;
|
|
367
360
|
export type CryptoAddressWithRelations = CryptoAddress & CryptoAddressRelations;
|
|
368
|
-
export type ConnectedAccountWithRelations = ConnectedAccount & ConnectedAccountRelations;
|
|
369
361
|
export type AuditLogWithRelations = AuditLog & AuditLogRelations;
|
|
370
362
|
export type RoleTypeWithRelations = RoleType & RoleTypeRelations;
|
|
363
|
+
export type UserConnectedAccountWithRelations = UserConnectedAccount & UserConnectedAccountRelations;
|
|
371
364
|
export type UserWithRelations = User & UserRelations;
|
|
372
365
|
export type EmailSelect = {
|
|
373
366
|
id?: boolean;
|
|
@@ -406,19 +399,6 @@ export type CryptoAddressSelect = {
|
|
|
406
399
|
select: UserSelect;
|
|
407
400
|
};
|
|
408
401
|
};
|
|
409
|
-
export type ConnectedAccountSelect = {
|
|
410
|
-
id?: boolean;
|
|
411
|
-
ownerId?: boolean;
|
|
412
|
-
service?: boolean;
|
|
413
|
-
identifier?: boolean;
|
|
414
|
-
details?: boolean;
|
|
415
|
-
isVerified?: boolean;
|
|
416
|
-
createdAt?: boolean;
|
|
417
|
-
updatedAt?: boolean;
|
|
418
|
-
owner?: {
|
|
419
|
-
select: UserSelect;
|
|
420
|
-
};
|
|
421
|
-
};
|
|
422
402
|
export type AuditLogSelect = {
|
|
423
403
|
id?: boolean;
|
|
424
404
|
event?: boolean;
|
|
@@ -436,6 +416,16 @@ export type RoleTypeSelect = {
|
|
|
436
416
|
id?: boolean;
|
|
437
417
|
name?: boolean;
|
|
438
418
|
};
|
|
419
|
+
export type UserConnectedAccountSelect = {
|
|
420
|
+
id?: boolean;
|
|
421
|
+
ownerId?: boolean;
|
|
422
|
+
service?: boolean;
|
|
423
|
+
identifier?: boolean;
|
|
424
|
+
details?: boolean;
|
|
425
|
+
isVerified?: boolean;
|
|
426
|
+
createdAt?: boolean;
|
|
427
|
+
updatedAt?: boolean;
|
|
428
|
+
};
|
|
439
429
|
export type UserSelect = {
|
|
440
430
|
id?: boolean;
|
|
441
431
|
username?: boolean;
|
|
@@ -469,12 +459,6 @@ export type UserSelect = {
|
|
|
469
459
|
filter?: CryptoAddressFilter;
|
|
470
460
|
orderBy?: CryptoAddressOrderBy[];
|
|
471
461
|
};
|
|
472
|
-
ownedConnectedAccounts?: {
|
|
473
|
-
select: ConnectedAccountSelect;
|
|
474
|
-
first?: number;
|
|
475
|
-
filter?: ConnectedAccountFilter;
|
|
476
|
-
orderBy?: ConnectedAccountOrderBy[];
|
|
477
|
-
};
|
|
478
462
|
auditLogsByActorId?: {
|
|
479
463
|
select: AuditLogSelect;
|
|
480
464
|
first?: number;
|
|
@@ -556,32 +540,6 @@ export interface CryptoAddressFilter {
|
|
|
556
540
|
/** Filter by the object’s `owner` relation. */
|
|
557
541
|
owner?: UserFilter;
|
|
558
542
|
}
|
|
559
|
-
export interface ConnectedAccountFilter {
|
|
560
|
-
/** Filter by the object’s `id` field. */
|
|
561
|
-
id?: UUIDFilter;
|
|
562
|
-
/** Filter by the object’s `ownerId` field. */
|
|
563
|
-
ownerId?: UUIDFilter;
|
|
564
|
-
/** Filter by the object’s `service` field. */
|
|
565
|
-
service?: StringFilter;
|
|
566
|
-
/** Filter by the object’s `identifier` field. */
|
|
567
|
-
identifier?: StringFilter;
|
|
568
|
-
/** Filter by the object’s `details` field. */
|
|
569
|
-
details?: JSONFilter;
|
|
570
|
-
/** Filter by the object’s `isVerified` field. */
|
|
571
|
-
isVerified?: BooleanFilter;
|
|
572
|
-
/** Filter by the object’s `createdAt` field. */
|
|
573
|
-
createdAt?: DatetimeFilter;
|
|
574
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
575
|
-
updatedAt?: DatetimeFilter;
|
|
576
|
-
/** Checks for all expressions in this list. */
|
|
577
|
-
and?: ConnectedAccountFilter[];
|
|
578
|
-
/** Checks for any expressions in this list. */
|
|
579
|
-
or?: ConnectedAccountFilter[];
|
|
580
|
-
/** Negates the expression. */
|
|
581
|
-
not?: ConnectedAccountFilter;
|
|
582
|
-
/** Filter by the object’s `owner` relation. */
|
|
583
|
-
owner?: UserFilter;
|
|
584
|
-
}
|
|
585
543
|
export interface AuditLogFilter {
|
|
586
544
|
/** Filter by the object’s `id` field. */
|
|
587
545
|
id?: UUIDFilter;
|
|
@@ -622,6 +580,30 @@ export interface RoleTypeFilter {
|
|
|
622
580
|
/** Negates the expression. */
|
|
623
581
|
not?: RoleTypeFilter;
|
|
624
582
|
}
|
|
583
|
+
export interface UserConnectedAccountFilter {
|
|
584
|
+
/** Filter by the object’s `id` field. */
|
|
585
|
+
id?: UUIDFilter;
|
|
586
|
+
/** Filter by the object’s `ownerId` field. */
|
|
587
|
+
ownerId?: UUIDFilter;
|
|
588
|
+
/** Filter by the object’s `service` field. */
|
|
589
|
+
service?: StringFilter;
|
|
590
|
+
/** Filter by the object’s `identifier` field. */
|
|
591
|
+
identifier?: StringFilter;
|
|
592
|
+
/** Filter by the object’s `details` field. */
|
|
593
|
+
details?: JSONFilter;
|
|
594
|
+
/** Filter by the object’s `isVerified` field. */
|
|
595
|
+
isVerified?: BooleanFilter;
|
|
596
|
+
/** Filter by the object’s `createdAt` field. */
|
|
597
|
+
createdAt?: DatetimeFilter;
|
|
598
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
599
|
+
updatedAt?: DatetimeFilter;
|
|
600
|
+
/** Checks for all expressions in this list. */
|
|
601
|
+
and?: UserConnectedAccountFilter[];
|
|
602
|
+
/** Checks for any expressions in this list. */
|
|
603
|
+
or?: UserConnectedAccountFilter[];
|
|
604
|
+
/** Negates the expression. */
|
|
605
|
+
not?: UserConnectedAccountFilter;
|
|
606
|
+
}
|
|
625
607
|
export interface UserFilter {
|
|
626
608
|
/** Filter by the object’s `id` field. */
|
|
627
609
|
id?: UUIDFilter;
|
|
@@ -659,10 +641,6 @@ export interface UserFilter {
|
|
|
659
641
|
ownedCryptoAddresses?: UserToManyCryptoAddressFilter;
|
|
660
642
|
/** `ownedCryptoAddresses` exist. */
|
|
661
643
|
ownedCryptoAddressesExist?: boolean;
|
|
662
|
-
/** Filter by the object’s `ownedConnectedAccounts` relation. */
|
|
663
|
-
ownedConnectedAccounts?: UserToManyConnectedAccountFilter;
|
|
664
|
-
/** `ownedConnectedAccounts` exist. */
|
|
665
|
-
ownedConnectedAccountsExist?: boolean;
|
|
666
644
|
/** Filter by the object’s `auditLogsByActorId` relation. */
|
|
667
645
|
auditLogsByActorId?: UserToManyAuditLogFilter;
|
|
668
646
|
/** `auditLogsByActorId` exist. */
|
|
@@ -682,9 +660,9 @@ export interface UserFilter {
|
|
|
682
660
|
export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'EMAIL_ASC' | 'EMAIL_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';
|
|
683
661
|
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';
|
|
684
662
|
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';
|
|
685
|
-
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';
|
|
686
663
|
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';
|
|
687
664
|
export type RoleTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
665
|
+
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';
|
|
688
666
|
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';
|
|
689
667
|
export interface CreateEmailInput {
|
|
690
668
|
clientMutationId?: string;
|
|
@@ -760,32 +738,6 @@ export interface DeleteCryptoAddressInput {
|
|
|
760
738
|
clientMutationId?: string;
|
|
761
739
|
id: string;
|
|
762
740
|
}
|
|
763
|
-
export interface CreateConnectedAccountInput {
|
|
764
|
-
clientMutationId?: string;
|
|
765
|
-
connectedAccount: {
|
|
766
|
-
ownerId?: string;
|
|
767
|
-
service: string;
|
|
768
|
-
identifier: string;
|
|
769
|
-
details: Record<string, unknown>;
|
|
770
|
-
isVerified?: boolean;
|
|
771
|
-
};
|
|
772
|
-
}
|
|
773
|
-
export interface ConnectedAccountPatch {
|
|
774
|
-
ownerId?: string | null;
|
|
775
|
-
service?: string | null;
|
|
776
|
-
identifier?: string | null;
|
|
777
|
-
details?: Record<string, unknown> | null;
|
|
778
|
-
isVerified?: boolean | null;
|
|
779
|
-
}
|
|
780
|
-
export interface UpdateConnectedAccountInput {
|
|
781
|
-
clientMutationId?: string;
|
|
782
|
-
id: string;
|
|
783
|
-
connectedAccountPatch: ConnectedAccountPatch;
|
|
784
|
-
}
|
|
785
|
-
export interface DeleteConnectedAccountInput {
|
|
786
|
-
clientMutationId?: string;
|
|
787
|
-
id: string;
|
|
788
|
-
}
|
|
789
741
|
export interface CreateAuditLogInput {
|
|
790
742
|
clientMutationId?: string;
|
|
791
743
|
auditLog: {
|
|
@@ -832,6 +784,32 @@ export interface DeleteRoleTypeInput {
|
|
|
832
784
|
clientMutationId?: string;
|
|
833
785
|
id: number;
|
|
834
786
|
}
|
|
787
|
+
export interface CreateUserConnectedAccountInput {
|
|
788
|
+
clientMutationId?: string;
|
|
789
|
+
userConnectedAccount: {
|
|
790
|
+
ownerId?: string;
|
|
791
|
+
service?: string;
|
|
792
|
+
identifier?: string;
|
|
793
|
+
details?: Record<string, unknown>;
|
|
794
|
+
isVerified?: boolean;
|
|
795
|
+
};
|
|
796
|
+
}
|
|
797
|
+
export interface UserConnectedAccountPatch {
|
|
798
|
+
ownerId?: string | null;
|
|
799
|
+
service?: string | null;
|
|
800
|
+
identifier?: string | null;
|
|
801
|
+
details?: Record<string, unknown> | null;
|
|
802
|
+
isVerified?: boolean | null;
|
|
803
|
+
}
|
|
804
|
+
export interface UpdateUserConnectedAccountInput {
|
|
805
|
+
clientMutationId?: string;
|
|
806
|
+
id: string;
|
|
807
|
+
userConnectedAccountPatch: UserConnectedAccountPatch;
|
|
808
|
+
}
|
|
809
|
+
export interface DeleteUserConnectedAccountInput {
|
|
810
|
+
clientMutationId?: string;
|
|
811
|
+
id: string;
|
|
812
|
+
}
|
|
835
813
|
export interface CreateUserInput {
|
|
836
814
|
clientMutationId?: string;
|
|
837
815
|
user: {
|
|
@@ -868,6 +846,18 @@ export interface CheckPasswordInput {
|
|
|
868
846
|
clientMutationId?: string;
|
|
869
847
|
password?: string;
|
|
870
848
|
}
|
|
849
|
+
export interface DisconnectAccountInput {
|
|
850
|
+
clientMutationId?: string;
|
|
851
|
+
accountId: string;
|
|
852
|
+
}
|
|
853
|
+
export interface RevokeApiKeyInput {
|
|
854
|
+
clientMutationId?: string;
|
|
855
|
+
keyId: string;
|
|
856
|
+
}
|
|
857
|
+
export interface RevokeSessionInput {
|
|
858
|
+
clientMutationId?: string;
|
|
859
|
+
sessionId: string;
|
|
860
|
+
}
|
|
871
861
|
export interface VerifyPasswordInput {
|
|
872
862
|
clientMutationId?: string;
|
|
873
863
|
password: string;
|
|
@@ -891,18 +881,29 @@ export interface VerifyEmailInput {
|
|
|
891
881
|
emailId?: string;
|
|
892
882
|
token?: string;
|
|
893
883
|
}
|
|
884
|
+
export interface ProvisionNewUserInput {
|
|
885
|
+
clientMutationId?: string;
|
|
886
|
+
email?: string;
|
|
887
|
+
password?: string;
|
|
888
|
+
}
|
|
894
889
|
export interface ResetPasswordInput {
|
|
895
890
|
clientMutationId?: string;
|
|
896
891
|
roleId?: string;
|
|
897
892
|
resetToken?: string;
|
|
898
893
|
newPassword?: string;
|
|
899
894
|
}
|
|
900
|
-
export interface
|
|
895
|
+
export interface CreateApiKeyInput {
|
|
896
|
+
clientMutationId?: string;
|
|
897
|
+
keyName: string;
|
|
898
|
+
accessLevel?: string;
|
|
899
|
+
mfaLevel?: string;
|
|
900
|
+
}
|
|
901
|
+
export interface SignInCrossOriginInput {
|
|
901
902
|
clientMutationId?: string;
|
|
902
903
|
token?: string;
|
|
903
904
|
credentialKind?: string;
|
|
904
905
|
}
|
|
905
|
-
export interface
|
|
906
|
+
export interface SignUpInput {
|
|
906
907
|
clientMutationId?: string;
|
|
907
908
|
email?: string;
|
|
908
909
|
password?: string;
|
|
@@ -910,20 +911,21 @@ export interface SignInInput {
|
|
|
910
911
|
credentialKind?: string;
|
|
911
912
|
csrfToken?: string;
|
|
912
913
|
}
|
|
913
|
-
export interface
|
|
914
|
+
export interface RequestCrossOriginTokenInput {
|
|
914
915
|
clientMutationId?: string;
|
|
915
916
|
email?: string;
|
|
916
917
|
password?: string;
|
|
918
|
+
origin?: ConstructiveInternalTypeOrigin;
|
|
917
919
|
rememberMe?: boolean;
|
|
918
|
-
credentialKind?: string;
|
|
919
|
-
csrfToken?: string;
|
|
920
920
|
}
|
|
921
|
-
export interface
|
|
921
|
+
export interface SignInInput {
|
|
922
922
|
clientMutationId?: string;
|
|
923
923
|
email?: string;
|
|
924
924
|
password?: string;
|
|
925
|
-
origin?: ConstructiveInternalTypeOrigin;
|
|
926
925
|
rememberMe?: boolean;
|
|
926
|
+
credentialKind?: string;
|
|
927
|
+
csrfToken?: string;
|
|
928
|
+
deviceToken?: string;
|
|
927
929
|
}
|
|
928
930
|
export interface ExtendTokenExpiresInput {
|
|
929
931
|
clientMutationId?: string;
|
|
@@ -1254,15 +1256,6 @@ export interface UserToManyCryptoAddressFilter {
|
|
|
1254
1256
|
/** Filters to entities where no related entity matches. */
|
|
1255
1257
|
none?: CryptoAddressFilter;
|
|
1256
1258
|
}
|
|
1257
|
-
/** A filter to be used against many `ConnectedAccount` object types. All fields are combined with a logical ‘and.’ */
|
|
1258
|
-
export interface UserToManyConnectedAccountFilter {
|
|
1259
|
-
/** Filters to entities where at least one related entity matches. */
|
|
1260
|
-
some?: ConnectedAccountFilter;
|
|
1261
|
-
/** Filters to entities where every related entity matches. */
|
|
1262
|
-
every?: ConnectedAccountFilter;
|
|
1263
|
-
/** Filters to entities where no related entity matches. */
|
|
1264
|
-
none?: ConnectedAccountFilter;
|
|
1265
|
-
}
|
|
1266
1259
|
/** A filter to be used against many `AuditLog` object types. All fields are combined with a logical ‘and.’ */
|
|
1267
1260
|
export interface UserToManyAuditLogFilter {
|
|
1268
1261
|
/** Filters to entities where at least one related entity matches. */
|
|
@@ -1375,33 +1368,6 @@ export interface CryptoAddressFilter {
|
|
|
1375
1368
|
/** Filter by the object’s `owner` relation. */
|
|
1376
1369
|
owner?: UserFilter;
|
|
1377
1370
|
}
|
|
1378
|
-
/** A filter to be used against `ConnectedAccount` object types. All fields are combined with a logical ‘and.’ */
|
|
1379
|
-
export interface ConnectedAccountFilter {
|
|
1380
|
-
/** Filter by the object’s `id` field. */
|
|
1381
|
-
id?: UUIDFilter;
|
|
1382
|
-
/** Filter by the object’s `ownerId` field. */
|
|
1383
|
-
ownerId?: UUIDFilter;
|
|
1384
|
-
/** Filter by the object’s `service` field. */
|
|
1385
|
-
service?: StringFilter;
|
|
1386
|
-
/** Filter by the object’s `identifier` field. */
|
|
1387
|
-
identifier?: StringFilter;
|
|
1388
|
-
/** Filter by the object’s `details` field. */
|
|
1389
|
-
details?: JSONFilter;
|
|
1390
|
-
/** Filter by the object’s `isVerified` field. */
|
|
1391
|
-
isVerified?: BooleanFilter;
|
|
1392
|
-
/** Filter by the object’s `createdAt` field. */
|
|
1393
|
-
createdAt?: DatetimeFilter;
|
|
1394
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
1395
|
-
updatedAt?: DatetimeFilter;
|
|
1396
|
-
/** Checks for all expressions in this list. */
|
|
1397
|
-
and?: ConnectedAccountFilter[];
|
|
1398
|
-
/** Checks for any expressions in this list. */
|
|
1399
|
-
or?: ConnectedAccountFilter[];
|
|
1400
|
-
/** Negates the expression. */
|
|
1401
|
-
not?: ConnectedAccountFilter;
|
|
1402
|
-
/** Filter by the object’s `owner` relation. */
|
|
1403
|
-
owner?: UserFilter;
|
|
1404
|
-
}
|
|
1405
1371
|
/** A filter to be used against `AuditLog` object types. All fields are combined with a logical ‘and.’ */
|
|
1406
1372
|
export interface AuditLogFilter {
|
|
1407
1373
|
/** Filter by the object’s `id` field. */
|
|
@@ -1544,10 +1510,6 @@ export interface UserFilter {
|
|
|
1544
1510
|
ownedCryptoAddresses?: UserToManyCryptoAddressFilter;
|
|
1545
1511
|
/** `ownedCryptoAddresses` exist. */
|
|
1546
1512
|
ownedCryptoAddressesExist?: boolean;
|
|
1547
|
-
/** Filter by the object’s `ownedConnectedAccounts` relation. */
|
|
1548
|
-
ownedConnectedAccounts?: UserToManyConnectedAccountFilter;
|
|
1549
|
-
/** `ownedConnectedAccounts` exist. */
|
|
1550
|
-
ownedConnectedAccountsExist?: boolean;
|
|
1551
1513
|
/** Filter by the object’s `auditLogsByActorId` relation. */
|
|
1552
1514
|
auditLogsByActorId?: UserToManyAuditLogFilter;
|
|
1553
1515
|
/** `auditLogsByActorId` exist. */
|
|
@@ -1641,41 +1603,6 @@ export interface StringFilter {
|
|
|
1641
1603
|
/** Greater than or equal to the specified value (case-insensitive). */
|
|
1642
1604
|
greaterThanOrEqualToInsensitive?: string;
|
|
1643
1605
|
}
|
|
1644
|
-
/** A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ */
|
|
1645
|
-
export interface JSONFilter {
|
|
1646
|
-
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
1647
|
-
isNull?: boolean;
|
|
1648
|
-
/** Equal to the specified value. */
|
|
1649
|
-
equalTo?: Record<string, unknown>;
|
|
1650
|
-
/** Not equal to the specified value. */
|
|
1651
|
-
notEqualTo?: Record<string, unknown>;
|
|
1652
|
-
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
1653
|
-
distinctFrom?: Record<string, unknown>;
|
|
1654
|
-
/** Equal to the specified value, treating null like an ordinary value. */
|
|
1655
|
-
notDistinctFrom?: Record<string, unknown>;
|
|
1656
|
-
/** Included in the specified list. */
|
|
1657
|
-
in?: Record<string, unknown>[];
|
|
1658
|
-
/** Not included in the specified list. */
|
|
1659
|
-
notIn?: Record<string, unknown>[];
|
|
1660
|
-
/** Less than the specified value. */
|
|
1661
|
-
lessThan?: Record<string, unknown>;
|
|
1662
|
-
/** Less than or equal to the specified value. */
|
|
1663
|
-
lessThanOrEqualTo?: Record<string, unknown>;
|
|
1664
|
-
/** Greater than the specified value. */
|
|
1665
|
-
greaterThan?: Record<string, unknown>;
|
|
1666
|
-
/** Greater than or equal to the specified value. */
|
|
1667
|
-
greaterThanOrEqualTo?: Record<string, unknown>;
|
|
1668
|
-
/** Contains the specified JSON. */
|
|
1669
|
-
contains?: Record<string, unknown>;
|
|
1670
|
-
/** Contains the specified key. */
|
|
1671
|
-
containsKey?: string;
|
|
1672
|
-
/** Contains all of the specified keys. */
|
|
1673
|
-
containsAllKeys?: string[];
|
|
1674
|
-
/** Contains any of the specified keys. */
|
|
1675
|
-
containsAnyKeys?: string[];
|
|
1676
|
-
/** Contained by the specified JSON. */
|
|
1677
|
-
containedBy?: Record<string, unknown>;
|
|
1678
|
-
}
|
|
1679
1606
|
/** A filter to be used against InternetAddress fields. All fields are combined with a logical ‘and.’ */
|
|
1680
1607
|
export interface InternetAddressFilter {
|
|
1681
1608
|
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
@@ -1788,6 +1715,30 @@ export interface CheckPasswordPayload {
|
|
|
1788
1715
|
export type CheckPasswordPayloadSelect = {
|
|
1789
1716
|
clientMutationId?: boolean;
|
|
1790
1717
|
};
|
|
1718
|
+
export interface DisconnectAccountPayload {
|
|
1719
|
+
clientMutationId?: string | null;
|
|
1720
|
+
result?: boolean | null;
|
|
1721
|
+
}
|
|
1722
|
+
export type DisconnectAccountPayloadSelect = {
|
|
1723
|
+
clientMutationId?: boolean;
|
|
1724
|
+
result?: boolean;
|
|
1725
|
+
};
|
|
1726
|
+
export interface RevokeApiKeyPayload {
|
|
1727
|
+
clientMutationId?: string | null;
|
|
1728
|
+
result?: boolean | null;
|
|
1729
|
+
}
|
|
1730
|
+
export type RevokeApiKeyPayloadSelect = {
|
|
1731
|
+
clientMutationId?: boolean;
|
|
1732
|
+
result?: boolean;
|
|
1733
|
+
};
|
|
1734
|
+
export interface RevokeSessionPayload {
|
|
1735
|
+
clientMutationId?: string | null;
|
|
1736
|
+
result?: boolean | null;
|
|
1737
|
+
}
|
|
1738
|
+
export type RevokeSessionPayloadSelect = {
|
|
1739
|
+
clientMutationId?: boolean;
|
|
1740
|
+
result?: boolean;
|
|
1741
|
+
};
|
|
1791
1742
|
export interface VerifyPasswordPayload {
|
|
1792
1743
|
clientMutationId?: string | null;
|
|
1793
1744
|
result?: boolean | null;
|
|
@@ -1828,6 +1779,14 @@ export type VerifyEmailPayloadSelect = {
|
|
|
1828
1779
|
clientMutationId?: boolean;
|
|
1829
1780
|
result?: boolean;
|
|
1830
1781
|
};
|
|
1782
|
+
export interface ProvisionNewUserPayload {
|
|
1783
|
+
clientMutationId?: string | null;
|
|
1784
|
+
result?: string | null;
|
|
1785
|
+
}
|
|
1786
|
+
export type ProvisionNewUserPayloadSelect = {
|
|
1787
|
+
clientMutationId?: boolean;
|
|
1788
|
+
result?: boolean;
|
|
1789
|
+
};
|
|
1831
1790
|
export interface ResetPasswordPayload {
|
|
1832
1791
|
clientMutationId?: string | null;
|
|
1833
1792
|
result?: boolean | null;
|
|
@@ -1836,24 +1795,24 @@ export type ResetPasswordPayloadSelect = {
|
|
|
1836
1795
|
clientMutationId?: boolean;
|
|
1837
1796
|
result?: boolean;
|
|
1838
1797
|
};
|
|
1839
|
-
export interface
|
|
1798
|
+
export interface CreateApiKeyPayload {
|
|
1840
1799
|
clientMutationId?: string | null;
|
|
1841
|
-
result?:
|
|
1800
|
+
result?: CreateApiKeyRecord | null;
|
|
1842
1801
|
}
|
|
1843
|
-
export type
|
|
1802
|
+
export type CreateApiKeyPayloadSelect = {
|
|
1844
1803
|
clientMutationId?: boolean;
|
|
1845
1804
|
result?: {
|
|
1846
|
-
select:
|
|
1805
|
+
select: CreateApiKeyRecordSelect;
|
|
1847
1806
|
};
|
|
1848
1807
|
};
|
|
1849
|
-
export interface
|
|
1808
|
+
export interface SignInCrossOriginPayload {
|
|
1850
1809
|
clientMutationId?: string | null;
|
|
1851
|
-
result?:
|
|
1810
|
+
result?: SignInCrossOriginRecord | null;
|
|
1852
1811
|
}
|
|
1853
|
-
export type
|
|
1812
|
+
export type SignInCrossOriginPayloadSelect = {
|
|
1854
1813
|
clientMutationId?: boolean;
|
|
1855
1814
|
result?: {
|
|
1856
|
-
select:
|
|
1815
|
+
select: SignInCrossOriginRecordSelect;
|
|
1857
1816
|
};
|
|
1858
1817
|
};
|
|
1859
1818
|
export interface SignUpPayload {
|
|
@@ -1866,14 +1825,24 @@ export type SignUpPayloadSelect = {
|
|
|
1866
1825
|
select: SignUpRecordSelect;
|
|
1867
1826
|
};
|
|
1868
1827
|
};
|
|
1869
|
-
export interface
|
|
1828
|
+
export interface RequestCrossOriginTokenPayload {
|
|
1870
1829
|
clientMutationId?: string | null;
|
|
1871
1830
|
result?: string | null;
|
|
1872
1831
|
}
|
|
1873
|
-
export type
|
|
1832
|
+
export type RequestCrossOriginTokenPayloadSelect = {
|
|
1874
1833
|
clientMutationId?: boolean;
|
|
1875
1834
|
result?: boolean;
|
|
1876
1835
|
};
|
|
1836
|
+
export interface SignInPayload {
|
|
1837
|
+
clientMutationId?: string | null;
|
|
1838
|
+
result?: SignInRecord | null;
|
|
1839
|
+
}
|
|
1840
|
+
export type SignInPayloadSelect = {
|
|
1841
|
+
clientMutationId?: boolean;
|
|
1842
|
+
result?: {
|
|
1843
|
+
select: SignInRecordSelect;
|
|
1844
|
+
};
|
|
1845
|
+
};
|
|
1877
1846
|
export interface ExtendTokenExpiresPayload {
|
|
1878
1847
|
clientMutationId?: string | null;
|
|
1879
1848
|
result?: ExtendTokenExpiresRecord[] | null;
|
|
@@ -2087,51 +2056,6 @@ export type DeleteCryptoAddressPayloadSelect = {
|
|
|
2087
2056
|
select: CryptoAddressEdgeSelect;
|
|
2088
2057
|
};
|
|
2089
2058
|
};
|
|
2090
|
-
export interface CreateConnectedAccountPayload {
|
|
2091
|
-
clientMutationId?: string | null;
|
|
2092
|
-
/** The `ConnectedAccount` that was created by this mutation. */
|
|
2093
|
-
connectedAccount?: ConnectedAccount | null;
|
|
2094
|
-
connectedAccountEdge?: ConnectedAccountEdge | null;
|
|
2095
|
-
}
|
|
2096
|
-
export type CreateConnectedAccountPayloadSelect = {
|
|
2097
|
-
clientMutationId?: boolean;
|
|
2098
|
-
connectedAccount?: {
|
|
2099
|
-
select: ConnectedAccountSelect;
|
|
2100
|
-
};
|
|
2101
|
-
connectedAccountEdge?: {
|
|
2102
|
-
select: ConnectedAccountEdgeSelect;
|
|
2103
|
-
};
|
|
2104
|
-
};
|
|
2105
|
-
export interface UpdateConnectedAccountPayload {
|
|
2106
|
-
clientMutationId?: string | null;
|
|
2107
|
-
/** The `ConnectedAccount` that was updated by this mutation. */
|
|
2108
|
-
connectedAccount?: ConnectedAccount | null;
|
|
2109
|
-
connectedAccountEdge?: ConnectedAccountEdge | null;
|
|
2110
|
-
}
|
|
2111
|
-
export type UpdateConnectedAccountPayloadSelect = {
|
|
2112
|
-
clientMutationId?: boolean;
|
|
2113
|
-
connectedAccount?: {
|
|
2114
|
-
select: ConnectedAccountSelect;
|
|
2115
|
-
};
|
|
2116
|
-
connectedAccountEdge?: {
|
|
2117
|
-
select: ConnectedAccountEdgeSelect;
|
|
2118
|
-
};
|
|
2119
|
-
};
|
|
2120
|
-
export interface DeleteConnectedAccountPayload {
|
|
2121
|
-
clientMutationId?: string | null;
|
|
2122
|
-
/** The `ConnectedAccount` that was deleted by this mutation. */
|
|
2123
|
-
connectedAccount?: ConnectedAccount | null;
|
|
2124
|
-
connectedAccountEdge?: ConnectedAccountEdge | null;
|
|
2125
|
-
}
|
|
2126
|
-
export type DeleteConnectedAccountPayloadSelect = {
|
|
2127
|
-
clientMutationId?: boolean;
|
|
2128
|
-
connectedAccount?: {
|
|
2129
|
-
select: ConnectedAccountSelect;
|
|
2130
|
-
};
|
|
2131
|
-
connectedAccountEdge?: {
|
|
2132
|
-
select: ConnectedAccountEdgeSelect;
|
|
2133
|
-
};
|
|
2134
|
-
};
|
|
2135
2059
|
export interface CreateAuditLogPayload {
|
|
2136
2060
|
clientMutationId?: string | null;
|
|
2137
2061
|
/** The `AuditLog` that was created by this mutation. */
|
|
@@ -2222,6 +2146,17 @@ export type DeleteRoleTypePayloadSelect = {
|
|
|
2222
2146
|
select: RoleTypeEdgeSelect;
|
|
2223
2147
|
};
|
|
2224
2148
|
};
|
|
2149
|
+
export interface CreateUserConnectedAccountPayload {
|
|
2150
|
+
clientMutationId?: string | null;
|
|
2151
|
+
/** The `UserConnectedAccount` that was created by this mutation. */
|
|
2152
|
+
userConnectedAccount?: UserConnectedAccount | null;
|
|
2153
|
+
}
|
|
2154
|
+
export type CreateUserConnectedAccountPayloadSelect = {
|
|
2155
|
+
clientMutationId?: boolean;
|
|
2156
|
+
userConnectedAccount?: {
|
|
2157
|
+
select: UserConnectedAccountSelect;
|
|
2158
|
+
};
|
|
2159
|
+
};
|
|
2225
2160
|
export interface CreateUserPayload {
|
|
2226
2161
|
clientMutationId?: string | null;
|
|
2227
2162
|
/** The `User` that was created by this mutation. */
|
|
@@ -2267,7 +2202,15 @@ export type DeleteUserPayloadSelect = {
|
|
|
2267
2202
|
select: UserEdgeSelect;
|
|
2268
2203
|
};
|
|
2269
2204
|
};
|
|
2270
|
-
export interface
|
|
2205
|
+
export interface CreateApiKeyRecord {
|
|
2206
|
+
apiKey?: string | null;
|
|
2207
|
+
keyId?: string | null;
|
|
2208
|
+
}
|
|
2209
|
+
export type CreateApiKeyRecordSelect = {
|
|
2210
|
+
apiKey?: boolean;
|
|
2211
|
+
keyId?: boolean;
|
|
2212
|
+
};
|
|
2213
|
+
export interface SignInCrossOriginRecord {
|
|
2271
2214
|
id?: string | null;
|
|
2272
2215
|
userId?: string | null;
|
|
2273
2216
|
accessToken?: string | null;
|
|
@@ -2275,7 +2218,7 @@ export interface SignInOneTimeTokenRecord {
|
|
|
2275
2218
|
isVerified?: boolean | null;
|
|
2276
2219
|
totpEnabled?: boolean | null;
|
|
2277
2220
|
}
|
|
2278
|
-
export type
|
|
2221
|
+
export type SignInCrossOriginRecordSelect = {
|
|
2279
2222
|
id?: boolean;
|
|
2280
2223
|
userId?: boolean;
|
|
2281
2224
|
accessToken?: boolean;
|
|
@@ -2283,7 +2226,7 @@ export type SignInOneTimeTokenRecordSelect = {
|
|
|
2283
2226
|
isVerified?: boolean;
|
|
2284
2227
|
totpEnabled?: boolean;
|
|
2285
2228
|
};
|
|
2286
|
-
export interface
|
|
2229
|
+
export interface SignUpRecord {
|
|
2287
2230
|
id?: string | null;
|
|
2288
2231
|
userId?: string | null;
|
|
2289
2232
|
accessToken?: string | null;
|
|
@@ -2291,7 +2234,7 @@ export interface SignInRecord {
|
|
|
2291
2234
|
isVerified?: boolean | null;
|
|
2292
2235
|
totpEnabled?: boolean | null;
|
|
2293
2236
|
}
|
|
2294
|
-
export type
|
|
2237
|
+
export type SignUpRecordSelect = {
|
|
2295
2238
|
id?: boolean;
|
|
2296
2239
|
userId?: boolean;
|
|
2297
2240
|
accessToken?: boolean;
|
|
@@ -2299,21 +2242,25 @@ export type SignInRecordSelect = {
|
|
|
2299
2242
|
isVerified?: boolean;
|
|
2300
2243
|
totpEnabled?: boolean;
|
|
2301
2244
|
};
|
|
2302
|
-
export interface
|
|
2245
|
+
export interface SignInRecord {
|
|
2303
2246
|
id?: string | null;
|
|
2304
2247
|
userId?: string | null;
|
|
2305
2248
|
accessToken?: string | null;
|
|
2306
2249
|
accessTokenExpiresAt?: string | null;
|
|
2307
2250
|
isVerified?: boolean | null;
|
|
2308
2251
|
totpEnabled?: boolean | null;
|
|
2252
|
+
mfaRequired?: boolean | null;
|
|
2253
|
+
mfaChallengeToken?: string | null;
|
|
2309
2254
|
}
|
|
2310
|
-
export type
|
|
2255
|
+
export type SignInRecordSelect = {
|
|
2311
2256
|
id?: boolean;
|
|
2312
2257
|
userId?: boolean;
|
|
2313
2258
|
accessToken?: boolean;
|
|
2314
2259
|
accessTokenExpiresAt?: boolean;
|
|
2315
2260
|
isVerified?: boolean;
|
|
2316
2261
|
totpEnabled?: boolean;
|
|
2262
|
+
mfaRequired?: boolean;
|
|
2263
|
+
mfaChallengeToken?: boolean;
|
|
2317
2264
|
};
|
|
2318
2265
|
export interface ExtendTokenExpiresRecord {
|
|
2319
2266
|
id?: string | null;
|
|
@@ -2361,18 +2308,6 @@ export type CryptoAddressEdgeSelect = {
|
|
|
2361
2308
|
select: CryptoAddressSelect;
|
|
2362
2309
|
};
|
|
2363
2310
|
};
|
|
2364
|
-
/** A `ConnectedAccount` edge in the connection. */
|
|
2365
|
-
export interface ConnectedAccountEdge {
|
|
2366
|
-
cursor?: string | null;
|
|
2367
|
-
/** The `ConnectedAccount` at the end of the edge. */
|
|
2368
|
-
node?: ConnectedAccount | null;
|
|
2369
|
-
}
|
|
2370
|
-
export type ConnectedAccountEdgeSelect = {
|
|
2371
|
-
cursor?: boolean;
|
|
2372
|
-
node?: {
|
|
2373
|
-
select: ConnectedAccountSelect;
|
|
2374
|
-
};
|
|
2375
|
-
};
|
|
2376
2311
|
/** A `AuditLog` edge in the connection. */
|
|
2377
2312
|
export interface AuditLogEdge {
|
|
2378
2313
|
cursor?: string | null;
|