@constructive-io/react 0.27.0 → 0.27.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/orm/input-types.d.ts +144 -171
- package/api/schema-types.d.ts +676 -678
- package/api/types.d.ts +9 -14
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +24 -0
- package/auth/hooks/invalidation.js +64 -0
- package/auth/hooks/mutation-keys.d.ts +56 -0
- package/auth/hooks/mutation-keys.js +44 -1
- package/auth/hooks/mutations/index.d.ts +11 -0
- package/auth/hooks/mutations/index.js +11 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +34 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
- package/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +26 -0
- package/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
- package/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +26 -0
- package/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +34 -0
- package/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreatePrincipalMutation.js +34 -0
- package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +34 -0
- package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
- package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +26 -0
- package/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
- package/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +39 -0
- package/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
- package/auth/hooks/mutations/useDeletePrincipalMutation.js +39 -0
- package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
- package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +26 -0
- package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
- package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +40 -0
- package/auth/hooks/queries/index.d.ts +9 -1
- package/auth/hooks/queries/index.js +9 -1
- package/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
- package/auth/hooks/queries/useOrgApiKeyListQuery.js +53 -0
- package/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
- package/auth/hooks/queries/useOrgApiKeyListsQuery.js +38 -0
- package/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
- package/auth/hooks/queries/usePrincipalEntitiesQuery.js +38 -0
- package/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
- package/auth/hooks/queries/usePrincipalEntityQuery.js +53 -0
- package/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
- package/auth/hooks/queries/usePrincipalQuery.js +53 -0
- package/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
- package/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +53 -0
- package/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
- package/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +38 -0
- package/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
- package/auth/hooks/queries/usePrincipalsQuery.js +38 -0
- package/auth/hooks/query-keys.d.ts +58 -2
- package/auth/hooks/query-keys.js +34 -2
- package/auth/orm/index.d.ts +32 -4
- package/auth/orm/index.js +8 -0
- package/auth/orm/input-types.d.ts +915 -145
- package/auth/orm/input-types.js +7 -0
- package/auth/orm/models/index.d.ts +4 -0
- package/auth/orm/models/index.js +9 -1
- package/auth/orm/models/orgApiKeyList.d.ts +36 -0
- package/auth/orm/models/orgApiKeyList.js +80 -0
- package/auth/orm/models/principal.d.ts +45 -0
- package/auth/orm/models/principal.js +93 -0
- package/auth/orm/models/principalEntity.d.ts +54 -0
- package/auth/orm/models/principalEntity.js +104 -0
- package/auth/orm/models/principalScopeOverride.d.ts +36 -0
- package/auth/orm/models/principalScopeOverride.js +80 -0
- package/auth/orm/mutation/index.d.ts +33 -1
- package/auth/orm/mutation/index.js +48 -0
- package/auth/orm/query/index.d.ts +4 -4
- package/auth/orm/query/index.js +7 -7
- package/auth/schema-types.d.ts +477 -93
- package/auth/types.d.ts +43 -0
- package/compute/hooks/index.d.ts +1 -1
- package/compute/hooks/index.js +1 -1
- package/compute/hooks/invalidation.d.ts +29 -5
- package/compute/hooks/invalidation.js +73 -9
- package/compute/hooks/mutation-keys.d.ts +60 -12
- package/compute/hooks/mutation-keys.js +41 -10
- package/compute/hooks/mutations/index.d.ts +16 -4
- package/compute/hooks/mutations/index.js +16 -4
- package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceMutation.js +34 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +40 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteResourceEventMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteResourceMutation.js +39 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateResourceEventMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateResourceMutation.js +40 -0
- package/compute/hooks/queries/index.d.ts +10 -2
- package/compute/hooks/queries/index.js +10 -2
- package/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformNamespaceEventQuery.js +53 -0
- package/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformNamespaceQuery.js +53 -0
- package/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformNamespacesQuery.js +38 -0
- package/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceEventQuery.js +53 -0
- package/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceEventsQuery.js +38 -0
- package/compute/hooks/queries/useResourceQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceQuery.js +53 -0
- package/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourcesQuery.js +38 -0
- package/compute/hooks/query-keys.d.ts +68 -12
- package/compute/hooks/query-keys.js +40 -8
- package/compute/orm/index.d.ts +15 -7
- package/compute/orm/index.js +10 -2
- package/compute/orm/input-types.d.ts +1159 -221
- package/compute/orm/input-types.js +4 -0
- package/compute/orm/models/index.d.ts +5 -1
- package/compute/orm/models/index.js +11 -3
- package/compute/orm/models/platformNamespace.d.ts +54 -0
- package/compute/orm/models/platformNamespace.js +104 -0
- package/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/compute/orm/models/platformNamespaceEvent.js +107 -0
- package/compute/orm/models/resource.d.ts +54 -0
- package/compute/orm/models/resource.js +104 -0
- package/compute/orm/models/resourceEvent.d.ts +56 -0
- package/compute/orm/models/resourceEvent.js +107 -0
- package/compute/orm/mutation/index.d.ts +9 -9
- package/compute/orm/mutation/index.js +12 -12
- package/compute/schema-types.d.ts +691 -107
- package/compute/types.d.ts +71 -12
- package/esm/api/orm/input-types.d.ts +144 -171
- package/esm/api/schema-types.d.ts +676 -678
- package/esm/api/types.d.ts +9 -14
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +24 -0
- package/esm/auth/hooks/invalidation.js +65 -1
- package/esm/auth/hooks/mutation-keys.d.ts +56 -0
- package/esm/auth/hooks/mutation-keys.js +43 -0
- package/esm/auth/hooks/mutations/index.d.ts +11 -0
- package/esm/auth/hooks/mutations/index.js +11 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +23 -0
- package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +23 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalMutation.js +31 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +31 -0
- package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +23 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +36 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
- package/esm/auth/hooks/mutations/useDeletePrincipalMutation.js +36 -0
- package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
- package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +23 -0
- package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
- package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +37 -0
- package/esm/auth/hooks/queries/index.d.ts +9 -1
- package/esm/auth/hooks/queries/index.js +9 -1
- package/esm/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/useOrgApiKeyListQuery.js +47 -0
- package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.js +32 -0
- package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.js +32 -0
- package/esm/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/usePrincipalEntityQuery.js +47 -0
- package/esm/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/usePrincipalQuery.js +47 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +47 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +32 -0
- package/esm/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/usePrincipalsQuery.js +32 -0
- package/esm/auth/hooks/query-keys.d.ts +58 -2
- package/esm/auth/hooks/query-keys.js +33 -1
- package/esm/auth/orm/index.d.ts +32 -4
- package/esm/auth/orm/index.js +8 -0
- package/esm/auth/orm/input-types.d.ts +915 -145
- package/esm/auth/orm/input-types.js +7 -0
- package/esm/auth/orm/models/index.d.ts +4 -0
- package/esm/auth/orm/models/index.js +4 -0
- package/esm/auth/orm/models/orgApiKeyList.d.ts +36 -0
- package/esm/auth/orm/models/orgApiKeyList.js +76 -0
- package/esm/auth/orm/models/principal.d.ts +45 -0
- package/esm/auth/orm/models/principal.js +89 -0
- package/esm/auth/orm/models/principalEntity.d.ts +54 -0
- package/esm/auth/orm/models/principalEntity.js +100 -0
- package/esm/auth/orm/models/principalScopeOverride.d.ts +36 -0
- package/esm/auth/orm/models/principalScopeOverride.js +76 -0
- package/esm/auth/orm/mutation/index.d.ts +33 -1
- package/esm/auth/orm/mutation/index.js +48 -0
- package/esm/auth/orm/query/index.d.ts +4 -4
- package/esm/auth/orm/query/index.js +7 -7
- package/esm/auth/schema-types.d.ts +477 -93
- package/esm/auth/types.d.ts +43 -0
- package/esm/compute/hooks/index.d.ts +1 -1
- package/esm/compute/hooks/index.js +1 -1
- package/esm/compute/hooks/invalidation.d.ts +29 -5
- package/esm/compute/hooks/invalidation.js +74 -10
- package/esm/compute/hooks/mutation-keys.d.ts +60 -12
- package/esm/compute/hooks/mutation-keys.js +40 -9
- package/esm/compute/hooks/mutations/index.d.ts +16 -4
- package/esm/compute/hooks/mutations/index.js +16 -4
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceMutation.js +31 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteResourceMutation.js +36 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateResourceMutation.js +37 -0
- package/esm/compute/hooks/queries/index.d.ts +10 -2
- package/esm/compute/hooks/queries/index.js +10 -2
- package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformNamespaceQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformNamespacesQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceEventQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourcesQuery.js +32 -0
- package/esm/compute/hooks/query-keys.d.ts +68 -12
- package/esm/compute/hooks/query-keys.js +39 -7
- package/esm/compute/orm/index.d.ts +15 -7
- package/esm/compute/orm/index.js +10 -2
- package/esm/compute/orm/input-types.d.ts +1159 -221
- package/esm/compute/orm/input-types.js +4 -0
- package/esm/compute/orm/models/index.d.ts +5 -1
- package/esm/compute/orm/models/index.js +5 -1
- package/esm/compute/orm/models/platformNamespace.d.ts +54 -0
- package/esm/compute/orm/models/platformNamespace.js +100 -0
- package/esm/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/esm/compute/orm/models/platformNamespaceEvent.js +103 -0
- package/esm/compute/orm/models/resource.d.ts +54 -0
- package/esm/compute/orm/models/resource.js +100 -0
- package/esm/compute/orm/models/resourceEvent.d.ts +56 -0
- package/esm/compute/orm/models/resourceEvent.js +103 -0
- package/esm/compute/orm/mutation/index.d.ts +9 -9
- package/esm/compute/orm/mutation/index.js +12 -12
- package/esm/compute/schema-types.d.ts +691 -107
- package/esm/compute/types.d.ts +71 -12
- package/esm/modules/hooks/index.d.ts +1 -1
- package/esm/modules/hooks/index.js +1 -1
- package/esm/modules/hooks/invalidation.d.ts +24 -12
- package/esm/modules/hooks/invalidation.js +63 -31
- package/esm/modules/hooks/mutation-keys.d.ts +48 -24
- package/esm/modules/hooks/mutation-keys.js +28 -14
- package/esm/modules/hooks/mutations/index.d.ts +12 -6
- package/esm/modules/hooks/mutations/index.js +12 -6
- package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +37 -0
- package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.js +37 -0
- package/esm/modules/hooks/queries/index.d.ts +8 -4
- package/esm/modules/hooks/queries/index.js +8 -4
- package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.js +32 -0
- package/esm/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/useResourceModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/useResourceModulesQuery.js +32 -0
- package/esm/modules/hooks/query-keys.d.ts +56 -28
- package/esm/modules/hooks/query-keys.js +32 -16
- package/esm/modules/orm/index.d.ts +8 -4
- package/esm/modules/orm/index.js +8 -4
- package/esm/modules/orm/input-types.d.ts +868 -411
- package/esm/modules/orm/models/index.d.ts +4 -2
- package/esm/modules/orm/models/index.js +4 -2
- package/esm/modules/orm/models/principalAuthModule.d.ts +54 -0
- package/esm/modules/orm/models/principalAuthModule.js +100 -0
- package/esm/modules/orm/models/resourceModule.d.ts +54 -0
- package/esm/modules/orm/models/resourceModule.js +100 -0
- package/esm/modules/schema-types.d.ts +451 -169
- package/esm/modules/types.d.ts +75 -33
- package/modules/hooks/index.d.ts +1 -1
- package/modules/hooks/index.js +1 -1
- package/modules/hooks/invalidation.d.ts +24 -12
- package/modules/hooks/invalidation.js +62 -30
- package/modules/hooks/mutation-keys.d.ts +48 -24
- package/modules/hooks/mutation-keys.js +30 -16
- package/modules/hooks/mutations/index.d.ts +12 -6
- package/modules/hooks/mutations/index.js +12 -6
- package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +34 -0
- package/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreateResourceModuleMutation.js +34 -0
- package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +39 -0
- package/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteResourceModuleMutation.js +39 -0
- package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +40 -0
- package/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateResourceModuleMutation.js +40 -0
- package/modules/hooks/queries/index.d.ts +8 -4
- package/modules/hooks/queries/index.js +8 -4
- package/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/usePrincipalAuthModuleQuery.js +53 -0
- package/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/usePrincipalAuthModulesQuery.js +38 -0
- package/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/useResourceModuleQuery.js +53 -0
- package/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/useResourceModulesQuery.js +38 -0
- package/modules/hooks/query-keys.d.ts +56 -28
- package/modules/hooks/query-keys.js +34 -18
- package/modules/orm/index.d.ts +8 -4
- package/modules/orm/index.js +8 -4
- package/modules/orm/input-types.d.ts +868 -411
- package/modules/orm/models/index.d.ts +4 -2
- package/modules/orm/models/index.js +10 -6
- package/modules/orm/models/principalAuthModule.d.ts +54 -0
- package/modules/orm/models/principalAuthModule.js +104 -0
- package/modules/orm/models/resourceModule.d.ts +54 -0
- package/modules/orm/models/resourceModule.js +104 -0
- package/modules/schema-types.d.ts +451 -169
- package/modules/types.d.ts +75 -33
- package/package.json +4 -4
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Unified K8s resource declarations — stores desired state (spec) and observed state (status) for all resource kinds within a namespace
|
|
4
|
+
* @generated by @constructive-io/graphql-codegen
|
|
5
|
+
* DO NOT EDIT - changes will be overwritten
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.resourceQueryKey = void 0;
|
|
9
|
+
exports.useResourceQuery = useResourceQuery;
|
|
10
|
+
exports.fetchResourceQuery = fetchResourceQuery;
|
|
11
|
+
exports.prefetchResourceQuery = prefetchResourceQuery;
|
|
12
|
+
const react_query_1 = require("@tanstack/react-query");
|
|
13
|
+
const client_1 = require("../client");
|
|
14
|
+
const selection_1 = require("../selection");
|
|
15
|
+
const query_keys_1 = require("../query-keys");
|
|
16
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
17
|
+
exports.resourceQueryKey = query_keys_1.resourceKeys.detail;
|
|
18
|
+
function useResourceQuery(params) {
|
|
19
|
+
const args = (0, selection_1.buildSelectionArgs)(params.selection);
|
|
20
|
+
const { selection: _selection, ...queryOptions } = params ?? {};
|
|
21
|
+
void _selection;
|
|
22
|
+
return (0, react_query_1.useQuery)({
|
|
23
|
+
queryKey: query_keys_1.resourceKeys.detail(params.id),
|
|
24
|
+
queryFn: () => (0, client_1.getClient)()
|
|
25
|
+
.resource.findOne({
|
|
26
|
+
id: params.id,
|
|
27
|
+
select: args.select,
|
|
28
|
+
})
|
|
29
|
+
.unwrap(),
|
|
30
|
+
...queryOptions,
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
async function fetchResourceQuery(params) {
|
|
34
|
+
const args = (0, selection_1.buildSelectionArgs)(params.selection);
|
|
35
|
+
return (0, client_1.getClient)()
|
|
36
|
+
.resource.findOne({
|
|
37
|
+
id: params.id,
|
|
38
|
+
select: args.select,
|
|
39
|
+
})
|
|
40
|
+
.unwrap();
|
|
41
|
+
}
|
|
42
|
+
async function prefetchResourceQuery(queryClient, params) {
|
|
43
|
+
const args = (0, selection_1.buildSelectionArgs)(params.selection);
|
|
44
|
+
await queryClient.prefetchQuery({
|
|
45
|
+
queryKey: query_keys_1.resourceKeys.detail(params.id),
|
|
46
|
+
queryFn: () => (0, client_1.getClient)()
|
|
47
|
+
.resource.findOne({
|
|
48
|
+
id: params.id,
|
|
49
|
+
select: args.select,
|
|
50
|
+
})
|
|
51
|
+
.unwrap(),
|
|
52
|
+
});
|
|
53
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unified K8s resource declarations — stores desired state (spec) and observed state (status) for all resource kinds within a namespace
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
|
|
7
|
+
import type { ListSelectionConfig } from '../selection';
|
|
8
|
+
import type { ResourceSelect, ResourceWithRelations, ResourceFilter, ResourceOrderBy } from '../../orm/input-types';
|
|
9
|
+
import type { InferSelectResult, ConnectionResult, HookStrictSelect } from '../../orm/select-types';
|
|
10
|
+
export type { ResourceSelect, ResourceWithRelations, ResourceFilter, ResourceOrderBy, } from '../../orm/input-types';
|
|
11
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
12
|
+
export declare const resourcesQueryKey: (variables?: object) => readonly ["resource", "list", object];
|
|
13
|
+
/**
|
|
14
|
+
* Unified K8s resource declarations — stores desired state (spec) and observed state (status) for all resource kinds within a namespace
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```tsx
|
|
18
|
+
* const { data, isLoading } = useResourcesQuery({
|
|
19
|
+
* selection: {
|
|
20
|
+
* fields: { id: true, name: true },
|
|
21
|
+
* where: { name: { equalTo: "example" } },
|
|
22
|
+
* orderBy: ['CREATED_AT_DESC'],
|
|
23
|
+
* first: 10,
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export declare function useResourcesQuery<S extends ResourceSelect, TData = {
|
|
29
|
+
resources: ConnectionResult<InferSelectResult<ResourceWithRelations, S>>;
|
|
30
|
+
}>(params: {
|
|
31
|
+
selection: {
|
|
32
|
+
fields: S;
|
|
33
|
+
} & Omit<ListSelectionConfig<S, ResourceFilter, ResourceOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, ResourceSelect>;
|
|
34
|
+
} & Omit<UseQueryOptions<{
|
|
35
|
+
resources: ConnectionResult<InferSelectResult<ResourceWithRelations, S>>;
|
|
36
|
+
}, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
|
|
37
|
+
/**
|
|
38
|
+
* Unified K8s resource declarations — stores desired state (spec) and observed state (status) for all resource kinds within a namespace
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* ```ts
|
|
42
|
+
* const data = await fetchResourcesQuery({
|
|
43
|
+
* selection: {
|
|
44
|
+
* fields: { id: true },
|
|
45
|
+
* first: 10,
|
|
46
|
+
* },
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
export declare function fetchResourcesQuery<S extends ResourceSelect>(params: {
|
|
51
|
+
selection: {
|
|
52
|
+
fields: S;
|
|
53
|
+
} & Omit<ListSelectionConfig<S, ResourceFilter, ResourceOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, ResourceSelect>;
|
|
54
|
+
}): Promise<{
|
|
55
|
+
resources: ConnectionResult<InferSelectResult<ResourceWithRelations, S>>;
|
|
56
|
+
}>;
|
|
57
|
+
/**
|
|
58
|
+
* Unified K8s resource declarations — stores desired state (spec) and observed state (status) for all resource kinds within a namespace
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* ```ts
|
|
62
|
+
* await prefetchResourcesQuery(queryClient, { selection: { fields: { id: true }, first: 10 } });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export declare function prefetchResourcesQuery<S extends ResourceSelect>(queryClient: QueryClient, params: {
|
|
66
|
+
selection: {
|
|
67
|
+
fields: S;
|
|
68
|
+
} & Omit<ListSelectionConfig<S, ResourceFilter, ResourceOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, ResourceSelect>;
|
|
69
|
+
}): Promise<void>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Unified K8s resource declarations — stores desired state (spec) and observed state (status) for all resource kinds within a namespace
|
|
4
|
+
* @generated by @constructive-io/graphql-codegen
|
|
5
|
+
* DO NOT EDIT - changes will be overwritten
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.resourcesQueryKey = void 0;
|
|
9
|
+
exports.useResourcesQuery = useResourcesQuery;
|
|
10
|
+
exports.fetchResourcesQuery = fetchResourcesQuery;
|
|
11
|
+
exports.prefetchResourcesQuery = prefetchResourcesQuery;
|
|
12
|
+
const react_query_1 = require("@tanstack/react-query");
|
|
13
|
+
const client_1 = require("../client");
|
|
14
|
+
const selection_1 = require("../selection");
|
|
15
|
+
const query_keys_1 = require("../query-keys");
|
|
16
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
17
|
+
exports.resourcesQueryKey = query_keys_1.resourceKeys.list;
|
|
18
|
+
function useResourcesQuery(params) {
|
|
19
|
+
const args = (0, selection_1.buildListSelectionArgs)(params.selection);
|
|
20
|
+
const { selection: _selection, ...queryOptions } = params ?? {};
|
|
21
|
+
void _selection;
|
|
22
|
+
return (0, react_query_1.useQuery)({
|
|
23
|
+
queryKey: query_keys_1.resourceKeys.list(args),
|
|
24
|
+
queryFn: () => (0, client_1.getClient)().resource.findMany(args).unwrap(),
|
|
25
|
+
...queryOptions,
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
async function fetchResourcesQuery(params) {
|
|
29
|
+
const args = (0, selection_1.buildListSelectionArgs)(params.selection);
|
|
30
|
+
return (0, client_1.getClient)().resource.findMany(args).unwrap();
|
|
31
|
+
}
|
|
32
|
+
async function prefetchResourcesQuery(queryClient, params) {
|
|
33
|
+
const args = (0, selection_1.buildListSelectionArgs)(params.selection);
|
|
34
|
+
await queryClient.prefetchQuery({
|
|
35
|
+
queryKey: query_keys_1.resourceKeys.list(args),
|
|
36
|
+
queryFn: () => (0, client_1.getClient)().resource.findMany(args).unwrap(),
|
|
37
|
+
});
|
|
38
|
+
}
|
|
@@ -24,6 +24,13 @@ export declare const functionDeploymentKeys: {
|
|
|
24
24
|
/** Detail query keys */ readonly details: () => readonly ["functiondeployment", "detail"];
|
|
25
25
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functiondeployment", "detail", string | number];
|
|
26
26
|
};
|
|
27
|
+
export declare const resourceKeys: {
|
|
28
|
+
/** All resource queries */ readonly all: readonly ["resource"];
|
|
29
|
+
/** List query keys */ readonly lists: () => readonly ["resource", "list"];
|
|
30
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["resource", "list", object];
|
|
31
|
+
/** Detail query keys */ readonly details: () => readonly ["resource", "detail"];
|
|
32
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["resource", "detail", string | number];
|
|
33
|
+
};
|
|
27
34
|
export declare const functionGraphRefKeys: {
|
|
28
35
|
/** All functionGraphRef queries */ readonly all: readonly ["functiongraphref"];
|
|
29
36
|
/** List query keys */ readonly lists: () => readonly ["functiongraphref", "list"];
|
|
@@ -59,6 +66,13 @@ export declare const orgFunctionExecutionLogKeys: {
|
|
|
59
66
|
/** Detail query keys */ readonly details: () => readonly ["orgfunctionexecutionlog", "detail"];
|
|
60
67
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgfunctionexecutionlog", "detail", string | number];
|
|
61
68
|
};
|
|
69
|
+
export declare const resourceEventKeys: {
|
|
70
|
+
/** All resourceEvent queries */ readonly all: readonly ["resourceevent"];
|
|
71
|
+
/** List query keys */ readonly lists: () => readonly ["resourceevent", "list"];
|
|
72
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["resourceevent", "list", object];
|
|
73
|
+
/** Detail query keys */ readonly details: () => readonly ["resourceevent", "detail"];
|
|
74
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["resourceevent", "detail", string | number];
|
|
75
|
+
};
|
|
62
76
|
export declare const functionGraphExecutionOutputKeys: {
|
|
63
77
|
/** All functionGraphExecutionOutput queries */ readonly all: readonly ["functiongraphexecutionoutput"];
|
|
64
78
|
/** List query keys */ readonly lists: () => readonly ["functiongraphexecutionoutput", "list"];
|
|
@@ -87,6 +101,13 @@ export declare const functionExecutionLogKeys: {
|
|
|
87
101
|
/** Detail query keys */ readonly details: () => readonly ["functionexecutionlog", "detail"];
|
|
88
102
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functionexecutionlog", "detail", string | number];
|
|
89
103
|
};
|
|
104
|
+
export declare const functionGraphKeys: {
|
|
105
|
+
/** All functionGraph queries */ readonly all: readonly ["functiongraph"];
|
|
106
|
+
/** List query keys */ readonly lists: () => readonly ["functiongraph", "list"];
|
|
107
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["functiongraph", "list", object];
|
|
108
|
+
/** Detail query keys */ readonly details: () => readonly ["functiongraph", "detail"];
|
|
109
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functiongraph", "detail", string | number];
|
|
110
|
+
};
|
|
90
111
|
export declare const functionGraphExecutionNodeStateKeys: {
|
|
91
112
|
/** All functionGraphExecutionNodeState queries */ readonly all: readonly ["functiongraphexecutionnodestate"];
|
|
92
113
|
/** List query keys */ readonly lists: () => readonly ["functiongraphexecutionnodestate", "list"];
|
|
@@ -94,12 +115,12 @@ export declare const functionGraphExecutionNodeStateKeys: {
|
|
|
94
115
|
/** Detail query keys */ readonly details: () => readonly ["functiongraphexecutionnodestate", "detail"];
|
|
95
116
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functiongraphexecutionnodestate", "detail", string | number];
|
|
96
117
|
};
|
|
97
|
-
export declare const
|
|
98
|
-
/** All
|
|
99
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
100
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
101
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
102
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
118
|
+
export declare const platformNamespaceKeys: {
|
|
119
|
+
/** All platformNamespace queries */ readonly all: readonly ["platformnamespace"];
|
|
120
|
+
/** List query keys */ readonly lists: () => readonly ["platformnamespace", "list"];
|
|
121
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["platformnamespace", "list", object];
|
|
122
|
+
/** Detail query keys */ readonly details: () => readonly ["platformnamespace", "detail"];
|
|
123
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["platformnamespace", "detail", string | number];
|
|
103
124
|
};
|
|
104
125
|
export declare const orgFunctionInvocationKeys: {
|
|
105
126
|
/** All orgFunctionInvocation queries */ readonly all: readonly ["orgfunctioninvocation"];
|
|
@@ -115,6 +136,13 @@ export declare const functionInvocationKeys: {
|
|
|
115
136
|
/** Detail query keys */ readonly details: () => readonly ["functioninvocation", "detail"];
|
|
116
137
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functioninvocation", "detail", string | number];
|
|
117
138
|
};
|
|
139
|
+
export declare const platformNamespaceEventKeys: {
|
|
140
|
+
/** All platformNamespaceEvent queries */ readonly all: readonly ["platformnamespaceevent"];
|
|
141
|
+
/** List query keys */ readonly lists: () => readonly ["platformnamespaceevent", "list"];
|
|
142
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["platformnamespaceevent", "list", object];
|
|
143
|
+
/** Detail query keys */ readonly details: () => readonly ["platformnamespaceevent", "detail"];
|
|
144
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["platformnamespaceevent", "detail", string | number];
|
|
145
|
+
};
|
|
118
146
|
export declare const functionGraphExecutionKeys: {
|
|
119
147
|
/** All functionGraphExecution queries */ readonly all: readonly ["functiongraphexecution"];
|
|
120
148
|
/** List query keys */ readonly lists: () => readonly ["functiongraphexecution", "list"];
|
|
@@ -176,6 +204,13 @@ export declare const queryKeys: {
|
|
|
176
204
|
/** Detail query keys */ readonly details: () => readonly ["functiondeployment", "detail"];
|
|
177
205
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functiondeployment", "detail", string | number];
|
|
178
206
|
};
|
|
207
|
+
readonly resource: {
|
|
208
|
+
/** All resource queries */ readonly all: readonly ["resource"];
|
|
209
|
+
/** List query keys */ readonly lists: () => readonly ["resource", "list"];
|
|
210
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["resource", "list", object];
|
|
211
|
+
/** Detail query keys */ readonly details: () => readonly ["resource", "detail"];
|
|
212
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["resource", "detail", string | number];
|
|
213
|
+
};
|
|
179
214
|
readonly functionGraphRef: {
|
|
180
215
|
/** All functionGraphRef queries */ readonly all: readonly ["functiongraphref"];
|
|
181
216
|
/** List query keys */ readonly lists: () => readonly ["functiongraphref", "list"];
|
|
@@ -211,6 +246,13 @@ export declare const queryKeys: {
|
|
|
211
246
|
/** Detail query keys */ readonly details: () => readonly ["orgfunctionexecutionlog", "detail"];
|
|
212
247
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgfunctionexecutionlog", "detail", string | number];
|
|
213
248
|
};
|
|
249
|
+
readonly resourceEvent: {
|
|
250
|
+
/** All resourceEvent queries */ readonly all: readonly ["resourceevent"];
|
|
251
|
+
/** List query keys */ readonly lists: () => readonly ["resourceevent", "list"];
|
|
252
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["resourceevent", "list", object];
|
|
253
|
+
/** Detail query keys */ readonly details: () => readonly ["resourceevent", "detail"];
|
|
254
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["resourceevent", "detail", string | number];
|
|
255
|
+
};
|
|
214
256
|
readonly functionGraphExecutionOutput: {
|
|
215
257
|
/** All functionGraphExecutionOutput queries */ readonly all: readonly ["functiongraphexecutionoutput"];
|
|
216
258
|
/** List query keys */ readonly lists: () => readonly ["functiongraphexecutionoutput", "list"];
|
|
@@ -239,6 +281,13 @@ export declare const queryKeys: {
|
|
|
239
281
|
/** Detail query keys */ readonly details: () => readonly ["functionexecutionlog", "detail"];
|
|
240
282
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functionexecutionlog", "detail", string | number];
|
|
241
283
|
};
|
|
284
|
+
readonly functionGraph: {
|
|
285
|
+
/** All functionGraph queries */ readonly all: readonly ["functiongraph"];
|
|
286
|
+
/** List query keys */ readonly lists: () => readonly ["functiongraph", "list"];
|
|
287
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["functiongraph", "list", object];
|
|
288
|
+
/** Detail query keys */ readonly details: () => readonly ["functiongraph", "detail"];
|
|
289
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functiongraph", "detail", string | number];
|
|
290
|
+
};
|
|
242
291
|
readonly functionGraphExecutionNodeState: {
|
|
243
292
|
/** All functionGraphExecutionNodeState queries */ readonly all: readonly ["functiongraphexecutionnodestate"];
|
|
244
293
|
/** List query keys */ readonly lists: () => readonly ["functiongraphexecutionnodestate", "list"];
|
|
@@ -246,12 +295,12 @@ export declare const queryKeys: {
|
|
|
246
295
|
/** Detail query keys */ readonly details: () => readonly ["functiongraphexecutionnodestate", "detail"];
|
|
247
296
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functiongraphexecutionnodestate", "detail", string | number];
|
|
248
297
|
};
|
|
249
|
-
readonly
|
|
250
|
-
/** All
|
|
251
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
252
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
253
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
254
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
298
|
+
readonly platformNamespace: {
|
|
299
|
+
/** All platformNamespace queries */ readonly all: readonly ["platformnamespace"];
|
|
300
|
+
/** List query keys */ readonly lists: () => readonly ["platformnamespace", "list"];
|
|
301
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["platformnamespace", "list", object];
|
|
302
|
+
/** Detail query keys */ readonly details: () => readonly ["platformnamespace", "detail"];
|
|
303
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["platformnamespace", "detail", string | number];
|
|
255
304
|
};
|
|
256
305
|
readonly orgFunctionInvocation: {
|
|
257
306
|
/** All orgFunctionInvocation queries */ readonly all: readonly ["orgfunctioninvocation"];
|
|
@@ -267,6 +316,13 @@ export declare const queryKeys: {
|
|
|
267
316
|
/** Detail query keys */ readonly details: () => readonly ["functioninvocation", "detail"];
|
|
268
317
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functioninvocation", "detail", string | number];
|
|
269
318
|
};
|
|
319
|
+
readonly platformNamespaceEvent: {
|
|
320
|
+
/** All platformNamespaceEvent queries */ readonly all: readonly ["platformnamespaceevent"];
|
|
321
|
+
/** List query keys */ readonly lists: () => readonly ["platformnamespaceevent", "list"];
|
|
322
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["platformnamespaceevent", "list", object];
|
|
323
|
+
/** Detail query keys */ readonly details: () => readonly ["platformnamespaceevent", "detail"];
|
|
324
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["platformnamespaceevent", "detail", string | number];
|
|
325
|
+
};
|
|
270
326
|
readonly functionGraphExecution: {
|
|
271
327
|
/** All functionGraphExecution queries */ readonly all: readonly ["functiongraphexecution"];
|
|
272
328
|
/** List query keys */ readonly lists: () => readonly ["functiongraphexecution", "list"];
|
|
@@ -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.queryKeys = exports.customQueryKeys = exports.functionDefinitionKeys = exports.functionGraphExecutionKeys = exports.functionInvocationKeys = exports.orgFunctionInvocationKeys = exports.
|
|
8
|
+
exports.queryKeys = exports.customQueryKeys = exports.functionDefinitionKeys = exports.functionGraphExecutionKeys = exports.platformNamespaceEventKeys = exports.functionInvocationKeys = exports.orgFunctionInvocationKeys = exports.platformNamespaceKeys = exports.functionGraphExecutionNodeStateKeys = exports.functionGraphKeys = exports.functionExecutionLogKeys = exports.secretDefinitionKeys = exports.functionGraphCommitKeys = exports.functionGraphExecutionOutputKeys = exports.resourceEventKeys = exports.orgFunctionExecutionLogKeys = exports.functionDeploymentEventKeys = exports.functionGraphObjectKeys = exports.functionGraphStoreKeys = exports.functionGraphRefKeys = exports.resourceKeys = exports.functionDeploymentKeys = exports.functionApiBindingKeys = exports.getAllRecordKeys = void 0;
|
|
9
9
|
// ============================================================================
|
|
10
10
|
// This file provides a centralized, type-safe query key factory following
|
|
11
11
|
// the lukemorales query-key-factory pattern for React Query.
|
|
@@ -40,6 +40,13 @@ exports.functionDeploymentKeys = {
|
|
|
40
40
|
/** Detail query keys */ details: () => [...exports.functionDeploymentKeys.all, 'detail'],
|
|
41
41
|
/** Detail query key for specific item */ detail: (id) => [...exports.functionDeploymentKeys.details(), id],
|
|
42
42
|
};
|
|
43
|
+
exports.resourceKeys = {
|
|
44
|
+
/** All resource queries */ all: ['resource'],
|
|
45
|
+
/** List query keys */ lists: () => [...exports.resourceKeys.all, 'list'],
|
|
46
|
+
/** List query key with variables */ list: (variables) => [...exports.resourceKeys.lists(), variables],
|
|
47
|
+
/** Detail query keys */ details: () => [...exports.resourceKeys.all, 'detail'],
|
|
48
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.resourceKeys.details(), id],
|
|
49
|
+
};
|
|
43
50
|
exports.functionGraphRefKeys = {
|
|
44
51
|
/** All functionGraphRef queries */ all: ['functiongraphref'],
|
|
45
52
|
/** List query keys */ lists: () => [...exports.functionGraphRefKeys.all, 'list'],
|
|
@@ -75,6 +82,13 @@ exports.orgFunctionExecutionLogKeys = {
|
|
|
75
82
|
/** Detail query keys */ details: () => [...exports.orgFunctionExecutionLogKeys.all, 'detail'],
|
|
76
83
|
/** Detail query key for specific item */ detail: (id) => [...exports.orgFunctionExecutionLogKeys.details(), id],
|
|
77
84
|
};
|
|
85
|
+
exports.resourceEventKeys = {
|
|
86
|
+
/** All resourceEvent queries */ all: ['resourceevent'],
|
|
87
|
+
/** List query keys */ lists: () => [...exports.resourceEventKeys.all, 'list'],
|
|
88
|
+
/** List query key with variables */ list: (variables) => [...exports.resourceEventKeys.lists(), variables],
|
|
89
|
+
/** Detail query keys */ details: () => [...exports.resourceEventKeys.all, 'detail'],
|
|
90
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.resourceEventKeys.details(), id],
|
|
91
|
+
};
|
|
78
92
|
exports.functionGraphExecutionOutputKeys = {
|
|
79
93
|
/** All functionGraphExecutionOutput queries */ all: ['functiongraphexecutionoutput'],
|
|
80
94
|
/** List query keys */ lists: () => [...exports.functionGraphExecutionOutputKeys.all, 'list'],
|
|
@@ -103,6 +117,13 @@ exports.functionExecutionLogKeys = {
|
|
|
103
117
|
/** Detail query keys */ details: () => [...exports.functionExecutionLogKeys.all, 'detail'],
|
|
104
118
|
/** Detail query key for specific item */ detail: (id) => [...exports.functionExecutionLogKeys.details(), id],
|
|
105
119
|
};
|
|
120
|
+
exports.functionGraphKeys = {
|
|
121
|
+
/** All functionGraph queries */ all: ['functiongraph'],
|
|
122
|
+
/** List query keys */ lists: () => [...exports.functionGraphKeys.all, 'list'],
|
|
123
|
+
/** List query key with variables */ list: (variables) => [...exports.functionGraphKeys.lists(), variables],
|
|
124
|
+
/** Detail query keys */ details: () => [...exports.functionGraphKeys.all, 'detail'],
|
|
125
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.functionGraphKeys.details(), id],
|
|
126
|
+
};
|
|
106
127
|
exports.functionGraphExecutionNodeStateKeys = {
|
|
107
128
|
/** All functionGraphExecutionNodeState queries */ all: [
|
|
108
129
|
'functiongraphexecutionnodestate',
|
|
@@ -112,12 +133,12 @@ exports.functionGraphExecutionNodeStateKeys = {
|
|
|
112
133
|
/** Detail query keys */ details: () => [...exports.functionGraphExecutionNodeStateKeys.all, 'detail'],
|
|
113
134
|
/** Detail query key for specific item */ detail: (id) => [...exports.functionGraphExecutionNodeStateKeys.details(), id],
|
|
114
135
|
};
|
|
115
|
-
exports.
|
|
116
|
-
/** All
|
|
117
|
-
/** List query keys */ lists: () => [...exports.
|
|
118
|
-
/** List query key with variables */ list: (variables) => [...exports.
|
|
119
|
-
/** Detail query keys */ details: () => [...exports.
|
|
120
|
-
/** Detail query key for specific item */ detail: (id) => [...exports.
|
|
136
|
+
exports.platformNamespaceKeys = {
|
|
137
|
+
/** All platformNamespace queries */ all: ['platformnamespace'],
|
|
138
|
+
/** List query keys */ lists: () => [...exports.platformNamespaceKeys.all, 'list'],
|
|
139
|
+
/** List query key with variables */ list: (variables) => [...exports.platformNamespaceKeys.lists(), variables],
|
|
140
|
+
/** Detail query keys */ details: () => [...exports.platformNamespaceKeys.all, 'detail'],
|
|
141
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformNamespaceKeys.details(), id],
|
|
121
142
|
};
|
|
122
143
|
exports.orgFunctionInvocationKeys = {
|
|
123
144
|
/** All orgFunctionInvocation queries */ all: ['orgfunctioninvocation'],
|
|
@@ -133,6 +154,13 @@ exports.functionInvocationKeys = {
|
|
|
133
154
|
/** Detail query keys */ details: () => [...exports.functionInvocationKeys.all, 'detail'],
|
|
134
155
|
/** Detail query key for specific item */ detail: (id) => [...exports.functionInvocationKeys.details(), id],
|
|
135
156
|
};
|
|
157
|
+
exports.platformNamespaceEventKeys = {
|
|
158
|
+
/** All platformNamespaceEvent queries */ all: ['platformnamespaceevent'],
|
|
159
|
+
/** List query keys */ lists: () => [...exports.platformNamespaceEventKeys.all, 'list'],
|
|
160
|
+
/** List query key with variables */ list: (variables) => [...exports.platformNamespaceEventKeys.lists(), variables],
|
|
161
|
+
/** Detail query keys */ details: () => [...exports.platformNamespaceEventKeys.all, 'detail'],
|
|
162
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformNamespaceEventKeys.details(), id],
|
|
163
|
+
};
|
|
136
164
|
exports.functionGraphExecutionKeys = {
|
|
137
165
|
/** All functionGraphExecution queries */ all: ['functiongraphexecution'],
|
|
138
166
|
/** List query keys */ lists: () => [...exports.functionGraphExecutionKeys.all, 'list'],
|
|
@@ -179,19 +207,23 @@ exports.queryKeys = {
|
|
|
179
207
|
getAllRecord: exports.getAllRecordKeys,
|
|
180
208
|
functionApiBinding: exports.functionApiBindingKeys,
|
|
181
209
|
functionDeployment: exports.functionDeploymentKeys,
|
|
210
|
+
resource: exports.resourceKeys,
|
|
182
211
|
functionGraphRef: exports.functionGraphRefKeys,
|
|
183
212
|
functionGraphStore: exports.functionGraphStoreKeys,
|
|
184
213
|
functionGraphObject: exports.functionGraphObjectKeys,
|
|
185
214
|
functionDeploymentEvent: exports.functionDeploymentEventKeys,
|
|
186
215
|
orgFunctionExecutionLog: exports.orgFunctionExecutionLogKeys,
|
|
216
|
+
resourceEvent: exports.resourceEventKeys,
|
|
187
217
|
functionGraphExecutionOutput: exports.functionGraphExecutionOutputKeys,
|
|
188
218
|
functionGraphCommit: exports.functionGraphCommitKeys,
|
|
189
219
|
secretDefinition: exports.secretDefinitionKeys,
|
|
190
220
|
functionExecutionLog: exports.functionExecutionLogKeys,
|
|
191
|
-
functionGraphExecutionNodeState: exports.functionGraphExecutionNodeStateKeys,
|
|
192
221
|
functionGraph: exports.functionGraphKeys,
|
|
222
|
+
functionGraphExecutionNodeState: exports.functionGraphExecutionNodeStateKeys,
|
|
223
|
+
platformNamespace: exports.platformNamespaceKeys,
|
|
193
224
|
orgFunctionInvocation: exports.orgFunctionInvocationKeys,
|
|
194
225
|
functionInvocation: exports.functionInvocationKeys,
|
|
226
|
+
platformNamespaceEvent: exports.platformNamespaceEventKeys,
|
|
195
227
|
functionGraphExecution: exports.functionGraphExecutionKeys,
|
|
196
228
|
functionDefinition: exports.functionDefinitionKeys,
|
|
197
229
|
custom: exports.customQueryKeys,
|
package/compute/orm/index.d.ts
CHANGED
|
@@ -2,19 +2,23 @@ import type { OrmClientConfig } from './client';
|
|
|
2
2
|
import { GetAllRecordModel } from './models/getAllRecord';
|
|
3
3
|
import { FunctionApiBindingModel } from './models/functionApiBinding';
|
|
4
4
|
import { FunctionDeploymentModel } from './models/functionDeployment';
|
|
5
|
+
import { ResourceModel } from './models/resource';
|
|
5
6
|
import { FunctionGraphRefModel } from './models/functionGraphRef';
|
|
6
7
|
import { FunctionGraphStoreModel } from './models/functionGraphStore';
|
|
7
8
|
import { FunctionGraphObjectModel } from './models/functionGraphObject';
|
|
8
9
|
import { FunctionDeploymentEventModel } from './models/functionDeploymentEvent';
|
|
9
10
|
import { OrgFunctionExecutionLogModel } from './models/orgFunctionExecutionLog';
|
|
11
|
+
import { ResourceEventModel } from './models/resourceEvent';
|
|
10
12
|
import { FunctionGraphExecutionOutputModel } from './models/functionGraphExecutionOutput';
|
|
11
13
|
import { FunctionGraphCommitModel } from './models/functionGraphCommit';
|
|
12
14
|
import { SecretDefinitionModel } from './models/secretDefinition';
|
|
13
15
|
import { FunctionExecutionLogModel } from './models/functionExecutionLog';
|
|
14
|
-
import { FunctionGraphExecutionNodeStateModel } from './models/functionGraphExecutionNodeState';
|
|
15
16
|
import { FunctionGraphModel } from './models/functionGraph';
|
|
17
|
+
import { FunctionGraphExecutionNodeStateModel } from './models/functionGraphExecutionNodeState';
|
|
18
|
+
import { PlatformNamespaceModel } from './models/platformNamespace';
|
|
16
19
|
import { OrgFunctionInvocationModel } from './models/orgFunctionInvocation';
|
|
17
20
|
import { FunctionInvocationModel } from './models/functionInvocation';
|
|
21
|
+
import { PlatformNamespaceEventModel } from './models/platformNamespaceEvent';
|
|
18
22
|
import { FunctionGraphExecutionModel } from './models/functionGraphExecution';
|
|
19
23
|
import { FunctionDefinitionModel } from './models/functionDefinition';
|
|
20
24
|
export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
|
|
@@ -51,19 +55,23 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
51
55
|
getAllRecord: GetAllRecordModel;
|
|
52
56
|
functionApiBinding: FunctionApiBindingModel;
|
|
53
57
|
functionDeployment: FunctionDeploymentModel;
|
|
58
|
+
resource: ResourceModel;
|
|
54
59
|
functionGraphRef: FunctionGraphRefModel;
|
|
55
60
|
functionGraphStore: FunctionGraphStoreModel;
|
|
56
61
|
functionGraphObject: FunctionGraphObjectModel;
|
|
57
62
|
functionDeploymentEvent: FunctionDeploymentEventModel;
|
|
58
63
|
orgFunctionExecutionLog: OrgFunctionExecutionLogModel;
|
|
64
|
+
resourceEvent: ResourceEventModel;
|
|
59
65
|
functionGraphExecutionOutput: FunctionGraphExecutionOutputModel;
|
|
60
66
|
functionGraphCommit: FunctionGraphCommitModel;
|
|
61
67
|
secretDefinition: SecretDefinitionModel;
|
|
62
68
|
functionExecutionLog: FunctionExecutionLogModel;
|
|
63
|
-
functionGraphExecutionNodeState: FunctionGraphExecutionNodeStateModel;
|
|
64
69
|
functionGraph: FunctionGraphModel;
|
|
70
|
+
functionGraphExecutionNodeState: FunctionGraphExecutionNodeStateModel;
|
|
71
|
+
platformNamespace: PlatformNamespaceModel;
|
|
65
72
|
orgFunctionInvocation: OrgFunctionInvocationModel;
|
|
66
73
|
functionInvocation: FunctionInvocationModel;
|
|
74
|
+
platformNamespaceEvent: PlatformNamespaceEventModel;
|
|
67
75
|
functionGraphExecution: FunctionGraphExecutionModel;
|
|
68
76
|
functionDefinition: FunctionDefinitionModel;
|
|
69
77
|
query: {
|
|
@@ -114,6 +122,11 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
114
122
|
} & import("./select-types").StrictSelect<S, import("./input-types").AddNodeAndSavePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
115
123
|
addNodeAndSave: import("./select-types").InferSelectResult<import("./input-types").AddNodeAndSavePayload, S> | null;
|
|
116
124
|
}>;
|
|
125
|
+
importGraphJson: <S extends import("./input-types").ImportGraphJsonPayloadSelect>(args: import("./mutation").ImportGraphJsonVariables, options: {
|
|
126
|
+
select: S;
|
|
127
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ImportGraphJsonPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
128
|
+
importGraphJson: import("./select-types").InferSelectResult<import("./input-types").ImportGraphJsonPayload, S> | null;
|
|
129
|
+
}>;
|
|
117
130
|
addEdge: <S extends import("./input-types").AddEdgePayloadSelect>(args: import("./mutation").AddEdgeVariables, options: {
|
|
118
131
|
select: S;
|
|
119
132
|
} & import("./select-types").StrictSelect<S, import("./input-types").AddEdgePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
@@ -124,11 +137,6 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
124
137
|
} & import("./select-types").StrictSelect<S, import("./input-types").AddNodePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
125
138
|
addNode: import("./select-types").InferSelectResult<import("./input-types").AddNodePayload, S> | null;
|
|
126
139
|
}>;
|
|
127
|
-
importGraphJson: <S extends import("./input-types").ImportGraphJsonPayloadSelect>(args: import("./mutation").ImportGraphJsonVariables, options: {
|
|
128
|
-
select: S;
|
|
129
|
-
} & import("./select-types").StrictSelect<S, import("./input-types").ImportGraphJsonPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
130
|
-
importGraphJson: import("./select-types").InferSelectResult<import("./input-types").ImportGraphJsonPayload, S> | null;
|
|
131
|
-
}>;
|
|
132
140
|
insertNodeAtPath: <S extends import("./input-types").InsertNodeAtPathPayloadSelect>(args: import("./mutation").InsertNodeAtPathVariables, options: {
|
|
133
141
|
select: S;
|
|
134
142
|
} & import("./select-types").StrictSelect<S, import("./input-types").InsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
package/compute/orm/index.js
CHANGED
|
@@ -25,19 +25,23 @@ const client_1 = require("./client");
|
|
|
25
25
|
const getAllRecord_1 = require("./models/getAllRecord");
|
|
26
26
|
const functionApiBinding_1 = require("./models/functionApiBinding");
|
|
27
27
|
const functionDeployment_1 = require("./models/functionDeployment");
|
|
28
|
+
const resource_1 = require("./models/resource");
|
|
28
29
|
const functionGraphRef_1 = require("./models/functionGraphRef");
|
|
29
30
|
const functionGraphStore_1 = require("./models/functionGraphStore");
|
|
30
31
|
const functionGraphObject_1 = require("./models/functionGraphObject");
|
|
31
32
|
const functionDeploymentEvent_1 = require("./models/functionDeploymentEvent");
|
|
32
33
|
const orgFunctionExecutionLog_1 = require("./models/orgFunctionExecutionLog");
|
|
34
|
+
const resourceEvent_1 = require("./models/resourceEvent");
|
|
33
35
|
const functionGraphExecutionOutput_1 = require("./models/functionGraphExecutionOutput");
|
|
34
36
|
const functionGraphCommit_1 = require("./models/functionGraphCommit");
|
|
35
37
|
const secretDefinition_1 = require("./models/secretDefinition");
|
|
36
38
|
const functionExecutionLog_1 = require("./models/functionExecutionLog");
|
|
37
|
-
const functionGraphExecutionNodeState_1 = require("./models/functionGraphExecutionNodeState");
|
|
38
39
|
const functionGraph_1 = require("./models/functionGraph");
|
|
40
|
+
const functionGraphExecutionNodeState_1 = require("./models/functionGraphExecutionNodeState");
|
|
41
|
+
const platformNamespace_1 = require("./models/platformNamespace");
|
|
39
42
|
const orgFunctionInvocation_1 = require("./models/orgFunctionInvocation");
|
|
40
43
|
const functionInvocation_1 = require("./models/functionInvocation");
|
|
44
|
+
const platformNamespaceEvent_1 = require("./models/platformNamespaceEvent");
|
|
41
45
|
const functionGraphExecution_1 = require("./models/functionGraphExecution");
|
|
42
46
|
const functionDefinition_1 = require("./models/functionDefinition");
|
|
43
47
|
const query_1 = require("./query");
|
|
@@ -82,19 +86,23 @@ function createClient(config) {
|
|
|
82
86
|
getAllRecord: new getAllRecord_1.GetAllRecordModel(client),
|
|
83
87
|
functionApiBinding: new functionApiBinding_1.FunctionApiBindingModel(client),
|
|
84
88
|
functionDeployment: new functionDeployment_1.FunctionDeploymentModel(client),
|
|
89
|
+
resource: new resource_1.ResourceModel(client),
|
|
85
90
|
functionGraphRef: new functionGraphRef_1.FunctionGraphRefModel(client),
|
|
86
91
|
functionGraphStore: new functionGraphStore_1.FunctionGraphStoreModel(client),
|
|
87
92
|
functionGraphObject: new functionGraphObject_1.FunctionGraphObjectModel(client),
|
|
88
93
|
functionDeploymentEvent: new functionDeploymentEvent_1.FunctionDeploymentEventModel(client),
|
|
89
94
|
orgFunctionExecutionLog: new orgFunctionExecutionLog_1.OrgFunctionExecutionLogModel(client),
|
|
95
|
+
resourceEvent: new resourceEvent_1.ResourceEventModel(client),
|
|
90
96
|
functionGraphExecutionOutput: new functionGraphExecutionOutput_1.FunctionGraphExecutionOutputModel(client),
|
|
91
97
|
functionGraphCommit: new functionGraphCommit_1.FunctionGraphCommitModel(client),
|
|
92
98
|
secretDefinition: new secretDefinition_1.SecretDefinitionModel(client),
|
|
93
99
|
functionExecutionLog: new functionExecutionLog_1.FunctionExecutionLogModel(client),
|
|
94
|
-
functionGraphExecutionNodeState: new functionGraphExecutionNodeState_1.FunctionGraphExecutionNodeStateModel(client),
|
|
95
100
|
functionGraph: new functionGraph_1.FunctionGraphModel(client),
|
|
101
|
+
functionGraphExecutionNodeState: new functionGraphExecutionNodeState_1.FunctionGraphExecutionNodeStateModel(client),
|
|
102
|
+
platformNamespace: new platformNamespace_1.PlatformNamespaceModel(client),
|
|
96
103
|
orgFunctionInvocation: new orgFunctionInvocation_1.OrgFunctionInvocationModel(client),
|
|
97
104
|
functionInvocation: new functionInvocation_1.FunctionInvocationModel(client),
|
|
105
|
+
platformNamespaceEvent: new platformNamespaceEvent_1.PlatformNamespaceEventModel(client),
|
|
98
106
|
functionGraphExecution: new functionGraphExecution_1.FunctionGraphExecutionModel(client),
|
|
99
107
|
functionDefinition: new functionDefinition_1.FunctionDefinitionModel(client),
|
|
100
108
|
query: (0, query_1.createQueryOperations)(client),
|