@constructive-io/react 0.27.1 → 0.27.3
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 +5 -5
package/esm/auth/types.d.ts
CHANGED
|
@@ -7,6 +7,35 @@ export type Base64EncodedBinary = unknown;
|
|
|
7
7
|
export type ConstructiveInternalTypeEmail = unknown;
|
|
8
8
|
export type ConstructiveInternalTypeImage = unknown;
|
|
9
9
|
export type ConstructiveInternalTypeOrigin = unknown;
|
|
10
|
+
export interface Principal {
|
|
11
|
+
id: string | null;
|
|
12
|
+
createdAt: string | null;
|
|
13
|
+
updatedAt: string | null;
|
|
14
|
+
ownerId: string | null;
|
|
15
|
+
userId: string | null;
|
|
16
|
+
name: string | null;
|
|
17
|
+
allowedMask: string | null;
|
|
18
|
+
isReadOnly: boolean | null;
|
|
19
|
+
bypassStepUp: boolean | null;
|
|
20
|
+
}
|
|
21
|
+
export interface PrincipalEntity {
|
|
22
|
+
id: string | null;
|
|
23
|
+
createdAt: string | null;
|
|
24
|
+
updatedAt: string | null;
|
|
25
|
+
principalId: string | null;
|
|
26
|
+
entityId: string | null;
|
|
27
|
+
ownerId: string | null;
|
|
28
|
+
}
|
|
29
|
+
export interface PrincipalScopeOverride {
|
|
30
|
+
id: string | null;
|
|
31
|
+
createdAt: string | null;
|
|
32
|
+
updatedAt: string | null;
|
|
33
|
+
principalId: string | null;
|
|
34
|
+
membershipType: number | null;
|
|
35
|
+
allowedMask: string | null;
|
|
36
|
+
isAdmin: boolean | null;
|
|
37
|
+
isReadOnly: boolean | null;
|
|
38
|
+
}
|
|
10
39
|
export interface Email {
|
|
11
40
|
id: string | null;
|
|
12
41
|
ownerId: string | null;
|
|
@@ -85,6 +114,20 @@ export interface UserConnectedAccount {
|
|
|
85
114
|
createdAt: string | null;
|
|
86
115
|
updatedAt: string | null;
|
|
87
116
|
}
|
|
117
|
+
export interface OrgApiKeyList {
|
|
118
|
+
id: string | null;
|
|
119
|
+
keyId: string | null;
|
|
120
|
+
name: string | null;
|
|
121
|
+
principalId: string | null;
|
|
122
|
+
orgId: string | null;
|
|
123
|
+
expiresAt: string | null;
|
|
124
|
+
revokedAt: string | null;
|
|
125
|
+
lastUsedAt: string | null;
|
|
126
|
+
mfaLevel: string | null;
|
|
127
|
+
accessLevel: string | null;
|
|
128
|
+
createdAt: string | null;
|
|
129
|
+
updatedAt: string | null;
|
|
130
|
+
}
|
|
88
131
|
export interface User {
|
|
89
132
|
id: string | null;
|
|
90
133
|
username: string | null;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: GetAllRecord, FunctionApiBinding, FunctionDeployment, FunctionGraphRef, FunctionGraphStore, FunctionGraphObject, FunctionDeploymentEvent, OrgFunctionExecutionLog, FunctionGraphExecutionOutput, FunctionGraphCommit, SecretDefinition, FunctionExecutionLog, FunctionGraphExecutionNodeState,
|
|
5
|
+
* Tables: GetAllRecord, FunctionApiBinding, FunctionDeployment, Resource, FunctionGraphRef, FunctionGraphStore, FunctionGraphObject, FunctionDeploymentEvent, OrgFunctionExecutionLog, ResourceEvent, FunctionGraphExecutionOutput, FunctionGraphCommit, SecretDefinition, FunctionExecutionLog, FunctionGraph, FunctionGraphExecutionNodeState, PlatformNamespace, OrgFunctionInvocation, FunctionInvocation, PlatformNamespaceEvent, FunctionGraphExecution, FunctionDefinition
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: GetAllRecord, FunctionApiBinding, FunctionDeployment, FunctionGraphRef, FunctionGraphStore, FunctionGraphObject, FunctionDeploymentEvent, OrgFunctionExecutionLog, FunctionGraphExecutionOutput, FunctionGraphCommit, SecretDefinition, FunctionExecutionLog, FunctionGraphExecutionNodeState,
|
|
5
|
+
* Tables: GetAllRecord, FunctionApiBinding, FunctionDeployment, Resource, FunctionGraphRef, FunctionGraphStore, FunctionGraphObject, FunctionDeploymentEvent, OrgFunctionExecutionLog, ResourceEvent, FunctionGraphExecutionOutput, FunctionGraphCommit, SecretDefinition, FunctionExecutionLog, FunctionGraph, FunctionGraphExecutionNodeState, PlatformNamespace, OrgFunctionInvocation, FunctionInvocation, PlatformNamespaceEvent, FunctionGraphExecution, FunctionDefinition
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
|
@@ -39,6 +39,11 @@ export declare const invalidate: {
|
|
|
39
39
|
/** Invalidate functionDeployment list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
40
40
|
/** Invalidate a specific functionDeployment */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
41
41
|
};
|
|
42
|
+
/** Invalidate resource queries */ readonly resource: {
|
|
43
|
+
/** Invalidate all resource queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
|
+
/** Invalidate resource list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
45
|
+
/** Invalidate a specific resource */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
46
|
+
};
|
|
42
47
|
/** Invalidate functionGraphRef queries */ readonly functionGraphRef: {
|
|
43
48
|
/** Invalidate all functionGraphRef queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
49
|
/** Invalidate functionGraphRef list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -64,6 +69,11 @@ export declare const invalidate: {
|
|
|
64
69
|
/** Invalidate orgFunctionExecutionLog list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
65
70
|
/** Invalidate a specific orgFunctionExecutionLog */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
66
71
|
};
|
|
72
|
+
/** Invalidate resourceEvent queries */ readonly resourceEvent: {
|
|
73
|
+
/** Invalidate all resourceEvent queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
74
|
+
/** Invalidate resourceEvent list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
75
|
+
/** Invalidate a specific resourceEvent */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
76
|
+
};
|
|
67
77
|
/** Invalidate functionGraphExecutionOutput queries */ readonly functionGraphExecutionOutput: {
|
|
68
78
|
/** Invalidate all functionGraphExecutionOutput queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
69
79
|
/** Invalidate functionGraphExecutionOutput list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -84,15 +94,20 @@ export declare const invalidate: {
|
|
|
84
94
|
/** Invalidate functionExecutionLog list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
85
95
|
/** Invalidate a specific functionExecutionLog */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
86
96
|
};
|
|
97
|
+
/** Invalidate functionGraph queries */ readonly functionGraph: {
|
|
98
|
+
/** Invalidate all functionGraph queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
99
|
+
/** Invalidate functionGraph list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
100
|
+
/** Invalidate a specific functionGraph */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
101
|
+
};
|
|
87
102
|
/** Invalidate functionGraphExecutionNodeState queries */ readonly functionGraphExecutionNodeState: {
|
|
88
103
|
/** Invalidate all functionGraphExecutionNodeState queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
89
104
|
/** Invalidate functionGraphExecutionNodeState list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
90
105
|
/** Invalidate a specific functionGraphExecutionNodeState */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
91
106
|
};
|
|
92
|
-
/** Invalidate
|
|
93
|
-
/** Invalidate all
|
|
94
|
-
/** Invalidate
|
|
95
|
-
/** Invalidate a specific
|
|
107
|
+
/** Invalidate platformNamespace queries */ readonly platformNamespace: {
|
|
108
|
+
/** Invalidate all platformNamespace queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
109
|
+
/** Invalidate platformNamespace list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
110
|
+
/** Invalidate a specific platformNamespace */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
96
111
|
};
|
|
97
112
|
/** Invalidate orgFunctionInvocation queries */ readonly orgFunctionInvocation: {
|
|
98
113
|
/** Invalidate all orgFunctionInvocation queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -104,6 +119,11 @@ export declare const invalidate: {
|
|
|
104
119
|
/** Invalidate functionInvocation list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
105
120
|
/** Invalidate a specific functionInvocation */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
106
121
|
};
|
|
122
|
+
/** Invalidate platformNamespaceEvent queries */ readonly platformNamespaceEvent: {
|
|
123
|
+
/** Invalidate all platformNamespaceEvent queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
124
|
+
/** Invalidate platformNamespaceEvent list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
125
|
+
/** Invalidate a specific platformNamespaceEvent */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
126
|
+
};
|
|
107
127
|
/** Invalidate functionGraphExecution queries */ readonly functionGraphExecution: {
|
|
108
128
|
/** Invalidate all functionGraphExecution queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
109
129
|
/** Invalidate functionGraphExecution list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -130,19 +150,23 @@ export declare const remove: {
|
|
|
130
150
|
/** Remove getAllRecord from cache */ readonly getAllRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
131
151
|
/** Remove functionApiBinding from cache */ readonly functionApiBinding: (queryClient: QueryClient, id: string | number) => void;
|
|
132
152
|
/** Remove functionDeployment from cache */ readonly functionDeployment: (queryClient: QueryClient, id: string | number) => void;
|
|
153
|
+
/** Remove resource from cache */ readonly resource: (queryClient: QueryClient, id: string | number) => void;
|
|
133
154
|
/** Remove functionGraphRef from cache */ readonly functionGraphRef: (queryClient: QueryClient, id: string | number) => void;
|
|
134
155
|
/** Remove functionGraphStore from cache */ readonly functionGraphStore: (queryClient: QueryClient, id: string | number) => void;
|
|
135
156
|
/** Remove functionGraphObject from cache */ readonly functionGraphObject: (queryClient: QueryClient, id: string | number) => void;
|
|
136
157
|
/** Remove functionDeploymentEvent from cache */ readonly functionDeploymentEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
137
158
|
/** Remove orgFunctionExecutionLog from cache */ readonly orgFunctionExecutionLog: (queryClient: QueryClient, id: string | number) => void;
|
|
159
|
+
/** Remove resourceEvent from cache */ readonly resourceEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
138
160
|
/** Remove functionGraphExecutionOutput from cache */ readonly functionGraphExecutionOutput: (queryClient: QueryClient, id: string | number) => void;
|
|
139
161
|
/** Remove functionGraphCommit from cache */ readonly functionGraphCommit: (queryClient: QueryClient, id: string | number) => void;
|
|
140
162
|
/** Remove secretDefinition from cache */ readonly secretDefinition: (queryClient: QueryClient, id: string | number) => void;
|
|
141
163
|
/** Remove functionExecutionLog from cache */ readonly functionExecutionLog: (queryClient: QueryClient, id: string | number) => void;
|
|
142
|
-
/** Remove functionGraphExecutionNodeState from cache */ readonly functionGraphExecutionNodeState: (queryClient: QueryClient, id: string | number) => void;
|
|
143
164
|
/** Remove functionGraph from cache */ readonly functionGraph: (queryClient: QueryClient, id: string | number) => void;
|
|
165
|
+
/** Remove functionGraphExecutionNodeState from cache */ readonly functionGraphExecutionNodeState: (queryClient: QueryClient, id: string | number) => void;
|
|
166
|
+
/** Remove platformNamespace from cache */ readonly platformNamespace: (queryClient: QueryClient, id: string | number) => void;
|
|
144
167
|
/** Remove orgFunctionInvocation from cache */ readonly orgFunctionInvocation: (queryClient: QueryClient, id: string | number) => void;
|
|
145
168
|
/** Remove functionInvocation from cache */ readonly functionInvocation: (queryClient: QueryClient, id: string | number) => void;
|
|
169
|
+
/** Remove platformNamespaceEvent from cache */ readonly platformNamespaceEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
146
170
|
/** Remove functionGraphExecution from cache */ readonly functionGraphExecution: (queryClient: QueryClient, id: string | number) => void;
|
|
147
171
|
/** Remove functionDefinition from cache */ readonly functionDefinition: (queryClient: QueryClient, id: string | number) => void;
|
|
148
172
|
};
|
|
@@ -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 { getAllRecordKeys, functionApiBindingKeys, functionDeploymentKeys, functionGraphRefKeys, functionGraphStoreKeys, functionGraphObjectKeys, functionDeploymentEventKeys, orgFunctionExecutionLogKeys, functionGraphExecutionOutputKeys, functionGraphCommitKeys, secretDefinitionKeys, functionExecutionLogKeys, functionGraphExecutionNodeStateKeys,
|
|
6
|
+
import { getAllRecordKeys, functionApiBindingKeys, functionDeploymentKeys, resourceKeys, functionGraphRefKeys, functionGraphStoreKeys, functionGraphObjectKeys, functionDeploymentEventKeys, orgFunctionExecutionLogKeys, resourceEventKeys, functionGraphExecutionOutputKeys, functionGraphCommitKeys, secretDefinitionKeys, functionExecutionLogKeys, functionGraphKeys, functionGraphExecutionNodeStateKeys, platformNamespaceKeys, orgFunctionInvocationKeys, functionInvocationKeys, platformNamespaceEventKeys, functionGraphExecutionKeys, functionDefinitionKeys, } from './query-keys';
|
|
7
7
|
/**
|
|
8
8
|
// ============================================================================
|
|
9
9
|
// Invalidation Helpers
|
|
@@ -57,6 +57,17 @@ export const invalidate = {
|
|
|
57
57
|
queryKey: functionDeploymentKeys.detail(id),
|
|
58
58
|
}),
|
|
59
59
|
},
|
|
60
|
+
/** Invalidate resource queries */ resource: {
|
|
61
|
+
/** Invalidate all resource queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
62
|
+
queryKey: resourceKeys.all,
|
|
63
|
+
}),
|
|
64
|
+
/** Invalidate resource list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
65
|
+
queryKey: resourceKeys.lists(),
|
|
66
|
+
}),
|
|
67
|
+
/** Invalidate a specific resource */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
68
|
+
queryKey: resourceKeys.detail(id),
|
|
69
|
+
}),
|
|
70
|
+
},
|
|
60
71
|
/** Invalidate functionGraphRef queries */ functionGraphRef: {
|
|
61
72
|
/** Invalidate all functionGraphRef queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
62
73
|
queryKey: functionGraphRefKeys.all,
|
|
@@ -112,6 +123,17 @@ export const invalidate = {
|
|
|
112
123
|
queryKey: orgFunctionExecutionLogKeys.detail(id),
|
|
113
124
|
}),
|
|
114
125
|
},
|
|
126
|
+
/** Invalidate resourceEvent queries */ resourceEvent: {
|
|
127
|
+
/** Invalidate all resourceEvent queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
128
|
+
queryKey: resourceEventKeys.all,
|
|
129
|
+
}),
|
|
130
|
+
/** Invalidate resourceEvent list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
131
|
+
queryKey: resourceEventKeys.lists(),
|
|
132
|
+
}),
|
|
133
|
+
/** Invalidate a specific resourceEvent */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
134
|
+
queryKey: resourceEventKeys.detail(id),
|
|
135
|
+
}),
|
|
136
|
+
},
|
|
115
137
|
/** Invalidate functionGraphExecutionOutput queries */ functionGraphExecutionOutput: {
|
|
116
138
|
/** Invalidate all functionGraphExecutionOutput queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
117
139
|
queryKey: functionGraphExecutionOutputKeys.all,
|
|
@@ -156,6 +178,17 @@ export const invalidate = {
|
|
|
156
178
|
queryKey: functionExecutionLogKeys.detail(id),
|
|
157
179
|
}),
|
|
158
180
|
},
|
|
181
|
+
/** Invalidate functionGraph queries */ functionGraph: {
|
|
182
|
+
/** Invalidate all functionGraph queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
183
|
+
queryKey: functionGraphKeys.all,
|
|
184
|
+
}),
|
|
185
|
+
/** Invalidate functionGraph list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
186
|
+
queryKey: functionGraphKeys.lists(),
|
|
187
|
+
}),
|
|
188
|
+
/** Invalidate a specific functionGraph */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
189
|
+
queryKey: functionGraphKeys.detail(id),
|
|
190
|
+
}),
|
|
191
|
+
},
|
|
159
192
|
/** Invalidate functionGraphExecutionNodeState queries */ functionGraphExecutionNodeState: {
|
|
160
193
|
/** Invalidate all functionGraphExecutionNodeState queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
161
194
|
queryKey: functionGraphExecutionNodeStateKeys.all,
|
|
@@ -167,15 +200,15 @@ export const invalidate = {
|
|
|
167
200
|
queryKey: functionGraphExecutionNodeStateKeys.detail(id),
|
|
168
201
|
}),
|
|
169
202
|
},
|
|
170
|
-
/** Invalidate
|
|
171
|
-
/** Invalidate all
|
|
172
|
-
queryKey:
|
|
203
|
+
/** Invalidate platformNamespace queries */ platformNamespace: {
|
|
204
|
+
/** Invalidate all platformNamespace queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
205
|
+
queryKey: platformNamespaceKeys.all,
|
|
173
206
|
}),
|
|
174
|
-
/** Invalidate
|
|
175
|
-
queryKey:
|
|
207
|
+
/** Invalidate platformNamespace list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
208
|
+
queryKey: platformNamespaceKeys.lists(),
|
|
176
209
|
}),
|
|
177
|
-
/** Invalidate a specific
|
|
178
|
-
queryKey:
|
|
210
|
+
/** Invalidate a specific platformNamespace */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
211
|
+
queryKey: platformNamespaceKeys.detail(id),
|
|
179
212
|
}),
|
|
180
213
|
},
|
|
181
214
|
/** Invalidate orgFunctionInvocation queries */ orgFunctionInvocation: {
|
|
@@ -200,6 +233,17 @@ export const invalidate = {
|
|
|
200
233
|
queryKey: functionInvocationKeys.detail(id),
|
|
201
234
|
}),
|
|
202
235
|
},
|
|
236
|
+
/** Invalidate platformNamespaceEvent queries */ platformNamespaceEvent: {
|
|
237
|
+
/** Invalidate all platformNamespaceEvent queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
238
|
+
queryKey: platformNamespaceEventKeys.all,
|
|
239
|
+
}),
|
|
240
|
+
/** Invalidate platformNamespaceEvent list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
241
|
+
queryKey: platformNamespaceEventKeys.lists(),
|
|
242
|
+
}),
|
|
243
|
+
/** Invalidate a specific platformNamespaceEvent */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
244
|
+
queryKey: platformNamespaceEventKeys.detail(id),
|
|
245
|
+
}),
|
|
246
|
+
},
|
|
203
247
|
/** Invalidate functionGraphExecution queries */ functionGraphExecution: {
|
|
204
248
|
/** Invalidate all functionGraphExecution queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
205
249
|
queryKey: functionGraphExecutionKeys.all,
|
|
@@ -250,6 +294,11 @@ export const remove = {
|
|
|
250
294
|
queryKey: functionDeploymentKeys.detail(id),
|
|
251
295
|
});
|
|
252
296
|
},
|
|
297
|
+
/** Remove resource from cache */ resource: (queryClient, id) => {
|
|
298
|
+
queryClient.removeQueries({
|
|
299
|
+
queryKey: resourceKeys.detail(id),
|
|
300
|
+
});
|
|
301
|
+
},
|
|
253
302
|
/** Remove functionGraphRef from cache */ functionGraphRef: (queryClient, id) => {
|
|
254
303
|
queryClient.removeQueries({
|
|
255
304
|
queryKey: functionGraphRefKeys.detail(id),
|
|
@@ -275,6 +324,11 @@ export const remove = {
|
|
|
275
324
|
queryKey: orgFunctionExecutionLogKeys.detail(id),
|
|
276
325
|
});
|
|
277
326
|
},
|
|
327
|
+
/** Remove resourceEvent from cache */ resourceEvent: (queryClient, id) => {
|
|
328
|
+
queryClient.removeQueries({
|
|
329
|
+
queryKey: resourceEventKeys.detail(id),
|
|
330
|
+
});
|
|
331
|
+
},
|
|
278
332
|
/** Remove functionGraphExecutionOutput from cache */ functionGraphExecutionOutput: (queryClient, id) => {
|
|
279
333
|
queryClient.removeQueries({
|
|
280
334
|
queryKey: functionGraphExecutionOutputKeys.detail(id),
|
|
@@ -295,14 +349,19 @@ export const remove = {
|
|
|
295
349
|
queryKey: functionExecutionLogKeys.detail(id),
|
|
296
350
|
});
|
|
297
351
|
},
|
|
352
|
+
/** Remove functionGraph from cache */ functionGraph: (queryClient, id) => {
|
|
353
|
+
queryClient.removeQueries({
|
|
354
|
+
queryKey: functionGraphKeys.detail(id),
|
|
355
|
+
});
|
|
356
|
+
},
|
|
298
357
|
/** Remove functionGraphExecutionNodeState from cache */ functionGraphExecutionNodeState: (queryClient, id) => {
|
|
299
358
|
queryClient.removeQueries({
|
|
300
359
|
queryKey: functionGraphExecutionNodeStateKeys.detail(id),
|
|
301
360
|
});
|
|
302
361
|
},
|
|
303
|
-
/** Remove
|
|
362
|
+
/** Remove platformNamespace from cache */ platformNamespace: (queryClient, id) => {
|
|
304
363
|
queryClient.removeQueries({
|
|
305
|
-
queryKey:
|
|
364
|
+
queryKey: platformNamespaceKeys.detail(id),
|
|
306
365
|
});
|
|
307
366
|
},
|
|
308
367
|
/** Remove orgFunctionInvocation from cache */ orgFunctionInvocation: (queryClient, id) => {
|
|
@@ -315,6 +374,11 @@ export const remove = {
|
|
|
315
374
|
queryKey: functionInvocationKeys.detail(id),
|
|
316
375
|
});
|
|
317
376
|
},
|
|
377
|
+
/** Remove platformNamespaceEvent from cache */ platformNamespaceEvent: (queryClient, id) => {
|
|
378
|
+
queryClient.removeQueries({
|
|
379
|
+
queryKey: platformNamespaceEventKeys.detail(id),
|
|
380
|
+
});
|
|
381
|
+
},
|
|
318
382
|
/** Remove functionGraphExecution from cache */ functionGraphExecution: (queryClient, id) => {
|
|
319
383
|
queryClient.removeQueries({
|
|
320
384
|
queryKey: functionGraphExecutionKeys.detail(id),
|
|
@@ -21,6 +21,12 @@ export declare const functionDeploymentMutationKeys: {
|
|
|
21
21
|
/** Update functionDeployment mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functiondeployment", "update", string | number];
|
|
22
22
|
/** Delete functionDeployment mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functiondeployment", "delete", string | number];
|
|
23
23
|
};
|
|
24
|
+
export declare const resourceMutationKeys: {
|
|
25
|
+
/** All resource mutation keys */ readonly all: readonly ["mutation", "resource"];
|
|
26
|
+
/** Create resource mutation key */ readonly create: () => readonly ["mutation", "resource", "create"];
|
|
27
|
+
/** Update resource mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resource", "update", string | number];
|
|
28
|
+
/** Delete resource mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resource", "delete", string | number];
|
|
29
|
+
};
|
|
24
30
|
export declare const functionGraphRefMutationKeys: {
|
|
25
31
|
/** All functionGraphRef mutation keys */ readonly all: readonly ["mutation", "functiongraphref"];
|
|
26
32
|
/** Create functionGraphRef mutation key */ readonly create: () => readonly ["mutation", "functiongraphref", "create"];
|
|
@@ -51,6 +57,12 @@ export declare const orgFunctionExecutionLogMutationKeys: {
|
|
|
51
57
|
/** Update orgFunctionExecutionLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgfunctionexecutionlog", "update", string | number];
|
|
52
58
|
/** Delete orgFunctionExecutionLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgfunctionexecutionlog", "delete", string | number];
|
|
53
59
|
};
|
|
60
|
+
export declare const resourceEventMutationKeys: {
|
|
61
|
+
/** All resourceEvent mutation keys */ readonly all: readonly ["mutation", "resourceevent"];
|
|
62
|
+
/** Create resourceEvent mutation key */ readonly create: () => readonly ["mutation", "resourceevent", "create"];
|
|
63
|
+
/** Update resourceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceevent", "update", string | number];
|
|
64
|
+
/** Delete resourceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceevent", "delete", string | number];
|
|
65
|
+
};
|
|
54
66
|
export declare const functionGraphExecutionOutputMutationKeys: {
|
|
55
67
|
/** All functionGraphExecutionOutput mutation keys */ readonly all: readonly ["mutation", "functiongraphexecutionoutput"];
|
|
56
68
|
/** Create functionGraphExecutionOutput mutation key */ readonly create: () => readonly ["mutation", "functiongraphexecutionoutput", "create"];
|
|
@@ -75,17 +87,23 @@ export declare const functionExecutionLogMutationKeys: {
|
|
|
75
87
|
/** Update functionExecutionLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functionexecutionlog", "update", string | number];
|
|
76
88
|
/** Delete functionExecutionLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functionexecutionlog", "delete", string | number];
|
|
77
89
|
};
|
|
90
|
+
export declare const functionGraphMutationKeys: {
|
|
91
|
+
/** All functionGraph mutation keys */ readonly all: readonly ["mutation", "functiongraph"];
|
|
92
|
+
/** Create functionGraph mutation key */ readonly create: () => readonly ["mutation", "functiongraph", "create"];
|
|
93
|
+
/** Update functionGraph mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functiongraph", "update", string | number];
|
|
94
|
+
/** Delete functionGraph mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functiongraph", "delete", string | number];
|
|
95
|
+
};
|
|
78
96
|
export declare const functionGraphExecutionNodeStateMutationKeys: {
|
|
79
97
|
/** All functionGraphExecutionNodeState mutation keys */ readonly all: readonly ["mutation", "functiongraphexecutionnodestate"];
|
|
80
98
|
/** Create functionGraphExecutionNodeState mutation key */ readonly create: () => readonly ["mutation", "functiongraphexecutionnodestate", "create"];
|
|
81
99
|
/** Update functionGraphExecutionNodeState mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functiongraphexecutionnodestate", "update", string | number];
|
|
82
100
|
/** Delete functionGraphExecutionNodeState mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functiongraphexecutionnodestate", "delete", string | number];
|
|
83
101
|
};
|
|
84
|
-
export declare const
|
|
85
|
-
/** All
|
|
86
|
-
/** Create
|
|
87
|
-
/** Update
|
|
88
|
-
/** Delete
|
|
102
|
+
export declare const platformNamespaceMutationKeys: {
|
|
103
|
+
/** All platformNamespace mutation keys */ readonly all: readonly ["mutation", "platformnamespace"];
|
|
104
|
+
/** Create platformNamespace mutation key */ readonly create: () => readonly ["mutation", "platformnamespace", "create"];
|
|
105
|
+
/** Update platformNamespace mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformnamespace", "update", string | number];
|
|
106
|
+
/** Delete platformNamespace mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformnamespace", "delete", string | number];
|
|
89
107
|
};
|
|
90
108
|
export declare const orgFunctionInvocationMutationKeys: {
|
|
91
109
|
/** All orgFunctionInvocation mutation keys */ readonly all: readonly ["mutation", "orgfunctioninvocation"];
|
|
@@ -99,6 +117,12 @@ export declare const functionInvocationMutationKeys: {
|
|
|
99
117
|
/** Update functionInvocation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functioninvocation", "update", string | number];
|
|
100
118
|
/** Delete functionInvocation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functioninvocation", "delete", string | number];
|
|
101
119
|
};
|
|
120
|
+
export declare const platformNamespaceEventMutationKeys: {
|
|
121
|
+
/** All platformNamespaceEvent mutation keys */ readonly all: readonly ["mutation", "platformnamespaceevent"];
|
|
122
|
+
/** Create platformNamespaceEvent mutation key */ readonly create: () => readonly ["mutation", "platformnamespaceevent", "create"];
|
|
123
|
+
/** Update platformNamespaceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformnamespaceevent", "update", string | number];
|
|
124
|
+
/** Delete platformNamespaceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformnamespaceevent", "delete", string | number];
|
|
125
|
+
};
|
|
102
126
|
export declare const functionGraphExecutionMutationKeys: {
|
|
103
127
|
/** All functionGraphExecution mutation keys */ readonly all: readonly ["mutation", "functiongraphexecution"];
|
|
104
128
|
/** Create functionGraphExecution mutation key */ readonly create: () => readonly ["mutation", "functiongraphexecution", "create"];
|
|
@@ -120,9 +144,9 @@ export declare const customMutationKeys: {
|
|
|
120
144
|
/** Mutation key for saveGraph */ readonly saveGraph: (identifier?: string) => readonly ["mutation", "saveGraph", string] | readonly ["mutation", "saveGraph"];
|
|
121
145
|
/** Mutation key for addEdgeAndSave */ readonly addEdgeAndSave: (identifier?: string) => readonly ["mutation", "addEdgeAndSave", string] | readonly ["mutation", "addEdgeAndSave"];
|
|
122
146
|
/** Mutation key for addNodeAndSave */ readonly addNodeAndSave: (identifier?: string) => readonly ["mutation", "addNodeAndSave", string] | readonly ["mutation", "addNodeAndSave"];
|
|
147
|
+
/** Mutation key for importGraphJson */ readonly importGraphJson: (identifier?: string) => readonly ["mutation", "importGraphJson", string] | readonly ["mutation", "importGraphJson"];
|
|
123
148
|
/** Mutation key for addEdge */ readonly addEdge: (identifier?: string) => readonly ["mutation", "addEdge", string] | readonly ["mutation", "addEdge"];
|
|
124
149
|
/** Mutation key for addNode */ readonly addNode: (identifier?: string) => readonly ["mutation", "addNode", string] | readonly ["mutation", "addNode"];
|
|
125
|
-
/** Mutation key for importGraphJson */ readonly importGraphJson: (identifier?: string) => readonly ["mutation", "importGraphJson", string] | readonly ["mutation", "importGraphJson"];
|
|
126
150
|
/** Mutation key for insertNodeAtPath */ readonly insertNodeAtPath: (identifier?: string) => readonly ["mutation", "insertNodeAtPath", string] | readonly ["mutation", "insertNodeAtPath"];
|
|
127
151
|
/** Mutation key for startExecution */ readonly startExecution: (identifier?: string) => readonly ["mutation", "startExecution", string] | readonly ["mutation", "startExecution"];
|
|
128
152
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
@@ -168,6 +192,12 @@ export declare const mutationKeys: {
|
|
|
168
192
|
/** Update functionDeployment mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functiondeployment", "update", string | number];
|
|
169
193
|
/** Delete functionDeployment mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functiondeployment", "delete", string | number];
|
|
170
194
|
};
|
|
195
|
+
readonly resource: {
|
|
196
|
+
/** All resource mutation keys */ readonly all: readonly ["mutation", "resource"];
|
|
197
|
+
/** Create resource mutation key */ readonly create: () => readonly ["mutation", "resource", "create"];
|
|
198
|
+
/** Update resource mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resource", "update", string | number];
|
|
199
|
+
/** Delete resource mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resource", "delete", string | number];
|
|
200
|
+
};
|
|
171
201
|
readonly functionGraphRef: {
|
|
172
202
|
/** All functionGraphRef mutation keys */ readonly all: readonly ["mutation", "functiongraphref"];
|
|
173
203
|
/** Create functionGraphRef mutation key */ readonly create: () => readonly ["mutation", "functiongraphref", "create"];
|
|
@@ -198,6 +228,12 @@ export declare const mutationKeys: {
|
|
|
198
228
|
/** Update orgFunctionExecutionLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgfunctionexecutionlog", "update", string | number];
|
|
199
229
|
/** Delete orgFunctionExecutionLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgfunctionexecutionlog", "delete", string | number];
|
|
200
230
|
};
|
|
231
|
+
readonly resourceEvent: {
|
|
232
|
+
/** All resourceEvent mutation keys */ readonly all: readonly ["mutation", "resourceevent"];
|
|
233
|
+
/** Create resourceEvent mutation key */ readonly create: () => readonly ["mutation", "resourceevent", "create"];
|
|
234
|
+
/** Update resourceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceevent", "update", string | number];
|
|
235
|
+
/** Delete resourceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceevent", "delete", string | number];
|
|
236
|
+
};
|
|
201
237
|
readonly functionGraphExecutionOutput: {
|
|
202
238
|
/** All functionGraphExecutionOutput mutation keys */ readonly all: readonly ["mutation", "functiongraphexecutionoutput"];
|
|
203
239
|
/** Create functionGraphExecutionOutput mutation key */ readonly create: () => readonly ["mutation", "functiongraphexecutionoutput", "create"];
|
|
@@ -222,17 +258,23 @@ export declare const mutationKeys: {
|
|
|
222
258
|
/** Update functionExecutionLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functionexecutionlog", "update", string | number];
|
|
223
259
|
/** Delete functionExecutionLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functionexecutionlog", "delete", string | number];
|
|
224
260
|
};
|
|
261
|
+
readonly functionGraph: {
|
|
262
|
+
/** All functionGraph mutation keys */ readonly all: readonly ["mutation", "functiongraph"];
|
|
263
|
+
/** Create functionGraph mutation key */ readonly create: () => readonly ["mutation", "functiongraph", "create"];
|
|
264
|
+
/** Update functionGraph mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functiongraph", "update", string | number];
|
|
265
|
+
/** Delete functionGraph mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functiongraph", "delete", string | number];
|
|
266
|
+
};
|
|
225
267
|
readonly functionGraphExecutionNodeState: {
|
|
226
268
|
/** All functionGraphExecutionNodeState mutation keys */ readonly all: readonly ["mutation", "functiongraphexecutionnodestate"];
|
|
227
269
|
/** Create functionGraphExecutionNodeState mutation key */ readonly create: () => readonly ["mutation", "functiongraphexecutionnodestate", "create"];
|
|
228
270
|
/** Update functionGraphExecutionNodeState mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functiongraphexecutionnodestate", "update", string | number];
|
|
229
271
|
/** Delete functionGraphExecutionNodeState mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functiongraphexecutionnodestate", "delete", string | number];
|
|
230
272
|
};
|
|
231
|
-
readonly
|
|
232
|
-
/** All
|
|
233
|
-
/** Create
|
|
234
|
-
/** Update
|
|
235
|
-
/** Delete
|
|
273
|
+
readonly platformNamespace: {
|
|
274
|
+
/** All platformNamespace mutation keys */ readonly all: readonly ["mutation", "platformnamespace"];
|
|
275
|
+
/** Create platformNamespace mutation key */ readonly create: () => readonly ["mutation", "platformnamespace", "create"];
|
|
276
|
+
/** Update platformNamespace mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformnamespace", "update", string | number];
|
|
277
|
+
/** Delete platformNamespace mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformnamespace", "delete", string | number];
|
|
236
278
|
};
|
|
237
279
|
readonly orgFunctionInvocation: {
|
|
238
280
|
/** All orgFunctionInvocation mutation keys */ readonly all: readonly ["mutation", "orgfunctioninvocation"];
|
|
@@ -246,6 +288,12 @@ export declare const mutationKeys: {
|
|
|
246
288
|
/** Update functionInvocation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functioninvocation", "update", string | number];
|
|
247
289
|
/** Delete functionInvocation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functioninvocation", "delete", string | number];
|
|
248
290
|
};
|
|
291
|
+
readonly platformNamespaceEvent: {
|
|
292
|
+
/** All platformNamespaceEvent mutation keys */ readonly all: readonly ["mutation", "platformnamespaceevent"];
|
|
293
|
+
/** Create platformNamespaceEvent mutation key */ readonly create: () => readonly ["mutation", "platformnamespaceevent", "create"];
|
|
294
|
+
/** Update platformNamespaceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformnamespaceevent", "update", string | number];
|
|
295
|
+
/** Delete platformNamespaceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformnamespaceevent", "delete", string | number];
|
|
296
|
+
};
|
|
249
297
|
readonly functionGraphExecution: {
|
|
250
298
|
/** All functionGraphExecution mutation keys */ readonly all: readonly ["mutation", "functiongraphexecution"];
|
|
251
299
|
/** Create functionGraphExecution mutation key */ readonly create: () => readonly ["mutation", "functiongraphexecution", "create"];
|
|
@@ -267,9 +315,9 @@ export declare const mutationKeys: {
|
|
|
267
315
|
/** Mutation key for saveGraph */ readonly saveGraph: (identifier?: string) => readonly ["mutation", "saveGraph", string] | readonly ["mutation", "saveGraph"];
|
|
268
316
|
/** Mutation key for addEdgeAndSave */ readonly addEdgeAndSave: (identifier?: string) => readonly ["mutation", "addEdgeAndSave", string] | readonly ["mutation", "addEdgeAndSave"];
|
|
269
317
|
/** Mutation key for addNodeAndSave */ readonly addNodeAndSave: (identifier?: string) => readonly ["mutation", "addNodeAndSave", string] | readonly ["mutation", "addNodeAndSave"];
|
|
318
|
+
/** Mutation key for importGraphJson */ readonly importGraphJson: (identifier?: string) => readonly ["mutation", "importGraphJson", string] | readonly ["mutation", "importGraphJson"];
|
|
270
319
|
/** Mutation key for addEdge */ readonly addEdge: (identifier?: string) => readonly ["mutation", "addEdge", string] | readonly ["mutation", "addEdge"];
|
|
271
320
|
/** Mutation key for addNode */ readonly addNode: (identifier?: string) => readonly ["mutation", "addNode", string] | readonly ["mutation", "addNode"];
|
|
272
|
-
/** Mutation key for importGraphJson */ readonly importGraphJson: (identifier?: string) => readonly ["mutation", "importGraphJson", string] | readonly ["mutation", "importGraphJson"];
|
|
273
321
|
/** Mutation key for insertNodeAtPath */ readonly insertNodeAtPath: (identifier?: string) => readonly ["mutation", "insertNodeAtPath", string] | readonly ["mutation", "insertNodeAtPath"];
|
|
274
322
|
/** Mutation key for startExecution */ readonly startExecution: (identifier?: string) => readonly ["mutation", "startExecution", string] | readonly ["mutation", "startExecution"];
|
|
275
323
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
@@ -33,6 +33,12 @@ export const functionDeploymentMutationKeys = {
|
|
|
33
33
|
/** Update functionDeployment mutation key */ update: (id) => ['mutation', 'functiondeployment', 'update', id],
|
|
34
34
|
/** Delete functionDeployment mutation key */ delete: (id) => ['mutation', 'functiondeployment', 'delete', id],
|
|
35
35
|
};
|
|
36
|
+
export const resourceMutationKeys = {
|
|
37
|
+
/** All resource mutation keys */ all: ['mutation', 'resource'],
|
|
38
|
+
/** Create resource mutation key */ create: () => ['mutation', 'resource', 'create'],
|
|
39
|
+
/** Update resource mutation key */ update: (id) => ['mutation', 'resource', 'update', id],
|
|
40
|
+
/** Delete resource mutation key */ delete: (id) => ['mutation', 'resource', 'delete', id],
|
|
41
|
+
};
|
|
36
42
|
export const functionGraphRefMutationKeys = {
|
|
37
43
|
/** All functionGraphRef mutation keys */ all: ['mutation', 'functiongraphref'],
|
|
38
44
|
/** Create functionGraphRef mutation key */ create: () => ['mutation', 'functiongraphref', 'create'],
|
|
@@ -69,6 +75,12 @@ export const orgFunctionExecutionLogMutationKeys = {
|
|
|
69
75
|
/** Update orgFunctionExecutionLog mutation key */ update: (id) => ['mutation', 'orgfunctionexecutionlog', 'update', id],
|
|
70
76
|
/** Delete orgFunctionExecutionLog mutation key */ delete: (id) => ['mutation', 'orgfunctionexecutionlog', 'delete', id],
|
|
71
77
|
};
|
|
78
|
+
export const resourceEventMutationKeys = {
|
|
79
|
+
/** All resourceEvent mutation keys */ all: ['mutation', 'resourceevent'],
|
|
80
|
+
/** Create resourceEvent mutation key */ create: () => ['mutation', 'resourceevent', 'create'],
|
|
81
|
+
/** Update resourceEvent mutation key */ update: (id) => ['mutation', 'resourceevent', 'update', id],
|
|
82
|
+
/** Delete resourceEvent mutation key */ delete: (id) => ['mutation', 'resourceevent', 'delete', id],
|
|
83
|
+
};
|
|
72
84
|
export const functionGraphExecutionOutputMutationKeys = {
|
|
73
85
|
/** All functionGraphExecutionOutput mutation keys */ all: [
|
|
74
86
|
'mutation',
|
|
@@ -96,6 +108,12 @@ export const functionExecutionLogMutationKeys = {
|
|
|
96
108
|
/** Update functionExecutionLog mutation key */ update: (id) => ['mutation', 'functionexecutionlog', 'update', id],
|
|
97
109
|
/** Delete functionExecutionLog mutation key */ delete: (id) => ['mutation', 'functionexecutionlog', 'delete', id],
|
|
98
110
|
};
|
|
111
|
+
export const functionGraphMutationKeys = {
|
|
112
|
+
/** All functionGraph mutation keys */ all: ['mutation', 'functiongraph'],
|
|
113
|
+
/** Create functionGraph mutation key */ create: () => ['mutation', 'functiongraph', 'create'],
|
|
114
|
+
/** Update functionGraph mutation key */ update: (id) => ['mutation', 'functiongraph', 'update', id],
|
|
115
|
+
/** Delete functionGraph mutation key */ delete: (id) => ['mutation', 'functiongraph', 'delete', id],
|
|
116
|
+
};
|
|
99
117
|
export const functionGraphExecutionNodeStateMutationKeys = {
|
|
100
118
|
/** All functionGraphExecutionNodeState mutation keys */ all: [
|
|
101
119
|
'mutation',
|
|
@@ -105,11 +123,11 @@ export const functionGraphExecutionNodeStateMutationKeys = {
|
|
|
105
123
|
/** Update functionGraphExecutionNodeState mutation key */ update: (id) => ['mutation', 'functiongraphexecutionnodestate', 'update', id],
|
|
106
124
|
/** Delete functionGraphExecutionNodeState mutation key */ delete: (id) => ['mutation', 'functiongraphexecutionnodestate', 'delete', id],
|
|
107
125
|
};
|
|
108
|
-
export const
|
|
109
|
-
/** All
|
|
110
|
-
/** Create
|
|
111
|
-
/** Update
|
|
112
|
-
/** Delete
|
|
126
|
+
export const platformNamespaceMutationKeys = {
|
|
127
|
+
/** All platformNamespace mutation keys */ all: ['mutation', 'platformnamespace'],
|
|
128
|
+
/** Create platformNamespace mutation key */ create: () => ['mutation', 'platformnamespace', 'create'],
|
|
129
|
+
/** Update platformNamespace mutation key */ update: (id) => ['mutation', 'platformnamespace', 'update', id],
|
|
130
|
+
/** Delete platformNamespace mutation key */ delete: (id) => ['mutation', 'platformnamespace', 'delete', id],
|
|
113
131
|
};
|
|
114
132
|
export const orgFunctionInvocationMutationKeys = {
|
|
115
133
|
/** All orgFunctionInvocation mutation keys */ all: [
|
|
@@ -126,6 +144,15 @@ export const functionInvocationMutationKeys = {
|
|
|
126
144
|
/** Update functionInvocation mutation key */ update: (id) => ['mutation', 'functioninvocation', 'update', id],
|
|
127
145
|
/** Delete functionInvocation mutation key */ delete: (id) => ['mutation', 'functioninvocation', 'delete', id],
|
|
128
146
|
};
|
|
147
|
+
export const platformNamespaceEventMutationKeys = {
|
|
148
|
+
/** All platformNamespaceEvent mutation keys */ all: [
|
|
149
|
+
'mutation',
|
|
150
|
+
'platformnamespaceevent',
|
|
151
|
+
],
|
|
152
|
+
/** Create platformNamespaceEvent mutation key */ create: () => ['mutation', 'platformnamespaceevent', 'create'],
|
|
153
|
+
/** Update platformNamespaceEvent mutation key */ update: (id) => ['mutation', 'platformnamespaceevent', 'update', id],
|
|
154
|
+
/** Delete platformNamespaceEvent mutation key */ delete: (id) => ['mutation', 'platformnamespaceevent', 'delete', id],
|
|
155
|
+
};
|
|
129
156
|
export const functionGraphExecutionMutationKeys = {
|
|
130
157
|
/** All functionGraphExecution mutation keys */ all: [
|
|
131
158
|
'mutation',
|
|
@@ -169,15 +196,15 @@ export const customMutationKeys = {
|
|
|
169
196
|
/** Mutation key for addNodeAndSave */ addNodeAndSave: (identifier) => identifier
|
|
170
197
|
? ['mutation', 'addNodeAndSave', identifier]
|
|
171
198
|
: ['mutation', 'addNodeAndSave'],
|
|
199
|
+
/** Mutation key for importGraphJson */ importGraphJson: (identifier) => identifier
|
|
200
|
+
? ['mutation', 'importGraphJson', identifier]
|
|
201
|
+
: ['mutation', 'importGraphJson'],
|
|
172
202
|
/** Mutation key for addEdge */ addEdge: (identifier) => identifier
|
|
173
203
|
? ['mutation', 'addEdge', identifier]
|
|
174
204
|
: ['mutation', 'addEdge'],
|
|
175
205
|
/** Mutation key for addNode */ addNode: (identifier) => identifier
|
|
176
206
|
? ['mutation', 'addNode', identifier]
|
|
177
207
|
: ['mutation', 'addNode'],
|
|
178
|
-
/** Mutation key for importGraphJson */ importGraphJson: (identifier) => identifier
|
|
179
|
-
? ['mutation', 'importGraphJson', identifier]
|
|
180
|
-
: ['mutation', 'importGraphJson'],
|
|
181
208
|
/** Mutation key for insertNodeAtPath */ insertNodeAtPath: (identifier) => identifier
|
|
182
209
|
? ['mutation', 'insertNodeAtPath', identifier]
|
|
183
210
|
: ['mutation', 'insertNodeAtPath'],
|
|
@@ -214,19 +241,23 @@ export const mutationKeys = {
|
|
|
214
241
|
getAllRecord: getAllRecordMutationKeys,
|
|
215
242
|
functionApiBinding: functionApiBindingMutationKeys,
|
|
216
243
|
functionDeployment: functionDeploymentMutationKeys,
|
|
244
|
+
resource: resourceMutationKeys,
|
|
217
245
|
functionGraphRef: functionGraphRefMutationKeys,
|
|
218
246
|
functionGraphStore: functionGraphStoreMutationKeys,
|
|
219
247
|
functionGraphObject: functionGraphObjectMutationKeys,
|
|
220
248
|
functionDeploymentEvent: functionDeploymentEventMutationKeys,
|
|
221
249
|
orgFunctionExecutionLog: orgFunctionExecutionLogMutationKeys,
|
|
250
|
+
resourceEvent: resourceEventMutationKeys,
|
|
222
251
|
functionGraphExecutionOutput: functionGraphExecutionOutputMutationKeys,
|
|
223
252
|
functionGraphCommit: functionGraphCommitMutationKeys,
|
|
224
253
|
secretDefinition: secretDefinitionMutationKeys,
|
|
225
254
|
functionExecutionLog: functionExecutionLogMutationKeys,
|
|
226
|
-
functionGraphExecutionNodeState: functionGraphExecutionNodeStateMutationKeys,
|
|
227
255
|
functionGraph: functionGraphMutationKeys,
|
|
256
|
+
functionGraphExecutionNodeState: functionGraphExecutionNodeStateMutationKeys,
|
|
257
|
+
platformNamespace: platformNamespaceMutationKeys,
|
|
228
258
|
orgFunctionInvocation: orgFunctionInvocationMutationKeys,
|
|
229
259
|
functionInvocation: functionInvocationMutationKeys,
|
|
260
|
+
platformNamespaceEvent: platformNamespaceEventMutationKeys,
|
|
230
261
|
functionGraphExecution: functionGraphExecutionMutationKeys,
|
|
231
262
|
functionDefinition: functionDefinitionMutationKeys,
|
|
232
263
|
custom: customMutationKeys,
|