@constructive-io/react 0.27.1 → 0.27.2
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/api/orm/input-types.d.ts +144 -171
- package/api/schema-types.d.ts +676 -678
- package/api/types.d.ts +9 -14
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +24 -0
- package/auth/hooks/invalidation.js +64 -0
- package/auth/hooks/mutation-keys.d.ts +56 -0
- package/auth/hooks/mutation-keys.js +44 -1
- package/auth/hooks/mutations/index.d.ts +11 -0
- package/auth/hooks/mutations/index.js +11 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +34 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +26 -0
- package/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
- package/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +26 -0
- package/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +34 -0
- package/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreatePrincipalMutation.js +34 -0
- package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +34 -0
- package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
- package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +26 -0
- package/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
- package/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +39 -0
- package/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
- package/auth/hooks/mutations/useDeletePrincipalMutation.js +39 -0
- package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
- package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +26 -0
- package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
- package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +40 -0
- package/auth/hooks/queries/index.d.ts +9 -1
- package/auth/hooks/queries/index.js +9 -1
- package/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
- package/auth/hooks/queries/useOrgApiKeyListQuery.js +53 -0
- package/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
- package/auth/hooks/queries/useOrgApiKeyListsQuery.js +38 -0
- package/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
- package/auth/hooks/queries/usePrincipalEntitiesQuery.js +38 -0
- package/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
- package/auth/hooks/queries/usePrincipalEntityQuery.js +53 -0
- package/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
- package/auth/hooks/queries/usePrincipalQuery.js +53 -0
- package/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
- package/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +53 -0
- package/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
- package/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +38 -0
- package/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
- package/auth/hooks/queries/usePrincipalsQuery.js +38 -0
- package/auth/hooks/query-keys.d.ts +58 -2
- package/auth/hooks/query-keys.js +34 -2
- package/auth/orm/index.d.ts +32 -4
- package/auth/orm/index.js +8 -0
- package/auth/orm/input-types.d.ts +915 -145
- package/auth/orm/input-types.js +7 -0
- package/auth/orm/models/index.d.ts +4 -0
- package/auth/orm/models/index.js +9 -1
- package/auth/orm/models/orgApiKeyList.d.ts +36 -0
- package/auth/orm/models/orgApiKeyList.js +80 -0
- package/auth/orm/models/principal.d.ts +45 -0
- package/auth/orm/models/principal.js +93 -0
- package/auth/orm/models/principalEntity.d.ts +54 -0
- package/auth/orm/models/principalEntity.js +104 -0
- package/auth/orm/models/principalScopeOverride.d.ts +36 -0
- package/auth/orm/models/principalScopeOverride.js +80 -0
- package/auth/orm/mutation/index.d.ts +33 -1
- package/auth/orm/mutation/index.js +48 -0
- package/auth/orm/query/index.d.ts +4 -4
- package/auth/orm/query/index.js +7 -7
- package/auth/schema-types.d.ts +477 -93
- package/auth/types.d.ts +43 -0
- package/compute/hooks/index.d.ts +1 -1
- package/compute/hooks/index.js +1 -1
- package/compute/hooks/invalidation.d.ts +29 -5
- package/compute/hooks/invalidation.js +73 -9
- package/compute/hooks/mutation-keys.d.ts +60 -12
- package/compute/hooks/mutation-keys.js +41 -10
- package/compute/hooks/mutations/index.d.ts +16 -4
- package/compute/hooks/mutations/index.js +16 -4
- package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceMutation.js +34 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +40 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteResourceEventMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteResourceMutation.js +39 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateResourceEventMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateResourceMutation.js +40 -0
- package/compute/hooks/queries/index.d.ts +10 -2
- package/compute/hooks/queries/index.js +10 -2
- package/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformNamespaceEventQuery.js +53 -0
- package/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformNamespaceQuery.js +53 -0
- package/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformNamespacesQuery.js +38 -0
- package/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceEventQuery.js +53 -0
- package/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceEventsQuery.js +38 -0
- package/compute/hooks/queries/useResourceQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceQuery.js +53 -0
- package/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourcesQuery.js +38 -0
- package/compute/hooks/query-keys.d.ts +68 -12
- package/compute/hooks/query-keys.js +40 -8
- package/compute/orm/index.d.ts +15 -7
- package/compute/orm/index.js +10 -2
- package/compute/orm/input-types.d.ts +1159 -221
- package/compute/orm/input-types.js +4 -0
- package/compute/orm/models/index.d.ts +5 -1
- package/compute/orm/models/index.js +11 -3
- package/compute/orm/models/platformNamespace.d.ts +54 -0
- package/compute/orm/models/platformNamespace.js +104 -0
- package/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/compute/orm/models/platformNamespaceEvent.js +107 -0
- package/compute/orm/models/resource.d.ts +54 -0
- package/compute/orm/models/resource.js +104 -0
- package/compute/orm/models/resourceEvent.d.ts +56 -0
- package/compute/orm/models/resourceEvent.js +107 -0
- package/compute/orm/mutation/index.d.ts +9 -9
- package/compute/orm/mutation/index.js +12 -12
- package/compute/schema-types.d.ts +691 -107
- package/compute/types.d.ts +71 -12
- package/esm/api/orm/input-types.d.ts +144 -171
- package/esm/api/schema-types.d.ts +676 -678
- package/esm/api/types.d.ts +9 -14
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +24 -0
- package/esm/auth/hooks/invalidation.js +65 -1
- package/esm/auth/hooks/mutation-keys.d.ts +56 -0
- package/esm/auth/hooks/mutation-keys.js +43 -0
- package/esm/auth/hooks/mutations/index.d.ts +11 -0
- package/esm/auth/hooks/mutations/index.js +11 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +23 -0
- package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +23 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +31 -0
- package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +23 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +36 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalMutation.js +36 -0
- package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +23 -0
- package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
- package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +37 -0
- package/esm/auth/hooks/queries/index.d.ts +9 -1
- package/esm/auth/hooks/queries/index.js +9 -1
- package/esm/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/useOrgApiKeyListQuery.js +47 -0
- package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.js +32 -0
- package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.js +32 -0
- package/esm/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/usePrincipalEntityQuery.js +47 -0
- package/esm/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/usePrincipalQuery.js +47 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +47 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +32 -0
- package/esm/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/usePrincipalsQuery.js +32 -0
- package/esm/auth/hooks/query-keys.d.ts +58 -2
- package/esm/auth/hooks/query-keys.js +33 -1
- package/esm/auth/orm/index.d.ts +32 -4
- package/esm/auth/orm/index.js +8 -0
- package/esm/auth/orm/input-types.d.ts +915 -145
- package/esm/auth/orm/input-types.js +7 -0
- package/esm/auth/orm/models/index.d.ts +4 -0
- package/esm/auth/orm/models/index.js +4 -0
- package/esm/auth/orm/models/orgApiKeyList.d.ts +36 -0
- package/esm/auth/orm/models/orgApiKeyList.js +76 -0
- package/esm/auth/orm/models/principal.d.ts +45 -0
- package/esm/auth/orm/models/principal.js +89 -0
- package/esm/auth/orm/models/principalEntity.d.ts +54 -0
- package/esm/auth/orm/models/principalEntity.js +100 -0
- package/esm/auth/orm/models/principalScopeOverride.d.ts +36 -0
- package/esm/auth/orm/models/principalScopeOverride.js +76 -0
- package/esm/auth/orm/mutation/index.d.ts +33 -1
- package/esm/auth/orm/mutation/index.js +48 -0
- package/esm/auth/orm/query/index.d.ts +4 -4
- package/esm/auth/orm/query/index.js +7 -7
- package/esm/auth/schema-types.d.ts +477 -93
- package/esm/auth/types.d.ts +43 -0
- package/esm/compute/hooks/index.d.ts +1 -1
- package/esm/compute/hooks/index.js +1 -1
- package/esm/compute/hooks/invalidation.d.ts +29 -5
- package/esm/compute/hooks/invalidation.js +74 -10
- package/esm/compute/hooks/mutation-keys.d.ts +60 -12
- package/esm/compute/hooks/mutation-keys.js +40 -9
- package/esm/compute/hooks/mutations/index.d.ts +16 -4
- package/esm/compute/hooks/mutations/index.js +16 -4
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceMutation.js +31 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteResourceMutation.js +36 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateResourceMutation.js +37 -0
- package/esm/compute/hooks/queries/index.d.ts +10 -2
- package/esm/compute/hooks/queries/index.js +10 -2
- package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformNamespacesQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceEventQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourcesQuery.js +32 -0
- package/esm/compute/hooks/query-keys.d.ts +68 -12
- package/esm/compute/hooks/query-keys.js +39 -7
- package/esm/compute/orm/index.d.ts +15 -7
- package/esm/compute/orm/index.js +10 -2
- package/esm/compute/orm/input-types.d.ts +1159 -221
- package/esm/compute/orm/input-types.js +4 -0
- package/esm/compute/orm/models/index.d.ts +5 -1
- package/esm/compute/orm/models/index.js +5 -1
- package/esm/compute/orm/models/platformNamespace.d.ts +54 -0
- package/esm/compute/orm/models/platformNamespace.js +100 -0
- package/esm/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/esm/compute/orm/models/platformNamespaceEvent.js +103 -0
- package/esm/compute/orm/models/resource.d.ts +54 -0
- package/esm/compute/orm/models/resource.js +100 -0
- package/esm/compute/orm/models/resourceEvent.d.ts +56 -0
- package/esm/compute/orm/models/resourceEvent.js +103 -0
- package/esm/compute/orm/mutation/index.d.ts +9 -9
- package/esm/compute/orm/mutation/index.js +12 -12
- package/esm/compute/schema-types.d.ts +691 -107
- package/esm/compute/types.d.ts +71 -12
- package/esm/modules/hooks/index.d.ts +1 -1
- package/esm/modules/hooks/index.js +1 -1
- package/esm/modules/hooks/invalidation.d.ts +24 -12
- package/esm/modules/hooks/invalidation.js +63 -31
- package/esm/modules/hooks/mutation-keys.d.ts +48 -24
- package/esm/modules/hooks/mutation-keys.js +28 -14
- package/esm/modules/hooks/mutations/index.d.ts +12 -6
- package/esm/modules/hooks/mutations/index.js +12 -6
- package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +37 -0
- package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.js +37 -0
- package/esm/modules/hooks/queries/index.d.ts +8 -4
- package/esm/modules/hooks/queries/index.js +8 -4
- package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.js +32 -0
- package/esm/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/useResourceModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/useResourceModulesQuery.js +32 -0
- package/esm/modules/hooks/query-keys.d.ts +56 -28
- package/esm/modules/hooks/query-keys.js +32 -16
- package/esm/modules/orm/index.d.ts +8 -4
- package/esm/modules/orm/index.js +8 -4
- package/esm/modules/orm/input-types.d.ts +868 -411
- package/esm/modules/orm/models/index.d.ts +4 -2
- package/esm/modules/orm/models/index.js +4 -2
- package/esm/modules/orm/models/principalAuthModule.d.ts +54 -0
- package/esm/modules/orm/models/principalAuthModule.js +100 -0
- package/esm/modules/orm/models/resourceModule.d.ts +54 -0
- package/esm/modules/orm/models/resourceModule.js +100 -0
- package/esm/modules/schema-types.d.ts +451 -169
- package/esm/modules/types.d.ts +75 -33
- package/modules/hooks/index.d.ts +1 -1
- package/modules/hooks/index.js +1 -1
- package/modules/hooks/invalidation.d.ts +24 -12
- package/modules/hooks/invalidation.js +62 -30
- package/modules/hooks/mutation-keys.d.ts +48 -24
- package/modules/hooks/mutation-keys.js +30 -16
- package/modules/hooks/mutations/index.d.ts +12 -6
- package/modules/hooks/mutations/index.js +12 -6
- package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +34 -0
- package/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreateResourceModuleMutation.js +34 -0
- package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +39 -0
- package/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteResourceModuleMutation.js +39 -0
- package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +40 -0
- package/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateResourceModuleMutation.js +40 -0
- package/modules/hooks/queries/index.d.ts +8 -4
- package/modules/hooks/queries/index.js +8 -4
- package/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/usePrincipalAuthModuleQuery.js +53 -0
- package/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/usePrincipalAuthModulesQuery.js +38 -0
- package/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/useResourceModuleQuery.js +53 -0
- package/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/useResourceModulesQuery.js +38 -0
- package/modules/hooks/query-keys.d.ts +56 -28
- package/modules/hooks/query-keys.js +34 -18
- package/modules/orm/index.d.ts +8 -4
- package/modules/orm/index.js +8 -4
- package/modules/orm/input-types.d.ts +868 -411
- package/modules/orm/models/index.d.ts +4 -2
- package/modules/orm/models/index.js +10 -6
- package/modules/orm/models/principalAuthModule.d.ts +54 -0
- package/modules/orm/models/principalAuthModule.js +104 -0
- package/modules/orm/models/resourceModule.d.ts +54 -0
- package/modules/orm/models/resourceModule.js +104 -0
- package/modules/schema-types.d.ts +451 -169
- package/modules/types.d.ts +75 -33
- package/package.json +4 -4
package/api/types.d.ts
CHANGED
|
@@ -24,7 +24,6 @@ export interface Schema {
|
|
|
24
24
|
description: string | null;
|
|
25
25
|
smartTags: unknown | null;
|
|
26
26
|
category: ObjectCategory | null;
|
|
27
|
-
scope: number | null;
|
|
28
27
|
tags: string[] | null;
|
|
29
28
|
isPublic: boolean | null;
|
|
30
29
|
apiExposure: ApiExposureLevel | null;
|
|
@@ -40,7 +39,6 @@ export interface Table {
|
|
|
40
39
|
description: string | null;
|
|
41
40
|
smartTags: unknown | null;
|
|
42
41
|
category: ObjectCategory | null;
|
|
43
|
-
scope: number | null;
|
|
44
42
|
useRls: boolean | null;
|
|
45
43
|
timestamps: boolean | null;
|
|
46
44
|
peoplestamps: boolean | null;
|
|
@@ -65,7 +63,6 @@ export interface CheckConstraint {
|
|
|
65
63
|
expr: unknown | null;
|
|
66
64
|
smartTags: unknown | null;
|
|
67
65
|
category: ObjectCategory | null;
|
|
68
|
-
scope: number | null;
|
|
69
66
|
tags: string[] | null;
|
|
70
67
|
createdAt: string | null;
|
|
71
68
|
updatedAt: string | null;
|
|
@@ -90,7 +87,6 @@ export interface Field {
|
|
|
90
87
|
max: number | null;
|
|
91
88
|
tags: string[] | null;
|
|
92
89
|
category: ObjectCategory | null;
|
|
93
|
-
scope: number | null;
|
|
94
90
|
createdAt: string | null;
|
|
95
91
|
updatedAt: string | null;
|
|
96
92
|
}
|
|
@@ -105,7 +101,6 @@ export interface SpatialRelation {
|
|
|
105
101
|
operator: string | null;
|
|
106
102
|
paramName: string | null;
|
|
107
103
|
category: ObjectCategory | null;
|
|
108
|
-
scope: number | null;
|
|
109
104
|
tags: string[] | null;
|
|
110
105
|
createdAt: string | null;
|
|
111
106
|
updatedAt: string | null;
|
|
@@ -124,7 +119,6 @@ export interface ForeignKeyConstraint {
|
|
|
124
119
|
deleteAction: string | null;
|
|
125
120
|
updateAction: string | null;
|
|
126
121
|
category: ObjectCategory | null;
|
|
127
|
-
scope: number | null;
|
|
128
122
|
tags: string[] | null;
|
|
129
123
|
createdAt: string | null;
|
|
130
124
|
updatedAt: string | null;
|
|
@@ -156,7 +150,6 @@ export interface Index {
|
|
|
156
150
|
opClasses: string[] | null;
|
|
157
151
|
smartTags: unknown | null;
|
|
158
152
|
category: ObjectCategory | null;
|
|
159
|
-
scope: number | null;
|
|
160
153
|
tags: string[] | null;
|
|
161
154
|
createdAt: string | null;
|
|
162
155
|
updatedAt: string | null;
|
|
@@ -174,7 +167,6 @@ export interface Policy {
|
|
|
174
167
|
data: unknown | null;
|
|
175
168
|
smartTags: unknown | null;
|
|
176
169
|
category: ObjectCategory | null;
|
|
177
|
-
scope: number | null;
|
|
178
170
|
tags: string[] | null;
|
|
179
171
|
createdAt: string | null;
|
|
180
172
|
updatedAt: string | null;
|
|
@@ -188,7 +180,6 @@ export interface PrimaryKeyConstraint {
|
|
|
188
180
|
fieldIds: string[] | null;
|
|
189
181
|
smartTags: unknown | null;
|
|
190
182
|
category: ObjectCategory | null;
|
|
191
|
-
scope: number | null;
|
|
192
183
|
tags: string[] | null;
|
|
193
184
|
createdAt: string | null;
|
|
194
185
|
updatedAt: string | null;
|
|
@@ -213,7 +204,6 @@ export interface Trigger {
|
|
|
213
204
|
functionName: string | null;
|
|
214
205
|
smartTags: unknown | null;
|
|
215
206
|
category: ObjectCategory | null;
|
|
216
|
-
scope: number | null;
|
|
217
207
|
tags: string[] | null;
|
|
218
208
|
createdAt: string | null;
|
|
219
209
|
updatedAt: string | null;
|
|
@@ -228,7 +218,6 @@ export interface UniqueConstraint {
|
|
|
228
218
|
type: string | null;
|
|
229
219
|
fieldIds: string[] | null;
|
|
230
220
|
category: ObjectCategory | null;
|
|
231
|
-
scope: number | null;
|
|
232
221
|
tags: string[] | null;
|
|
233
222
|
createdAt: string | null;
|
|
234
223
|
updatedAt: string | null;
|
|
@@ -247,7 +236,6 @@ export interface View {
|
|
|
247
236
|
isReadOnly: boolean | null;
|
|
248
237
|
smartTags: unknown | null;
|
|
249
238
|
category: ObjectCategory | null;
|
|
250
|
-
scope: number | null;
|
|
251
239
|
tags: string[] | null;
|
|
252
240
|
}
|
|
253
241
|
export interface ViewTable {
|
|
@@ -324,7 +312,6 @@ export interface Enum {
|
|
|
324
312
|
values: string[] | null;
|
|
325
313
|
smartTags: unknown | null;
|
|
326
314
|
category: ObjectCategory | null;
|
|
327
|
-
scope: number | null;
|
|
328
315
|
tags: string[] | null;
|
|
329
316
|
}
|
|
330
317
|
export interface CompositeType {
|
|
@@ -337,7 +324,6 @@ export interface CompositeType {
|
|
|
337
324
|
attributes: unknown | null;
|
|
338
325
|
smartTags: unknown | null;
|
|
339
326
|
category: ObjectCategory | null;
|
|
340
|
-
scope: number | null;
|
|
341
327
|
tags: string[] | null;
|
|
342
328
|
}
|
|
343
329
|
export interface ApiSchema {
|
|
@@ -358,8 +344,11 @@ export interface Domain {
|
|
|
358
344
|
databaseId: string | null;
|
|
359
345
|
apiId: string | null;
|
|
360
346
|
siteId: string | null;
|
|
347
|
+
serviceId: string | null;
|
|
361
348
|
subdomain: ConstructiveInternalTypeHostname | null;
|
|
362
349
|
domain: ConstructiveInternalTypeHostname | null;
|
|
350
|
+
labels: unknown | null;
|
|
351
|
+
annotations: unknown | null;
|
|
363
352
|
}
|
|
364
353
|
export interface SiteMetadatum {
|
|
365
354
|
id: string | null;
|
|
@@ -435,6 +424,8 @@ export interface Api {
|
|
|
435
424
|
roleName: string | null;
|
|
436
425
|
anonRole: string | null;
|
|
437
426
|
isPublic: boolean | null;
|
|
427
|
+
labels: unknown | null;
|
|
428
|
+
annotations: unknown | null;
|
|
438
429
|
}
|
|
439
430
|
export interface Site {
|
|
440
431
|
id: string | null;
|
|
@@ -446,6 +437,8 @@ export interface Site {
|
|
|
446
437
|
appleTouchIcon: ConstructiveInternalTypeImage | null;
|
|
447
438
|
logo: ConstructiveInternalTypeImage | null;
|
|
448
439
|
dbname: string | null;
|
|
440
|
+
labels: unknown | null;
|
|
441
|
+
annotations: unknown | null;
|
|
449
442
|
}
|
|
450
443
|
export interface App {
|
|
451
444
|
id: string | null;
|
|
@@ -554,6 +547,8 @@ export interface DatabaseSetting {
|
|
|
554
547
|
enableBulk: boolean | null;
|
|
555
548
|
enableI18N: boolean | null;
|
|
556
549
|
options: unknown | null;
|
|
550
|
+
labels: unknown | null;
|
|
551
|
+
annotations: unknown | null;
|
|
557
552
|
}
|
|
558
553
|
export interface WebauthnSetting {
|
|
559
554
|
id: 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, WebauthnCredential, AuditLogAuth, IdentityProvider, RoleType, UserConnectedAccount, User
|
|
5
|
+
* Tables: Principal, PrincipalEntity, PrincipalScopeOverride, Email, PhoneNumber, CryptoAddress, WebauthnCredential, AuditLogAuth, IdentityProvider, RoleType, UserConnectedAccount, OrgApiKeyList, 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, WebauthnCredential, AuditLogAuth, IdentityProvider, RoleType, UserConnectedAccount, User
|
|
21
|
+
* Tables: Principal, PrincipalEntity, PrincipalScopeOverride, Email, PhoneNumber, CryptoAddress, WebauthnCredential, AuditLogAuth, IdentityProvider, RoleType, UserConnectedAccount, OrgApiKeyList, User
|
|
22
22
|
*
|
|
23
23
|
* Usage:
|
|
24
24
|
*
|
|
@@ -24,6 +24,21 @@ import type { QueryClient } from '@tanstack/react-query';
|
|
|
24
24
|
* ```
|
|
25
25
|
*/
|
|
26
26
|
export declare const invalidate: {
|
|
27
|
+
/** Invalidate principal queries */ readonly principal: {
|
|
28
|
+
/** Invalidate all principal queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
29
|
+
/** Invalidate principal list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
30
|
+
/** Invalidate a specific principal */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
31
|
+
};
|
|
32
|
+
/** Invalidate principalEntity queries */ readonly principalEntity: {
|
|
33
|
+
/** Invalidate all principalEntity queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
34
|
+
/** Invalidate principalEntity list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
35
|
+
/** Invalidate a specific principalEntity */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
36
|
+
};
|
|
37
|
+
/** Invalidate principalScopeOverride queries */ readonly principalScopeOverride: {
|
|
38
|
+
/** Invalidate all principalScopeOverride queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
39
|
+
/** Invalidate principalScopeOverride list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
40
|
+
/** Invalidate a specific principalScopeOverride */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
41
|
+
};
|
|
27
42
|
/** Invalidate email queries */ readonly email: {
|
|
28
43
|
/** Invalidate all email queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
29
44
|
/** Invalidate email list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -64,6 +79,11 @@ export declare const invalidate: {
|
|
|
64
79
|
/** Invalidate userConnectedAccount list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
65
80
|
/** Invalidate a specific userConnectedAccount */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
66
81
|
};
|
|
82
|
+
/** Invalidate orgApiKeyList queries */ readonly orgApiKeyList: {
|
|
83
|
+
/** Invalidate all orgApiKeyList queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
84
|
+
/** Invalidate orgApiKeyList list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
85
|
+
/** Invalidate a specific orgApiKeyList */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
86
|
+
};
|
|
67
87
|
/** Invalidate user queries */ readonly user: {
|
|
68
88
|
/** Invalidate all user queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
69
89
|
/** Invalidate user list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -82,6 +102,9 @@ export declare const invalidate: {
|
|
|
82
102
|
* instead of just invalidating (which would trigger a refetch).
|
|
83
103
|
*/
|
|
84
104
|
export declare const remove: {
|
|
105
|
+
/** Remove principal from cache */ readonly principal: (queryClient: QueryClient, id: string | number) => void;
|
|
106
|
+
/** Remove principalEntity from cache */ readonly principalEntity: (queryClient: QueryClient, id: string | number) => void;
|
|
107
|
+
/** Remove principalScopeOverride from cache */ readonly principalScopeOverride: (queryClient: QueryClient, id: string | number) => void;
|
|
85
108
|
/** Remove email from cache */ readonly email: (queryClient: QueryClient, id: string | number) => void;
|
|
86
109
|
/** Remove phoneNumber from cache */ readonly phoneNumber: (queryClient: QueryClient, id: string | number) => void;
|
|
87
110
|
/** Remove cryptoAddress from cache */ readonly cryptoAddress: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -90,5 +113,6 @@ export declare const remove: {
|
|
|
90
113
|
/** Remove identityProvider from cache */ readonly identityProvider: (queryClient: QueryClient, id: string | number) => void;
|
|
91
114
|
/** Remove roleType from cache */ readonly roleType: (queryClient: QueryClient, id: string | number) => void;
|
|
92
115
|
/** Remove userConnectedAccount from cache */ readonly userConnectedAccount: (queryClient: QueryClient, id: string | number) => void;
|
|
116
|
+
/** Remove orgApiKeyList from cache */ readonly orgApiKeyList: (queryClient: QueryClient, id: string | number) => void;
|
|
93
117
|
/** Remove user from cache */ readonly user: (queryClient: QueryClient, id: string | number) => void;
|
|
94
118
|
};
|
|
@@ -27,6 +27,39 @@ const query_keys_1 = require("./query-keys");
|
|
|
27
27
|
* ```
|
|
28
28
|
*/
|
|
29
29
|
exports.invalidate = {
|
|
30
|
+
/** Invalidate principal queries */ principal: {
|
|
31
|
+
/** Invalidate all principal queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
32
|
+
queryKey: query_keys_1.principalKeys.all,
|
|
33
|
+
}),
|
|
34
|
+
/** Invalidate principal list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
35
|
+
queryKey: query_keys_1.principalKeys.lists(),
|
|
36
|
+
}),
|
|
37
|
+
/** Invalidate a specific principal */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
38
|
+
queryKey: query_keys_1.principalKeys.detail(id),
|
|
39
|
+
}),
|
|
40
|
+
},
|
|
41
|
+
/** Invalidate principalEntity queries */ principalEntity: {
|
|
42
|
+
/** Invalidate all principalEntity queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
43
|
+
queryKey: query_keys_1.principalEntityKeys.all,
|
|
44
|
+
}),
|
|
45
|
+
/** Invalidate principalEntity list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
46
|
+
queryKey: query_keys_1.principalEntityKeys.lists(),
|
|
47
|
+
}),
|
|
48
|
+
/** Invalidate a specific principalEntity */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
49
|
+
queryKey: query_keys_1.principalEntityKeys.detail(id),
|
|
50
|
+
}),
|
|
51
|
+
},
|
|
52
|
+
/** Invalidate principalScopeOverride queries */ principalScopeOverride: {
|
|
53
|
+
/** Invalidate all principalScopeOverride queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
54
|
+
queryKey: query_keys_1.principalScopeOverrideKeys.all,
|
|
55
|
+
}),
|
|
56
|
+
/** Invalidate principalScopeOverride list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
57
|
+
queryKey: query_keys_1.principalScopeOverrideKeys.lists(),
|
|
58
|
+
}),
|
|
59
|
+
/** Invalidate a specific principalScopeOverride */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
60
|
+
queryKey: query_keys_1.principalScopeOverrideKeys.detail(id),
|
|
61
|
+
}),
|
|
62
|
+
},
|
|
30
63
|
/** Invalidate email queries */ email: {
|
|
31
64
|
/** Invalidate all email queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
32
65
|
queryKey: query_keys_1.emailKeys.all,
|
|
@@ -115,6 +148,17 @@ exports.invalidate = {
|
|
|
115
148
|
queryKey: query_keys_1.userConnectedAccountKeys.detail(id),
|
|
116
149
|
}),
|
|
117
150
|
},
|
|
151
|
+
/** Invalidate orgApiKeyList queries */ orgApiKeyList: {
|
|
152
|
+
/** Invalidate all orgApiKeyList queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
153
|
+
queryKey: query_keys_1.orgApiKeyListKeys.all,
|
|
154
|
+
}),
|
|
155
|
+
/** Invalidate orgApiKeyList list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
156
|
+
queryKey: query_keys_1.orgApiKeyListKeys.lists(),
|
|
157
|
+
}),
|
|
158
|
+
/** Invalidate a specific orgApiKeyList */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
159
|
+
queryKey: query_keys_1.orgApiKeyListKeys.detail(id),
|
|
160
|
+
}),
|
|
161
|
+
},
|
|
118
162
|
/** Invalidate user queries */ user: {
|
|
119
163
|
/** Invalidate all user queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
120
164
|
queryKey: query_keys_1.userKeys.all,
|
|
@@ -139,6 +183,21 @@ exports.invalidate = {
|
|
|
139
183
|
* instead of just invalidating (which would trigger a refetch).
|
|
140
184
|
*/
|
|
141
185
|
exports.remove = {
|
|
186
|
+
/** Remove principal from cache */ principal: (queryClient, id) => {
|
|
187
|
+
queryClient.removeQueries({
|
|
188
|
+
queryKey: query_keys_1.principalKeys.detail(id),
|
|
189
|
+
});
|
|
190
|
+
},
|
|
191
|
+
/** Remove principalEntity from cache */ principalEntity: (queryClient, id) => {
|
|
192
|
+
queryClient.removeQueries({
|
|
193
|
+
queryKey: query_keys_1.principalEntityKeys.detail(id),
|
|
194
|
+
});
|
|
195
|
+
},
|
|
196
|
+
/** Remove principalScopeOverride from cache */ principalScopeOverride: (queryClient, id) => {
|
|
197
|
+
queryClient.removeQueries({
|
|
198
|
+
queryKey: query_keys_1.principalScopeOverrideKeys.detail(id),
|
|
199
|
+
});
|
|
200
|
+
},
|
|
142
201
|
/** Remove email from cache */ email: (queryClient, id) => {
|
|
143
202
|
queryClient.removeQueries({
|
|
144
203
|
queryKey: query_keys_1.emailKeys.detail(id),
|
|
@@ -179,6 +238,11 @@ exports.remove = {
|
|
|
179
238
|
queryKey: query_keys_1.userConnectedAccountKeys.detail(id),
|
|
180
239
|
});
|
|
181
240
|
},
|
|
241
|
+
/** Remove orgApiKeyList from cache */ orgApiKeyList: (queryClient, id) => {
|
|
242
|
+
queryClient.removeQueries({
|
|
243
|
+
queryKey: query_keys_1.orgApiKeyListKeys.detail(id),
|
|
244
|
+
});
|
|
245
|
+
},
|
|
182
246
|
/** Remove user from cache */ user: (queryClient, id) => {
|
|
183
247
|
queryClient.removeQueries({
|
|
184
248
|
queryKey: query_keys_1.userKeys.detail(id),
|
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
+
export declare const principalMutationKeys: {
|
|
7
|
+
/** All principal mutation keys */ readonly all: readonly ["mutation", "principal"];
|
|
8
|
+
/** Create principal mutation key */ readonly create: () => readonly ["mutation", "principal", "create"];
|
|
9
|
+
/** Update principal mutation key */ readonly update: (id: string | number) => readonly ["mutation", "principal", "update", string | number];
|
|
10
|
+
/** Delete principal mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "principal", "delete", string | number];
|
|
11
|
+
};
|
|
12
|
+
export declare const principalEntityMutationKeys: {
|
|
13
|
+
/** All principalEntity mutation keys */ readonly all: readonly ["mutation", "principalentity"];
|
|
14
|
+
/** Create principalEntity mutation key */ readonly create: () => readonly ["mutation", "principalentity", "create"];
|
|
15
|
+
/** Update principalEntity mutation key */ readonly update: (id: string | number) => readonly ["mutation", "principalentity", "update", string | number];
|
|
16
|
+
/** Delete principalEntity mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "principalentity", "delete", string | number];
|
|
17
|
+
};
|
|
18
|
+
export declare const principalScopeOverrideMutationKeys: {
|
|
19
|
+
/** All principalScopeOverride mutation keys */ readonly all: readonly ["mutation", "principalscopeoverride"];
|
|
20
|
+
/** Create principalScopeOverride mutation key */ readonly create: () => readonly ["mutation", "principalscopeoverride", "create"];
|
|
21
|
+
/** Update principalScopeOverride mutation key */ readonly update: (id: string | number) => readonly ["mutation", "principalscopeoverride", "update", string | number];
|
|
22
|
+
/** Delete principalScopeOverride mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "principalscopeoverride", "delete", string | number];
|
|
23
|
+
};
|
|
6
24
|
export declare const emailMutationKeys: {
|
|
7
25
|
/** All email mutation keys */ readonly all: readonly ["mutation", "email"];
|
|
8
26
|
/** Create email mutation key */ readonly create: () => readonly ["mutation", "email", "create"];
|
|
@@ -51,6 +69,12 @@ export declare const userConnectedAccountMutationKeys: {
|
|
|
51
69
|
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
52
70
|
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
53
71
|
};
|
|
72
|
+
export declare const orgApiKeyListMutationKeys: {
|
|
73
|
+
/** All orgApiKeyList mutation keys */ readonly all: readonly ["mutation", "orgapikeylist"];
|
|
74
|
+
/** Create orgApiKeyList mutation key */ readonly create: () => readonly ["mutation", "orgapikeylist", "create"];
|
|
75
|
+
/** Update orgApiKeyList mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgapikeylist", "update", string | number];
|
|
76
|
+
/** Delete orgApiKeyList mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgapikeylist", "delete", string | number];
|
|
77
|
+
};
|
|
54
78
|
export declare const userMutationKeys: {
|
|
55
79
|
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
56
80
|
/** Create user mutation key */ readonly create: () => readonly ["mutation", "user", "create"];
|
|
@@ -61,12 +85,14 @@ export declare const customMutationKeys: {
|
|
|
61
85
|
/** Mutation key for signOut */ readonly signOut: (identifier?: string) => readonly ["mutation", "signOut", string] | readonly ["mutation", "signOut"];
|
|
62
86
|
/** Mutation key for sendAccountDeletionEmail */ readonly sendAccountDeletionEmail: (identifier?: string) => readonly ["mutation", "sendAccountDeletionEmail", string] | readonly ["mutation", "sendAccountDeletionEmail"];
|
|
63
87
|
/** Mutation key for checkPassword */ readonly checkPassword: (identifier?: string) => readonly ["mutation", "checkPassword", string] | readonly ["mutation", "checkPassword"];
|
|
88
|
+
/** Mutation key for deleteOrgPrincipal */ readonly deleteOrgPrincipal: (identifier?: string) => readonly ["mutation", "deleteOrgPrincipal", string] | readonly ["mutation", "deleteOrgPrincipal"];
|
|
64
89
|
/** Mutation key for disconnectAccount */ readonly disconnectAccount: (identifier?: string) => readonly ["mutation", "disconnectAccount", string] | readonly ["mutation", "disconnectAccount"];
|
|
65
90
|
/** Mutation key for revokeApiKey */ readonly revokeApiKey: (identifier?: string) => readonly ["mutation", "revokeApiKey", string] | readonly ["mutation", "revokeApiKey"];
|
|
66
91
|
/** Mutation key for revokeSession */ readonly revokeSession: (identifier?: string) => readonly ["mutation", "revokeSession", string] | readonly ["mutation", "revokeSession"];
|
|
67
92
|
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
68
93
|
/** Mutation key for verifyTotp */ readonly verifyTotp: (identifier?: string) => readonly ["mutation", "verifyTotp", string] | readonly ["mutation", "verifyTotp"];
|
|
69
94
|
/** Mutation key for confirmDeleteAccount */ readonly confirmDeleteAccount: (identifier?: string) => readonly ["mutation", "confirmDeleteAccount", string] | readonly ["mutation", "confirmDeleteAccount"];
|
|
95
|
+
/** Mutation key for revokeOrgApiKey */ readonly revokeOrgApiKey: (identifier?: string) => readonly ["mutation", "revokeOrgApiKey", string] | readonly ["mutation", "revokeOrgApiKey"];
|
|
70
96
|
/** Mutation key for setPassword */ readonly setPassword: (identifier?: string) => readonly ["mutation", "setPassword", string] | readonly ["mutation", "setPassword"];
|
|
71
97
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
72
98
|
/** Mutation key for provisionNewUser */ readonly provisionNewUser: (identifier?: string) => readonly ["mutation", "provisionNewUser", string] | readonly ["mutation", "provisionNewUser"];
|
|
@@ -77,7 +103,9 @@ export declare const customMutationKeys: {
|
|
|
77
103
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
78
104
|
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
79
105
|
/** Mutation key for linkIdentity */ readonly linkIdentity: (identifier?: string) => readonly ["mutation", "linkIdentity", string] | readonly ["mutation", "linkIdentity"];
|
|
106
|
+
/** Mutation key for createOrgPrincipal */ readonly createOrgPrincipal: (identifier?: string) => readonly ["mutation", "createOrgPrincipal", string] | readonly ["mutation", "createOrgPrincipal"];
|
|
80
107
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
108
|
+
/** Mutation key for createOrgApiKey */ readonly createOrgApiKey: (identifier?: string) => readonly ["mutation", "createOrgApiKey", string] | readonly ["mutation", "createOrgApiKey"];
|
|
81
109
|
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
82
110
|
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
83
111
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
@@ -107,6 +135,24 @@ export declare const customMutationKeys: {
|
|
|
107
135
|
* ```
|
|
108
136
|
*/
|
|
109
137
|
export declare const mutationKeys: {
|
|
138
|
+
readonly principal: {
|
|
139
|
+
/** All principal mutation keys */ readonly all: readonly ["mutation", "principal"];
|
|
140
|
+
/** Create principal mutation key */ readonly create: () => readonly ["mutation", "principal", "create"];
|
|
141
|
+
/** Update principal mutation key */ readonly update: (id: string | number) => readonly ["mutation", "principal", "update", string | number];
|
|
142
|
+
/** Delete principal mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "principal", "delete", string | number];
|
|
143
|
+
};
|
|
144
|
+
readonly principalEntity: {
|
|
145
|
+
/** All principalEntity mutation keys */ readonly all: readonly ["mutation", "principalentity"];
|
|
146
|
+
/** Create principalEntity mutation key */ readonly create: () => readonly ["mutation", "principalentity", "create"];
|
|
147
|
+
/** Update principalEntity mutation key */ readonly update: (id: string | number) => readonly ["mutation", "principalentity", "update", string | number];
|
|
148
|
+
/** Delete principalEntity mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "principalentity", "delete", string | number];
|
|
149
|
+
};
|
|
150
|
+
readonly principalScopeOverride: {
|
|
151
|
+
/** All principalScopeOverride mutation keys */ readonly all: readonly ["mutation", "principalscopeoverride"];
|
|
152
|
+
/** Create principalScopeOverride mutation key */ readonly create: () => readonly ["mutation", "principalscopeoverride", "create"];
|
|
153
|
+
/** Update principalScopeOverride mutation key */ readonly update: (id: string | number) => readonly ["mutation", "principalscopeoverride", "update", string | number];
|
|
154
|
+
/** Delete principalScopeOverride mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "principalscopeoverride", "delete", string | number];
|
|
155
|
+
};
|
|
110
156
|
readonly email: {
|
|
111
157
|
/** All email mutation keys */ readonly all: readonly ["mutation", "email"];
|
|
112
158
|
/** Create email mutation key */ readonly create: () => readonly ["mutation", "email", "create"];
|
|
@@ -155,6 +201,12 @@ export declare const mutationKeys: {
|
|
|
155
201
|
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
156
202
|
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
157
203
|
};
|
|
204
|
+
readonly orgApiKeyList: {
|
|
205
|
+
/** All orgApiKeyList mutation keys */ readonly all: readonly ["mutation", "orgapikeylist"];
|
|
206
|
+
/** Create orgApiKeyList mutation key */ readonly create: () => readonly ["mutation", "orgapikeylist", "create"];
|
|
207
|
+
/** Update orgApiKeyList mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgapikeylist", "update", string | number];
|
|
208
|
+
/** Delete orgApiKeyList mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgapikeylist", "delete", string | number];
|
|
209
|
+
};
|
|
158
210
|
readonly user: {
|
|
159
211
|
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
160
212
|
/** Create user mutation key */ readonly create: () => readonly ["mutation", "user", "create"];
|
|
@@ -165,12 +217,14 @@ export declare const mutationKeys: {
|
|
|
165
217
|
/** Mutation key for signOut */ readonly signOut: (identifier?: string) => readonly ["mutation", "signOut", string] | readonly ["mutation", "signOut"];
|
|
166
218
|
/** Mutation key for sendAccountDeletionEmail */ readonly sendAccountDeletionEmail: (identifier?: string) => readonly ["mutation", "sendAccountDeletionEmail", string] | readonly ["mutation", "sendAccountDeletionEmail"];
|
|
167
219
|
/** Mutation key for checkPassword */ readonly checkPassword: (identifier?: string) => readonly ["mutation", "checkPassword", string] | readonly ["mutation", "checkPassword"];
|
|
220
|
+
/** Mutation key for deleteOrgPrincipal */ readonly deleteOrgPrincipal: (identifier?: string) => readonly ["mutation", "deleteOrgPrincipal", string] | readonly ["mutation", "deleteOrgPrincipal"];
|
|
168
221
|
/** Mutation key for disconnectAccount */ readonly disconnectAccount: (identifier?: string) => readonly ["mutation", "disconnectAccount", string] | readonly ["mutation", "disconnectAccount"];
|
|
169
222
|
/** Mutation key for revokeApiKey */ readonly revokeApiKey: (identifier?: string) => readonly ["mutation", "revokeApiKey", string] | readonly ["mutation", "revokeApiKey"];
|
|
170
223
|
/** Mutation key for revokeSession */ readonly revokeSession: (identifier?: string) => readonly ["mutation", "revokeSession", string] | readonly ["mutation", "revokeSession"];
|
|
171
224
|
/** Mutation key for verifyPassword */ readonly verifyPassword: (identifier?: string) => readonly ["mutation", "verifyPassword", string] | readonly ["mutation", "verifyPassword"];
|
|
172
225
|
/** Mutation key for verifyTotp */ readonly verifyTotp: (identifier?: string) => readonly ["mutation", "verifyTotp", string] | readonly ["mutation", "verifyTotp"];
|
|
173
226
|
/** Mutation key for confirmDeleteAccount */ readonly confirmDeleteAccount: (identifier?: string) => readonly ["mutation", "confirmDeleteAccount", string] | readonly ["mutation", "confirmDeleteAccount"];
|
|
227
|
+
/** Mutation key for revokeOrgApiKey */ readonly revokeOrgApiKey: (identifier?: string) => readonly ["mutation", "revokeOrgApiKey", string] | readonly ["mutation", "revokeOrgApiKey"];
|
|
174
228
|
/** Mutation key for setPassword */ readonly setPassword: (identifier?: string) => readonly ["mutation", "setPassword", string] | readonly ["mutation", "setPassword"];
|
|
175
229
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
176
230
|
/** Mutation key for provisionNewUser */ readonly provisionNewUser: (identifier?: string) => readonly ["mutation", "provisionNewUser", string] | readonly ["mutation", "provisionNewUser"];
|
|
@@ -181,7 +235,9 @@ export declare const mutationKeys: {
|
|
|
181
235
|
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
182
236
|
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
183
237
|
/** Mutation key for linkIdentity */ readonly linkIdentity: (identifier?: string) => readonly ["mutation", "linkIdentity", string] | readonly ["mutation", "linkIdentity"];
|
|
238
|
+
/** Mutation key for createOrgPrincipal */ readonly createOrgPrincipal: (identifier?: string) => readonly ["mutation", "createOrgPrincipal", string] | readonly ["mutation", "createOrgPrincipal"];
|
|
184
239
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
240
|
+
/** Mutation key for createOrgApiKey */ readonly createOrgApiKey: (identifier?: string) => readonly ["mutation", "createOrgApiKey", string] | readonly ["mutation", "createOrgApiKey"];
|
|
185
241
|
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
186
242
|
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
187
243
|
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* DO NOT EDIT - changes will be overwritten
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.mutationKeys = exports.customMutationKeys = exports.userMutationKeys = exports.userConnectedAccountMutationKeys = exports.roleTypeMutationKeys = exports.identityProviderMutationKeys = exports.auditLogAuthMutationKeys = exports.webauthnCredentialMutationKeys = exports.cryptoAddressMutationKeys = exports.phoneNumberMutationKeys = exports.emailMutationKeys = void 0;
|
|
8
|
+
exports.mutationKeys = exports.customMutationKeys = exports.userMutationKeys = exports.orgApiKeyListMutationKeys = exports.userConnectedAccountMutationKeys = exports.roleTypeMutationKeys = exports.identityProviderMutationKeys = exports.auditLogAuthMutationKeys = exports.webauthnCredentialMutationKeys = exports.cryptoAddressMutationKeys = exports.phoneNumberMutationKeys = exports.emailMutationKeys = exports.principalScopeOverrideMutationKeys = exports.principalEntityMutationKeys = exports.principalMutationKeys = void 0;
|
|
9
9
|
// ============================================================================
|
|
10
10
|
// Mutation keys for tracking in-flight mutations
|
|
11
11
|
//
|
|
@@ -18,6 +18,27 @@ exports.mutationKeys = exports.customMutationKeys = exports.userMutationKeys = e
|
|
|
18
18
|
// ============================================================================
|
|
19
19
|
// Entity Mutation Keys
|
|
20
20
|
// ============================================================================
|
|
21
|
+
exports.principalMutationKeys = {
|
|
22
|
+
/** All principal mutation keys */ all: ['mutation', 'principal'],
|
|
23
|
+
/** Create principal mutation key */ create: () => ['mutation', 'principal', 'create'],
|
|
24
|
+
/** Update principal mutation key */ update: (id) => ['mutation', 'principal', 'update', id],
|
|
25
|
+
/** Delete principal mutation key */ delete: (id) => ['mutation', 'principal', 'delete', id],
|
|
26
|
+
};
|
|
27
|
+
exports.principalEntityMutationKeys = {
|
|
28
|
+
/** All principalEntity mutation keys */ all: ['mutation', 'principalentity'],
|
|
29
|
+
/** Create principalEntity mutation key */ create: () => ['mutation', 'principalentity', 'create'],
|
|
30
|
+
/** Update principalEntity mutation key */ update: (id) => ['mutation', 'principalentity', 'update', id],
|
|
31
|
+
/** Delete principalEntity mutation key */ delete: (id) => ['mutation', 'principalentity', 'delete', id],
|
|
32
|
+
};
|
|
33
|
+
exports.principalScopeOverrideMutationKeys = {
|
|
34
|
+
/** All principalScopeOverride mutation keys */ all: [
|
|
35
|
+
'mutation',
|
|
36
|
+
'principalscopeoverride',
|
|
37
|
+
],
|
|
38
|
+
/** Create principalScopeOverride mutation key */ create: () => ['mutation', 'principalscopeoverride', 'create'],
|
|
39
|
+
/** Update principalScopeOverride mutation key */ update: (id) => ['mutation', 'principalscopeoverride', 'update', id],
|
|
40
|
+
/** Delete principalScopeOverride mutation key */ delete: (id) => ['mutation', 'principalscopeoverride', 'delete', id],
|
|
41
|
+
};
|
|
21
42
|
exports.emailMutationKeys = {
|
|
22
43
|
/** All email mutation keys */ all: ['mutation', 'email'],
|
|
23
44
|
/** Create email mutation key */ create: () => ['mutation', 'email', 'create'],
|
|
@@ -66,6 +87,12 @@ exports.userConnectedAccountMutationKeys = {
|
|
|
66
87
|
/** Update userConnectedAccount mutation key */ update: (id) => ['mutation', 'userconnectedaccount', 'update', id],
|
|
67
88
|
/** Delete userConnectedAccount mutation key */ delete: (id) => ['mutation', 'userconnectedaccount', 'delete', id],
|
|
68
89
|
};
|
|
90
|
+
exports.orgApiKeyListMutationKeys = {
|
|
91
|
+
/** All orgApiKeyList mutation keys */ all: ['mutation', 'orgapikeylist'],
|
|
92
|
+
/** Create orgApiKeyList mutation key */ create: () => ['mutation', 'orgapikeylist', 'create'],
|
|
93
|
+
/** Update orgApiKeyList mutation key */ update: (id) => ['mutation', 'orgapikeylist', 'update', id],
|
|
94
|
+
/** Delete orgApiKeyList mutation key */ delete: (id) => ['mutation', 'orgapikeylist', 'delete', id],
|
|
95
|
+
};
|
|
69
96
|
exports.userMutationKeys = {
|
|
70
97
|
/** All user mutation keys */ all: ['mutation', 'user'],
|
|
71
98
|
/** Create user mutation key */ create: () => ['mutation', 'user', 'create'],
|
|
@@ -85,6 +112,9 @@ exports.customMutationKeys = {
|
|
|
85
112
|
/** Mutation key for checkPassword */ checkPassword: (identifier) => identifier
|
|
86
113
|
? ['mutation', 'checkPassword', identifier]
|
|
87
114
|
: ['mutation', 'checkPassword'],
|
|
115
|
+
/** Mutation key for deleteOrgPrincipal */ deleteOrgPrincipal: (identifier) => identifier
|
|
116
|
+
? ['mutation', 'deleteOrgPrincipal', identifier]
|
|
117
|
+
: ['mutation', 'deleteOrgPrincipal'],
|
|
88
118
|
/** Mutation key for disconnectAccount */ disconnectAccount: (identifier) => identifier
|
|
89
119
|
? ['mutation', 'disconnectAccount', identifier]
|
|
90
120
|
: ['mutation', 'disconnectAccount'],
|
|
@@ -103,6 +133,9 @@ exports.customMutationKeys = {
|
|
|
103
133
|
/** Mutation key for confirmDeleteAccount */ confirmDeleteAccount: (identifier) => identifier
|
|
104
134
|
? ['mutation', 'confirmDeleteAccount', identifier]
|
|
105
135
|
: ['mutation', 'confirmDeleteAccount'],
|
|
136
|
+
/** Mutation key for revokeOrgApiKey */ revokeOrgApiKey: (identifier) => identifier
|
|
137
|
+
? ['mutation', 'revokeOrgApiKey', identifier]
|
|
138
|
+
: ['mutation', 'revokeOrgApiKey'],
|
|
106
139
|
/** Mutation key for setPassword */ setPassword: (identifier) => identifier
|
|
107
140
|
? ['mutation', 'setPassword', identifier]
|
|
108
141
|
: ['mutation', 'setPassword'],
|
|
@@ -129,9 +162,15 @@ exports.customMutationKeys = {
|
|
|
129
162
|
/** Mutation key for linkIdentity */ linkIdentity: (identifier) => identifier
|
|
130
163
|
? ['mutation', 'linkIdentity', identifier]
|
|
131
164
|
: ['mutation', 'linkIdentity'],
|
|
165
|
+
/** Mutation key for createOrgPrincipal */ createOrgPrincipal: (identifier) => identifier
|
|
166
|
+
? ['mutation', 'createOrgPrincipal', identifier]
|
|
167
|
+
: ['mutation', 'createOrgPrincipal'],
|
|
132
168
|
/** Mutation key for extendTokenExpires */ extendTokenExpires: (identifier) => identifier
|
|
133
169
|
? ['mutation', 'extendTokenExpires', identifier]
|
|
134
170
|
: ['mutation', 'extendTokenExpires'],
|
|
171
|
+
/** Mutation key for createOrgApiKey */ createOrgApiKey: (identifier) => identifier
|
|
172
|
+
? ['mutation', 'createOrgApiKey', identifier]
|
|
173
|
+
: ['mutation', 'createOrgApiKey'],
|
|
135
174
|
/** Mutation key for createApiKey */ createApiKey: (identifier) => identifier
|
|
136
175
|
? ['mutation', 'createApiKey', identifier]
|
|
137
176
|
: ['mutation', 'createApiKey'],
|
|
@@ -171,6 +210,9 @@ exports.customMutationKeys = {
|
|
|
171
210
|
* ```
|
|
172
211
|
*/
|
|
173
212
|
exports.mutationKeys = {
|
|
213
|
+
principal: exports.principalMutationKeys,
|
|
214
|
+
principalEntity: exports.principalEntityMutationKeys,
|
|
215
|
+
principalScopeOverride: exports.principalScopeOverrideMutationKeys,
|
|
174
216
|
email: exports.emailMutationKeys,
|
|
175
217
|
phoneNumber: exports.phoneNumberMutationKeys,
|
|
176
218
|
cryptoAddress: exports.cryptoAddressMutationKeys,
|
|
@@ -179,6 +221,7 @@ exports.mutationKeys = {
|
|
|
179
221
|
identityProvider: exports.identityProviderMutationKeys,
|
|
180
222
|
roleType: exports.roleTypeMutationKeys,
|
|
181
223
|
userConnectedAccount: exports.userConnectedAccountMutationKeys,
|
|
224
|
+
orgApiKeyList: exports.orgApiKeyListMutationKeys,
|
|
182
225
|
user: exports.userMutationKeys,
|
|
183
226
|
custom: exports.customMutationKeys,
|
|
184
227
|
};
|
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
+
export * from './useCreatePrincipalMutation';
|
|
7
|
+
export * from './useDeletePrincipalMutation';
|
|
8
|
+
export * from './useCreatePrincipalEntityMutation';
|
|
9
|
+
export * from './useUpdatePrincipalEntityMutation';
|
|
10
|
+
export * from './useDeletePrincipalEntityMutation';
|
|
11
|
+
export * from './useCreatePrincipalScopeOverrideMutation';
|
|
6
12
|
export * from './useCreateEmailMutation';
|
|
7
13
|
export * from './useUpdateEmailMutation';
|
|
8
14
|
export * from './useDeleteEmailMutation';
|
|
@@ -23,18 +29,21 @@ export * from './useCreateRoleTypeMutation';
|
|
|
23
29
|
export * from './useUpdateRoleTypeMutation';
|
|
24
30
|
export * from './useDeleteRoleTypeMutation';
|
|
25
31
|
export * from './useCreateUserConnectedAccountMutation';
|
|
32
|
+
export * from './useCreateOrgApiKeyListMutation';
|
|
26
33
|
export * from './useCreateUserMutation';
|
|
27
34
|
export * from './useUpdateUserMutation';
|
|
28
35
|
export * from './useDeleteUserMutation';
|
|
29
36
|
export * from './useSignOutMutation';
|
|
30
37
|
export * from './useSendAccountDeletionEmailMutation';
|
|
31
38
|
export * from './useCheckPasswordMutation';
|
|
39
|
+
export * from './useDeleteOrgPrincipalMutation';
|
|
32
40
|
export * from './useDisconnectAccountMutation';
|
|
33
41
|
export * from './useRevokeApiKeyMutation';
|
|
34
42
|
export * from './useRevokeSessionMutation';
|
|
35
43
|
export * from './useVerifyPasswordMutation';
|
|
36
44
|
export * from './useVerifyTotpMutation';
|
|
37
45
|
export * from './useConfirmDeleteAccountMutation';
|
|
46
|
+
export * from './useRevokeOrgApiKeyMutation';
|
|
38
47
|
export * from './useSetPasswordMutation';
|
|
39
48
|
export * from './useVerifyEmailMutation';
|
|
40
49
|
export * from './useProvisionNewUserMutation';
|
|
@@ -45,7 +54,9 @@ export * from './useSignUpSmsMutation';
|
|
|
45
54
|
export * from './useSignUpMutation';
|
|
46
55
|
export * from './useSignInMutation';
|
|
47
56
|
export * from './useLinkIdentityMutation';
|
|
57
|
+
export * from './useCreateOrgPrincipalMutation';
|
|
48
58
|
export * from './useExtendTokenExpiresMutation';
|
|
59
|
+
export * from './useCreateOrgApiKeyMutation';
|
|
49
60
|
export * from './useCreateApiKeyMutation';
|
|
50
61
|
export * from './useRequestCrossOriginTokenMutation';
|
|
51
62
|
export * from './useForgotPasswordMutation';
|
|
@@ -19,6 +19,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19
19
|
* @generated by @constructive-io/graphql-codegen
|
|
20
20
|
* DO NOT EDIT - changes will be overwritten
|
|
21
21
|
*/
|
|
22
|
+
__exportStar(require("./useCreatePrincipalMutation"), exports);
|
|
23
|
+
__exportStar(require("./useDeletePrincipalMutation"), exports);
|
|
24
|
+
__exportStar(require("./useCreatePrincipalEntityMutation"), exports);
|
|
25
|
+
__exportStar(require("./useUpdatePrincipalEntityMutation"), exports);
|
|
26
|
+
__exportStar(require("./useDeletePrincipalEntityMutation"), exports);
|
|
27
|
+
__exportStar(require("./useCreatePrincipalScopeOverrideMutation"), exports);
|
|
22
28
|
__exportStar(require("./useCreateEmailMutation"), exports);
|
|
23
29
|
__exportStar(require("./useUpdateEmailMutation"), exports);
|
|
24
30
|
__exportStar(require("./useDeleteEmailMutation"), exports);
|
|
@@ -39,18 +45,21 @@ __exportStar(require("./useCreateRoleTypeMutation"), exports);
|
|
|
39
45
|
__exportStar(require("./useUpdateRoleTypeMutation"), exports);
|
|
40
46
|
__exportStar(require("./useDeleteRoleTypeMutation"), exports);
|
|
41
47
|
__exportStar(require("./useCreateUserConnectedAccountMutation"), exports);
|
|
48
|
+
__exportStar(require("./useCreateOrgApiKeyListMutation"), exports);
|
|
42
49
|
__exportStar(require("./useCreateUserMutation"), exports);
|
|
43
50
|
__exportStar(require("./useUpdateUserMutation"), exports);
|
|
44
51
|
__exportStar(require("./useDeleteUserMutation"), exports);
|
|
45
52
|
__exportStar(require("./useSignOutMutation"), exports);
|
|
46
53
|
__exportStar(require("./useSendAccountDeletionEmailMutation"), exports);
|
|
47
54
|
__exportStar(require("./useCheckPasswordMutation"), exports);
|
|
55
|
+
__exportStar(require("./useDeleteOrgPrincipalMutation"), exports);
|
|
48
56
|
__exportStar(require("./useDisconnectAccountMutation"), exports);
|
|
49
57
|
__exportStar(require("./useRevokeApiKeyMutation"), exports);
|
|
50
58
|
__exportStar(require("./useRevokeSessionMutation"), exports);
|
|
51
59
|
__exportStar(require("./useVerifyPasswordMutation"), exports);
|
|
52
60
|
__exportStar(require("./useVerifyTotpMutation"), exports);
|
|
53
61
|
__exportStar(require("./useConfirmDeleteAccountMutation"), exports);
|
|
62
|
+
__exportStar(require("./useRevokeOrgApiKeyMutation"), exports);
|
|
54
63
|
__exportStar(require("./useSetPasswordMutation"), exports);
|
|
55
64
|
__exportStar(require("./useVerifyEmailMutation"), exports);
|
|
56
65
|
__exportStar(require("./useProvisionNewUserMutation"), exports);
|
|
@@ -61,7 +70,9 @@ __exportStar(require("./useSignUpSmsMutation"), exports);
|
|
|
61
70
|
__exportStar(require("./useSignUpMutation"), exports);
|
|
62
71
|
__exportStar(require("./useSignInMutation"), exports);
|
|
63
72
|
__exportStar(require("./useLinkIdentityMutation"), exports);
|
|
73
|
+
__exportStar(require("./useCreateOrgPrincipalMutation"), exports);
|
|
64
74
|
__exportStar(require("./useExtendTokenExpiresMutation"), exports);
|
|
75
|
+
__exportStar(require("./useCreateOrgApiKeyMutation"), exports);
|
|
65
76
|
__exportStar(require("./useCreateApiKeyMutation"), exports);
|
|
66
77
|
__exportStar(require("./useRequestCrossOriginTokenMutation"), exports);
|
|
67
78
|
__exportStar(require("./useForgotPasswordMutation"), exports);
|