@constructive-io/react 0.12.7 → 0.12.9
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 +12 -6
- package/admin/hooks/invalidation.js +31 -15
- package/admin/hooks/mutation-keys.d.ts +24 -12
- package/admin/hooks/mutation-keys.js +15 -8
- package/admin/hooks/mutations/index.d.ts +6 -3
- package/admin/hooks/mutations/index.js +6 -3
- package/admin/hooks/mutations/useCreateOrgMembershipSettingMutation.d.ts +34 -0
- package/admin/hooks/mutations/useCreateOrgMembershipSettingMutation.js +34 -0
- package/admin/hooks/mutations/useDeleteOrgMembershipSettingMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteOrgMembershipSettingMutation.js +39 -0
- package/admin/hooks/mutations/useUpdateOrgMembershipSettingMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateOrgMembershipSettingMutation.js +40 -0
- package/admin/hooks/queries/index.d.ts +4 -2
- package/admin/hooks/queries/index.js +4 -2
- package/admin/hooks/queries/useOrgMembershipSettingQuery.d.ts +65 -0
- package/admin/hooks/queries/useOrgMembershipSettingQuery.js +53 -0
- package/admin/hooks/queries/useOrgMembershipSettingsQuery.d.ts +69 -0
- package/admin/hooks/queries/useOrgMembershipSettingsQuery.js +38 -0
- package/admin/hooks/query-keys.d.ts +28 -14
- package/admin/hooks/query-keys.js +17 -9
- package/admin/orm/index.d.ts +4 -2
- package/admin/orm/index.js +4 -2
- package/admin/orm/input-types.d.ts +303 -142
- package/admin/orm/models/index.d.ts +2 -1
- package/admin/orm/models/index.js +5 -3
- package/admin/orm/models/orgMembershipSetting.d.ts +56 -0
- package/admin/orm/models/orgMembershipSetting.js +100 -0
- package/admin/schema-types.d.ts +231 -106
- package/admin/types.d.ts +23 -11
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +12 -0
- package/auth/hooks/invalidation.js +32 -0
- package/auth/hooks/mutation-keys.d.ts +26 -2
- package/auth/hooks/mutation-keys.js +18 -4
- package/auth/hooks/mutations/index.d.ts +5 -1
- package/auth/hooks/mutations/index.js +5 -1
- package/auth/hooks/mutations/useCreateIdentityProviderMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreateIdentityProviderMutation.js +34 -0
- package/auth/hooks/mutations/useCreateWebauthnCredentialMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreateWebauthnCredentialMutation.js +34 -0
- package/auth/hooks/mutations/useDeleteWebauthnCredentialMutation.d.ts +38 -0
- package/auth/hooks/mutations/useDeleteWebauthnCredentialMutation.js +39 -0
- package/auth/hooks/mutations/useUpdateWebauthnCredentialMutation.d.ts +40 -0
- package/auth/hooks/mutations/useUpdateWebauthnCredentialMutation.js +40 -0
- package/auth/hooks/queries/index.d.ts +3 -0
- package/auth/hooks/queries/index.js +3 -0
- package/auth/hooks/queries/useIdentityProvidersQuery.d.ts +69 -0
- package/auth/hooks/queries/useIdentityProvidersQuery.js +38 -0
- package/auth/hooks/queries/useWebauthnCredentialQuery.d.ts +65 -0
- package/auth/hooks/queries/useWebauthnCredentialQuery.js +53 -0
- package/auth/hooks/queries/useWebauthnCredentialsQuery.d.ts +69 -0
- package/auth/hooks/queries/useWebauthnCredentialsQuery.js +38 -0
- package/auth/hooks/query-keys.d.ts +28 -0
- package/auth/hooks/query-keys.js +17 -1
- package/auth/orm/index.d.ts +9 -5
- package/auth/orm/index.js +4 -0
- package/auth/orm/input-types.d.ts +525 -81
- package/auth/orm/input-types.js +1 -0
- package/auth/orm/models/identityProvider.d.ts +32 -0
- package/auth/orm/models/identityProvider.js +55 -0
- package/auth/orm/models/index.d.ts +2 -0
- package/auth/orm/models/index.js +5 -1
- package/auth/orm/models/webauthnCredential.d.ts +56 -0
- package/auth/orm/models/webauthnCredential.js +100 -0
- package/auth/orm/mutation/index.d.ts +9 -9
- package/auth/orm/mutation/index.js +12 -12
- package/auth/schema-types.d.ts +278 -22
- package/auth/types.d.ts +27 -0
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +12 -6
- package/esm/admin/hooks/invalidation.js +32 -16
- package/esm/admin/hooks/mutation-keys.d.ts +24 -12
- package/esm/admin/hooks/mutation-keys.js +14 -7
- package/esm/admin/hooks/mutations/index.d.ts +6 -3
- package/esm/admin/hooks/mutations/index.js +6 -3
- package/esm/admin/hooks/mutations/useCreateOrgMembershipSettingMutation.d.ts +34 -0
- package/esm/admin/hooks/mutations/useCreateOrgMembershipSettingMutation.js +31 -0
- package/esm/admin/hooks/mutations/useDeleteOrgMembershipSettingMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteOrgMembershipSettingMutation.js +36 -0
- package/esm/admin/hooks/mutations/useUpdateOrgMembershipSettingMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateOrgMembershipSettingMutation.js +37 -0
- package/esm/admin/hooks/queries/index.d.ts +4 -2
- package/esm/admin/hooks/queries/index.js +4 -2
- package/esm/admin/hooks/queries/useOrgMembershipSettingQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgMembershipSettingQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgMembershipSettingsQuery.d.ts +69 -0
- package/esm/admin/hooks/queries/useOrgMembershipSettingsQuery.js +32 -0
- package/esm/admin/hooks/query-keys.d.ts +28 -14
- package/esm/admin/hooks/query-keys.js +16 -8
- package/esm/admin/orm/index.d.ts +4 -2
- package/esm/admin/orm/index.js +4 -2
- package/esm/admin/orm/input-types.d.ts +303 -142
- package/esm/admin/orm/models/index.d.ts +2 -1
- package/esm/admin/orm/models/index.js +2 -1
- package/esm/admin/orm/models/orgMembershipSetting.d.ts +56 -0
- package/esm/admin/orm/models/orgMembershipSetting.js +96 -0
- package/esm/admin/schema-types.d.ts +231 -106
- package/esm/admin/types.d.ts +23 -11
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +12 -0
- package/esm/auth/hooks/invalidation.js +33 -1
- package/esm/auth/hooks/mutation-keys.d.ts +26 -2
- package/esm/auth/hooks/mutation-keys.js +17 -3
- package/esm/auth/hooks/mutations/index.d.ts +5 -1
- package/esm/auth/hooks/mutations/index.js +5 -1
- package/esm/auth/hooks/mutations/useCreateIdentityProviderMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreateIdentityProviderMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreateWebauthnCredentialMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreateWebauthnCredentialMutation.js +31 -0
- package/esm/auth/hooks/mutations/useDeleteWebauthnCredentialMutation.d.ts +38 -0
- package/esm/auth/hooks/mutations/useDeleteWebauthnCredentialMutation.js +36 -0
- package/esm/auth/hooks/mutations/useUpdateWebauthnCredentialMutation.d.ts +40 -0
- package/esm/auth/hooks/mutations/useUpdateWebauthnCredentialMutation.js +37 -0
- package/esm/auth/hooks/queries/index.d.ts +3 -0
- package/esm/auth/hooks/queries/index.js +3 -0
- package/esm/auth/hooks/queries/useIdentityProvidersQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/useIdentityProvidersQuery.js +32 -0
- package/esm/auth/hooks/queries/useWebauthnCredentialQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/useWebauthnCredentialQuery.js +47 -0
- package/esm/auth/hooks/queries/useWebauthnCredentialsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/useWebauthnCredentialsQuery.js +32 -0
- package/esm/auth/hooks/query-keys.d.ts +28 -0
- package/esm/auth/hooks/query-keys.js +16 -0
- package/esm/auth/orm/index.d.ts +9 -5
- package/esm/auth/orm/index.js +4 -0
- package/esm/auth/orm/input-types.d.ts +525 -81
- package/esm/auth/orm/input-types.js +1 -0
- package/esm/auth/orm/models/identityProvider.d.ts +32 -0
- package/esm/auth/orm/models/identityProvider.js +51 -0
- package/esm/auth/orm/models/index.d.ts +2 -0
- package/esm/auth/orm/models/index.js +2 -0
- package/esm/auth/orm/models/webauthnCredential.d.ts +56 -0
- package/esm/auth/orm/models/webauthnCredential.js +96 -0
- package/esm/auth/orm/mutation/index.d.ts +9 -9
- package/esm/auth/orm/mutation/index.js +12 -12
- package/esm/auth/schema-types.d.ts +278 -22
- package/esm/auth/types.d.ts +27 -0
- package/esm/objects/orm/input-types.d.ts +12 -0
- package/esm/objects/schema-types.d.ts +12 -0
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +42 -6
- package/esm/public/hooks/invalidation.js +113 -17
- package/esm/public/hooks/mutation-keys.d.ts +86 -14
- package/esm/public/hooks/mutation-keys.js +55 -10
- package/esm/public/hooks/mutations/index.d.ts +20 -4
- package/esm/public/hooks/mutations/index.js +20 -4
- package/esm/public/hooks/mutations/useCreateIdentityProviderMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateIdentityProviderMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateIdentityProvidersModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateIdentityProvidersModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateNotificationsModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateNotificationsModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateOrgMembershipSettingMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateOrgMembershipSettingMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateSecureTableProvisionMutation.d.ts +2 -2
- package/esm/public/hooks/mutations/useCreateSecureTableProvisionMutation.js +1 -1
- package/esm/public/hooks/mutations/useCreateWebauthnAuthModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateWebauthnAuthModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateWebauthnCredentialMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateWebauthnCredentialMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.d.ts +2 -2
- package/esm/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.js +1 -1
- package/esm/public/hooks/mutations/useDeleteIdentityProvidersModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteIdentityProvidersModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteNotificationsModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteNotificationsModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteOrgMembershipSettingMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteOrgMembershipSettingMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteSecureTableProvisionMutation.d.ts +2 -2
- package/esm/public/hooks/mutations/useDeleteSecureTableProvisionMutation.js +1 -1
- package/esm/public/hooks/mutations/useDeleteWebauthnAuthModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteWebauthnAuthModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteWebauthnCredentialMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteWebauthnCredentialMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.d.ts +2 -2
- package/esm/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.js +1 -1
- package/esm/public/hooks/mutations/useUpdateIdentityProvidersModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateIdentityProvidersModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateNotificationsModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateNotificationsModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateOrgMembershipSettingMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateOrgMembershipSettingMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateSecureTableProvisionMutation.d.ts +2 -2
- package/esm/public/hooks/mutations/useUpdateSecureTableProvisionMutation.js +1 -1
- package/esm/public/hooks/mutations/useUpdateWebauthnAuthModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateWebauthnAuthModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateWebauthnCredentialMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateWebauthnCredentialMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.d.ts +2 -2
- package/esm/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.js +1 -1
- package/esm/public/hooks/queries/index.d.ts +13 -2
- package/esm/public/hooks/queries/index.js +13 -2
- package/esm/public/hooks/queries/useIdentityProvidersModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useIdentityProvidersModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useIdentityProvidersModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useIdentityProvidersModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useIdentityProvidersQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useIdentityProvidersQuery.js +32 -0
- package/esm/public/hooks/queries/useNotificationsModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useNotificationsModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useNotificationsModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useNotificationsModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useOrgMembershipSettingQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useOrgMembershipSettingQuery.js +47 -0
- package/esm/public/hooks/queries/useOrgMembershipSettingsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useOrgMembershipSettingsQuery.js +32 -0
- package/esm/public/hooks/queries/useSecureTableProvisionQuery.d.ts +4 -4
- package/esm/public/hooks/queries/useSecureTableProvisionQuery.js +1 -1
- package/esm/public/hooks/queries/useSecureTableProvisionsQuery.d.ts +4 -4
- package/esm/public/hooks/queries/useSecureTableProvisionsQuery.js +1 -1
- package/esm/public/hooks/queries/useWebauthnAuthModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useWebauthnAuthModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useWebauthnAuthModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useWebauthnAuthModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useWebauthnCredentialQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useWebauthnCredentialQuery.js +47 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsModuleQuery.d.ts +4 -4
- package/esm/public/hooks/queries/useWebauthnCredentialsModuleQuery.js +1 -1
- package/esm/public/hooks/queries/useWebauthnCredentialsModulesQuery.d.ts +4 -4
- package/esm/public/hooks/queries/useWebauthnCredentialsModulesQuery.js +1 -1
- package/esm/public/hooks/queries/useWebauthnCredentialsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useWebauthnCredentialsQuery.js +32 -0
- package/esm/public/hooks/query-keys.d.ts +98 -14
- package/esm/public/hooks/query-keys.js +56 -8
- package/esm/public/orm/index.d.ts +19 -7
- package/esm/public/orm/index.js +14 -2
- package/esm/public/orm/input-types.d.ts +1827 -366
- package/esm/public/orm/input-types.js +7 -0
- package/esm/public/orm/models/identityProvider.d.ts +32 -0
- package/esm/public/orm/models/identityProvider.js +51 -0
- package/esm/public/orm/models/identityProvidersModule.d.ts +56 -0
- package/esm/public/orm/models/identityProvidersModule.js +96 -0
- package/esm/public/orm/models/index.d.ts +7 -1
- package/esm/public/orm/models/index.js +7 -1
- package/esm/public/orm/models/notificationsModule.d.ts +56 -0
- package/esm/public/orm/models/notificationsModule.js +96 -0
- package/esm/public/orm/models/orgMembershipSetting.d.ts +56 -0
- package/esm/public/orm/models/orgMembershipSetting.js +96 -0
- package/esm/public/orm/models/webauthnAuthModule.d.ts +56 -0
- package/esm/public/orm/models/webauthnAuthModule.js +96 -0
- package/esm/public/orm/models/webauthnCredential.d.ts +56 -0
- package/esm/public/orm/models/webauthnCredential.js +96 -0
- package/esm/public/orm/mutation/index.d.ts +9 -9
- package/esm/public/orm/mutation/index.js +12 -12
- package/esm/public/schema-types.d.ts +2041 -1214
- package/esm/public/types.d.ts +103 -27
- package/objects/orm/input-types.d.ts +12 -0
- package/objects/schema-types.d.ts +12 -0
- package/package.json +3 -3
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +42 -6
- package/public/hooks/invalidation.js +112 -16
- package/public/hooks/mutation-keys.d.ts +86 -14
- package/public/hooks/mutation-keys.js +58 -13
- package/public/hooks/mutations/index.d.ts +20 -4
- package/public/hooks/mutations/index.js +20 -4
- package/public/hooks/mutations/useCreateIdentityProviderMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateIdentityProviderMutation.js +34 -0
- package/public/hooks/mutations/useCreateIdentityProvidersModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateIdentityProvidersModuleMutation.js +34 -0
- package/public/hooks/mutations/useCreateNotificationsModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateNotificationsModuleMutation.js +34 -0
- package/public/hooks/mutations/useCreateOrgMembershipSettingMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateOrgMembershipSettingMutation.js +34 -0
- package/public/hooks/mutations/useCreateSecureTableProvisionMutation.d.ts +2 -2
- package/public/hooks/mutations/useCreateSecureTableProvisionMutation.js +1 -1
- package/public/hooks/mutations/useCreateWebauthnAuthModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateWebauthnAuthModuleMutation.js +34 -0
- package/public/hooks/mutations/useCreateWebauthnCredentialMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateWebauthnCredentialMutation.js +34 -0
- package/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.d.ts +2 -2
- package/public/hooks/mutations/useCreateWebauthnCredentialsModuleMutation.js +1 -1
- package/public/hooks/mutations/useDeleteIdentityProvidersModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteIdentityProvidersModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteNotificationsModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteNotificationsModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteOrgMembershipSettingMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteOrgMembershipSettingMutation.js +39 -0
- package/public/hooks/mutations/useDeleteSecureTableProvisionMutation.d.ts +2 -2
- package/public/hooks/mutations/useDeleteSecureTableProvisionMutation.js +1 -1
- package/public/hooks/mutations/useDeleteWebauthnAuthModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteWebauthnAuthModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteWebauthnCredentialMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteWebauthnCredentialMutation.js +39 -0
- package/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.d.ts +2 -2
- package/public/hooks/mutations/useDeleteWebauthnCredentialsModuleMutation.js +1 -1
- package/public/hooks/mutations/useUpdateIdentityProvidersModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateIdentityProvidersModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateNotificationsModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateNotificationsModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateOrgMembershipSettingMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateOrgMembershipSettingMutation.js +40 -0
- package/public/hooks/mutations/useUpdateSecureTableProvisionMutation.d.ts +2 -2
- package/public/hooks/mutations/useUpdateSecureTableProvisionMutation.js +1 -1
- package/public/hooks/mutations/useUpdateWebauthnAuthModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateWebauthnAuthModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateWebauthnCredentialMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateWebauthnCredentialMutation.js +40 -0
- package/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.d.ts +2 -2
- package/public/hooks/mutations/useUpdateWebauthnCredentialsModuleMutation.js +1 -1
- package/public/hooks/queries/index.d.ts +13 -2
- package/public/hooks/queries/index.js +13 -2
- package/public/hooks/queries/useIdentityProvidersModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useIdentityProvidersModuleQuery.js +53 -0
- package/public/hooks/queries/useIdentityProvidersModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useIdentityProvidersModulesQuery.js +38 -0
- package/public/hooks/queries/useIdentityProvidersQuery.d.ts +69 -0
- package/public/hooks/queries/useIdentityProvidersQuery.js +38 -0
- package/public/hooks/queries/useNotificationsModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useNotificationsModuleQuery.js +53 -0
- package/public/hooks/queries/useNotificationsModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useNotificationsModulesQuery.js +38 -0
- package/public/hooks/queries/useOrgMembershipSettingQuery.d.ts +65 -0
- package/public/hooks/queries/useOrgMembershipSettingQuery.js +53 -0
- package/public/hooks/queries/useOrgMembershipSettingsQuery.d.ts +69 -0
- package/public/hooks/queries/useOrgMembershipSettingsQuery.js +38 -0
- package/public/hooks/queries/useSecureTableProvisionQuery.d.ts +4 -4
- package/public/hooks/queries/useSecureTableProvisionQuery.js +1 -1
- package/public/hooks/queries/useSecureTableProvisionsQuery.d.ts +4 -4
- package/public/hooks/queries/useSecureTableProvisionsQuery.js +1 -1
- package/public/hooks/queries/useWebauthnAuthModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useWebauthnAuthModuleQuery.js +53 -0
- package/public/hooks/queries/useWebauthnAuthModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useWebauthnAuthModulesQuery.js +38 -0
- package/public/hooks/queries/useWebauthnCredentialQuery.d.ts +65 -0
- package/public/hooks/queries/useWebauthnCredentialQuery.js +53 -0
- package/public/hooks/queries/useWebauthnCredentialsModuleQuery.d.ts +4 -4
- package/public/hooks/queries/useWebauthnCredentialsModuleQuery.js +1 -1
- package/public/hooks/queries/useWebauthnCredentialsModulesQuery.d.ts +4 -4
- package/public/hooks/queries/useWebauthnCredentialsModulesQuery.js +1 -1
- package/public/hooks/queries/useWebauthnCredentialsQuery.d.ts +69 -0
- package/public/hooks/queries/useWebauthnCredentialsQuery.js +38 -0
- package/public/hooks/query-keys.d.ts +98 -14
- package/public/hooks/query-keys.js +59 -11
- package/public/orm/index.d.ts +19 -7
- package/public/orm/index.js +14 -2
- package/public/orm/input-types.d.ts +1827 -366
- package/public/orm/input-types.js +7 -0
- package/public/orm/models/identityProvider.d.ts +32 -0
- package/public/orm/models/identityProvider.js +55 -0
- package/public/orm/models/identityProvidersModule.d.ts +56 -0
- package/public/orm/models/identityProvidersModule.js +100 -0
- package/public/orm/models/index.d.ts +7 -1
- package/public/orm/models/index.js +17 -5
- package/public/orm/models/notificationsModule.d.ts +56 -0
- package/public/orm/models/notificationsModule.js +100 -0
- package/public/orm/models/orgMembershipSetting.d.ts +56 -0
- package/public/orm/models/orgMembershipSetting.js +100 -0
- package/public/orm/models/webauthnAuthModule.d.ts +56 -0
- package/public/orm/models/webauthnAuthModule.js +100 -0
- package/public/orm/models/webauthnCredential.d.ts +56 -0
- package/public/orm/models/webauthnCredential.js +100 -0
- package/public/orm/mutation/index.d.ts +9 -9
- package/public/orm/mutation/index.js +12 -12
- package/public/schema-types.d.ts +2041 -1214
- package/public/types.d.ts +103 -27
|
@@ -60,6 +60,17 @@ exports.invalidate = {
|
|
|
60
60
|
queryKey: query_keys_1.cryptoAddressKeys.detail(id),
|
|
61
61
|
}),
|
|
62
62
|
},
|
|
63
|
+
/** Invalidate webauthnCredential queries */ webauthnCredential: {
|
|
64
|
+
/** Invalidate all webauthnCredential queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
65
|
+
queryKey: query_keys_1.webauthnCredentialKeys.all,
|
|
66
|
+
}),
|
|
67
|
+
/** Invalidate webauthnCredential list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
68
|
+
queryKey: query_keys_1.webauthnCredentialKeys.lists(),
|
|
69
|
+
}),
|
|
70
|
+
/** Invalidate a specific webauthnCredential */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
71
|
+
queryKey: query_keys_1.webauthnCredentialKeys.detail(id),
|
|
72
|
+
}),
|
|
73
|
+
},
|
|
63
74
|
/** Invalidate auditLog queries */ auditLog: {
|
|
64
75
|
/** Invalidate all auditLog queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
65
76
|
queryKey: query_keys_1.auditLogKeys.all,
|
|
@@ -71,6 +82,17 @@ exports.invalidate = {
|
|
|
71
82
|
queryKey: query_keys_1.auditLogKeys.detail(id),
|
|
72
83
|
}),
|
|
73
84
|
},
|
|
85
|
+
/** Invalidate identityProvider queries */ identityProvider: {
|
|
86
|
+
/** Invalidate all identityProvider queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
87
|
+
queryKey: query_keys_1.identityProviderKeys.all,
|
|
88
|
+
}),
|
|
89
|
+
/** Invalidate identityProvider list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
90
|
+
queryKey: query_keys_1.identityProviderKeys.lists(),
|
|
91
|
+
}),
|
|
92
|
+
/** Invalidate a specific identityProvider */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
93
|
+
queryKey: query_keys_1.identityProviderKeys.detail(id),
|
|
94
|
+
}),
|
|
95
|
+
},
|
|
74
96
|
/** Invalidate roleType queries */ roleType: {
|
|
75
97
|
/** Invalidate all roleType queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
76
98
|
queryKey: query_keys_1.roleTypeKeys.all,
|
|
@@ -132,11 +154,21 @@ exports.remove = {
|
|
|
132
154
|
queryKey: query_keys_1.cryptoAddressKeys.detail(id),
|
|
133
155
|
});
|
|
134
156
|
},
|
|
157
|
+
/** Remove webauthnCredential from cache */ webauthnCredential: (queryClient, id) => {
|
|
158
|
+
queryClient.removeQueries({
|
|
159
|
+
queryKey: query_keys_1.webauthnCredentialKeys.detail(id),
|
|
160
|
+
});
|
|
161
|
+
},
|
|
135
162
|
/** Remove auditLog from cache */ auditLog: (queryClient, id) => {
|
|
136
163
|
queryClient.removeQueries({
|
|
137
164
|
queryKey: query_keys_1.auditLogKeys.detail(id),
|
|
138
165
|
});
|
|
139
166
|
},
|
|
167
|
+
/** Remove identityProvider from cache */ identityProvider: (queryClient, id) => {
|
|
168
|
+
queryClient.removeQueries({
|
|
169
|
+
queryKey: query_keys_1.identityProviderKeys.detail(id),
|
|
170
|
+
});
|
|
171
|
+
},
|
|
140
172
|
/** Remove roleType from cache */ roleType: (queryClient, id) => {
|
|
141
173
|
queryClient.removeQueries({
|
|
142
174
|
queryKey: query_keys_1.roleTypeKeys.detail(id),
|
|
@@ -21,12 +21,24 @@ export declare const cryptoAddressMutationKeys: {
|
|
|
21
21
|
/** Update cryptoAddress mutation key */ readonly update: (id: string | number) => readonly ["mutation", "cryptoaddress", "update", string | number];
|
|
22
22
|
/** Delete cryptoAddress mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "cryptoaddress", "delete", string | number];
|
|
23
23
|
};
|
|
24
|
+
export declare const webauthnCredentialMutationKeys: {
|
|
25
|
+
/** All webauthnCredential mutation keys */ readonly all: readonly ["mutation", "webauthncredential"];
|
|
26
|
+
/** Create webauthnCredential mutation key */ readonly create: () => readonly ["mutation", "webauthncredential", "create"];
|
|
27
|
+
/** Update webauthnCredential mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webauthncredential", "update", string | number];
|
|
28
|
+
/** Delete webauthnCredential mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webauthncredential", "delete", string | number];
|
|
29
|
+
};
|
|
24
30
|
export declare const auditLogMutationKeys: {
|
|
25
31
|
/** All auditLog mutation keys */ readonly all: readonly ["mutation", "auditlog"];
|
|
26
32
|
/** Create auditLog mutation key */ readonly create: () => readonly ["mutation", "auditlog", "create"];
|
|
27
33
|
/** Update auditLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "auditlog", "update", string | number];
|
|
28
34
|
/** Delete auditLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "auditlog", "delete", string | number];
|
|
29
35
|
};
|
|
36
|
+
export declare const identityProviderMutationKeys: {
|
|
37
|
+
/** All identityProvider mutation keys */ readonly all: readonly ["mutation", "identityprovider"];
|
|
38
|
+
/** Create identityProvider mutation key */ readonly create: () => readonly ["mutation", "identityprovider", "create"];
|
|
39
|
+
/** Update identityProvider mutation key */ readonly update: (id: string | number) => readonly ["mutation", "identityprovider", "update", string | number];
|
|
40
|
+
/** Delete identityProvider mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "identityprovider", "delete", string | number];
|
|
41
|
+
};
|
|
30
42
|
export declare const roleTypeMutationKeys: {
|
|
31
43
|
/** All roleType mutation keys */ readonly all: readonly ["mutation", "roletype"];
|
|
32
44
|
/** Create roleType mutation key */ readonly create: () => readonly ["mutation", "roletype", "create"];
|
|
@@ -59,12 +71,12 @@ export declare const customMutationKeys: {
|
|
|
59
71
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
60
72
|
/** Mutation key for provisionNewUser */ readonly provisionNewUser: (identifier?: string) => readonly ["mutation", "provisionNewUser", string] | readonly ["mutation", "provisionNewUser"];
|
|
61
73
|
/** Mutation key for resetPassword */ readonly resetPassword: (identifier?: string) => readonly ["mutation", "resetPassword", string] | readonly ["mutation", "resetPassword"];
|
|
62
|
-
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
63
74
|
/** Mutation key for signInCrossOrigin */ readonly signInCrossOrigin: (identifier?: string) => readonly ["mutation", "signInCrossOrigin", string] | readonly ["mutation", "signInCrossOrigin"];
|
|
64
75
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
65
76
|
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
66
77
|
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
67
78
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
79
|
+
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
68
80
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
69
81
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
70
82
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
@@ -112,12 +124,24 @@ export declare const mutationKeys: {
|
|
|
112
124
|
/** Update cryptoAddress mutation key */ readonly update: (id: string | number) => readonly ["mutation", "cryptoaddress", "update", string | number];
|
|
113
125
|
/** Delete cryptoAddress mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "cryptoaddress", "delete", string | number];
|
|
114
126
|
};
|
|
127
|
+
readonly webauthnCredential: {
|
|
128
|
+
/** All webauthnCredential mutation keys */ readonly all: readonly ["mutation", "webauthncredential"];
|
|
129
|
+
/** Create webauthnCredential mutation key */ readonly create: () => readonly ["mutation", "webauthncredential", "create"];
|
|
130
|
+
/** Update webauthnCredential mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webauthncredential", "update", string | number];
|
|
131
|
+
/** Delete webauthnCredential mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webauthncredential", "delete", string | number];
|
|
132
|
+
};
|
|
115
133
|
readonly auditLog: {
|
|
116
134
|
/** All auditLog mutation keys */ readonly all: readonly ["mutation", "auditlog"];
|
|
117
135
|
/** Create auditLog mutation key */ readonly create: () => readonly ["mutation", "auditlog", "create"];
|
|
118
136
|
/** Update auditLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "auditlog", "update", string | number];
|
|
119
137
|
/** Delete auditLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "auditlog", "delete", string | number];
|
|
120
138
|
};
|
|
139
|
+
readonly identityProvider: {
|
|
140
|
+
/** All identityProvider mutation keys */ readonly all: readonly ["mutation", "identityprovider"];
|
|
141
|
+
/** Create identityProvider mutation key */ readonly create: () => readonly ["mutation", "identityprovider", "create"];
|
|
142
|
+
/** Update identityProvider mutation key */ readonly update: (id: string | number) => readonly ["mutation", "identityprovider", "update", string | number];
|
|
143
|
+
/** Delete identityProvider mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "identityprovider", "delete", string | number];
|
|
144
|
+
};
|
|
121
145
|
readonly roleType: {
|
|
122
146
|
/** All roleType mutation keys */ readonly all: readonly ["mutation", "roletype"];
|
|
123
147
|
/** Create roleType mutation key */ readonly create: () => readonly ["mutation", "roletype", "create"];
|
|
@@ -150,12 +174,12 @@ export declare const mutationKeys: {
|
|
|
150
174
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
151
175
|
/** Mutation key for provisionNewUser */ readonly provisionNewUser: (identifier?: string) => readonly ["mutation", "provisionNewUser", string] | readonly ["mutation", "provisionNewUser"];
|
|
152
176
|
/** Mutation key for resetPassword */ readonly resetPassword: (identifier?: string) => readonly ["mutation", "resetPassword", string] | readonly ["mutation", "resetPassword"];
|
|
153
|
-
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
154
177
|
/** Mutation key for signInCrossOrigin */ readonly signInCrossOrigin: (identifier?: string) => readonly ["mutation", "signInCrossOrigin", string] | readonly ["mutation", "signInCrossOrigin"];
|
|
155
178
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
156
179
|
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
157
180
|
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
158
181
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
182
|
+
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
159
183
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
160
184
|
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
161
185
|
/** Mutation key for requestUploadUrl */ readonly requestUploadUrl: (identifier?: string) => readonly ["mutation", "requestUploadUrl", string] | readonly ["mutation", "requestUploadUrl"];
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* DO NOT EDIT - changes will be overwritten
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.mutationKeys = exports.customMutationKeys = exports.userMutationKeys = exports.userConnectedAccountMutationKeys = exports.roleTypeMutationKeys = exports.auditLogMutationKeys = exports.cryptoAddressMutationKeys = exports.phoneNumberMutationKeys = exports.emailMutationKeys = void 0;
|
|
8
|
+
exports.mutationKeys = exports.customMutationKeys = exports.userMutationKeys = exports.userConnectedAccountMutationKeys = exports.roleTypeMutationKeys = exports.identityProviderMutationKeys = exports.auditLogMutationKeys = exports.webauthnCredentialMutationKeys = exports.cryptoAddressMutationKeys = exports.phoneNumberMutationKeys = exports.emailMutationKeys = void 0;
|
|
9
9
|
// ============================================================================
|
|
10
10
|
// Mutation keys for tracking in-flight mutations
|
|
11
11
|
//
|
|
@@ -36,12 +36,24 @@ exports.cryptoAddressMutationKeys = {
|
|
|
36
36
|
/** Update cryptoAddress mutation key */ update: (id) => ['mutation', 'cryptoaddress', 'update', id],
|
|
37
37
|
/** Delete cryptoAddress mutation key */ delete: (id) => ['mutation', 'cryptoaddress', 'delete', id],
|
|
38
38
|
};
|
|
39
|
+
exports.webauthnCredentialMutationKeys = {
|
|
40
|
+
/** All webauthnCredential mutation keys */ all: ['mutation', 'webauthncredential'],
|
|
41
|
+
/** Create webauthnCredential mutation key */ create: () => ['mutation', 'webauthncredential', 'create'],
|
|
42
|
+
/** Update webauthnCredential mutation key */ update: (id) => ['mutation', 'webauthncredential', 'update', id],
|
|
43
|
+
/** Delete webauthnCredential mutation key */ delete: (id) => ['mutation', 'webauthncredential', 'delete', id],
|
|
44
|
+
};
|
|
39
45
|
exports.auditLogMutationKeys = {
|
|
40
46
|
/** All auditLog mutation keys */ all: ['mutation', 'auditlog'],
|
|
41
47
|
/** Create auditLog mutation key */ create: () => ['mutation', 'auditlog', 'create'],
|
|
42
48
|
/** Update auditLog mutation key */ update: (id) => ['mutation', 'auditlog', 'update', id],
|
|
43
49
|
/** Delete auditLog mutation key */ delete: (id) => ['mutation', 'auditlog', 'delete', id],
|
|
44
50
|
};
|
|
51
|
+
exports.identityProviderMutationKeys = {
|
|
52
|
+
/** All identityProvider mutation keys */ all: ['mutation', 'identityprovider'],
|
|
53
|
+
/** Create identityProvider mutation key */ create: () => ['mutation', 'identityprovider', 'create'],
|
|
54
|
+
/** Update identityProvider mutation key */ update: (id) => ['mutation', 'identityprovider', 'update', id],
|
|
55
|
+
/** Delete identityProvider mutation key */ delete: (id) => ['mutation', 'identityprovider', 'delete', id],
|
|
56
|
+
};
|
|
45
57
|
exports.roleTypeMutationKeys = {
|
|
46
58
|
/** All roleType mutation keys */ all: ['mutation', 'roletype'],
|
|
47
59
|
/** Create roleType mutation key */ create: () => ['mutation', 'roletype', 'create'],
|
|
@@ -103,9 +115,6 @@ exports.customMutationKeys = {
|
|
|
103
115
|
/** Mutation key for resetPassword */ resetPassword: (identifier) => identifier
|
|
104
116
|
? ['mutation', 'resetPassword', identifier]
|
|
105
117
|
: ['mutation', 'resetPassword'],
|
|
106
|
-
/** Mutation key for createApiKey */ createApiKey: (identifier) => identifier
|
|
107
|
-
? ['mutation', 'createApiKey', identifier]
|
|
108
|
-
: ['mutation', 'createApiKey'],
|
|
109
118
|
/** Mutation key for signInCrossOrigin */ signInCrossOrigin: (identifier) => identifier
|
|
110
119
|
? ['mutation', 'signInCrossOrigin', identifier]
|
|
111
120
|
: ['mutation', 'signInCrossOrigin'],
|
|
@@ -117,6 +126,9 @@ exports.customMutationKeys = {
|
|
|
117
126
|
/** Mutation key for extendTokenExpires */ extendTokenExpires: (identifier) => identifier
|
|
118
127
|
? ['mutation', 'extendTokenExpires', identifier]
|
|
119
128
|
: ['mutation', 'extendTokenExpires'],
|
|
129
|
+
/** Mutation key for createApiKey */ createApiKey: (identifier) => identifier
|
|
130
|
+
? ['mutation', 'createApiKey', identifier]
|
|
131
|
+
: ['mutation', 'createApiKey'],
|
|
120
132
|
/** Mutation key for forgotPassword */ forgotPassword: (identifier) => identifier
|
|
121
133
|
? ['mutation', 'forgotPassword', identifier]
|
|
122
134
|
: ['mutation', 'forgotPassword'],
|
|
@@ -159,7 +171,9 @@ exports.mutationKeys = {
|
|
|
159
171
|
email: exports.emailMutationKeys,
|
|
160
172
|
phoneNumber: exports.phoneNumberMutationKeys,
|
|
161
173
|
cryptoAddress: exports.cryptoAddressMutationKeys,
|
|
174
|
+
webauthnCredential: exports.webauthnCredentialMutationKeys,
|
|
162
175
|
auditLog: exports.auditLogMutationKeys,
|
|
176
|
+
identityProvider: exports.identityProviderMutationKeys,
|
|
163
177
|
roleType: exports.roleTypeMutationKeys,
|
|
164
178
|
userConnectedAccount: exports.userConnectedAccountMutationKeys,
|
|
165
179
|
user: exports.userMutationKeys,
|
|
@@ -12,9 +12,13 @@ export * from './useDeletePhoneNumberMutation';
|
|
|
12
12
|
export * from './useCreateCryptoAddressMutation';
|
|
13
13
|
export * from './useUpdateCryptoAddressMutation';
|
|
14
14
|
export * from './useDeleteCryptoAddressMutation';
|
|
15
|
+
export * from './useCreateWebauthnCredentialMutation';
|
|
16
|
+
export * from './useUpdateWebauthnCredentialMutation';
|
|
17
|
+
export * from './useDeleteWebauthnCredentialMutation';
|
|
15
18
|
export * from './useCreateAuditLogMutation';
|
|
16
19
|
export * from './useUpdateAuditLogMutation';
|
|
17
20
|
export * from './useDeleteAuditLogMutation';
|
|
21
|
+
export * from './useCreateIdentityProviderMutation';
|
|
18
22
|
export * from './useCreateRoleTypeMutation';
|
|
19
23
|
export * from './useUpdateRoleTypeMutation';
|
|
20
24
|
export * from './useDeleteRoleTypeMutation';
|
|
@@ -35,12 +39,12 @@ export * from './useSetPasswordMutation';
|
|
|
35
39
|
export * from './useVerifyEmailMutation';
|
|
36
40
|
export * from './useProvisionNewUserMutation';
|
|
37
41
|
export * from './useResetPasswordMutation';
|
|
38
|
-
export * from './useCreateApiKeyMutation';
|
|
39
42
|
export * from './useSignInCrossOriginMutation';
|
|
40
43
|
export * from './useSignUpMutation';
|
|
41
44
|
export * from './useRequestCrossOriginTokenMutation';
|
|
42
45
|
export * from './useSignInMutation';
|
|
43
46
|
export * from './useExtendTokenExpiresMutation';
|
|
47
|
+
export * from './useCreateApiKeyMutation';
|
|
44
48
|
export * from './useForgotPasswordMutation';
|
|
45
49
|
export * from './useSendVerificationEmailMutation';
|
|
46
50
|
export * from './useRequestUploadUrlMutation';
|
|
@@ -28,9 +28,13 @@ __exportStar(require("./useDeletePhoneNumberMutation"), exports);
|
|
|
28
28
|
__exportStar(require("./useCreateCryptoAddressMutation"), exports);
|
|
29
29
|
__exportStar(require("./useUpdateCryptoAddressMutation"), exports);
|
|
30
30
|
__exportStar(require("./useDeleteCryptoAddressMutation"), exports);
|
|
31
|
+
__exportStar(require("./useCreateWebauthnCredentialMutation"), exports);
|
|
32
|
+
__exportStar(require("./useUpdateWebauthnCredentialMutation"), exports);
|
|
33
|
+
__exportStar(require("./useDeleteWebauthnCredentialMutation"), exports);
|
|
31
34
|
__exportStar(require("./useCreateAuditLogMutation"), exports);
|
|
32
35
|
__exportStar(require("./useUpdateAuditLogMutation"), exports);
|
|
33
36
|
__exportStar(require("./useDeleteAuditLogMutation"), exports);
|
|
37
|
+
__exportStar(require("./useCreateIdentityProviderMutation"), exports);
|
|
34
38
|
__exportStar(require("./useCreateRoleTypeMutation"), exports);
|
|
35
39
|
__exportStar(require("./useUpdateRoleTypeMutation"), exports);
|
|
36
40
|
__exportStar(require("./useDeleteRoleTypeMutation"), exports);
|
|
@@ -51,12 +55,12 @@ __exportStar(require("./useSetPasswordMutation"), exports);
|
|
|
51
55
|
__exportStar(require("./useVerifyEmailMutation"), exports);
|
|
52
56
|
__exportStar(require("./useProvisionNewUserMutation"), exports);
|
|
53
57
|
__exportStar(require("./useResetPasswordMutation"), exports);
|
|
54
|
-
__exportStar(require("./useCreateApiKeyMutation"), exports);
|
|
55
58
|
__exportStar(require("./useSignInCrossOriginMutation"), exports);
|
|
56
59
|
__exportStar(require("./useSignUpMutation"), exports);
|
|
57
60
|
__exportStar(require("./useRequestCrossOriginTokenMutation"), exports);
|
|
58
61
|
__exportStar(require("./useSignInMutation"), exports);
|
|
59
62
|
__exportStar(require("./useExtendTokenExpiresMutation"), exports);
|
|
63
|
+
__exportStar(require("./useCreateApiKeyMutation"), exports);
|
|
60
64
|
__exportStar(require("./useForgotPasswordMutation"), exports);
|
|
61
65
|
__exportStar(require("./useSendVerificationEmailMutation"), exports);
|
|
62
66
|
__exportStar(require("./useRequestUploadUrlMutation"), exports);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Create mutation hook for IdentityProvider
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseMutationOptions, UseMutationResult } from '@tanstack/react-query';
|
|
7
|
+
import type { IdentityProviderSelect, IdentityProviderWithRelations, CreateIdentityProviderInput } from '../../orm/input-types';
|
|
8
|
+
import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
|
|
9
|
+
export type { IdentityProviderSelect, IdentityProviderWithRelations, CreateIdentityProviderInput, } from '../../orm/input-types';
|
|
10
|
+
/**
|
|
11
|
+
* Mutation hook for creating a IdentityProvider
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```tsx
|
|
15
|
+
* const { mutate, isPending } = useCreateIdentityProviderMutation({
|
|
16
|
+
* selection: { fields: { id: true, name: true } },
|
|
17
|
+
* });
|
|
18
|
+
*
|
|
19
|
+
* mutate({ name: 'New item' });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare function useCreateIdentityProviderMutation<S extends IdentityProviderSelect>(params: {
|
|
23
|
+
selection: {
|
|
24
|
+
fields: S & IdentityProviderSelect;
|
|
25
|
+
} & HookStrictSelect<NoInfer<S>, IdentityProviderSelect>;
|
|
26
|
+
} & Omit<UseMutationOptions<{
|
|
27
|
+
createIdentityProvider: {
|
|
28
|
+
identityProvider: InferSelectResult<IdentityProviderWithRelations, S>;
|
|
29
|
+
};
|
|
30
|
+
}, Error, CreateIdentityProviderInput['identityProvider']>, 'mutationFn'>): UseMutationResult<{
|
|
31
|
+
createIdentityProvider: {
|
|
32
|
+
identityProvider: InferSelectResult<IdentityProviderWithRelations, S>;
|
|
33
|
+
};
|
|
34
|
+
}, Error, CreateIdentityProviderInput['identityProvider']>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Create mutation hook for IdentityProvider
|
|
4
|
+
* @generated by @constructive-io/graphql-codegen
|
|
5
|
+
* DO NOT EDIT - changes will be overwritten
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.useCreateIdentityProviderMutation = useCreateIdentityProviderMutation;
|
|
9
|
+
const react_query_1 = require("@tanstack/react-query");
|
|
10
|
+
const client_1 = require("../client");
|
|
11
|
+
const selection_1 = require("../selection");
|
|
12
|
+
const query_keys_1 = require("../query-keys");
|
|
13
|
+
const mutation_keys_1 = require("../mutation-keys");
|
|
14
|
+
function useCreateIdentityProviderMutation(params) {
|
|
15
|
+
const args = (0, selection_1.buildSelectionArgs)(params.selection);
|
|
16
|
+
const { selection: _selection, ...mutationOptions } = params ?? {};
|
|
17
|
+
void _selection;
|
|
18
|
+
const queryClient = (0, react_query_1.useQueryClient)();
|
|
19
|
+
return (0, react_query_1.useMutation)({
|
|
20
|
+
mutationKey: mutation_keys_1.identityProviderMutationKeys.create(),
|
|
21
|
+
mutationFn: (data) => (0, client_1.getClient)()
|
|
22
|
+
.identityProvider.create({
|
|
23
|
+
data,
|
|
24
|
+
select: args.select,
|
|
25
|
+
})
|
|
26
|
+
.unwrap(),
|
|
27
|
+
onSuccess: () => {
|
|
28
|
+
queryClient.invalidateQueries({
|
|
29
|
+
queryKey: query_keys_1.identityProviderKeys.lists(),
|
|
30
|
+
});
|
|
31
|
+
},
|
|
32
|
+
...mutationOptions,
|
|
33
|
+
});
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WebAuthn/passkey credentials owned by users. One row per registered authenticator (security key, device biometric, synced passkey). Schema mirrors SimpleWebAuthn's canonical Passkey object.
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseMutationOptions, UseMutationResult } from '@tanstack/react-query';
|
|
7
|
+
import type { WebauthnCredentialSelect, WebauthnCredentialWithRelations, CreateWebauthnCredentialInput } from '../../orm/input-types';
|
|
8
|
+
import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
|
|
9
|
+
export type { WebauthnCredentialSelect, WebauthnCredentialWithRelations, CreateWebauthnCredentialInput, } from '../../orm/input-types';
|
|
10
|
+
/**
|
|
11
|
+
* WebAuthn/passkey credentials owned by users. One row per registered authenticator (security key, device biometric, synced passkey). Schema mirrors SimpleWebAuthn's canonical Passkey object.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```tsx
|
|
15
|
+
* const { mutate, isPending } = useCreateWebauthnCredentialMutation({
|
|
16
|
+
* selection: { fields: { id: true, name: true } },
|
|
17
|
+
* });
|
|
18
|
+
*
|
|
19
|
+
* mutate({ name: 'New item' });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare function useCreateWebauthnCredentialMutation<S extends WebauthnCredentialSelect>(params: {
|
|
23
|
+
selection: {
|
|
24
|
+
fields: S & WebauthnCredentialSelect;
|
|
25
|
+
} & HookStrictSelect<NoInfer<S>, WebauthnCredentialSelect>;
|
|
26
|
+
} & Omit<UseMutationOptions<{
|
|
27
|
+
createWebauthnCredential: {
|
|
28
|
+
webauthnCredential: InferSelectResult<WebauthnCredentialWithRelations, S>;
|
|
29
|
+
};
|
|
30
|
+
}, Error, CreateWebauthnCredentialInput['webauthnCredential']>, 'mutationFn'>): UseMutationResult<{
|
|
31
|
+
createWebauthnCredential: {
|
|
32
|
+
webauthnCredential: InferSelectResult<WebauthnCredentialWithRelations, S>;
|
|
33
|
+
};
|
|
34
|
+
}, Error, CreateWebauthnCredentialInput['webauthnCredential']>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* WebAuthn/passkey credentials owned by users. One row per registered authenticator (security key, device biometric, synced passkey). Schema mirrors SimpleWebAuthn's canonical Passkey object.
|
|
4
|
+
* @generated by @constructive-io/graphql-codegen
|
|
5
|
+
* DO NOT EDIT - changes will be overwritten
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.useCreateWebauthnCredentialMutation = useCreateWebauthnCredentialMutation;
|
|
9
|
+
const react_query_1 = require("@tanstack/react-query");
|
|
10
|
+
const client_1 = require("../client");
|
|
11
|
+
const selection_1 = require("../selection");
|
|
12
|
+
const query_keys_1 = require("../query-keys");
|
|
13
|
+
const mutation_keys_1 = require("../mutation-keys");
|
|
14
|
+
function useCreateWebauthnCredentialMutation(params) {
|
|
15
|
+
const args = (0, selection_1.buildSelectionArgs)(params.selection);
|
|
16
|
+
const { selection: _selection, ...mutationOptions } = params ?? {};
|
|
17
|
+
void _selection;
|
|
18
|
+
const queryClient = (0, react_query_1.useQueryClient)();
|
|
19
|
+
return (0, react_query_1.useMutation)({
|
|
20
|
+
mutationKey: mutation_keys_1.webauthnCredentialMutationKeys.create(),
|
|
21
|
+
mutationFn: (data) => (0, client_1.getClient)()
|
|
22
|
+
.webauthnCredential.create({
|
|
23
|
+
data,
|
|
24
|
+
select: args.select,
|
|
25
|
+
})
|
|
26
|
+
.unwrap(),
|
|
27
|
+
onSuccess: () => {
|
|
28
|
+
queryClient.invalidateQueries({
|
|
29
|
+
queryKey: query_keys_1.webauthnCredentialKeys.lists(),
|
|
30
|
+
});
|
|
31
|
+
},
|
|
32
|
+
...mutationOptions,
|
|
33
|
+
});
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WebAuthn/passkey credentials owned by users. One row per registered authenticator (security key, device biometric, synced passkey). Schema mirrors SimpleWebAuthn's canonical Passkey object.
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseMutationOptions, UseMutationResult } from '@tanstack/react-query';
|
|
7
|
+
import type { WebauthnCredentialSelect, WebauthnCredentialWithRelations } from '../../orm/input-types';
|
|
8
|
+
import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
|
|
9
|
+
export type { WebauthnCredentialSelect, WebauthnCredentialWithRelations, } from '../../orm/input-types';
|
|
10
|
+
/**
|
|
11
|
+
* WebAuthn/passkey credentials owned by users. One row per registered authenticator (security key, device biometric, synced passkey). Schema mirrors SimpleWebAuthn's canonical Passkey object.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```tsx
|
|
15
|
+
* const { mutate, isPending } = useDeleteWebauthnCredentialMutation({
|
|
16
|
+
* selection: { fields: { id: true } },
|
|
17
|
+
* });
|
|
18
|
+
*
|
|
19
|
+
* mutate({ id: 'value-to-delete' });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare function useDeleteWebauthnCredentialMutation<S extends WebauthnCredentialSelect>(params: {
|
|
23
|
+
selection: {
|
|
24
|
+
fields: S & WebauthnCredentialSelect;
|
|
25
|
+
} & HookStrictSelect<NoInfer<S>, WebauthnCredentialSelect>;
|
|
26
|
+
} & Omit<UseMutationOptions<{
|
|
27
|
+
deleteWebauthnCredential: {
|
|
28
|
+
webauthnCredential: InferSelectResult<WebauthnCredentialWithRelations, S>;
|
|
29
|
+
};
|
|
30
|
+
}, Error, {
|
|
31
|
+
id: string;
|
|
32
|
+
}>, 'mutationFn'>): UseMutationResult<{
|
|
33
|
+
deleteWebauthnCredential: {
|
|
34
|
+
webauthnCredential: InferSelectResult<WebauthnCredentialWithRelations, S>;
|
|
35
|
+
};
|
|
36
|
+
}, Error, {
|
|
37
|
+
id: string;
|
|
38
|
+
}>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* WebAuthn/passkey credentials owned by users. One row per registered authenticator (security key, device biometric, synced passkey). Schema mirrors SimpleWebAuthn's canonical Passkey object.
|
|
4
|
+
* @generated by @constructive-io/graphql-codegen
|
|
5
|
+
* DO NOT EDIT - changes will be overwritten
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.useDeleteWebauthnCredentialMutation = useDeleteWebauthnCredentialMutation;
|
|
9
|
+
const react_query_1 = require("@tanstack/react-query");
|
|
10
|
+
const client_1 = require("../client");
|
|
11
|
+
const selection_1 = require("../selection");
|
|
12
|
+
const query_keys_1 = require("../query-keys");
|
|
13
|
+
const mutation_keys_1 = require("../mutation-keys");
|
|
14
|
+
function useDeleteWebauthnCredentialMutation(params) {
|
|
15
|
+
const args = (0, selection_1.buildSelectionArgs)(params.selection);
|
|
16
|
+
const { selection: _selection, ...mutationOptions } = params ?? {};
|
|
17
|
+
void _selection;
|
|
18
|
+
const queryClient = (0, react_query_1.useQueryClient)();
|
|
19
|
+
return (0, react_query_1.useMutation)({
|
|
20
|
+
mutationKey: mutation_keys_1.webauthnCredentialMutationKeys.all,
|
|
21
|
+
mutationFn: ({ id }) => (0, client_1.getClient)()
|
|
22
|
+
.webauthnCredential.delete({
|
|
23
|
+
where: {
|
|
24
|
+
id,
|
|
25
|
+
},
|
|
26
|
+
select: args.select,
|
|
27
|
+
})
|
|
28
|
+
.unwrap(),
|
|
29
|
+
onSuccess: (_, variables) => {
|
|
30
|
+
queryClient.removeQueries({
|
|
31
|
+
queryKey: query_keys_1.webauthnCredentialKeys.detail(variables.id),
|
|
32
|
+
});
|
|
33
|
+
queryClient.invalidateQueries({
|
|
34
|
+
queryKey: query_keys_1.webauthnCredentialKeys.lists(),
|
|
35
|
+
});
|
|
36
|
+
},
|
|
37
|
+
...mutationOptions,
|
|
38
|
+
});
|
|
39
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WebAuthn/passkey credentials owned by users. One row per registered authenticator (security key, device biometric, synced passkey). Schema mirrors SimpleWebAuthn's canonical Passkey object.
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseMutationOptions, UseMutationResult } from '@tanstack/react-query';
|
|
7
|
+
import type { WebauthnCredentialSelect, WebauthnCredentialWithRelations, WebauthnCredentialPatch } from '../../orm/input-types';
|
|
8
|
+
import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
|
|
9
|
+
export type { WebauthnCredentialSelect, WebauthnCredentialWithRelations, WebauthnCredentialPatch, } from '../../orm/input-types';
|
|
10
|
+
/**
|
|
11
|
+
* WebAuthn/passkey credentials owned by users. One row per registered authenticator (security key, device biometric, synced passkey). Schema mirrors SimpleWebAuthn's canonical Passkey object.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```tsx
|
|
15
|
+
* const { mutate, isPending } = useUpdateWebauthnCredentialMutation({
|
|
16
|
+
* selection: { fields: { id: true, name: true } },
|
|
17
|
+
* });
|
|
18
|
+
*
|
|
19
|
+
* mutate({ id: 'value-here', webauthnCredentialPatch: { name: 'Updated' } });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare function useUpdateWebauthnCredentialMutation<S extends WebauthnCredentialSelect>(params: {
|
|
23
|
+
selection: {
|
|
24
|
+
fields: S & WebauthnCredentialSelect;
|
|
25
|
+
} & HookStrictSelect<NoInfer<S>, WebauthnCredentialSelect>;
|
|
26
|
+
} & Omit<UseMutationOptions<{
|
|
27
|
+
updateWebauthnCredential: {
|
|
28
|
+
webauthnCredential: InferSelectResult<WebauthnCredentialWithRelations, S>;
|
|
29
|
+
};
|
|
30
|
+
}, Error, {
|
|
31
|
+
id: string;
|
|
32
|
+
webauthnCredentialPatch: WebauthnCredentialPatch;
|
|
33
|
+
}>, 'mutationFn'>): UseMutationResult<{
|
|
34
|
+
updateWebauthnCredential: {
|
|
35
|
+
webauthnCredential: InferSelectResult<WebauthnCredentialWithRelations, S>;
|
|
36
|
+
};
|
|
37
|
+
}, Error, {
|
|
38
|
+
id: string;
|
|
39
|
+
webauthnCredentialPatch: WebauthnCredentialPatch;
|
|
40
|
+
}>;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* WebAuthn/passkey credentials owned by users. One row per registered authenticator (security key, device biometric, synced passkey). Schema mirrors SimpleWebAuthn's canonical Passkey object.
|
|
4
|
+
* @generated by @constructive-io/graphql-codegen
|
|
5
|
+
* DO NOT EDIT - changes will be overwritten
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.useUpdateWebauthnCredentialMutation = useUpdateWebauthnCredentialMutation;
|
|
9
|
+
const react_query_1 = require("@tanstack/react-query");
|
|
10
|
+
const client_1 = require("../client");
|
|
11
|
+
const selection_1 = require("../selection");
|
|
12
|
+
const query_keys_1 = require("../query-keys");
|
|
13
|
+
const mutation_keys_1 = require("../mutation-keys");
|
|
14
|
+
function useUpdateWebauthnCredentialMutation(params) {
|
|
15
|
+
const args = (0, selection_1.buildSelectionArgs)(params.selection);
|
|
16
|
+
const { selection: _selection, ...mutationOptions } = params ?? {};
|
|
17
|
+
void _selection;
|
|
18
|
+
const queryClient = (0, react_query_1.useQueryClient)();
|
|
19
|
+
return (0, react_query_1.useMutation)({
|
|
20
|
+
mutationKey: mutation_keys_1.webauthnCredentialMutationKeys.all,
|
|
21
|
+
mutationFn: ({ id, webauthnCredentialPatch, }) => (0, client_1.getClient)()
|
|
22
|
+
.webauthnCredential.update({
|
|
23
|
+
where: {
|
|
24
|
+
id,
|
|
25
|
+
},
|
|
26
|
+
data: webauthnCredentialPatch,
|
|
27
|
+
select: args.select,
|
|
28
|
+
})
|
|
29
|
+
.unwrap(),
|
|
30
|
+
onSuccess: (_, variables) => {
|
|
31
|
+
queryClient.invalidateQueries({
|
|
32
|
+
queryKey: query_keys_1.webauthnCredentialKeys.detail(variables.id),
|
|
33
|
+
});
|
|
34
|
+
queryClient.invalidateQueries({
|
|
35
|
+
queryKey: query_keys_1.webauthnCredentialKeys.lists(),
|
|
36
|
+
});
|
|
37
|
+
},
|
|
38
|
+
...mutationOptions,
|
|
39
|
+
});
|
|
40
|
+
}
|
|
@@ -9,8 +9,11 @@ export * from './usePhoneNumbersQuery';
|
|
|
9
9
|
export * from './usePhoneNumberQuery';
|
|
10
10
|
export * from './useCryptoAddressesQuery';
|
|
11
11
|
export * from './useCryptoAddressQuery';
|
|
12
|
+
export * from './useWebauthnCredentialsQuery';
|
|
13
|
+
export * from './useWebauthnCredentialQuery';
|
|
12
14
|
export * from './useAuditLogsQuery';
|
|
13
15
|
export * from './useAuditLogQuery';
|
|
16
|
+
export * from './useIdentityProvidersQuery';
|
|
14
17
|
export * from './useRoleTypesQuery';
|
|
15
18
|
export * from './useRoleTypeQuery';
|
|
16
19
|
export * from './useUserConnectedAccountsQuery';
|
|
@@ -25,8 +25,11 @@ __exportStar(require("./usePhoneNumbersQuery"), exports);
|
|
|
25
25
|
__exportStar(require("./usePhoneNumberQuery"), exports);
|
|
26
26
|
__exportStar(require("./useCryptoAddressesQuery"), exports);
|
|
27
27
|
__exportStar(require("./useCryptoAddressQuery"), exports);
|
|
28
|
+
__exportStar(require("./useWebauthnCredentialsQuery"), exports);
|
|
29
|
+
__exportStar(require("./useWebauthnCredentialQuery"), exports);
|
|
28
30
|
__exportStar(require("./useAuditLogsQuery"), exports);
|
|
29
31
|
__exportStar(require("./useAuditLogQuery"), exports);
|
|
32
|
+
__exportStar(require("./useIdentityProvidersQuery"), exports);
|
|
30
33
|
__exportStar(require("./useRoleTypesQuery"), exports);
|
|
31
34
|
__exportStar(require("./useRoleTypeQuery"), exports);
|
|
32
35
|
__exportStar(require("./useUserConnectedAccountsQuery"), exports);
|