@constructive-io/react 0.12.7 → 0.12.8
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/admin/schema-types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { AppAchievement, AppAdminGrant, AppClaimedInvite, AppGrant, AppInvite, AppLevel, AppLevelRequirement, AppLimit, AppLimitDefault, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, AppStep, MembershipType, OrgAdminGrant, OrgChartEdge, OrgChartEdgeGrant, OrgClaimedInvite, OrgGetManagersRecord, OrgGetSubordinatesRecord, OrgGrant, OrgInvite, OrgLimit, OrgLimitDefault, OrgMember, OrgMemberProfile, OrgMembership, OrgMembershipDefault, OrgOwnerGrant, OrgPermission, OrgPermissionDefault, BitStringFilter, BooleanFilter, DatetimeFilter, IntFilter, StringFilter, UUIDFilter } from './types';
|
|
6
|
+
import type { AppAchievement, AppAdminGrant, AppClaimedInvite, AppGrant, AppInvite, AppLevel, AppLevelRequirement, AppLimit, AppLimitDefault, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, AppStep, MembershipType, OrgAdminGrant, OrgChartEdge, OrgChartEdgeGrant, OrgClaimedInvite, OrgGetManagersRecord, OrgGetSubordinatesRecord, OrgGrant, OrgInvite, OrgLimit, OrgLimitDefault, OrgMember, OrgMemberProfile, OrgMembership, OrgMembershipDefault, OrgMembershipSetting, OrgOwnerGrant, OrgPermission, OrgPermissionDefault, BitStringFilter, BooleanFilter, DatetimeFilter, IntFilter, StringFilter, UUIDFilter } from './types';
|
|
7
7
|
export type ConstructiveInternalTypeEmail = unknown;
|
|
8
8
|
export type ConstructiveInternalTypeImage = unknown;
|
|
9
9
|
/** Methods to use when ordering `OrgMember`. */
|
|
@@ -46,6 +46,8 @@ export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY
|
|
|
46
46
|
export type AppGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
47
47
|
/** Methods to use when ordering `AppMembershipDefault`. */
|
|
48
48
|
export type AppMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC';
|
|
49
|
+
/** Methods to use when ordering `OrgMembershipDefault`. */
|
|
50
|
+
export type OrgMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
49
51
|
/** Methods to use when ordering `OrgClaimedInvite`. */
|
|
50
52
|
export type OrgClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
51
53
|
/** Methods to use when ordering `OrgGrant`. */
|
|
@@ -54,10 +56,10 @@ export type OrgGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
|
|
|
54
56
|
export type OrgChartEdgeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'POSITION_TITLE_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC';
|
|
55
57
|
/** Methods to use when ordering `AppLevelRequirement`. */
|
|
56
58
|
export type AppLevelRequirementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LEVEL_ASC' | 'LEVEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'REQUIRED_COUNT_ASC' | 'REQUIRED_COUNT_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
57
|
-
/** Methods to use when ordering `OrgMembershipDefault`. */
|
|
58
|
-
export type OrgMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'DELETE_MEMBER_CASCADE_GROUPS_ASC' | 'DELETE_MEMBER_CASCADE_GROUPS_DESC' | 'CREATE_GROUPS_CASCADE_MEMBERS_ASC' | 'CREATE_GROUPS_CASCADE_MEMBERS_DESC';
|
|
59
59
|
/** Methods to use when ordering `OrgMemberProfile`. */
|
|
60
60
|
export type OrgMemberProfileOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'MEMBERSHIP_ID_ASC' | 'MEMBERSHIP_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'BIO_ASC' | 'BIO_DESC' | 'PROFILE_PICTURE_ASC' | 'PROFILE_PICTURE_DESC';
|
|
61
|
+
/** Methods to use when ordering `OrgMembershipSetting`. */
|
|
62
|
+
export type OrgMembershipSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'DELETE_MEMBER_CASCADE_CHILDREN_ASC' | 'DELETE_MEMBER_CASCADE_CHILDREN_DESC' | 'CREATE_CHILD_CASCADE_OWNERS_ASC' | 'CREATE_CHILD_CASCADE_OWNERS_DESC' | 'CREATE_CHILD_CASCADE_ADMINS_ASC' | 'CREATE_CHILD_CASCADE_ADMINS_DESC' | 'CREATE_CHILD_CASCADE_MEMBERS_ASC' | 'CREATE_CHILD_CASCADE_MEMBERS_DESC' | 'ALLOW_EXTERNAL_MEMBERS_ASC' | 'ALLOW_EXTERNAL_MEMBERS_DESC' | 'POPULATE_MEMBER_EMAIL_ASC' | 'POPULATE_MEMBER_EMAIL_DESC';
|
|
61
63
|
/** Methods to use when ordering `AppLevel`. */
|
|
62
64
|
export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
63
65
|
/** Methods to use when ordering `AppInvite`. */
|
|
@@ -464,6 +466,29 @@ export interface AppMembershipDefaultFilter {
|
|
|
464
466
|
/** Negates the expression. */
|
|
465
467
|
not?: AppMembershipDefaultFilter;
|
|
466
468
|
}
|
|
469
|
+
/** A filter to be used against `OrgMembershipDefault` object types. All fields are combined with a logical ‘and.’ */
|
|
470
|
+
export interface OrgMembershipDefaultFilter {
|
|
471
|
+
/** Filter by the object’s `id` field. */
|
|
472
|
+
id?: UUIDFilter;
|
|
473
|
+
/** Filter by the object’s `createdAt` field. */
|
|
474
|
+
createdAt?: DatetimeFilter;
|
|
475
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
476
|
+
updatedAt?: DatetimeFilter;
|
|
477
|
+
/** Filter by the object’s `createdBy` field. */
|
|
478
|
+
createdBy?: UUIDFilter;
|
|
479
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
480
|
+
updatedBy?: UUIDFilter;
|
|
481
|
+
/** Filter by the object’s `isApproved` field. */
|
|
482
|
+
isApproved?: BooleanFilter;
|
|
483
|
+
/** Filter by the object’s `entityId` field. */
|
|
484
|
+
entityId?: UUIDFilter;
|
|
485
|
+
/** Checks for all expressions in this list. */
|
|
486
|
+
and?: OrgMembershipDefaultFilter[];
|
|
487
|
+
/** Checks for any expressions in this list. */
|
|
488
|
+
or?: OrgMembershipDefaultFilter[];
|
|
489
|
+
/** Negates the expression. */
|
|
490
|
+
not?: OrgMembershipDefaultFilter;
|
|
491
|
+
}
|
|
467
492
|
/** A filter to be used against `OrgClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
|
|
468
493
|
export interface OrgClaimedInviteFilter {
|
|
469
494
|
/** Filter by the object’s `id` field. */
|
|
@@ -560,33 +585,6 @@ export interface AppLevelRequirementFilter {
|
|
|
560
585
|
/** Negates the expression. */
|
|
561
586
|
not?: AppLevelRequirementFilter;
|
|
562
587
|
}
|
|
563
|
-
/** A filter to be used against `OrgMembershipDefault` object types. All fields are combined with a logical ‘and.’ */
|
|
564
|
-
export interface OrgMembershipDefaultFilter {
|
|
565
|
-
/** Filter by the object’s `id` field. */
|
|
566
|
-
id?: UUIDFilter;
|
|
567
|
-
/** Filter by the object’s `createdAt` field. */
|
|
568
|
-
createdAt?: DatetimeFilter;
|
|
569
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
570
|
-
updatedAt?: DatetimeFilter;
|
|
571
|
-
/** Filter by the object’s `createdBy` field. */
|
|
572
|
-
createdBy?: UUIDFilter;
|
|
573
|
-
/** Filter by the object’s `updatedBy` field. */
|
|
574
|
-
updatedBy?: UUIDFilter;
|
|
575
|
-
/** Filter by the object’s `isApproved` field. */
|
|
576
|
-
isApproved?: BooleanFilter;
|
|
577
|
-
/** Filter by the object’s `entityId` field. */
|
|
578
|
-
entityId?: UUIDFilter;
|
|
579
|
-
/** Filter by the object’s `deleteMemberCascadeGroups` field. */
|
|
580
|
-
deleteMemberCascadeGroups?: BooleanFilter;
|
|
581
|
-
/** Filter by the object’s `createGroupsCascadeMembers` field. */
|
|
582
|
-
createGroupsCascadeMembers?: BooleanFilter;
|
|
583
|
-
/** Checks for all expressions in this list. */
|
|
584
|
-
and?: OrgMembershipDefaultFilter[];
|
|
585
|
-
/** Checks for any expressions in this list. */
|
|
586
|
-
or?: OrgMembershipDefaultFilter[];
|
|
587
|
-
/** Negates the expression. */
|
|
588
|
-
not?: OrgMembershipDefaultFilter;
|
|
589
|
-
}
|
|
590
588
|
/** A filter to be used against `OrgMemberProfile` object types. All fields are combined with a logical ‘and.’ */
|
|
591
589
|
export interface OrgMemberProfileFilter {
|
|
592
590
|
/** Filter by the object’s `id` field. */
|
|
@@ -704,6 +702,39 @@ export interface OrgMembershipFilter {
|
|
|
704
702
|
/** A related `orgMemberProfileByMembershipId` exists. */
|
|
705
703
|
orgMemberProfileByMembershipIdExists?: boolean;
|
|
706
704
|
}
|
|
705
|
+
/** A filter to be used against `OrgMembershipSetting` object types. All fields are combined with a logical ‘and.’ */
|
|
706
|
+
export interface OrgMembershipSettingFilter {
|
|
707
|
+
/** Filter by the object’s `id` field. */
|
|
708
|
+
id?: UUIDFilter;
|
|
709
|
+
/** Filter by the object’s `createdAt` field. */
|
|
710
|
+
createdAt?: DatetimeFilter;
|
|
711
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
712
|
+
updatedAt?: DatetimeFilter;
|
|
713
|
+
/** Filter by the object’s `createdBy` field. */
|
|
714
|
+
createdBy?: UUIDFilter;
|
|
715
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
716
|
+
updatedBy?: UUIDFilter;
|
|
717
|
+
/** Filter by the object’s `entityId` field. */
|
|
718
|
+
entityId?: UUIDFilter;
|
|
719
|
+
/** Filter by the object’s `deleteMemberCascadeChildren` field. */
|
|
720
|
+
deleteMemberCascadeChildren?: BooleanFilter;
|
|
721
|
+
/** Filter by the object’s `createChildCascadeOwners` field. */
|
|
722
|
+
createChildCascadeOwners?: BooleanFilter;
|
|
723
|
+
/** Filter by the object’s `createChildCascadeAdmins` field. */
|
|
724
|
+
createChildCascadeAdmins?: BooleanFilter;
|
|
725
|
+
/** Filter by the object’s `createChildCascadeMembers` field. */
|
|
726
|
+
createChildCascadeMembers?: BooleanFilter;
|
|
727
|
+
/** Filter by the object’s `allowExternalMembers` field. */
|
|
728
|
+
allowExternalMembers?: BooleanFilter;
|
|
729
|
+
/** Filter by the object’s `populateMemberEmail` field. */
|
|
730
|
+
populateMemberEmail?: BooleanFilter;
|
|
731
|
+
/** Checks for all expressions in this list. */
|
|
732
|
+
and?: OrgMembershipSettingFilter[];
|
|
733
|
+
/** Checks for any expressions in this list. */
|
|
734
|
+
or?: OrgMembershipSettingFilter[];
|
|
735
|
+
/** Negates the expression. */
|
|
736
|
+
not?: OrgMembershipSettingFilter;
|
|
737
|
+
}
|
|
707
738
|
/** A filter to be used against `AppLevel` object types. All fields are combined with a logical ‘and.’ */
|
|
708
739
|
export interface AppLevelFilter {
|
|
709
740
|
/** Filter by the object’s `id` field. */
|
|
@@ -1252,6 +1283,23 @@ export interface AppMembershipDefaultInput {
|
|
|
1252
1283
|
/** Whether new members are automatically verified upon joining */
|
|
1253
1284
|
isVerified?: boolean;
|
|
1254
1285
|
}
|
|
1286
|
+
export interface CreateOrgMembershipDefaultInput {
|
|
1287
|
+
clientMutationId?: string;
|
|
1288
|
+
/** The `OrgMembershipDefault` to be created by this mutation. */
|
|
1289
|
+
orgMembershipDefault: OrgMembershipDefaultInput;
|
|
1290
|
+
}
|
|
1291
|
+
/** An input for mutations affecting `OrgMembershipDefault` */
|
|
1292
|
+
export interface OrgMembershipDefaultInput {
|
|
1293
|
+
id?: string;
|
|
1294
|
+
createdAt?: string;
|
|
1295
|
+
updatedAt?: string;
|
|
1296
|
+
createdBy?: string;
|
|
1297
|
+
updatedBy?: string;
|
|
1298
|
+
/** Whether new members are automatically approved upon joining */
|
|
1299
|
+
isApproved?: boolean;
|
|
1300
|
+
/** References the entity these membership defaults apply to */
|
|
1301
|
+
entityId: string;
|
|
1302
|
+
}
|
|
1255
1303
|
export interface CreateOrgClaimedInviteInput {
|
|
1256
1304
|
clientMutationId?: string;
|
|
1257
1305
|
/** The `OrgClaimedInvite` to be created by this mutation. */
|
|
@@ -1332,27 +1380,6 @@ export interface AppLevelRequirementInput {
|
|
|
1332
1380
|
createdAt?: string;
|
|
1333
1381
|
updatedAt?: string;
|
|
1334
1382
|
}
|
|
1335
|
-
export interface CreateOrgMembershipDefaultInput {
|
|
1336
|
-
clientMutationId?: string;
|
|
1337
|
-
/** The `OrgMembershipDefault` to be created by this mutation. */
|
|
1338
|
-
orgMembershipDefault: OrgMembershipDefaultInput;
|
|
1339
|
-
}
|
|
1340
|
-
/** An input for mutations affecting `OrgMembershipDefault` */
|
|
1341
|
-
export interface OrgMembershipDefaultInput {
|
|
1342
|
-
id?: string;
|
|
1343
|
-
createdAt?: string;
|
|
1344
|
-
updatedAt?: string;
|
|
1345
|
-
createdBy?: string;
|
|
1346
|
-
updatedBy?: string;
|
|
1347
|
-
/** Whether new members are automatically approved upon joining */
|
|
1348
|
-
isApproved?: boolean;
|
|
1349
|
-
/** References the entity these membership defaults apply to */
|
|
1350
|
-
entityId: string;
|
|
1351
|
-
/** When an org member is deleted, whether to cascade-remove their group memberships */
|
|
1352
|
-
deleteMemberCascadeGroups?: boolean;
|
|
1353
|
-
/** When a group is created, whether to auto-add existing org members as group members */
|
|
1354
|
-
createGroupsCascadeMembers?: boolean;
|
|
1355
|
-
}
|
|
1356
1383
|
export interface CreateOrgMemberProfileInput {
|
|
1357
1384
|
clientMutationId?: string;
|
|
1358
1385
|
/** The `OrgMemberProfile` to be created by this mutation. */
|
|
@@ -1380,6 +1407,33 @@ export interface OrgMemberProfileInput {
|
|
|
1380
1407
|
/** Profile picture visible to other entity members */
|
|
1381
1408
|
profilePicture?: ConstructiveInternalTypeImage;
|
|
1382
1409
|
}
|
|
1410
|
+
export interface CreateOrgMembershipSettingInput {
|
|
1411
|
+
clientMutationId?: string;
|
|
1412
|
+
/** The `OrgMembershipSetting` to be created by this mutation. */
|
|
1413
|
+
orgMembershipSetting: OrgMembershipSettingInput;
|
|
1414
|
+
}
|
|
1415
|
+
/** An input for mutations affecting `OrgMembershipSetting` */
|
|
1416
|
+
export interface OrgMembershipSettingInput {
|
|
1417
|
+
id?: string;
|
|
1418
|
+
createdAt?: string;
|
|
1419
|
+
updatedAt?: string;
|
|
1420
|
+
createdBy?: string;
|
|
1421
|
+
updatedBy?: string;
|
|
1422
|
+
/** References the entity these settings apply to */
|
|
1423
|
+
entityId: string;
|
|
1424
|
+
/** When a member is deleted, whether to cascade-remove their descendant-entity memberships */
|
|
1425
|
+
deleteMemberCascadeChildren?: boolean;
|
|
1426
|
+
/** When a child entity is created, whether to auto-add existing org-level owners as child-entity owners */
|
|
1427
|
+
createChildCascadeOwners?: boolean;
|
|
1428
|
+
/** When a child entity is created, whether to auto-add existing org-level admins as child-entity admins */
|
|
1429
|
+
createChildCascadeAdmins?: boolean;
|
|
1430
|
+
/** When a child entity is created, whether to auto-add existing org-level members (non-admin, non-owner) as child-entity members */
|
|
1431
|
+
createChildCascadeMembers?: boolean;
|
|
1432
|
+
/** Whether descendants of this org may admit members who are not already org members (outside-collaborators toggle) */
|
|
1433
|
+
allowExternalMembers?: boolean;
|
|
1434
|
+
/** Whether member_profiles.email is snapshot on join and kept synced with the user's primary email. When FALSE, the email field is left blank and never synced from the user's primary email. */
|
|
1435
|
+
populateMemberEmail?: boolean;
|
|
1436
|
+
}
|
|
1383
1437
|
export interface CreateAppLevelInput {
|
|
1384
1438
|
clientMutationId?: string;
|
|
1385
1439
|
/** The `AppLevel` to be created by this mutation. */
|
|
@@ -1886,6 +1940,24 @@ export interface AppMembershipDefaultPatch {
|
|
|
1886
1940
|
/** Whether new members are automatically verified upon joining */
|
|
1887
1941
|
isVerified?: boolean;
|
|
1888
1942
|
}
|
|
1943
|
+
export interface UpdateOrgMembershipDefaultInput {
|
|
1944
|
+
clientMutationId?: string;
|
|
1945
|
+
id: string;
|
|
1946
|
+
/** An object where the defined keys will be set on the `OrgMembershipDefault` being updated. */
|
|
1947
|
+
orgMembershipDefaultPatch: OrgMembershipDefaultPatch;
|
|
1948
|
+
}
|
|
1949
|
+
/** Represents an update to a `OrgMembershipDefault`. Fields that are set will be updated. */
|
|
1950
|
+
export interface OrgMembershipDefaultPatch {
|
|
1951
|
+
id?: string;
|
|
1952
|
+
createdAt?: string;
|
|
1953
|
+
updatedAt?: string;
|
|
1954
|
+
createdBy?: string;
|
|
1955
|
+
updatedBy?: string;
|
|
1956
|
+
/** Whether new members are automatically approved upon joining */
|
|
1957
|
+
isApproved?: boolean;
|
|
1958
|
+
/** References the entity these membership defaults apply to */
|
|
1959
|
+
entityId?: string;
|
|
1960
|
+
}
|
|
1889
1961
|
export interface UpdateOrgClaimedInviteInput {
|
|
1890
1962
|
clientMutationId?: string;
|
|
1891
1963
|
id: string;
|
|
@@ -1970,28 +2042,6 @@ export interface AppLevelRequirementPatch {
|
|
|
1970
2042
|
createdAt?: string;
|
|
1971
2043
|
updatedAt?: string;
|
|
1972
2044
|
}
|
|
1973
|
-
export interface UpdateOrgMembershipDefaultInput {
|
|
1974
|
-
clientMutationId?: string;
|
|
1975
|
-
id: string;
|
|
1976
|
-
/** An object where the defined keys will be set on the `OrgMembershipDefault` being updated. */
|
|
1977
|
-
orgMembershipDefaultPatch: OrgMembershipDefaultPatch;
|
|
1978
|
-
}
|
|
1979
|
-
/** Represents an update to a `OrgMembershipDefault`. Fields that are set will be updated. */
|
|
1980
|
-
export interface OrgMembershipDefaultPatch {
|
|
1981
|
-
id?: string;
|
|
1982
|
-
createdAt?: string;
|
|
1983
|
-
updatedAt?: string;
|
|
1984
|
-
createdBy?: string;
|
|
1985
|
-
updatedBy?: string;
|
|
1986
|
-
/** Whether new members are automatically approved upon joining */
|
|
1987
|
-
isApproved?: boolean;
|
|
1988
|
-
/** References the entity these membership defaults apply to */
|
|
1989
|
-
entityId?: string;
|
|
1990
|
-
/** When an org member is deleted, whether to cascade-remove their group memberships */
|
|
1991
|
-
deleteMemberCascadeGroups?: boolean;
|
|
1992
|
-
/** When a group is created, whether to auto-add existing org members as group members */
|
|
1993
|
-
createGroupsCascadeMembers?: boolean;
|
|
1994
|
-
}
|
|
1995
2045
|
export interface UpdateOrgMemberProfileInput {
|
|
1996
2046
|
clientMutationId?: string;
|
|
1997
2047
|
id: string;
|
|
@@ -2022,6 +2072,34 @@ export interface OrgMemberProfilePatch {
|
|
|
2022
2072
|
/** Upload for Profile picture visible to other entity members */
|
|
2023
2073
|
profilePictureUpload?: File;
|
|
2024
2074
|
}
|
|
2075
|
+
export interface UpdateOrgMembershipSettingInput {
|
|
2076
|
+
clientMutationId?: string;
|
|
2077
|
+
id: string;
|
|
2078
|
+
/** An object where the defined keys will be set on the `OrgMembershipSetting` being updated. */
|
|
2079
|
+
orgMembershipSettingPatch: OrgMembershipSettingPatch;
|
|
2080
|
+
}
|
|
2081
|
+
/** Represents an update to a `OrgMembershipSetting`. Fields that are set will be updated. */
|
|
2082
|
+
export interface OrgMembershipSettingPatch {
|
|
2083
|
+
id?: string;
|
|
2084
|
+
createdAt?: string;
|
|
2085
|
+
updatedAt?: string;
|
|
2086
|
+
createdBy?: string;
|
|
2087
|
+
updatedBy?: string;
|
|
2088
|
+
/** References the entity these settings apply to */
|
|
2089
|
+
entityId?: string;
|
|
2090
|
+
/** When a member is deleted, whether to cascade-remove their descendant-entity memberships */
|
|
2091
|
+
deleteMemberCascadeChildren?: boolean;
|
|
2092
|
+
/** When a child entity is created, whether to auto-add existing org-level owners as child-entity owners */
|
|
2093
|
+
createChildCascadeOwners?: boolean;
|
|
2094
|
+
/** When a child entity is created, whether to auto-add existing org-level admins as child-entity admins */
|
|
2095
|
+
createChildCascadeAdmins?: boolean;
|
|
2096
|
+
/** When a child entity is created, whether to auto-add existing org-level members (non-admin, non-owner) as child-entity members */
|
|
2097
|
+
createChildCascadeMembers?: boolean;
|
|
2098
|
+
/** Whether descendants of this org may admit members who are not already org members (outside-collaborators toggle) */
|
|
2099
|
+
allowExternalMembers?: boolean;
|
|
2100
|
+
/** Whether member_profiles.email is snapshot on join and kept synced with the user's primary email. When FALSE, the email field is left blank and never synced from the user's primary email. */
|
|
2101
|
+
populateMemberEmail?: boolean;
|
|
2102
|
+
}
|
|
2025
2103
|
export interface UpdateAppLevelInput {
|
|
2026
2104
|
clientMutationId?: string;
|
|
2027
2105
|
id: string;
|
|
@@ -2264,6 +2342,10 @@ export interface DeleteAppMembershipDefaultInput {
|
|
|
2264
2342
|
clientMutationId?: string;
|
|
2265
2343
|
id: string;
|
|
2266
2344
|
}
|
|
2345
|
+
export interface DeleteOrgMembershipDefaultInput {
|
|
2346
|
+
clientMutationId?: string;
|
|
2347
|
+
id: string;
|
|
2348
|
+
}
|
|
2267
2349
|
export interface DeleteOrgClaimedInviteInput {
|
|
2268
2350
|
clientMutationId?: string;
|
|
2269
2351
|
id: string;
|
|
@@ -2280,11 +2362,11 @@ export interface DeleteAppLevelRequirementInput {
|
|
|
2280
2362
|
clientMutationId?: string;
|
|
2281
2363
|
id: string;
|
|
2282
2364
|
}
|
|
2283
|
-
export interface
|
|
2365
|
+
export interface DeleteOrgMemberProfileInput {
|
|
2284
2366
|
clientMutationId?: string;
|
|
2285
2367
|
id: string;
|
|
2286
2368
|
}
|
|
2287
|
-
export interface
|
|
2369
|
+
export interface DeleteOrgMembershipSettingInput {
|
|
2288
2370
|
clientMutationId?: string;
|
|
2289
2371
|
id: string;
|
|
2290
2372
|
}
|
|
@@ -2311,6 +2393,13 @@ export interface DeleteOrgMembershipInput {
|
|
|
2311
2393
|
export interface RequestUploadUrlInput {
|
|
2312
2394
|
/** Bucket key (e.g., "public", "private") */
|
|
2313
2395
|
bucketKey: string;
|
|
2396
|
+
/**
|
|
2397
|
+
* Owner entity ID for entity-scoped uploads.
|
|
2398
|
+
* Omit for app-level (database-wide) storage.
|
|
2399
|
+
* When provided, resolves the storage module for the entity type
|
|
2400
|
+
* that owns this entity instance (e.g., a data room ID, team ID).
|
|
2401
|
+
*/
|
|
2402
|
+
ownerId?: string;
|
|
2314
2403
|
/** SHA-256 content hash computed by the client (hex-encoded, 64 chars) */
|
|
2315
2404
|
contentHash: string;
|
|
2316
2405
|
/** MIME type of the file (e.g., "image/png") */
|
|
@@ -2327,6 +2416,11 @@ export interface ConfirmUploadInput {
|
|
|
2327
2416
|
export interface ProvisionBucketInput {
|
|
2328
2417
|
/** The logical bucket key (e.g., "public", "private") */
|
|
2329
2418
|
bucketKey: string;
|
|
2419
|
+
/**
|
|
2420
|
+
* Owner entity ID for entity-scoped bucket provisioning.
|
|
2421
|
+
* Omit for app-level (database-wide) storage.
|
|
2422
|
+
*/
|
|
2423
|
+
ownerId?: string;
|
|
2330
2424
|
}
|
|
2331
2425
|
/** A connection to a list of `OrgGetManagersRecord` values. */
|
|
2332
2426
|
export interface OrgGetManagersConnection {
|
|
@@ -2489,6 +2583,13 @@ export interface AppMembershipDefaultConnection {
|
|
|
2489
2583
|
pageInfo: PageInfo;
|
|
2490
2584
|
totalCount: number;
|
|
2491
2585
|
}
|
|
2586
|
+
/** A connection to a list of `OrgMembershipDefault` values. */
|
|
2587
|
+
export interface OrgMembershipDefaultConnection {
|
|
2588
|
+
nodes: OrgMembershipDefault[];
|
|
2589
|
+
edges: OrgMembershipDefaultEdge[];
|
|
2590
|
+
pageInfo: PageInfo;
|
|
2591
|
+
totalCount: number;
|
|
2592
|
+
}
|
|
2492
2593
|
/** A connection to a list of `OrgClaimedInvite` values. */
|
|
2493
2594
|
export interface OrgClaimedInviteConnection {
|
|
2494
2595
|
nodes: OrgClaimedInvite[];
|
|
@@ -2510,13 +2611,6 @@ export interface OrgChartEdgeConnection {
|
|
|
2510
2611
|
pageInfo: PageInfo;
|
|
2511
2612
|
totalCount: number;
|
|
2512
2613
|
}
|
|
2513
|
-
/** A connection to a list of `OrgMembershipDefault` values. */
|
|
2514
|
-
export interface OrgMembershipDefaultConnection {
|
|
2515
|
-
nodes: OrgMembershipDefault[];
|
|
2516
|
-
edges: OrgMembershipDefaultEdge[];
|
|
2517
|
-
pageInfo: PageInfo;
|
|
2518
|
-
totalCount: number;
|
|
2519
|
-
}
|
|
2520
2614
|
/** A connection to a list of `OrgMemberProfile` values. */
|
|
2521
2615
|
export interface OrgMemberProfileConnection {
|
|
2522
2616
|
nodes: OrgMemberProfile[];
|
|
@@ -2524,6 +2618,13 @@ export interface OrgMemberProfileConnection {
|
|
|
2524
2618
|
pageInfo: PageInfo;
|
|
2525
2619
|
totalCount: number;
|
|
2526
2620
|
}
|
|
2621
|
+
/** A connection to a list of `OrgMembershipSetting` values. */
|
|
2622
|
+
export interface OrgMembershipSettingConnection {
|
|
2623
|
+
nodes: OrgMembershipSetting[];
|
|
2624
|
+
edges: OrgMembershipSettingEdge[];
|
|
2625
|
+
pageInfo: PageInfo;
|
|
2626
|
+
totalCount: number;
|
|
2627
|
+
}
|
|
2527
2628
|
/** A connection to a list of `AppLevel` values. */
|
|
2528
2629
|
export interface AppLevelConnection {
|
|
2529
2630
|
nodes: AppLevel[];
|
|
@@ -2691,6 +2792,12 @@ export interface CreateAppMembershipDefaultPayload {
|
|
|
2691
2792
|
appMembershipDefault?: AppMembershipDefault | null;
|
|
2692
2793
|
appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
|
|
2693
2794
|
}
|
|
2795
|
+
export interface CreateOrgMembershipDefaultPayload {
|
|
2796
|
+
clientMutationId?: string | null;
|
|
2797
|
+
/** The `OrgMembershipDefault` that was created by this mutation. */
|
|
2798
|
+
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
2799
|
+
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
2800
|
+
}
|
|
2694
2801
|
export interface CreateOrgClaimedInvitePayload {
|
|
2695
2802
|
clientMutationId?: string | null;
|
|
2696
2803
|
/** The `OrgClaimedInvite` that was created by this mutation. */
|
|
@@ -2715,18 +2822,18 @@ export interface CreateAppLevelRequirementPayload {
|
|
|
2715
2822
|
appLevelRequirement?: AppLevelRequirement | null;
|
|
2716
2823
|
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
2717
2824
|
}
|
|
2718
|
-
export interface CreateOrgMembershipDefaultPayload {
|
|
2719
|
-
clientMutationId?: string | null;
|
|
2720
|
-
/** The `OrgMembershipDefault` that was created by this mutation. */
|
|
2721
|
-
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
2722
|
-
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
2723
|
-
}
|
|
2724
2825
|
export interface CreateOrgMemberProfilePayload {
|
|
2725
2826
|
clientMutationId?: string | null;
|
|
2726
2827
|
/** The `OrgMemberProfile` that was created by this mutation. */
|
|
2727
2828
|
orgMemberProfile?: OrgMemberProfile | null;
|
|
2728
2829
|
orgMemberProfileEdge?: OrgMemberProfileEdge | null;
|
|
2729
2830
|
}
|
|
2831
|
+
export interface CreateOrgMembershipSettingPayload {
|
|
2832
|
+
clientMutationId?: string | null;
|
|
2833
|
+
/** The `OrgMembershipSetting` that was created by this mutation. */
|
|
2834
|
+
orgMembershipSetting?: OrgMembershipSetting | null;
|
|
2835
|
+
orgMembershipSettingEdge?: OrgMembershipSettingEdge | null;
|
|
2836
|
+
}
|
|
2730
2837
|
export interface CreateAppLevelPayload {
|
|
2731
2838
|
clientMutationId?: string | null;
|
|
2732
2839
|
/** The `AppLevel` that was created by this mutation. */
|
|
@@ -2877,6 +2984,12 @@ export interface UpdateAppMembershipDefaultPayload {
|
|
|
2877
2984
|
appMembershipDefault?: AppMembershipDefault | null;
|
|
2878
2985
|
appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
|
|
2879
2986
|
}
|
|
2987
|
+
export interface UpdateOrgMembershipDefaultPayload {
|
|
2988
|
+
clientMutationId?: string | null;
|
|
2989
|
+
/** The `OrgMembershipDefault` that was updated by this mutation. */
|
|
2990
|
+
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
2991
|
+
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
2992
|
+
}
|
|
2880
2993
|
export interface UpdateOrgClaimedInvitePayload {
|
|
2881
2994
|
clientMutationId?: string | null;
|
|
2882
2995
|
/** The `OrgClaimedInvite` that was updated by this mutation. */
|
|
@@ -2901,18 +3014,18 @@ export interface UpdateAppLevelRequirementPayload {
|
|
|
2901
3014
|
appLevelRequirement?: AppLevelRequirement | null;
|
|
2902
3015
|
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
2903
3016
|
}
|
|
2904
|
-
export interface UpdateOrgMembershipDefaultPayload {
|
|
2905
|
-
clientMutationId?: string | null;
|
|
2906
|
-
/** The `OrgMembershipDefault` that was updated by this mutation. */
|
|
2907
|
-
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
2908
|
-
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
2909
|
-
}
|
|
2910
3017
|
export interface UpdateOrgMemberProfilePayload {
|
|
2911
3018
|
clientMutationId?: string | null;
|
|
2912
3019
|
/** The `OrgMemberProfile` that was updated by this mutation. */
|
|
2913
3020
|
orgMemberProfile?: OrgMemberProfile | null;
|
|
2914
3021
|
orgMemberProfileEdge?: OrgMemberProfileEdge | null;
|
|
2915
3022
|
}
|
|
3023
|
+
export interface UpdateOrgMembershipSettingPayload {
|
|
3024
|
+
clientMutationId?: string | null;
|
|
3025
|
+
/** The `OrgMembershipSetting` that was updated by this mutation. */
|
|
3026
|
+
orgMembershipSetting?: OrgMembershipSetting | null;
|
|
3027
|
+
orgMembershipSettingEdge?: OrgMembershipSettingEdge | null;
|
|
3028
|
+
}
|
|
2916
3029
|
export interface UpdateAppLevelPayload {
|
|
2917
3030
|
clientMutationId?: string | null;
|
|
2918
3031
|
/** The `AppLevel` that was updated by this mutation. */
|
|
@@ -3063,6 +3176,12 @@ export interface DeleteAppMembershipDefaultPayload {
|
|
|
3063
3176
|
appMembershipDefault?: AppMembershipDefault | null;
|
|
3064
3177
|
appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
|
|
3065
3178
|
}
|
|
3179
|
+
export interface DeleteOrgMembershipDefaultPayload {
|
|
3180
|
+
clientMutationId?: string | null;
|
|
3181
|
+
/** The `OrgMembershipDefault` that was deleted by this mutation. */
|
|
3182
|
+
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
3183
|
+
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
3184
|
+
}
|
|
3066
3185
|
export interface DeleteOrgClaimedInvitePayload {
|
|
3067
3186
|
clientMutationId?: string | null;
|
|
3068
3187
|
/** The `OrgClaimedInvite` that was deleted by this mutation. */
|
|
@@ -3087,18 +3206,18 @@ export interface DeleteAppLevelRequirementPayload {
|
|
|
3087
3206
|
appLevelRequirement?: AppLevelRequirement | null;
|
|
3088
3207
|
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
3089
3208
|
}
|
|
3090
|
-
export interface DeleteOrgMembershipDefaultPayload {
|
|
3091
|
-
clientMutationId?: string | null;
|
|
3092
|
-
/** The `OrgMembershipDefault` that was deleted by this mutation. */
|
|
3093
|
-
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
3094
|
-
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
3095
|
-
}
|
|
3096
3209
|
export interface DeleteOrgMemberProfilePayload {
|
|
3097
3210
|
clientMutationId?: string | null;
|
|
3098
3211
|
/** The `OrgMemberProfile` that was deleted by this mutation. */
|
|
3099
3212
|
orgMemberProfile?: OrgMemberProfile | null;
|
|
3100
3213
|
orgMemberProfileEdge?: OrgMemberProfileEdge | null;
|
|
3101
3214
|
}
|
|
3215
|
+
export interface DeleteOrgMembershipSettingPayload {
|
|
3216
|
+
clientMutationId?: string | null;
|
|
3217
|
+
/** The `OrgMembershipSetting` that was deleted by this mutation. */
|
|
3218
|
+
orgMembershipSetting?: OrgMembershipSetting | null;
|
|
3219
|
+
orgMembershipSettingEdge?: OrgMembershipSettingEdge | null;
|
|
3220
|
+
}
|
|
3102
3221
|
export interface DeleteAppLevelPayload {
|
|
3103
3222
|
clientMutationId?: string | null;
|
|
3104
3223
|
/** The `AppLevel` that was deleted by this mutation. */
|
|
@@ -3312,6 +3431,12 @@ export interface AppMembershipDefaultEdge {
|
|
|
3312
3431
|
/** The `AppMembershipDefault` at the end of the edge. */
|
|
3313
3432
|
node?: AppMembershipDefault | null;
|
|
3314
3433
|
}
|
|
3434
|
+
/** A `OrgMembershipDefault` edge in the connection. */
|
|
3435
|
+
export interface OrgMembershipDefaultEdge {
|
|
3436
|
+
cursor?: string | null;
|
|
3437
|
+
/** The `OrgMembershipDefault` at the end of the edge. */
|
|
3438
|
+
node?: OrgMembershipDefault | null;
|
|
3439
|
+
}
|
|
3315
3440
|
/** A `OrgClaimedInvite` edge in the connection. */
|
|
3316
3441
|
export interface OrgClaimedInviteEdge {
|
|
3317
3442
|
cursor?: string | null;
|
|
@@ -3330,18 +3455,18 @@ export interface OrgChartEdgeEdge {
|
|
|
3330
3455
|
/** The `OrgChartEdge` at the end of the edge. */
|
|
3331
3456
|
node?: OrgChartEdge | null;
|
|
3332
3457
|
}
|
|
3333
|
-
/** A `OrgMembershipDefault` edge in the connection. */
|
|
3334
|
-
export interface OrgMembershipDefaultEdge {
|
|
3335
|
-
cursor?: string | null;
|
|
3336
|
-
/** The `OrgMembershipDefault` at the end of the edge. */
|
|
3337
|
-
node?: OrgMembershipDefault | null;
|
|
3338
|
-
}
|
|
3339
3458
|
/** A `OrgMemberProfile` edge in the connection. */
|
|
3340
3459
|
export interface OrgMemberProfileEdge {
|
|
3341
3460
|
cursor?: string | null;
|
|
3342
3461
|
/** The `OrgMemberProfile` at the end of the edge. */
|
|
3343
3462
|
node?: OrgMemberProfile | null;
|
|
3344
3463
|
}
|
|
3464
|
+
/** A `OrgMembershipSetting` edge in the connection. */
|
|
3465
|
+
export interface OrgMembershipSettingEdge {
|
|
3466
|
+
cursor?: string | null;
|
|
3467
|
+
/** The `OrgMembershipSetting` at the end of the edge. */
|
|
3468
|
+
node?: OrgMembershipSetting | null;
|
|
3469
|
+
}
|
|
3345
3470
|
/** A `AppLevel` edge in the connection. */
|
|
3346
3471
|
export interface AppLevelEdge {
|
|
3347
3472
|
cursor?: string | null;
|
package/admin/types.d.ts
CHANGED
|
@@ -172,6 +172,15 @@ export interface AppMembershipDefault {
|
|
|
172
172
|
isApproved: boolean | null;
|
|
173
173
|
isVerified: boolean | null;
|
|
174
174
|
}
|
|
175
|
+
export interface OrgMembershipDefault {
|
|
176
|
+
id: string | null;
|
|
177
|
+
createdAt: string | null;
|
|
178
|
+
updatedAt: string | null;
|
|
179
|
+
createdBy: string | null;
|
|
180
|
+
updatedBy: string | null;
|
|
181
|
+
isApproved: boolean | null;
|
|
182
|
+
entityId: string | null;
|
|
183
|
+
}
|
|
175
184
|
export interface OrgClaimedInvite {
|
|
176
185
|
id: string | null;
|
|
177
186
|
data: unknown | null;
|
|
@@ -201,17 +210,6 @@ export interface OrgChartEdge {
|
|
|
201
210
|
positionTitle: string | null;
|
|
202
211
|
positionLevel: number | null;
|
|
203
212
|
}
|
|
204
|
-
export interface OrgMembershipDefault {
|
|
205
|
-
id: string | null;
|
|
206
|
-
createdAt: string | null;
|
|
207
|
-
updatedAt: string | null;
|
|
208
|
-
createdBy: string | null;
|
|
209
|
-
updatedBy: string | null;
|
|
210
|
-
isApproved: boolean | null;
|
|
211
|
-
entityId: string | null;
|
|
212
|
-
deleteMemberCascadeGroups: boolean | null;
|
|
213
|
-
createGroupsCascadeMembers: boolean | null;
|
|
214
|
-
}
|
|
215
213
|
export interface OrgMemberProfile {
|
|
216
214
|
id: string | null;
|
|
217
215
|
createdAt: string | null;
|
|
@@ -225,6 +223,20 @@ export interface OrgMemberProfile {
|
|
|
225
223
|
bio: string | null;
|
|
226
224
|
profilePicture: ConstructiveInternalTypeImage | null;
|
|
227
225
|
}
|
|
226
|
+
export interface OrgMembershipSetting {
|
|
227
|
+
id: string | null;
|
|
228
|
+
createdAt: string | null;
|
|
229
|
+
updatedAt: string | null;
|
|
230
|
+
createdBy: string | null;
|
|
231
|
+
updatedBy: string | null;
|
|
232
|
+
entityId: string | null;
|
|
233
|
+
deleteMemberCascadeChildren: boolean | null;
|
|
234
|
+
createChildCascadeOwners: boolean | null;
|
|
235
|
+
createChildCascadeAdmins: boolean | null;
|
|
236
|
+
createChildCascadeMembers: boolean | null;
|
|
237
|
+
allowExternalMembers: boolean | null;
|
|
238
|
+
populateMemberEmail: boolean | null;
|
|
239
|
+
}
|
|
228
240
|
export interface AppLevel {
|
|
229
241
|
id: string | null;
|
|
230
242
|
name: string | null;
|
package/auth/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: Email, PhoneNumber, CryptoAddress, AuditLog, RoleType, UserConnectedAccount, User
|
|
5
|
+
* Tables: Email, PhoneNumber, CryptoAddress, WebauthnCredential, AuditLog, IdentityProvider, RoleType, UserConnectedAccount, User
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
package/auth/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: Email, PhoneNumber, CryptoAddress, AuditLog, RoleType, UserConnectedAccount, User
|
|
21
|
+
* Tables: Email, PhoneNumber, CryptoAddress, WebauthnCredential, AuditLog, IdentityProvider, RoleType, UserConnectedAccount, User
|
|
22
22
|
*
|
|
23
23
|
* Usage:
|
|
24
24
|
*
|
|
@@ -39,11 +39,21 @@ export declare const invalidate: {
|
|
|
39
39
|
/** Invalidate cryptoAddress list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
40
40
|
/** Invalidate a specific cryptoAddress */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
41
41
|
};
|
|
42
|
+
/** Invalidate webauthnCredential queries */ readonly webauthnCredential: {
|
|
43
|
+
/** Invalidate all webauthnCredential queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
|
+
/** Invalidate webauthnCredential list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
45
|
+
/** Invalidate a specific webauthnCredential */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
46
|
+
};
|
|
42
47
|
/** Invalidate auditLog queries */ readonly auditLog: {
|
|
43
48
|
/** Invalidate all auditLog queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
49
|
/** Invalidate auditLog list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
45
50
|
/** Invalidate a specific auditLog */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
46
51
|
};
|
|
52
|
+
/** Invalidate identityProvider queries */ readonly identityProvider: {
|
|
53
|
+
/** Invalidate all identityProvider queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
54
|
+
/** Invalidate identityProvider list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
55
|
+
/** Invalidate a specific identityProvider */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
56
|
+
};
|
|
47
57
|
/** Invalidate roleType queries */ readonly roleType: {
|
|
48
58
|
/** Invalidate all roleType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
49
59
|
/** Invalidate roleType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -75,7 +85,9 @@ export declare const remove: {
|
|
|
75
85
|
/** Remove email from cache */ readonly email: (queryClient: QueryClient, id: string | number) => void;
|
|
76
86
|
/** Remove phoneNumber from cache */ readonly phoneNumber: (queryClient: QueryClient, id: string | number) => void;
|
|
77
87
|
/** Remove cryptoAddress from cache */ readonly cryptoAddress: (queryClient: QueryClient, id: string | number) => void;
|
|
88
|
+
/** Remove webauthnCredential from cache */ readonly webauthnCredential: (queryClient: QueryClient, id: string | number) => void;
|
|
78
89
|
/** Remove auditLog from cache */ readonly auditLog: (queryClient: QueryClient, id: string | number) => void;
|
|
90
|
+
/** Remove identityProvider from cache */ readonly identityProvider: (queryClient: QueryClient, id: string | number) => void;
|
|
79
91
|
/** Remove roleType from cache */ readonly roleType: (queryClient: QueryClient, id: string | number) => void;
|
|
80
92
|
/** Remove userConnectedAccount from cache */ readonly userConnectedAccount: (queryClient: QueryClient, id: string | number) => void;
|
|
81
93
|
/** Remove user from cache */ readonly user: (queryClient: QueryClient, id: string | number) => void;
|