@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
package/public/types.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
import type { ObjectCategory } from './schema-types';
|
|
7
|
+
export type Base64EncodedBinary = unknown;
|
|
7
8
|
export type ConstructiveInternalTypeAttachment = unknown;
|
|
8
9
|
export type ConstructiveInternalTypeEmail = unknown;
|
|
9
10
|
export type ConstructiveInternalTypeHostname = unknown;
|
|
@@ -361,14 +362,8 @@ export interface SecureTableProvision {
|
|
|
361
362
|
nodes: unknown | null;
|
|
362
363
|
useRls: boolean | null;
|
|
363
364
|
fields: unknown[] | null;
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
policyType: string | null;
|
|
367
|
-
policyPrivileges: string[] | null;
|
|
368
|
-
policyRole: string | null;
|
|
369
|
-
policyPermissive: boolean | null;
|
|
370
|
-
policyName: string | null;
|
|
371
|
-
policyData: unknown | null;
|
|
365
|
+
grants: unknown | null;
|
|
366
|
+
policies: unknown | null;
|
|
372
367
|
outFields: string[] | null;
|
|
373
368
|
}
|
|
374
369
|
export interface RelationProvision {
|
|
@@ -390,14 +385,8 @@ export interface RelationProvision {
|
|
|
390
385
|
createIndex: boolean | null;
|
|
391
386
|
exposeInApi: boolean | null;
|
|
392
387
|
nodes: unknown | null;
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
policyType: string | null;
|
|
396
|
-
policyPrivileges: string[] | null;
|
|
397
|
-
policyRole: string | null;
|
|
398
|
-
policyPermissive: boolean | null;
|
|
399
|
-
policyName: string | null;
|
|
400
|
-
policyData: unknown | null;
|
|
388
|
+
grants: unknown | null;
|
|
389
|
+
policies: unknown | null;
|
|
401
390
|
outFieldId: string | null;
|
|
402
391
|
outJunctionTableId: string | null;
|
|
403
392
|
outSourceFieldId: string | null;
|
|
@@ -411,6 +400,14 @@ export interface SessionSecretsModule {
|
|
|
411
400
|
tableName: string | null;
|
|
412
401
|
sessionsTableId: string | null;
|
|
413
402
|
}
|
|
403
|
+
export interface IdentityProvidersModule {
|
|
404
|
+
id: string | null;
|
|
405
|
+
databaseId: string | null;
|
|
406
|
+
schemaId: string | null;
|
|
407
|
+
privateSchemaId: string | null;
|
|
408
|
+
tableId: string | null;
|
|
409
|
+
tableName: string | null;
|
|
410
|
+
}
|
|
414
411
|
export interface SchemaGrant {
|
|
415
412
|
id: string | null;
|
|
416
413
|
databaseId: string | null;
|
|
@@ -690,6 +687,8 @@ export interface MembershipsModule {
|
|
|
690
687
|
membersTableName: string | null;
|
|
691
688
|
membershipDefaultsTableId: string | null;
|
|
692
689
|
membershipDefaultsTableName: string | null;
|
|
690
|
+
membershipSettingsTableId: string | null;
|
|
691
|
+
membershipSettingsTableName: string | null;
|
|
693
692
|
grantsTableId: string | null;
|
|
694
693
|
grantsTableName: string | null;
|
|
695
694
|
actorTableId: string | null;
|
|
@@ -878,6 +877,8 @@ export interface StorageModule {
|
|
|
878
877
|
bucketsTableName: string | null;
|
|
879
878
|
filesTableName: string | null;
|
|
880
879
|
uploadRequestsTableName: string | null;
|
|
880
|
+
membershipType: number | null;
|
|
881
|
+
policies: string[] | null;
|
|
881
882
|
entityTableId: string | null;
|
|
882
883
|
endpoint: string | null;
|
|
883
884
|
publicUrlPrefix: string | null;
|
|
@@ -901,12 +902,17 @@ export interface EntityTypeProvision {
|
|
|
901
902
|
hasLimits: boolean | null;
|
|
902
903
|
hasProfiles: boolean | null;
|
|
903
904
|
hasLevels: boolean | null;
|
|
905
|
+
hasStorage: boolean | null;
|
|
906
|
+
storageConfig: unknown | null;
|
|
904
907
|
skipEntityPolicies: boolean | null;
|
|
905
908
|
tableProvision: unknown | null;
|
|
906
909
|
outMembershipType: number | null;
|
|
907
910
|
outEntityTableId: string | null;
|
|
908
911
|
outEntityTableName: string | null;
|
|
909
912
|
outInstalledModules: string[] | null;
|
|
913
|
+
outStorageModuleId: string | null;
|
|
914
|
+
outBucketsTableId: string | null;
|
|
915
|
+
outFilesTableId: string | null;
|
|
910
916
|
}
|
|
911
917
|
export interface WebauthnCredentialsModule {
|
|
912
918
|
id: string | null;
|
|
@@ -917,6 +923,38 @@ export interface WebauthnCredentialsModule {
|
|
|
917
923
|
ownerTableId: string | null;
|
|
918
924
|
tableName: string | null;
|
|
919
925
|
}
|
|
926
|
+
export interface WebauthnAuthModule {
|
|
927
|
+
id: string | null;
|
|
928
|
+
databaseId: string | null;
|
|
929
|
+
schemaId: string | null;
|
|
930
|
+
usersTableId: string | null;
|
|
931
|
+
credentialsTableId: string | null;
|
|
932
|
+
sessionsTableId: string | null;
|
|
933
|
+
sessionCredentialsTableId: string | null;
|
|
934
|
+
sessionSecretsTableId: string | null;
|
|
935
|
+
authSettingsTableId: string | null;
|
|
936
|
+
rpId: string | null;
|
|
937
|
+
rpName: string | null;
|
|
938
|
+
originAllowlist: string[] | null;
|
|
939
|
+
attestationType: string | null;
|
|
940
|
+
requireUserVerification: boolean | null;
|
|
941
|
+
residentKey: string | null;
|
|
942
|
+
challengeExpiry: string | null;
|
|
943
|
+
}
|
|
944
|
+
export interface NotificationsModule {
|
|
945
|
+
id: string | null;
|
|
946
|
+
databaseId: string | null;
|
|
947
|
+
schemaId: string | null;
|
|
948
|
+
privateSchemaId: string | null;
|
|
949
|
+
notificationsTableId: string | null;
|
|
950
|
+
eventsTableId: string | null;
|
|
951
|
+
preferencesTableId: string | null;
|
|
952
|
+
channelsTableId: string | null;
|
|
953
|
+
deliveryLogTableId: string | null;
|
|
954
|
+
ownerTableId: string | null;
|
|
955
|
+
userSettingsTableId: string | null;
|
|
956
|
+
organizationSettingsTableId: string | null;
|
|
957
|
+
}
|
|
920
958
|
export interface DatabaseProvisionModule {
|
|
921
959
|
id: string | null;
|
|
922
960
|
databaseName: string | null;
|
|
@@ -1097,6 +1135,7 @@ export interface Email {
|
|
|
1097
1135
|
email: ConstructiveInternalTypeEmail | null;
|
|
1098
1136
|
isVerified: boolean | null;
|
|
1099
1137
|
isPrimary: boolean | null;
|
|
1138
|
+
name: string | null;
|
|
1100
1139
|
createdAt: string | null;
|
|
1101
1140
|
updatedAt: string | null;
|
|
1102
1141
|
}
|
|
@@ -1107,6 +1146,7 @@ export interface PhoneNumber {
|
|
|
1107
1146
|
number: string | null;
|
|
1108
1147
|
isVerified: boolean | null;
|
|
1109
1148
|
isPrimary: boolean | null;
|
|
1149
|
+
name: string | null;
|
|
1110
1150
|
createdAt: string | null;
|
|
1111
1151
|
updatedAt: string | null;
|
|
1112
1152
|
}
|
|
@@ -1116,6 +1156,23 @@ export interface CryptoAddress {
|
|
|
1116
1156
|
address: string | null;
|
|
1117
1157
|
isVerified: boolean | null;
|
|
1118
1158
|
isPrimary: boolean | null;
|
|
1159
|
+
name: string | null;
|
|
1160
|
+
createdAt: string | null;
|
|
1161
|
+
updatedAt: string | null;
|
|
1162
|
+
}
|
|
1163
|
+
export interface WebauthnCredential {
|
|
1164
|
+
id: string | null;
|
|
1165
|
+
ownerId: string | null;
|
|
1166
|
+
credentialId: string | null;
|
|
1167
|
+
publicKey: Base64EncodedBinary | null;
|
|
1168
|
+
signCount: string | null;
|
|
1169
|
+
webauthnUserId: string | null;
|
|
1170
|
+
transports: string[] | null;
|
|
1171
|
+
credentialDeviceType: string | null;
|
|
1172
|
+
backupEligible: boolean | null;
|
|
1173
|
+
backupState: boolean | null;
|
|
1174
|
+
name: string | null;
|
|
1175
|
+
lastUsedAt: string | null;
|
|
1119
1176
|
createdAt: string | null;
|
|
1120
1177
|
updatedAt: string | null;
|
|
1121
1178
|
}
|
|
@@ -1180,6 +1237,13 @@ export interface AppPermissionDefault {
|
|
|
1180
1237
|
id: string | null;
|
|
1181
1238
|
permissions: string | null;
|
|
1182
1239
|
}
|
|
1240
|
+
export interface IdentityProvider {
|
|
1241
|
+
slug: string | null;
|
|
1242
|
+
kind: string | null;
|
|
1243
|
+
displayName: string | null;
|
|
1244
|
+
enabled: boolean | null;
|
|
1245
|
+
isBuiltIn: boolean | null;
|
|
1246
|
+
}
|
|
1183
1247
|
export interface Ref {
|
|
1184
1248
|
id: string | null;
|
|
1185
1249
|
name: string | null;
|
|
@@ -1241,6 +1305,15 @@ export interface AppMembershipDefault {
|
|
|
1241
1305
|
isApproved: boolean | null;
|
|
1242
1306
|
isVerified: boolean | null;
|
|
1243
1307
|
}
|
|
1308
|
+
export interface OrgMembershipDefault {
|
|
1309
|
+
id: string | null;
|
|
1310
|
+
createdAt: string | null;
|
|
1311
|
+
updatedAt: string | null;
|
|
1312
|
+
createdBy: string | null;
|
|
1313
|
+
updatedBy: string | null;
|
|
1314
|
+
isApproved: boolean | null;
|
|
1315
|
+
entityId: string | null;
|
|
1316
|
+
}
|
|
1244
1317
|
export interface Commit {
|
|
1245
1318
|
id: string | null;
|
|
1246
1319
|
message: string | null;
|
|
@@ -1271,17 +1344,6 @@ export interface MembershipType {
|
|
|
1271
1344
|
parentMembershipType: number | null;
|
|
1272
1345
|
hasUsersTableEntry: boolean | null;
|
|
1273
1346
|
}
|
|
1274
|
-
export interface OrgMembershipDefault {
|
|
1275
|
-
id: string | null;
|
|
1276
|
-
createdAt: string | null;
|
|
1277
|
-
updatedAt: string | null;
|
|
1278
|
-
createdBy: string | null;
|
|
1279
|
-
updatedBy: string | null;
|
|
1280
|
-
isApproved: boolean | null;
|
|
1281
|
-
entityId: string | null;
|
|
1282
|
-
deleteMemberCascadeGroups: boolean | null;
|
|
1283
|
-
createGroupsCascadeMembers: boolean | null;
|
|
1284
|
-
}
|
|
1285
1347
|
export interface RlsModule {
|
|
1286
1348
|
id: string | null;
|
|
1287
1349
|
databaseId: string | null;
|
|
@@ -1310,6 +1372,20 @@ export interface SqlAction {
|
|
|
1310
1372
|
actionId: string | null;
|
|
1311
1373
|
actorId: string | null;
|
|
1312
1374
|
}
|
|
1375
|
+
export interface OrgMembershipSetting {
|
|
1376
|
+
id: string | null;
|
|
1377
|
+
createdAt: string | null;
|
|
1378
|
+
updatedAt: string | null;
|
|
1379
|
+
createdBy: string | null;
|
|
1380
|
+
updatedBy: string | null;
|
|
1381
|
+
entityId: string | null;
|
|
1382
|
+
deleteMemberCascadeChildren: boolean | null;
|
|
1383
|
+
createChildCascadeOwners: boolean | null;
|
|
1384
|
+
createChildCascadeAdmins: boolean | null;
|
|
1385
|
+
createChildCascadeMembers: boolean | null;
|
|
1386
|
+
allowExternalMembers: boolean | null;
|
|
1387
|
+
populateMemberEmail: boolean | null;
|
|
1388
|
+
}
|
|
1313
1389
|
export interface User {
|
|
1314
1390
|
id: string | null;
|
|
1315
1391
|
username: string | null;
|