@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/esm/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;
|
|
@@ -632,6 +632,13 @@ export interface SetAndCommitInput {
|
|
|
632
632
|
export interface RequestUploadUrlInput {
|
|
633
633
|
/** Bucket key (e.g., "public", "private") */
|
|
634
634
|
bucketKey: string;
|
|
635
|
+
/**
|
|
636
|
+
* Owner entity ID for entity-scoped uploads.
|
|
637
|
+
* Omit for app-level (database-wide) storage.
|
|
638
|
+
* When provided, resolves the storage module for the entity type
|
|
639
|
+
* that owns this entity instance (e.g., a data room ID, team ID).
|
|
640
|
+
*/
|
|
641
|
+
ownerId?: string;
|
|
635
642
|
/** SHA-256 content hash computed by the client (hex-encoded, 64 chars) */
|
|
636
643
|
contentHash: string;
|
|
637
644
|
/** MIME type of the file (e.g., "image/png") */
|
|
@@ -648,6 +655,11 @@ export interface ConfirmUploadInput {
|
|
|
648
655
|
export interface ProvisionBucketInput {
|
|
649
656
|
/** The logical bucket key (e.g., "public", "private") */
|
|
650
657
|
bucketKey: string;
|
|
658
|
+
/**
|
|
659
|
+
* Owner entity ID for entity-scoped bucket provisioning.
|
|
660
|
+
* Omit for app-level (database-wide) storage.
|
|
661
|
+
*/
|
|
662
|
+
ownerId?: string;
|
|
651
663
|
}
|
|
652
664
|
/** A connection to a list of `Object` values. */
|
|
653
665
|
export interface ObjectConnection {
|
|
@@ -338,6 +338,13 @@ export interface DeleteObjectInput {
|
|
|
338
338
|
export interface RequestUploadUrlInput {
|
|
339
339
|
/** Bucket key (e.g., "public", "private") */
|
|
340
340
|
bucketKey: string;
|
|
341
|
+
/**
|
|
342
|
+
* Owner entity ID for entity-scoped uploads.
|
|
343
|
+
* Omit for app-level (database-wide) storage.
|
|
344
|
+
* When provided, resolves the storage module for the entity type
|
|
345
|
+
* that owns this entity instance (e.g., a data room ID, team ID).
|
|
346
|
+
*/
|
|
347
|
+
ownerId?: string;
|
|
341
348
|
/** SHA-256 content hash computed by the client (hex-encoded, 64 chars) */
|
|
342
349
|
contentHash: string;
|
|
343
350
|
/** MIME type of the file (e.g., "image/png") */
|
|
@@ -354,6 +361,11 @@ export interface ConfirmUploadInput {
|
|
|
354
361
|
export interface ProvisionBucketInput {
|
|
355
362
|
/** The logical bucket key (e.g., "public", "private") */
|
|
356
363
|
bucketKey: string;
|
|
364
|
+
/**
|
|
365
|
+
* Owner entity ID for entity-scoped bucket provisioning.
|
|
366
|
+
* Omit for app-level (database-wide) storage.
|
|
367
|
+
*/
|
|
368
|
+
ownerId?: string;
|
|
357
369
|
}
|
|
358
370
|
/** A connection to a list of `GetAllRecord` values. */
|
|
359
371
|
export interface GetAllConnection {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructive-io/react",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.9",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Constructive React - Auto-generated React Query hooks and ORM client",
|
|
6
6
|
"main": "index.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"react": "^18.0.0 || ^19.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@constructive-io/graphql-codegen": "^4.30.
|
|
54
|
+
"@constructive-io/graphql-codegen": "^4.30.8",
|
|
55
55
|
"@types/node": "^22.19.11",
|
|
56
56
|
"@types/react": "^19.2.14",
|
|
57
57
|
"makage": "^0.3.0",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"tsx": "^4.19.0",
|
|
60
60
|
"typescript": "^5.9.3"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "ad2d49ede1f962293e13d68843831897f267915d"
|
|
63
63
|
}
|
package/public/hooks/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, SpatialRelation, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, SecureTableProvision, RelationProvision, SessionSecretsModule, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, BlueprintConstruction, StorageModule, EntityTypeProvision, WebauthnCredentialsModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgMemberProfile, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, AppInvite, AppClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, AppPermissionDefault, Ref, Store, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, DevicesModule, UserConnectedAccount, AppMembershipDefault, Commit, RateLimitsModule, MembershipType,
|
|
5
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, SpatialRelation, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, SecureTableProvision, RelationProvision, SessionSecretsModule, IdentityProvidersModule, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, BlueprintConstruction, StorageModule, EntityTypeProvision, WebauthnCredentialsModule, WebauthnAuthModule, NotificationsModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgMemberProfile, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, WebauthnCredential, AppInvite, AppClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, AppPermissionDefault, IdentityProvider, Ref, Store, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, DevicesModule, UserConnectedAccount, AppMembershipDefault, OrgMembershipDefault, Commit, RateLimitsModule, MembershipType, RlsModule, SqlAction, OrgMembershipSetting, User, AstMigration, AppMembership, HierarchyModule
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
package/public/hooks/index.js
CHANGED
|
@@ -18,7 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18
18
|
* GraphQL SDK
|
|
19
19
|
* @generated by @constructive-io/graphql-codegen
|
|
20
20
|
*
|
|
21
|
-
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, SpatialRelation, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, SecureTableProvision, RelationProvision, SessionSecretsModule, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, BlueprintConstruction, StorageModule, EntityTypeProvision, WebauthnCredentialsModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgMemberProfile, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, AppInvite, AppClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, AppPermissionDefault, Ref, Store, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, DevicesModule, UserConnectedAccount, AppMembershipDefault, Commit, RateLimitsModule, MembershipType,
|
|
21
|
+
* Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, GetAllRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, SpatialRelation, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, SecureTableProvision, RelationProvision, SessionSecretsModule, IdentityProvidersModule, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, BlueprintConstruction, StorageModule, EntityTypeProvision, WebauthnCredentialsModule, WebauthnAuthModule, NotificationsModule, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgMemberProfile, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, WebauthnCredential, AppInvite, AppClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, AppPermissionDefault, IdentityProvider, Ref, Store, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, DevicesModule, UserConnectedAccount, AppMembershipDefault, OrgMembershipDefault, Commit, RateLimitsModule, MembershipType, RlsModule, SqlAction, OrgMembershipSetting, User, AstMigration, AppMembership, HierarchyModule
|
|
22
22
|
*
|
|
23
23
|
* Usage:
|
|
24
24
|
*
|
|
@@ -169,6 +169,11 @@ export declare const invalidate: {
|
|
|
169
169
|
/** Invalidate sessionSecretsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
170
170
|
/** Invalidate a specific sessionSecretsModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
171
171
|
};
|
|
172
|
+
/** Invalidate identityProvidersModule queries */ readonly identityProvidersModule: {
|
|
173
|
+
/** Invalidate all identityProvidersModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
174
|
+
/** Invalidate identityProvidersModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
175
|
+
/** Invalidate a specific identityProvidersModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
176
|
+
};
|
|
172
177
|
/** Invalidate schemaGrant queries */ readonly schemaGrant: {
|
|
173
178
|
/** Invalidate all schemaGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
174
179
|
/** Invalidate schemaGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -364,6 +369,16 @@ export declare const invalidate: {
|
|
|
364
369
|
/** Invalidate webauthnCredentialsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
365
370
|
/** Invalidate a specific webauthnCredentialsModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
366
371
|
};
|
|
372
|
+
/** Invalidate webauthnAuthModule queries */ readonly webauthnAuthModule: {
|
|
373
|
+
/** Invalidate all webauthnAuthModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
374
|
+
/** Invalidate webauthnAuthModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
375
|
+
/** Invalidate a specific webauthnAuthModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
376
|
+
};
|
|
377
|
+
/** Invalidate notificationsModule queries */ readonly notificationsModule: {
|
|
378
|
+
/** Invalidate all notificationsModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
379
|
+
/** Invalidate notificationsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
380
|
+
/** Invalidate a specific notificationsModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
381
|
+
};
|
|
367
382
|
/** Invalidate databaseProvisionModule queries */ readonly databaseProvisionModule: {
|
|
368
383
|
/** Invalidate all databaseProvisionModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
369
384
|
/** Invalidate databaseProvisionModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -469,6 +484,11 @@ export declare const invalidate: {
|
|
|
469
484
|
/** Invalidate cryptoAddress list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
470
485
|
/** Invalidate a specific cryptoAddress */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
471
486
|
};
|
|
487
|
+
/** Invalidate webauthnCredential queries */ readonly webauthnCredential: {
|
|
488
|
+
/** Invalidate all webauthnCredential queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
489
|
+
/** Invalidate webauthnCredential list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
490
|
+
/** Invalidate a specific webauthnCredential */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
491
|
+
};
|
|
472
492
|
/** Invalidate appInvite queries */ readonly appInvite: {
|
|
473
493
|
/** Invalidate all appInvite queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
474
494
|
/** Invalidate appInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -499,6 +519,11 @@ export declare const invalidate: {
|
|
|
499
519
|
/** Invalidate appPermissionDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
500
520
|
/** Invalidate a specific appPermissionDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
501
521
|
};
|
|
522
|
+
/** Invalidate identityProvider queries */ readonly identityProvider: {
|
|
523
|
+
/** Invalidate all identityProvider queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
524
|
+
/** Invalidate identityProvider list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
525
|
+
/** Invalidate a specific identityProvider */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
526
|
+
};
|
|
502
527
|
/** Invalidate ref queries */ readonly ref: {
|
|
503
528
|
/** Invalidate all ref queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
504
529
|
/** Invalidate ref list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -544,6 +569,11 @@ export declare const invalidate: {
|
|
|
544
569
|
/** Invalidate appMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
545
570
|
/** Invalidate a specific appMembershipDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
546
571
|
};
|
|
572
|
+
/** Invalidate orgMembershipDefault queries */ readonly orgMembershipDefault: {
|
|
573
|
+
/** Invalidate all orgMembershipDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
574
|
+
/** Invalidate orgMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
575
|
+
/** Invalidate a specific orgMembershipDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
576
|
+
};
|
|
547
577
|
/** Invalidate commit queries */ readonly commit: {
|
|
548
578
|
/** Invalidate all commit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
549
579
|
/** Invalidate commit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -559,11 +589,6 @@ export declare const invalidate: {
|
|
|
559
589
|
/** Invalidate membershipType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
560
590
|
/** Invalidate a specific membershipType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
561
591
|
};
|
|
562
|
-
/** Invalidate orgMembershipDefault queries */ readonly orgMembershipDefault: {
|
|
563
|
-
/** Invalidate all orgMembershipDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
564
|
-
/** Invalidate orgMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
565
|
-
/** Invalidate a specific orgMembershipDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
566
|
-
};
|
|
567
592
|
/** Invalidate rlsModule queries */ readonly rlsModule: {
|
|
568
593
|
/** Invalidate all rlsModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
569
594
|
/** Invalidate rlsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -574,6 +599,11 @@ export declare const invalidate: {
|
|
|
574
599
|
/** Invalidate sqlAction list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
575
600
|
/** Invalidate a specific sqlAction */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
576
601
|
};
|
|
602
|
+
/** Invalidate orgMembershipSetting queries */ readonly orgMembershipSetting: {
|
|
603
|
+
/** Invalidate all orgMembershipSetting queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
604
|
+
/** Invalidate orgMembershipSetting list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
605
|
+
/** Invalidate a specific orgMembershipSetting */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
606
|
+
};
|
|
577
607
|
/** Invalidate user queries */ readonly user: {
|
|
578
608
|
/** Invalidate all user queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
579
609
|
/** Invalidate user list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -636,6 +666,7 @@ export declare const remove: {
|
|
|
636
666
|
/** Remove secureTableProvision from cache */ readonly secureTableProvision: (queryClient: QueryClient, id: string | number) => void;
|
|
637
667
|
/** Remove relationProvision from cache */ readonly relationProvision: (queryClient: QueryClient, id: string | number) => void;
|
|
638
668
|
/** Remove sessionSecretsModule from cache */ readonly sessionSecretsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
669
|
+
/** Remove identityProvidersModule from cache */ readonly identityProvidersModule: (queryClient: QueryClient, id: string | number) => void;
|
|
639
670
|
/** Remove schemaGrant from cache */ readonly schemaGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
640
671
|
/** Remove defaultPrivilege from cache */ readonly defaultPrivilege: (queryClient: QueryClient, id: string | number) => void;
|
|
641
672
|
/** Remove enum from cache */ readonly enum: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -675,6 +706,8 @@ export declare const remove: {
|
|
|
675
706
|
/** Remove storageModule from cache */ readonly storageModule: (queryClient: QueryClient, id: string | number) => void;
|
|
676
707
|
/** Remove entityTypeProvision from cache */ readonly entityTypeProvision: (queryClient: QueryClient, id: string | number) => void;
|
|
677
708
|
/** Remove webauthnCredentialsModule from cache */ readonly webauthnCredentialsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
709
|
+
/** Remove webauthnAuthModule from cache */ readonly webauthnAuthModule: (queryClient: QueryClient, id: string | number) => void;
|
|
710
|
+
/** Remove notificationsModule from cache */ readonly notificationsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
678
711
|
/** Remove databaseProvisionModule from cache */ readonly databaseProvisionModule: (queryClient: QueryClient, id: string | number) => void;
|
|
679
712
|
/** Remove appAdminGrant from cache */ readonly appAdminGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
680
713
|
/** Remove appOwnerGrant from cache */ readonly appOwnerGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -696,12 +729,14 @@ export declare const remove: {
|
|
|
696
729
|
/** Remove email from cache */ readonly email: (queryClient: QueryClient, id: string | number) => void;
|
|
697
730
|
/** Remove phoneNumber from cache */ readonly phoneNumber: (queryClient: QueryClient, id: string | number) => void;
|
|
698
731
|
/** Remove cryptoAddress from cache */ readonly cryptoAddress: (queryClient: QueryClient, id: string | number) => void;
|
|
732
|
+
/** Remove webauthnCredential from cache */ readonly webauthnCredential: (queryClient: QueryClient, id: string | number) => void;
|
|
699
733
|
/** Remove appInvite from cache */ readonly appInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
700
734
|
/** Remove appClaimedInvite from cache */ readonly appClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
701
735
|
/** Remove orgInvite from cache */ readonly orgInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
702
736
|
/** Remove orgClaimedInvite from cache */ readonly orgClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
703
737
|
/** Remove auditLog from cache */ readonly auditLog: (queryClient: QueryClient, id: string | number) => void;
|
|
704
738
|
/** Remove appPermissionDefault from cache */ readonly appPermissionDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
739
|
+
/** Remove identityProvider from cache */ readonly identityProvider: (queryClient: QueryClient, id: string | number) => void;
|
|
705
740
|
/** Remove ref from cache */ readonly ref: (queryClient: QueryClient, id: string | number) => void;
|
|
706
741
|
/** Remove store from cache */ readonly store: (queryClient: QueryClient, id: string | number) => void;
|
|
707
742
|
/** Remove roleType from cache */ readonly roleType: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -711,12 +746,13 @@ export declare const remove: {
|
|
|
711
746
|
/** Remove devicesModule from cache */ readonly devicesModule: (queryClient: QueryClient, id: string | number) => void;
|
|
712
747
|
/** Remove userConnectedAccount from cache */ readonly userConnectedAccount: (queryClient: QueryClient, id: string | number) => void;
|
|
713
748
|
/** Remove appMembershipDefault from cache */ readonly appMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
749
|
+
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
714
750
|
/** Remove commit from cache */ readonly commit: (queryClient: QueryClient, id: string | number) => void;
|
|
715
751
|
/** Remove rateLimitsModule from cache */ readonly rateLimitsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
716
752
|
/** Remove membershipType from cache */ readonly membershipType: (queryClient: QueryClient, id: string | number) => void;
|
|
717
|
-
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
718
753
|
/** Remove rlsModule from cache */ readonly rlsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
719
754
|
/** Remove sqlAction from cache */ readonly sqlAction: (queryClient: QueryClient, id: string | number) => void;
|
|
755
|
+
/** Remove orgMembershipSetting from cache */ readonly orgMembershipSetting: (queryClient: QueryClient, id: string | number) => void;
|
|
720
756
|
/** Remove user from cache */ readonly user: (queryClient: QueryClient, id: string | number) => void;
|
|
721
757
|
/** Remove astMigration from cache */ readonly astMigration: (queryClient: QueryClient, id: string | number) => void;
|
|
722
758
|
/** Remove appMembership from cache */ readonly appMembership: (queryClient: QueryClient, id: string | number) => void;
|