@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/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;
|
package/compute/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: 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
|
*
|
package/compute/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: GetAllRecord, FunctionApiBinding, FunctionDeployment, FunctionGraphRef, FunctionGraphStore, FunctionGraphObject, FunctionDeploymentEvent, OrgFunctionExecutionLog, FunctionGraphExecutionOutput, FunctionGraphCommit, SecretDefinition, FunctionExecutionLog, FunctionGraphExecutionNodeState,
|
|
21
|
+
* Tables: GetAllRecord, FunctionApiBinding, FunctionDeployment, Resource, FunctionGraphRef, FunctionGraphStore, FunctionGraphObject, FunctionDeploymentEvent, OrgFunctionExecutionLog, ResourceEvent, FunctionGraphExecutionOutput, FunctionGraphCommit, SecretDefinition, FunctionExecutionLog, FunctionGraph, FunctionGraphExecutionNodeState, PlatformNamespace, OrgFunctionInvocation, FunctionInvocation, PlatformNamespaceEvent, FunctionGraphExecution, FunctionDefinition
|
|
22
22
|
*
|
|
23
23
|
* Usage:
|
|
24
24
|
*
|
|
@@ -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
|
};
|
|
@@ -60,6 +60,17 @@ exports.invalidate = {
|
|
|
60
60
|
queryKey: query_keys_1.functionDeploymentKeys.detail(id),
|
|
61
61
|
}),
|
|
62
62
|
},
|
|
63
|
+
/** Invalidate resource queries */ resource: {
|
|
64
|
+
/** Invalidate all resource queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
65
|
+
queryKey: query_keys_1.resourceKeys.all,
|
|
66
|
+
}),
|
|
67
|
+
/** Invalidate resource list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
68
|
+
queryKey: query_keys_1.resourceKeys.lists(),
|
|
69
|
+
}),
|
|
70
|
+
/** Invalidate a specific resource */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
71
|
+
queryKey: query_keys_1.resourceKeys.detail(id),
|
|
72
|
+
}),
|
|
73
|
+
},
|
|
63
74
|
/** Invalidate functionGraphRef queries */ functionGraphRef: {
|
|
64
75
|
/** Invalidate all functionGraphRef queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
65
76
|
queryKey: query_keys_1.functionGraphRefKeys.all,
|
|
@@ -115,6 +126,17 @@ exports.invalidate = {
|
|
|
115
126
|
queryKey: query_keys_1.orgFunctionExecutionLogKeys.detail(id),
|
|
116
127
|
}),
|
|
117
128
|
},
|
|
129
|
+
/** Invalidate resourceEvent queries */ resourceEvent: {
|
|
130
|
+
/** Invalidate all resourceEvent queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
131
|
+
queryKey: query_keys_1.resourceEventKeys.all,
|
|
132
|
+
}),
|
|
133
|
+
/** Invalidate resourceEvent list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
134
|
+
queryKey: query_keys_1.resourceEventKeys.lists(),
|
|
135
|
+
}),
|
|
136
|
+
/** Invalidate a specific resourceEvent */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
137
|
+
queryKey: query_keys_1.resourceEventKeys.detail(id),
|
|
138
|
+
}),
|
|
139
|
+
},
|
|
118
140
|
/** Invalidate functionGraphExecutionOutput queries */ functionGraphExecutionOutput: {
|
|
119
141
|
/** Invalidate all functionGraphExecutionOutput queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
120
142
|
queryKey: query_keys_1.functionGraphExecutionOutputKeys.all,
|
|
@@ -159,6 +181,17 @@ exports.invalidate = {
|
|
|
159
181
|
queryKey: query_keys_1.functionExecutionLogKeys.detail(id),
|
|
160
182
|
}),
|
|
161
183
|
},
|
|
184
|
+
/** Invalidate functionGraph queries */ functionGraph: {
|
|
185
|
+
/** Invalidate all functionGraph queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
186
|
+
queryKey: query_keys_1.functionGraphKeys.all,
|
|
187
|
+
}),
|
|
188
|
+
/** Invalidate functionGraph list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
189
|
+
queryKey: query_keys_1.functionGraphKeys.lists(),
|
|
190
|
+
}),
|
|
191
|
+
/** Invalidate a specific functionGraph */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
192
|
+
queryKey: query_keys_1.functionGraphKeys.detail(id),
|
|
193
|
+
}),
|
|
194
|
+
},
|
|
162
195
|
/** Invalidate functionGraphExecutionNodeState queries */ functionGraphExecutionNodeState: {
|
|
163
196
|
/** Invalidate all functionGraphExecutionNodeState queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
164
197
|
queryKey: query_keys_1.functionGraphExecutionNodeStateKeys.all,
|
|
@@ -170,15 +203,15 @@ exports.invalidate = {
|
|
|
170
203
|
queryKey: query_keys_1.functionGraphExecutionNodeStateKeys.detail(id),
|
|
171
204
|
}),
|
|
172
205
|
},
|
|
173
|
-
/** Invalidate
|
|
174
|
-
/** Invalidate all
|
|
175
|
-
queryKey: query_keys_1.
|
|
206
|
+
/** Invalidate platformNamespace queries */ platformNamespace: {
|
|
207
|
+
/** Invalidate all platformNamespace queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
208
|
+
queryKey: query_keys_1.platformNamespaceKeys.all,
|
|
176
209
|
}),
|
|
177
|
-
/** Invalidate
|
|
178
|
-
queryKey: query_keys_1.
|
|
210
|
+
/** Invalidate platformNamespace list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
211
|
+
queryKey: query_keys_1.platformNamespaceKeys.lists(),
|
|
179
212
|
}),
|
|
180
|
-
/** Invalidate a specific
|
|
181
|
-
queryKey: query_keys_1.
|
|
213
|
+
/** Invalidate a specific platformNamespace */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
214
|
+
queryKey: query_keys_1.platformNamespaceKeys.detail(id),
|
|
182
215
|
}),
|
|
183
216
|
},
|
|
184
217
|
/** Invalidate orgFunctionInvocation queries */ orgFunctionInvocation: {
|
|
@@ -203,6 +236,17 @@ exports.invalidate = {
|
|
|
203
236
|
queryKey: query_keys_1.functionInvocationKeys.detail(id),
|
|
204
237
|
}),
|
|
205
238
|
},
|
|
239
|
+
/** Invalidate platformNamespaceEvent queries */ platformNamespaceEvent: {
|
|
240
|
+
/** Invalidate all platformNamespaceEvent queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
241
|
+
queryKey: query_keys_1.platformNamespaceEventKeys.all,
|
|
242
|
+
}),
|
|
243
|
+
/** Invalidate platformNamespaceEvent list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
244
|
+
queryKey: query_keys_1.platformNamespaceEventKeys.lists(),
|
|
245
|
+
}),
|
|
246
|
+
/** Invalidate a specific platformNamespaceEvent */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
247
|
+
queryKey: query_keys_1.platformNamespaceEventKeys.detail(id),
|
|
248
|
+
}),
|
|
249
|
+
},
|
|
206
250
|
/** Invalidate functionGraphExecution queries */ functionGraphExecution: {
|
|
207
251
|
/** Invalidate all functionGraphExecution queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
208
252
|
queryKey: query_keys_1.functionGraphExecutionKeys.all,
|
|
@@ -253,6 +297,11 @@ exports.remove = {
|
|
|
253
297
|
queryKey: query_keys_1.functionDeploymentKeys.detail(id),
|
|
254
298
|
});
|
|
255
299
|
},
|
|
300
|
+
/** Remove resource from cache */ resource: (queryClient, id) => {
|
|
301
|
+
queryClient.removeQueries({
|
|
302
|
+
queryKey: query_keys_1.resourceKeys.detail(id),
|
|
303
|
+
});
|
|
304
|
+
},
|
|
256
305
|
/** Remove functionGraphRef from cache */ functionGraphRef: (queryClient, id) => {
|
|
257
306
|
queryClient.removeQueries({
|
|
258
307
|
queryKey: query_keys_1.functionGraphRefKeys.detail(id),
|
|
@@ -278,6 +327,11 @@ exports.remove = {
|
|
|
278
327
|
queryKey: query_keys_1.orgFunctionExecutionLogKeys.detail(id),
|
|
279
328
|
});
|
|
280
329
|
},
|
|
330
|
+
/** Remove resourceEvent from cache */ resourceEvent: (queryClient, id) => {
|
|
331
|
+
queryClient.removeQueries({
|
|
332
|
+
queryKey: query_keys_1.resourceEventKeys.detail(id),
|
|
333
|
+
});
|
|
334
|
+
},
|
|
281
335
|
/** Remove functionGraphExecutionOutput from cache */ functionGraphExecutionOutput: (queryClient, id) => {
|
|
282
336
|
queryClient.removeQueries({
|
|
283
337
|
queryKey: query_keys_1.functionGraphExecutionOutputKeys.detail(id),
|
|
@@ -298,14 +352,19 @@ exports.remove = {
|
|
|
298
352
|
queryKey: query_keys_1.functionExecutionLogKeys.detail(id),
|
|
299
353
|
});
|
|
300
354
|
},
|
|
355
|
+
/** Remove functionGraph from cache */ functionGraph: (queryClient, id) => {
|
|
356
|
+
queryClient.removeQueries({
|
|
357
|
+
queryKey: query_keys_1.functionGraphKeys.detail(id),
|
|
358
|
+
});
|
|
359
|
+
},
|
|
301
360
|
/** Remove functionGraphExecutionNodeState from cache */ functionGraphExecutionNodeState: (queryClient, id) => {
|
|
302
361
|
queryClient.removeQueries({
|
|
303
362
|
queryKey: query_keys_1.functionGraphExecutionNodeStateKeys.detail(id),
|
|
304
363
|
});
|
|
305
364
|
},
|
|
306
|
-
/** Remove
|
|
365
|
+
/** Remove platformNamespace from cache */ platformNamespace: (queryClient, id) => {
|
|
307
366
|
queryClient.removeQueries({
|
|
308
|
-
queryKey: query_keys_1.
|
|
367
|
+
queryKey: query_keys_1.platformNamespaceKeys.detail(id),
|
|
309
368
|
});
|
|
310
369
|
},
|
|
311
370
|
/** Remove orgFunctionInvocation from cache */ orgFunctionInvocation: (queryClient, id) => {
|
|
@@ -318,6 +377,11 @@ exports.remove = {
|
|
|
318
377
|
queryKey: query_keys_1.functionInvocationKeys.detail(id),
|
|
319
378
|
});
|
|
320
379
|
},
|
|
380
|
+
/** Remove platformNamespaceEvent from cache */ platformNamespaceEvent: (queryClient, id) => {
|
|
381
|
+
queryClient.removeQueries({
|
|
382
|
+
queryKey: query_keys_1.platformNamespaceEventKeys.detail(id),
|
|
383
|
+
});
|
|
384
|
+
},
|
|
321
385
|
/** Remove functionGraphExecution from cache */ functionGraphExecution: (queryClient, id) => {
|
|
322
386
|
queryClient.removeQueries({
|
|
323
387
|
queryKey: query_keys_1.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"];
|
|
@@ -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.functionDefinitionMutationKeys = exports.functionGraphExecutionMutationKeys = exports.functionInvocationMutationKeys = exports.orgFunctionInvocationMutationKeys = exports.
|
|
8
|
+
exports.mutationKeys = exports.customMutationKeys = exports.functionDefinitionMutationKeys = exports.functionGraphExecutionMutationKeys = exports.platformNamespaceEventMutationKeys = exports.functionInvocationMutationKeys = exports.orgFunctionInvocationMutationKeys = exports.platformNamespaceMutationKeys = exports.functionGraphExecutionNodeStateMutationKeys = exports.functionGraphMutationKeys = exports.functionExecutionLogMutationKeys = exports.secretDefinitionMutationKeys = exports.functionGraphCommitMutationKeys = exports.functionGraphExecutionOutputMutationKeys = exports.resourceEventMutationKeys = exports.orgFunctionExecutionLogMutationKeys = exports.functionDeploymentEventMutationKeys = exports.functionGraphObjectMutationKeys = exports.functionGraphStoreMutationKeys = exports.functionGraphRefMutationKeys = exports.resourceMutationKeys = exports.functionDeploymentMutationKeys = exports.functionApiBindingMutationKeys = exports.getAllRecordMutationKeys = void 0;
|
|
9
9
|
// ============================================================================
|
|
10
10
|
// Mutation keys for tracking in-flight mutations
|
|
11
11
|
//
|
|
@@ -36,6 +36,12 @@ exports.functionDeploymentMutationKeys = {
|
|
|
36
36
|
/** Update functionDeployment mutation key */ update: (id) => ['mutation', 'functiondeployment', 'update', id],
|
|
37
37
|
/** Delete functionDeployment mutation key */ delete: (id) => ['mutation', 'functiondeployment', 'delete', id],
|
|
38
38
|
};
|
|
39
|
+
exports.resourceMutationKeys = {
|
|
40
|
+
/** All resource mutation keys */ all: ['mutation', 'resource'],
|
|
41
|
+
/** Create resource mutation key */ create: () => ['mutation', 'resource', 'create'],
|
|
42
|
+
/** Update resource mutation key */ update: (id) => ['mutation', 'resource', 'update', id],
|
|
43
|
+
/** Delete resource mutation key */ delete: (id) => ['mutation', 'resource', 'delete', id],
|
|
44
|
+
};
|
|
39
45
|
exports.functionGraphRefMutationKeys = {
|
|
40
46
|
/** All functionGraphRef mutation keys */ all: ['mutation', 'functiongraphref'],
|
|
41
47
|
/** Create functionGraphRef mutation key */ create: () => ['mutation', 'functiongraphref', 'create'],
|
|
@@ -72,6 +78,12 @@ exports.orgFunctionExecutionLogMutationKeys = {
|
|
|
72
78
|
/** Update orgFunctionExecutionLog mutation key */ update: (id) => ['mutation', 'orgfunctionexecutionlog', 'update', id],
|
|
73
79
|
/** Delete orgFunctionExecutionLog mutation key */ delete: (id) => ['mutation', 'orgfunctionexecutionlog', 'delete', id],
|
|
74
80
|
};
|
|
81
|
+
exports.resourceEventMutationKeys = {
|
|
82
|
+
/** All resourceEvent mutation keys */ all: ['mutation', 'resourceevent'],
|
|
83
|
+
/** Create resourceEvent mutation key */ create: () => ['mutation', 'resourceevent', 'create'],
|
|
84
|
+
/** Update resourceEvent mutation key */ update: (id) => ['mutation', 'resourceevent', 'update', id],
|
|
85
|
+
/** Delete resourceEvent mutation key */ delete: (id) => ['mutation', 'resourceevent', 'delete', id],
|
|
86
|
+
};
|
|
75
87
|
exports.functionGraphExecutionOutputMutationKeys = {
|
|
76
88
|
/** All functionGraphExecutionOutput mutation keys */ all: [
|
|
77
89
|
'mutation',
|
|
@@ -99,6 +111,12 @@ exports.functionExecutionLogMutationKeys = {
|
|
|
99
111
|
/** Update functionExecutionLog mutation key */ update: (id) => ['mutation', 'functionexecutionlog', 'update', id],
|
|
100
112
|
/** Delete functionExecutionLog mutation key */ delete: (id) => ['mutation', 'functionexecutionlog', 'delete', id],
|
|
101
113
|
};
|
|
114
|
+
exports.functionGraphMutationKeys = {
|
|
115
|
+
/** All functionGraph mutation keys */ all: ['mutation', 'functiongraph'],
|
|
116
|
+
/** Create functionGraph mutation key */ create: () => ['mutation', 'functiongraph', 'create'],
|
|
117
|
+
/** Update functionGraph mutation key */ update: (id) => ['mutation', 'functiongraph', 'update', id],
|
|
118
|
+
/** Delete functionGraph mutation key */ delete: (id) => ['mutation', 'functiongraph', 'delete', id],
|
|
119
|
+
};
|
|
102
120
|
exports.functionGraphExecutionNodeStateMutationKeys = {
|
|
103
121
|
/** All functionGraphExecutionNodeState mutation keys */ all: [
|
|
104
122
|
'mutation',
|
|
@@ -108,11 +126,11 @@ exports.functionGraphExecutionNodeStateMutationKeys = {
|
|
|
108
126
|
/** Update functionGraphExecutionNodeState mutation key */ update: (id) => ['mutation', 'functiongraphexecutionnodestate', 'update', id],
|
|
109
127
|
/** Delete functionGraphExecutionNodeState mutation key */ delete: (id) => ['mutation', 'functiongraphexecutionnodestate', 'delete', id],
|
|
110
128
|
};
|
|
111
|
-
exports.
|
|
112
|
-
/** All
|
|
113
|
-
/** Create
|
|
114
|
-
/** Update
|
|
115
|
-
/** Delete
|
|
129
|
+
exports.platformNamespaceMutationKeys = {
|
|
130
|
+
/** All platformNamespace mutation keys */ all: ['mutation', 'platformnamespace'],
|
|
131
|
+
/** Create platformNamespace mutation key */ create: () => ['mutation', 'platformnamespace', 'create'],
|
|
132
|
+
/** Update platformNamespace mutation key */ update: (id) => ['mutation', 'platformnamespace', 'update', id],
|
|
133
|
+
/** Delete platformNamespace mutation key */ delete: (id) => ['mutation', 'platformnamespace', 'delete', id],
|
|
116
134
|
};
|
|
117
135
|
exports.orgFunctionInvocationMutationKeys = {
|
|
118
136
|
/** All orgFunctionInvocation mutation keys */ all: [
|
|
@@ -129,6 +147,15 @@ exports.functionInvocationMutationKeys = {
|
|
|
129
147
|
/** Update functionInvocation mutation key */ update: (id) => ['mutation', 'functioninvocation', 'update', id],
|
|
130
148
|
/** Delete functionInvocation mutation key */ delete: (id) => ['mutation', 'functioninvocation', 'delete', id],
|
|
131
149
|
};
|
|
150
|
+
exports.platformNamespaceEventMutationKeys = {
|
|
151
|
+
/** All platformNamespaceEvent mutation keys */ all: [
|
|
152
|
+
'mutation',
|
|
153
|
+
'platformnamespaceevent',
|
|
154
|
+
],
|
|
155
|
+
/** Create platformNamespaceEvent mutation key */ create: () => ['mutation', 'platformnamespaceevent', 'create'],
|
|
156
|
+
/** Update platformNamespaceEvent mutation key */ update: (id) => ['mutation', 'platformnamespaceevent', 'update', id],
|
|
157
|
+
/** Delete platformNamespaceEvent mutation key */ delete: (id) => ['mutation', 'platformnamespaceevent', 'delete', id],
|
|
158
|
+
};
|
|
132
159
|
exports.functionGraphExecutionMutationKeys = {
|
|
133
160
|
/** All functionGraphExecution mutation keys */ all: [
|
|
134
161
|
'mutation',
|
|
@@ -172,15 +199,15 @@ exports.customMutationKeys = {
|
|
|
172
199
|
/** Mutation key for addNodeAndSave */ addNodeAndSave: (identifier) => identifier
|
|
173
200
|
? ['mutation', 'addNodeAndSave', identifier]
|
|
174
201
|
: ['mutation', 'addNodeAndSave'],
|
|
202
|
+
/** Mutation key for importGraphJson */ importGraphJson: (identifier) => identifier
|
|
203
|
+
? ['mutation', 'importGraphJson', identifier]
|
|
204
|
+
: ['mutation', 'importGraphJson'],
|
|
175
205
|
/** Mutation key for addEdge */ addEdge: (identifier) => identifier
|
|
176
206
|
? ['mutation', 'addEdge', identifier]
|
|
177
207
|
: ['mutation', 'addEdge'],
|
|
178
208
|
/** Mutation key for addNode */ addNode: (identifier) => identifier
|
|
179
209
|
? ['mutation', 'addNode', identifier]
|
|
180
210
|
: ['mutation', 'addNode'],
|
|
181
|
-
/** Mutation key for importGraphJson */ importGraphJson: (identifier) => identifier
|
|
182
|
-
? ['mutation', 'importGraphJson', identifier]
|
|
183
|
-
: ['mutation', 'importGraphJson'],
|
|
184
211
|
/** Mutation key for insertNodeAtPath */ insertNodeAtPath: (identifier) => identifier
|
|
185
212
|
? ['mutation', 'insertNodeAtPath', identifier]
|
|
186
213
|
: ['mutation', 'insertNodeAtPath'],
|
|
@@ -217,19 +244,23 @@ exports.mutationKeys = {
|
|
|
217
244
|
getAllRecord: exports.getAllRecordMutationKeys,
|
|
218
245
|
functionApiBinding: exports.functionApiBindingMutationKeys,
|
|
219
246
|
functionDeployment: exports.functionDeploymentMutationKeys,
|
|
247
|
+
resource: exports.resourceMutationKeys,
|
|
220
248
|
functionGraphRef: exports.functionGraphRefMutationKeys,
|
|
221
249
|
functionGraphStore: exports.functionGraphStoreMutationKeys,
|
|
222
250
|
functionGraphObject: exports.functionGraphObjectMutationKeys,
|
|
223
251
|
functionDeploymentEvent: exports.functionDeploymentEventMutationKeys,
|
|
224
252
|
orgFunctionExecutionLog: exports.orgFunctionExecutionLogMutationKeys,
|
|
253
|
+
resourceEvent: exports.resourceEventMutationKeys,
|
|
225
254
|
functionGraphExecutionOutput: exports.functionGraphExecutionOutputMutationKeys,
|
|
226
255
|
functionGraphCommit: exports.functionGraphCommitMutationKeys,
|
|
227
256
|
secretDefinition: exports.secretDefinitionMutationKeys,
|
|
228
257
|
functionExecutionLog: exports.functionExecutionLogMutationKeys,
|
|
229
|
-
functionGraphExecutionNodeState: exports.functionGraphExecutionNodeStateMutationKeys,
|
|
230
258
|
functionGraph: exports.functionGraphMutationKeys,
|
|
259
|
+
functionGraphExecutionNodeState: exports.functionGraphExecutionNodeStateMutationKeys,
|
|
260
|
+
platformNamespace: exports.platformNamespaceMutationKeys,
|
|
231
261
|
orgFunctionInvocation: exports.orgFunctionInvocationMutationKeys,
|
|
232
262
|
functionInvocation: exports.functionInvocationMutationKeys,
|
|
263
|
+
platformNamespaceEvent: exports.platformNamespaceEventMutationKeys,
|
|
233
264
|
functionGraphExecution: exports.functionGraphExecutionMutationKeys,
|
|
234
265
|
functionDefinition: exports.functionDefinitionMutationKeys,
|
|
235
266
|
custom: exports.customMutationKeys,
|