@oronts/vendure-data-hub-plugin 0.1.1 → 0.1.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/CHANGELOG.md +5 -0
- package/dist/dashboard/components/common/ConnectionConfigEditor.tsx +589 -0
- package/dist/dashboard/components/common/HeadersEditor.tsx +90 -0
- package/dist/dashboard/components/common/ValidationFeedback.tsx +17 -0
- package/dist/dashboard/components/common/index.ts +10 -0
- package/dist/dashboard/components/pipelines/PipelineEditor.tsx +504 -0
- package/dist/dashboard/components/pipelines/PipelineExport.tsx +63 -0
- package/dist/dashboard/components/pipelines/PipelineImport.tsx +87 -0
- package/dist/dashboard/components/pipelines/ReactFlowPipelineEditor.tsx +539 -0
- package/dist/dashboard/components/pipelines/shared/NodePropertiesPanel.tsx +146 -0
- package/dist/dashboard/components/pipelines/shared/PipelineNode.tsx +155 -0
- package/dist/dashboard/components/pipelines/shared/PipelineSettingsPanel.tsx +392 -0
- package/dist/dashboard/components/pipelines/shared/StepListItem.tsx +144 -0
- package/dist/dashboard/components/pipelines/shared/index.ts +33 -0
- package/dist/dashboard/components/pipelines/shared/visual-node-config.ts +169 -0
- package/dist/dashboard/components/shared/LoadMoreButton.tsx +18 -0
- package/dist/dashboard/components/shared/entity-selector/EntitySelector.tsx +59 -0
- package/dist/dashboard/components/shared/entity-selector/index.ts +1 -0
- package/dist/dashboard/components/shared/error-boundary/ErrorBoundary.tsx +90 -0
- package/dist/dashboard/components/shared/error-boundary/index.ts +1 -0
- package/dist/dashboard/components/shared/feedback/EmptyState.tsx +36 -0
- package/dist/dashboard/components/shared/feedback/ErrorState.tsx +69 -0
- package/dist/dashboard/components/shared/feedback/LoadingState.tsx +104 -0
- package/dist/dashboard/components/shared/feedback/ValidationErrorDisplay.tsx +29 -0
- package/dist/dashboard/components/shared/feedback/index.ts +4 -0
- package/dist/dashboard/components/shared/file-dropzone/FileDropzone.tsx +167 -0
- package/dist/dashboard/components/shared/file-dropzone/index.ts +1 -0
- package/dist/dashboard/components/shared/filter-conditions-editor/FilterConditionsEditor.tsx +226 -0
- package/dist/dashboard/components/shared/filter-conditions-editor/index.ts +1 -0
- package/dist/dashboard/components/shared/index.ts +45 -0
- package/dist/dashboard/components/shared/schema-form/SchemaFormRenderer.tsx +248 -0
- package/dist/dashboard/components/shared/schema-form/fields/BooleanField.tsx +26 -0
- package/dist/dashboard/components/shared/schema-form/fields/FieldWrapper.tsx +28 -0
- package/dist/dashboard/components/shared/schema-form/fields/FileUploadField.tsx +171 -0
- package/dist/dashboard/components/shared/schema-form/fields/JsonField.tsx +132 -0
- package/dist/dashboard/components/shared/schema-form/fields/NumberField.tsx +33 -0
- package/dist/dashboard/components/shared/schema-form/fields/SelectField.tsx +70 -0
- package/dist/dashboard/components/shared/schema-form/fields/StringField.tsx +36 -0
- package/dist/dashboard/components/shared/schema-form/fields/TextareaField.tsx +31 -0
- package/dist/dashboard/components/shared/schema-form/fields/index.ts +23 -0
- package/dist/dashboard/components/shared/schema-form/index.ts +2 -0
- package/dist/dashboard/components/shared/schema-form/utils.ts +3 -0
- package/dist/dashboard/components/shared/selectable-card/SelectableCard.tsx +65 -0
- package/dist/dashboard/components/shared/selectable-card/index.ts +1 -0
- package/dist/dashboard/components/shared/stat-card/StatCard.tsx +121 -0
- package/dist/dashboard/components/shared/stat-card/index.ts +1 -0
- package/dist/dashboard/components/shared/step-config/AdapterRequiredWarning.tsx +25 -0
- package/dist/dashboard/components/shared/step-config/AdapterSelector.tsx +109 -0
- package/dist/dashboard/components/shared/step-config/AdvancedEditors.tsx +634 -0
- package/dist/dashboard/components/shared/step-config/EnrichConfigComponent.tsx +295 -0
- package/dist/dashboard/components/shared/step-config/ExtractTestResults.tsx +143 -0
- package/dist/dashboard/components/shared/step-config/GateConfigComponent.tsx +127 -0
- package/dist/dashboard/components/shared/step-config/LoadTestResults.tsx +104 -0
- package/dist/dashboard/components/shared/step-config/OperatorCard.tsx +266 -0
- package/dist/dashboard/components/shared/step-config/OperatorCheatSheetButton.tsx +54 -0
- package/dist/dashboard/components/shared/step-config/OperatorFieldInput.tsx +209 -0
- package/dist/dashboard/components/shared/step-config/RetrySettingsComponent.tsx +111 -0
- package/dist/dashboard/components/shared/step-config/RouteConfigComponent.tsx +125 -0
- package/dist/dashboard/components/shared/step-config/StepConfigPanel.tsx +564 -0
- package/dist/dashboard/components/shared/step-config/StepTester.tsx +165 -0
- package/dist/dashboard/components/shared/step-config/TestResultContainer.tsx +57 -0
- package/dist/dashboard/components/shared/step-config/TransformTestResults.tsx +130 -0
- package/dist/dashboard/components/shared/step-config/ValidateConfigComponent.tsx +334 -0
- package/dist/dashboard/components/shared/step-config/index.ts +29 -0
- package/dist/dashboard/components/shared/step-config/step-test-handlers.ts +297 -0
- package/dist/dashboard/components/shared/trigger-config/TriggerForm.tsx +478 -0
- package/dist/dashboard/components/shared/trigger-config/index.ts +1 -0
- package/dist/dashboard/components/shared/triggers-panel/TriggersPanel.tsx +281 -0
- package/dist/dashboard/components/shared/triggers-panel/index.ts +1 -0
- package/dist/dashboard/components/shared/wizard/ConfigurationNameCard.tsx +59 -0
- package/dist/dashboard/components/shared/wizard/SummaryCard.tsx +53 -0
- package/dist/dashboard/components/shared/wizard/WizardFooter.tsx +47 -0
- package/dist/dashboard/components/shared/wizard/WizardProgressBar.tsx +78 -0
- package/dist/dashboard/components/shared/wizard/index.ts +4 -0
- package/dist/dashboard/components/shared/wizard-trigger/TriggerSchemaFields.tsx +128 -0
- package/dist/dashboard/components/shared/wizard-trigger/TriggerSelector.tsx +33 -0
- package/dist/dashboard/components/shared/wizard-trigger/index.ts +2 -0
- package/dist/dashboard/components/templates/TemplateGallery.tsx +210 -0
- package/dist/dashboard/components/templates/TemplatePreview.tsx +214 -0
- package/dist/dashboard/components/templates/index.ts +4 -0
- package/dist/dashboard/components/wizards/export-wizard/DestinationStep.tsx +207 -0
- package/dist/dashboard/components/wizards/export-wizard/ExportWizard.tsx +221 -0
- package/dist/dashboard/components/wizards/export-wizard/FieldsStep.tsx +159 -0
- package/dist/dashboard/components/wizards/export-wizard/FormatStep.tsx +246 -0
- package/dist/dashboard/components/wizards/export-wizard/ReviewStep.tsx +231 -0
- package/dist/dashboard/components/wizards/export-wizard/SourceStep.tsx +154 -0
- package/dist/dashboard/components/wizards/export-wizard/TriggerStep.tsx +234 -0
- package/dist/dashboard/components/wizards/export-wizard/constants.ts +73 -0
- package/dist/dashboard/components/wizards/export-wizard/index.ts +2 -0
- package/dist/dashboard/components/wizards/export-wizard/types.ts +39 -0
- package/dist/dashboard/components/wizards/import-wizard/ImportWizard.tsx +350 -0
- package/dist/dashboard/components/wizards/import-wizard/MappingStep.tsx +286 -0
- package/dist/dashboard/components/wizards/import-wizard/PreviewStep.tsx +79 -0
- package/dist/dashboard/components/wizards/import-wizard/ReviewStep.tsx +266 -0
- package/dist/dashboard/components/wizards/import-wizard/SourceStep.tsx +537 -0
- package/dist/dashboard/components/wizards/import-wizard/StrategyStep.tsx +328 -0
- package/dist/dashboard/components/wizards/import-wizard/TargetStep.tsx +76 -0
- package/dist/dashboard/components/wizards/import-wizard/TemplateStep.tsx +116 -0
- package/dist/dashboard/components/wizards/import-wizard/TransformStep.tsx +666 -0
- package/dist/dashboard/components/wizards/import-wizard/TriggerStep.tsx +51 -0
- package/dist/dashboard/components/wizards/import-wizard/constants.ts +104 -0
- package/dist/dashboard/components/wizards/import-wizard/index.ts +3 -0
- package/dist/dashboard/components/wizards/import-wizard/types.ts +35 -0
- package/dist/dashboard/components/wizards/index.ts +7 -0
- package/dist/dashboard/components/wizards/shared/WizardStepContainer.tsx +27 -0
- package/dist/dashboard/components/wizards/shared/constants.ts +16 -0
- package/dist/dashboard/components/wizards/shared/index.ts +10 -0
- package/dist/dashboard/constants/colors.ts +25 -0
- package/dist/dashboard/constants/connection-defaults.ts +7 -0
- package/dist/dashboard/constants/connection-types.ts +1 -0
- package/dist/dashboard/constants/defaults.ts +18 -0
- package/dist/dashboard/constants/editor.ts +69 -0
- package/dist/dashboard/constants/enum-maps.ts +18 -0
- package/dist/dashboard/constants/fallbacks.ts +44 -0
- package/dist/dashboard/constants/file-format-registry.ts +206 -0
- package/dist/dashboard/constants/index.ts +24 -0
- package/dist/dashboard/constants/navigation.ts +29 -0
- package/dist/dashboard/constants/permissions.ts +41 -0
- package/dist/dashboard/constants/placeholders.ts +77 -0
- package/dist/dashboard/constants/routes.ts +12 -0
- package/dist/dashboard/constants/run-status.ts +1 -0
- package/dist/dashboard/constants/sentinel-values.ts +12 -0
- package/dist/dashboard/constants/step-configs.ts +9 -0
- package/dist/dashboard/constants/step-mappings.ts +170 -0
- package/dist/dashboard/constants/steps.ts +37 -0
- package/dist/dashboard/constants/toast-messages.ts +149 -0
- package/dist/dashboard/constants/triggers.ts +5 -0
- package/dist/dashboard/constants/ui-config.ts +139 -0
- package/dist/dashboard/constants/ui-dimensions.ts +145 -0
- package/dist/dashboard/constants/ui-states.ts +28 -0
- package/dist/dashboard/constants/ui-types.ts +85 -0
- package/dist/dashboard/constants/validation-patterns.ts +26 -0
- package/dist/dashboard/gql/gql.ts +370 -0
- package/dist/dashboard/gql/graphql.ts +10378 -0
- package/dist/dashboard/gql/index.ts +1 -0
- package/dist/dashboard/hooks/api/index.ts +115 -0
- package/dist/dashboard/hooks/api/mutation-helpers.ts +34 -0
- package/dist/dashboard/hooks/api/use-adapters.ts +92 -0
- package/dist/dashboard/hooks/api/use-config-options.ts +513 -0
- package/dist/dashboard/hooks/api/use-connections.ts +84 -0
- package/dist/dashboard/hooks/api/use-entity-field-schemas.ts +99 -0
- package/dist/dashboard/hooks/api/use-entity-loaders.ts +45 -0
- package/dist/dashboard/hooks/api/use-hooks.ts +68 -0
- package/dist/dashboard/hooks/api/use-logs.ts +102 -0
- package/dist/dashboard/hooks/api/use-pipeline-runs.ts +221 -0
- package/dist/dashboard/hooks/api/use-pipelines.ts +279 -0
- package/dist/dashboard/hooks/api/use-queues.ts +141 -0
- package/dist/dashboard/hooks/api/use-secrets.ts +75 -0
- package/dist/dashboard/hooks/api/use-settings.ts +55 -0
- package/dist/dashboard/hooks/api/use-step-tester.ts +79 -0
- package/dist/dashboard/hooks/index.ts +13 -0
- package/dist/dashboard/hooks/use-adapter-catalog.ts +253 -0
- package/dist/dashboard/hooks/use-export-templates.ts +80 -0
- package/dist/dashboard/hooks/use-import-templates.ts +139 -0
- package/dist/dashboard/hooks/use-load-more.ts +29 -0
- package/dist/dashboard/hooks/use-stable-keys.ts +54 -0
- package/dist/dashboard/hooks/use-trigger-types.ts +100 -0
- package/dist/dashboard/hooks/use-wizard-navigation.ts +128 -0
- package/dist/dashboard/index.tsx +55 -0
- package/dist/dashboard/routes/adapters/AdapterCard.tsx +102 -0
- package/dist/dashboard/routes/adapters/AdapterConstants.tsx +20 -0
- package/dist/dashboard/routes/adapters/AdapterDetail.tsx +208 -0
- package/dist/dashboard/routes/adapters/AdapterTypeSection.tsx +105 -0
- package/dist/dashboard/routes/adapters/AdaptersPage.tsx +276 -0
- package/dist/dashboard/routes/adapters/AdaptersTable.tsx +107 -0
- package/dist/dashboard/routes/adapters/index.ts +1 -0
- package/dist/dashboard/routes/connections/ConnectionDetail.tsx +218 -0
- package/dist/dashboard/routes/connections/ConnectionsList.tsx +34 -0
- package/dist/dashboard/routes/connections/index.ts +2 -0
- package/dist/dashboard/routes/hooks/Hooks.tsx +425 -0
- package/dist/dashboard/routes/hooks/hook-stages.ts +52 -0
- package/dist/dashboard/routes/hooks/index.ts +1 -0
- package/dist/dashboard/routes/index.ts +8 -0
- package/dist/dashboard/routes/logs/Logs.tsx +93 -0
- package/dist/dashboard/routes/logs/components/LogDetailDrawer.tsx +118 -0
- package/dist/dashboard/routes/logs/components/LogExplorerTab.tsx +367 -0
- package/dist/dashboard/routes/logs/components/LogLevelBadge.tsx +34 -0
- package/dist/dashboard/routes/logs/components/LogTableRow.tsx +70 -0
- package/dist/dashboard/routes/logs/components/LogsOverviewTab.tsx +178 -0
- package/dist/dashboard/routes/logs/components/RealtimeLogTab.tsx +122 -0
- package/dist/dashboard/routes/logs/index.ts +1 -0
- package/dist/dashboard/routes/pipelines/ErrorAuditList.tsx +39 -0
- package/dist/dashboard/routes/pipelines/ExportWizardPage.tsx +96 -0
- package/dist/dashboard/routes/pipelines/ImportWizardPage.tsx +104 -0
- package/dist/dashboard/routes/pipelines/PipelineDetail.tsx +211 -0
- package/dist/dashboard/routes/pipelines/PipelineRunsBlock.tsx +377 -0
- package/dist/dashboard/routes/pipelines/PipelinesList.tsx +87 -0
- package/dist/dashboard/routes/pipelines/RetryPatchHelper.tsx +51 -0
- package/dist/dashboard/routes/pipelines/RunDetailsPanel.tsx +238 -0
- package/dist/dashboard/routes/pipelines/RunErrorsList.tsx +116 -0
- package/dist/dashboard/routes/pipelines/StepCounters.tsx +24 -0
- package/dist/dashboard/routes/pipelines/StepSummaryTable.tsx +36 -0
- package/dist/dashboard/routes/pipelines/components/DryRunDialog.tsx +341 -0
- package/dist/dashboard/routes/pipelines/components/PipelineActionButtons.tsx +201 -0
- package/dist/dashboard/routes/pipelines/components/PipelineEditorToggle.tsx +116 -0
- package/dist/dashboard/routes/pipelines/components/PipelineFormFields.tsx +156 -0
- package/dist/dashboard/routes/pipelines/components/PipelineWebhookInfo.tsx +111 -0
- package/dist/dashboard/routes/pipelines/components/ReviewActionsPanel.tsx +342 -0
- package/dist/dashboard/routes/pipelines/components/ValidationPanel.tsx +121 -0
- package/dist/dashboard/routes/pipelines/components/VersionHistoryDialog.tsx +131 -0
- package/dist/dashboard/routes/pipelines/components/index.ts +25 -0
- package/dist/dashboard/routes/pipelines/hooks/index.ts +1 -0
- package/dist/dashboard/routes/pipelines/hooks/use-pipeline-validation.ts +114 -0
- package/dist/dashboard/routes/pipelines/index.ts +4 -0
- package/dist/dashboard/routes/pipelines/utils/index.ts +1 -0
- package/dist/dashboard/routes/pipelines/utils/pipeline-conversion.ts +261 -0
- package/dist/dashboard/routes/queues/ConsumersTable.tsx +134 -0
- package/dist/dashboard/routes/queues/DeadLettersTable.tsx +118 -0
- package/dist/dashboard/routes/queues/FailedRunsTable.tsx +74 -0
- package/dist/dashboard/routes/queues/QueuesPage.tsx +290 -0
- package/dist/dashboard/routes/queues/index.ts +1 -0
- package/dist/dashboard/routes/queues/types.ts +22 -0
- package/dist/dashboard/routes/secrets/SecretDetail.tsx +278 -0
- package/dist/dashboard/routes/secrets/SecretsList.tsx +34 -0
- package/dist/dashboard/routes/secrets/index.ts +2 -0
- package/dist/dashboard/routes/settings/Settings.tsx +343 -0
- package/dist/dashboard/routes/settings/index.ts +1 -0
- package/dist/dashboard/types/index.ts +89 -0
- package/dist/dashboard/types/pipeline.ts +51 -0
- package/dist/dashboard/types/ui-types.ts +400 -0
- package/dist/dashboard/types/wizard.ts +235 -0
- package/dist/dashboard/utils/adapter-grouping.ts +43 -0
- package/dist/dashboard/utils/column-analysis.ts +11 -0
- package/dist/dashboard/utils/field-preparation.ts +31 -0
- package/dist/dashboard/utils/form-validation.ts +373 -0
- package/dist/dashboard/utils/formatters.ts +92 -0
- package/dist/dashboard/utils/icon-resolver.ts +35 -0
- package/dist/dashboard/utils/index.ts +60 -0
- package/dist/dashboard/utils/query-key-factory.ts +54 -0
- package/dist/dashboard/utils/step-helpers.ts +32 -0
- package/dist/dashboard/utils/string-helpers.ts +4 -0
- package/dist/dashboard/utils/template-helpers.ts +26 -0
- package/dist/dashboard/utils/trigger-sync.ts +138 -0
- package/dist/dashboard/utils/wizard-to-pipeline.ts +569 -0
- package/package.json +2 -2
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
import * as types from './graphql';
|
|
3
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Map of all GraphQL operations in the project.
|
|
7
|
+
*
|
|
8
|
+
* This map has several performance disadvantages:
|
|
9
|
+
* 1. It is not tree-shakeable, so it will include all operations in the project.
|
|
10
|
+
* 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.
|
|
11
|
+
* 3. It does not support dead code elimination, so it will add unused operations.
|
|
12
|
+
*
|
|
13
|
+
* Therefore it is highly recommended to use the babel or swc plugin for production.
|
|
14
|
+
* Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
|
|
15
|
+
*/
|
|
16
|
+
type Documents = {
|
|
17
|
+
"\n query DataHubAdaptersApi {\n dataHubAdapters {\n type\n code\n name\n description\n category\n categoryLabel\n categoryOrder\n schema {\n fields {\n key\n label\n description\n type\n required\n defaultValue\n placeholder\n options {\n value\n label\n }\n group\n dependsOn {\n field\n value\n operator\n }\n validation {\n min\n max\n minLength\n maxLength\n pattern\n patternMessage\n }\n }\n groups {\n id\n label\n description\n }\n }\n icon\n color\n pure\n async\n batchable\n requires\n entityType\n formatType\n patchableFields\n editorType\n summaryTemplate\n wizardHidden\n builtIn\n }\n }\n": typeof types.DataHubAdaptersApiDocument,
|
|
18
|
+
"\n query DataHubConfigOptionsApi {\n dataHubConfigOptions {\n stepTypes { type label description icon color bgColor borderColor inputs outputs category adapterType nodeType }\n loadStrategies { value label description icon }\n conflictStrategies { value label description icon }\n triggerTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } optionsRef } defaultValues configKeyMap wizardScopes }\n fileEncodings { value label description icon }\n csvDelimiters { value label description icon }\n compressionTypes { value label description icon }\n httpMethods { value label description icon }\n authTypes { value label description icon }\n destinationTypes { value label description icon }\n fileFormats { value label extensions mimeTypes supportsPreview requiresClientParser description }\n cleanupStrategies { value label description icon }\n newRecordStrategies { value label description icon }\n validationModes { value label description icon }\n queueTypes { value label description icon }\n vendureEvents { value label description icon category }\n comparisonOperators { value label description valueType noValue example }\n approvalTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n backoffStrategies { value label description icon }\n enrichmentSourceTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n validationRuleTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n exportAdapterCodes { value label adapterCode }\n feedAdapterCodes { value label adapterCode }\n connectionSchemas {\n type\n label\n fields { key label type required placeholder defaultValue description options { value label } }\n httpLike\n }\n destinationSchemas {\n type\n label\n configKey\n message\n fieldMapping\n fields { key label type required placeholder defaultValue description options { value label } }\n }\n hookStages { key label description icon category }\n hookStageCategories { key label color description gridClass order }\n logLevels { value label description icon }\n runModes { value label description icon }\n checkpointStrategies { value label description icon }\n parallelErrorPolicies { value label description icon }\n logPersistenceLevels { value label description icon }\n adapterTypes { value label description icon }\n runStatuses { value label description icon }\n fieldTransformTypes { value label description icon category }\n wizardStrategyMappings { wizardValue label loadStrategy conflictStrategy }\n queryTypeOptions { value label description icon }\n cronPresets { value label description icon }\n ackModes { value label description icon }\n }\n }\n": typeof types.DataHubConfigOptionsApiDocument,
|
|
19
|
+
"\n query DataHubConnectionsForList($options: DataHubConnectionListOptions) {\n dataHubConnections(options: $options) {\n items {\n id\n code\n type\n }\n totalItems\n }\n }\n": typeof types.DataHubConnectionsForListDocument,
|
|
20
|
+
"\n query DataHubConnectionDetailApi($id: ID!) {\n dataHubConnection(id: $id) {\n id\n code\n type\n config\n }\n }\n": typeof types.DataHubConnectionDetailApiDocument,
|
|
21
|
+
"\n mutation CreateDataHubConnectionApi($input: CreateDataHubConnectionInput!) {\n createDataHubConnection(input: $input) {\n id\n code\n }\n }\n": typeof types.CreateDataHubConnectionApiDocument,
|
|
22
|
+
"\n mutation UpdateDataHubConnectionApi($input: UpdateDataHubConnectionInput!) {\n updateDataHubConnection(input: $input) {\n id\n code\n }\n }\n": typeof types.UpdateDataHubConnectionApiDocument,
|
|
23
|
+
"\n mutation DeleteDataHubConnectionApi($id: ID!) {\n deleteDataHubConnection(id: $id) {\n result\n }\n }\n": typeof types.DeleteDataHubConnectionApiDocument,
|
|
24
|
+
"\n query DataHubEntityFieldSchemasApi {\n dataHubLoaderEntitySchemas {\n entityType\n fields {\n key\n label\n type\n required\n readonly\n lookupable\n }\n }\n }\n": typeof types.DataHubEntityFieldSchemasApiDocument,
|
|
25
|
+
"\n query DataHubSupportedEntitiesApi {\n dataHubSupportedEntities {\n code\n name\n description\n supportedOperations\n adapterCode\n }\n }\n": typeof types.DataHubSupportedEntitiesApiDocument,
|
|
26
|
+
"\n query DataHubPipelineHooksApi($pipelineId: ID!) {\n dataHubPipelineHooks(pipelineId: $pipelineId)\n }\n": typeof types.DataHubPipelineHooksApiDocument,
|
|
27
|
+
"\n mutation RunDataHubHookTestApi($pipelineId: ID!, $stage: String!, $payload: JSON) {\n runDataHubHookTest(pipelineId: $pipelineId, stage: $stage, payload: $payload)\n }\n": typeof types.RunDataHubHookTestApiDocument,
|
|
28
|
+
"\n query DataHubEventsApi($limit: Int) {\n dataHubEvents(limit: $limit) {\n name\n createdAt\n payload\n }\n }\n": typeof types.DataHubEventsApiDocument,
|
|
29
|
+
"\n query DataHubLogsApi($options: DataHubLogListOptions) {\n dataHubLogs(options: $options) {\n items {\n id\n createdAt\n level\n message\n stepKey\n context\n metadata\n pipelineId\n pipeline {\n id\n code\n name\n }\n runId\n durationMs\n recordsProcessed\n recordsFailed\n }\n totalItems\n }\n }\n": typeof types.DataHubLogsApiDocument,
|
|
30
|
+
"\n query DataHubLogStatsApi($pipelineId: ID) {\n dataHubLogStats(pipelineId: $pipelineId) {\n total\n byLevel {\n DEBUG\n INFO\n WARN\n ERROR\n }\n errorsToday\n warningsToday\n avgDurationMs\n }\n }\n": typeof types.DataHubLogStatsApiDocument,
|
|
31
|
+
"\n query DataHubRecentLogsApi($limit: Int) {\n dataHubRecentLogs(limit: $limit) {\n id\n createdAt\n level\n message\n stepKey\n pipelineId\n pipeline {\n id\n code\n name\n }\n runId\n durationMs\n recordsProcessed\n recordsFailed\n }\n }\n": typeof types.DataHubRecentLogsApiDocument,
|
|
32
|
+
"\n query DataHubPipelineRunsApi($pipelineId: ID, $options: DataHubPipelineRunListOptions) {\n dataHubPipelineRuns(pipelineId: $pipelineId, options: $options) {\n items {\n id\n status\n startedAt\n finishedAt\n metrics\n }\n totalItems\n }\n }\n": typeof types.DataHubPipelineRunsApiDocument,
|
|
33
|
+
"\n query DataHubPipelineRunDetailApi($id: ID!) {\n dataHubPipelineRun(id: $id) {\n id\n status\n startedAt\n finishedAt\n metrics\n error\n startedByUserId\n pipeline {\n id\n code\n name\n }\n }\n }\n": typeof types.DataHubPipelineRunDetailApiDocument,
|
|
34
|
+
"\n query DataHubRunErrorsApi($runId: ID!) {\n dataHubRunErrors(runId: $runId) {\n id\n stepKey\n message\n payload\n }\n }\n": typeof types.DataHubRunErrorsApiDocument,
|
|
35
|
+
"\n mutation CancelDataHubPipelineRunApi($id: ID!) {\n cancelDataHubPipelineRun(id: $id) {\n id\n status\n }\n }\n": typeof types.CancelDataHubPipelineRunApiDocument,
|
|
36
|
+
"\n mutation RetryDataHubRecordApi($errorId: ID!, $patch: JSON) {\n retryDataHubRecord(errorId: $errorId, patch: $patch)\n }\n": typeof types.RetryDataHubRecordApiDocument,
|
|
37
|
+
"\n mutation ApproveDataHubGateApi($runId: ID!, $stepKey: String!) {\n approveDataHubGate(runId: $runId, stepKey: $stepKey) {\n success\n message\n run {\n id\n status\n }\n }\n }\n": typeof types.ApproveDataHubGateApiDocument,
|
|
38
|
+
"\n mutation RejectDataHubGateApi($runId: ID!, $stepKey: String!) {\n rejectDataHubGate(runId: $runId, stepKey: $stepKey) {\n success\n message\n run {\n id\n status\n }\n }\n }\n": typeof types.RejectDataHubGateApiDocument,
|
|
39
|
+
"\n query DataHubRecordRetryAuditsApi($errorId: ID!) {\n dataHubRecordRetryAudits(errorId: $errorId) {\n id\n createdAt\n userId\n previousPayload\n patch\n resultingPayload\n }\n }\n": typeof types.DataHubRecordRetryAuditsApiDocument,
|
|
40
|
+
"\n query DataHubPipelinesForList($options: DataHubPipelineListOptions) {\n dataHubPipelines(options: $options) {\n items {\n id\n code\n name\n enabled\n status\n updatedAt\n }\n totalItems\n }\n }\n": typeof types.DataHubPipelinesForListDocument,
|
|
41
|
+
"\n query DataHubPipelineDetail($id: ID!) {\n dataHubPipeline(id: $id) {\n id\n createdAt\n updatedAt\n code\n name\n enabled\n status\n version\n publishedAt\n definition\n }\n }\n": typeof types.DataHubPipelineDetailDocument,
|
|
42
|
+
"\n mutation CreateDataHubPipelineApi($input: CreateDataHubPipelineInput!) {\n createDataHubPipeline(input: $input) {\n id\n code\n name\n }\n }\n": typeof types.CreateDataHubPipelineApiDocument,
|
|
43
|
+
"\n mutation UpdateDataHubPipelineApi($input: UpdateDataHubPipelineInput!) {\n updateDataHubPipeline(input: $input) {\n id\n code\n name\n }\n }\n": typeof types.UpdateDataHubPipelineApiDocument,
|
|
44
|
+
"\n mutation DeleteDataHubPipelineApi($id: ID!) {\n deleteDataHubPipeline(id: $id) {\n result\n }\n }\n": typeof types.DeleteDataHubPipelineApiDocument,
|
|
45
|
+
"\n mutation RunDataHubPipelineApi($pipelineId: ID!) {\n startDataHubPipelineRun(pipelineId: $pipelineId) {\n id\n status\n }\n }\n": typeof types.RunDataHubPipelineApiDocument,
|
|
46
|
+
"\n query ValidateDataHubPipelineDefinitionApi($definition: JSON!, $level: String) {\n validateDataHubPipelineDefinition(definition: $definition, level: $level) {\n isValid\n issues {\n message\n stepKey\n reason\n field\n }\n warnings {\n message\n stepKey\n reason\n field\n }\n level\n }\n }\n": typeof types.ValidateDataHubPipelineDefinitionApiDocument,
|
|
47
|
+
"\n mutation DryRunDataHubPipelineApi($pipelineId: ID!) {\n startDataHubPipelineDryRun(pipelineId: $pipelineId) {\n metrics\n notes\n sampleRecords { step before after }\n }\n }\n": typeof types.DryRunDataHubPipelineApiDocument,
|
|
48
|
+
"\n query DataHubPipelineTimelineApi($pipelineId: ID!, $limit: Int) {\n dataHubPipelineTimeline(pipelineId: $pipelineId, limit: $limit) {\n revision {\n id\n createdAt\n version\n type\n commitMessage\n authorName\n changesSummary\n isLatest\n isCurrent\n }\n runCount\n lastRunAt\n lastRunStatus\n }\n }\n": typeof types.DataHubPipelineTimelineApiDocument,
|
|
49
|
+
"\n mutation SubmitDataHubPipelineForReviewApi($id: ID!) {\n submitDataHubPipelineForReview(id: $id) {\n id\n status\n }\n }\n": typeof types.SubmitDataHubPipelineForReviewApiDocument,
|
|
50
|
+
"\n mutation ApproveDataHubPipelineApi($id: ID!) {\n approveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n": typeof types.ApproveDataHubPipelineApiDocument,
|
|
51
|
+
"\n mutation RejectDataHubPipelineReviewApi($id: ID!) {\n rejectDataHubPipelineReview(id: $id) {\n id\n status\n }\n }\n": typeof types.RejectDataHubPipelineReviewApiDocument,
|
|
52
|
+
"\n mutation PublishDataHubPipelineApi($id: ID!) {\n publishDataHubPipeline(id: $id) {\n id\n status\n publishedAt\n }\n }\n": typeof types.PublishDataHubPipelineApiDocument,
|
|
53
|
+
"\n mutation ArchiveDataHubPipelineApi($id: ID!) {\n archiveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n": typeof types.ArchiveDataHubPipelineApiDocument,
|
|
54
|
+
"\n query DataHubQueueStatsApi {\n dataHubQueueStats {\n pending\n running\n failed\n completedToday\n byPipeline {\n code\n pending\n running\n }\n recentFailed {\n id\n code\n finishedAt\n error\n }\n }\n }\n": typeof types.DataHubQueueStatsApiDocument,
|
|
55
|
+
"\n query DataHubDeadLettersApi {\n dataHubDeadLetters {\n id\n stepKey\n message\n payload\n }\n }\n": typeof types.DataHubDeadLettersApiDocument,
|
|
56
|
+
"\n query DataHubConsumersApi {\n dataHubConsumers {\n pipelineCode\n queueName\n isActive\n messagesProcessed\n messagesFailed\n lastMessageAt\n }\n }\n": typeof types.DataHubConsumersApiDocument,
|
|
57
|
+
"\n mutation StartDataHubConsumerApi($pipelineCode: String!) {\n startDataHubConsumer(pipelineCode: $pipelineCode)\n }\n": typeof types.StartDataHubConsumerApiDocument,
|
|
58
|
+
"\n mutation StopDataHubConsumerApi($pipelineCode: String!) {\n stopDataHubConsumer(pipelineCode: $pipelineCode)\n }\n": typeof types.StopDataHubConsumerApiDocument,
|
|
59
|
+
"\n mutation MarkDataHubDeadLetterApi($id: ID!, $deadLetter: Boolean!) {\n markDataHubDeadLetter(id: $id, deadLetter: $deadLetter)\n }\n": typeof types.MarkDataHubDeadLetterApiDocument,
|
|
60
|
+
"\n query DataHubSecretsForList($options: DataHubSecretListOptions) {\n dataHubSecrets(options: $options) {\n items {\n id\n code\n provider\n }\n totalItems\n }\n }\n": typeof types.DataHubSecretsForListDocument,
|
|
61
|
+
"\n query DataHubSecretDetailApi($id: ID!) {\n dataHubSecret(id: $id) {\n id\n code\n provider\n value\n metadata\n }\n }\n": typeof types.DataHubSecretDetailApiDocument,
|
|
62
|
+
"\n mutation CreateDataHubSecretApi($input: CreateDataHubSecretInput!) {\n createDataHubSecret(input: $input) {\n id\n code\n }\n }\n": typeof types.CreateDataHubSecretApiDocument,
|
|
63
|
+
"\n mutation UpdateDataHubSecretApi($input: UpdateDataHubSecretInput!) {\n updateDataHubSecret(input: $input) {\n id\n code\n }\n }\n": typeof types.UpdateDataHubSecretApiDocument,
|
|
64
|
+
"\n mutation DeleteDataHubSecretApi($id: ID!) {\n deleteDataHubSecret(id: $id) {\n result\n }\n }\n": typeof types.DeleteDataHubSecretApiDocument,
|
|
65
|
+
"\n query DataHubSettingsApi {\n dataHubSettings {\n retentionDaysRuns\n retentionDaysErrors\n retentionDaysLogs\n logPersistenceLevel\n }\n }\n": typeof types.DataHubSettingsApiDocument,
|
|
66
|
+
"\n mutation UpdateDataHubSettingsApi($input: DataHubSettingsInput!) {\n updateDataHubSettings(input: $input) {\n retentionDaysRuns\n retentionDaysErrors\n retentionDaysLogs\n logPersistenceLevel\n }\n }\n": typeof types.UpdateDataHubSettingsApiDocument,
|
|
67
|
+
"\n mutation PreviewDataHubExtractApi($step: JSON!, $limit: Int) {\n previewDataHubExtract(step: $step, limit: $limit) { records }\n }\n": typeof types.PreviewDataHubExtractApiDocument,
|
|
68
|
+
"\n mutation SimulateDataHubTransformApi($step: JSON!, $records: JSON!) {\n simulateDataHubTransform(step: $step, records: $records)\n }\n": typeof types.SimulateDataHubTransformApiDocument,
|
|
69
|
+
"\n mutation SimulateDataHubLoadApi($step: JSON!, $records: JSON!) {\n simulateDataHubLoad(step: $step, records: $records)\n }\n": typeof types.SimulateDataHubLoadApiDocument,
|
|
70
|
+
"\n mutation SimulateDataHubValidateApi($step: JSON!, $records: JSON!) {\n simulateDataHubValidate(step: $step, records: $records) {\n records\n summary { input passed failed passRate }\n }\n }\n": typeof types.SimulateDataHubValidateApiDocument,
|
|
71
|
+
"\n mutation PreviewDataHubFeedApi($feedCode: String!, $limit: Int) {\n previewDataHubFeed(feedCode: $feedCode, limit: $limit) { content contentType itemCount }\n }\n": typeof types.PreviewDataHubFeedApiDocument,
|
|
72
|
+
};
|
|
73
|
+
const documents: Documents = {
|
|
74
|
+
"\n query DataHubAdaptersApi {\n dataHubAdapters {\n type\n code\n name\n description\n category\n categoryLabel\n categoryOrder\n schema {\n fields {\n key\n label\n description\n type\n required\n defaultValue\n placeholder\n options {\n value\n label\n }\n group\n dependsOn {\n field\n value\n operator\n }\n validation {\n min\n max\n minLength\n maxLength\n pattern\n patternMessage\n }\n }\n groups {\n id\n label\n description\n }\n }\n icon\n color\n pure\n async\n batchable\n requires\n entityType\n formatType\n patchableFields\n editorType\n summaryTemplate\n wizardHidden\n builtIn\n }\n }\n": types.DataHubAdaptersApiDocument,
|
|
75
|
+
"\n query DataHubConfigOptionsApi {\n dataHubConfigOptions {\n stepTypes { type label description icon color bgColor borderColor inputs outputs category adapterType nodeType }\n loadStrategies { value label description icon }\n conflictStrategies { value label description icon }\n triggerTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } optionsRef } defaultValues configKeyMap wizardScopes }\n fileEncodings { value label description icon }\n csvDelimiters { value label description icon }\n compressionTypes { value label description icon }\n httpMethods { value label description icon }\n authTypes { value label description icon }\n destinationTypes { value label description icon }\n fileFormats { value label extensions mimeTypes supportsPreview requiresClientParser description }\n cleanupStrategies { value label description icon }\n newRecordStrategies { value label description icon }\n validationModes { value label description icon }\n queueTypes { value label description icon }\n vendureEvents { value label description icon category }\n comparisonOperators { value label description valueType noValue example }\n approvalTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n backoffStrategies { value label description icon }\n enrichmentSourceTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n validationRuleTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n exportAdapterCodes { value label adapterCode }\n feedAdapterCodes { value label adapterCode }\n connectionSchemas {\n type\n label\n fields { key label type required placeholder defaultValue description options { value label } }\n httpLike\n }\n destinationSchemas {\n type\n label\n configKey\n message\n fieldMapping\n fields { key label type required placeholder defaultValue description options { value label } }\n }\n hookStages { key label description icon category }\n hookStageCategories { key label color description gridClass order }\n logLevels { value label description icon }\n runModes { value label description icon }\n checkpointStrategies { value label description icon }\n parallelErrorPolicies { value label description icon }\n logPersistenceLevels { value label description icon }\n adapterTypes { value label description icon }\n runStatuses { value label description icon }\n fieldTransformTypes { value label description icon category }\n wizardStrategyMappings { wizardValue label loadStrategy conflictStrategy }\n queryTypeOptions { value label description icon }\n cronPresets { value label description icon }\n ackModes { value label description icon }\n }\n }\n": types.DataHubConfigOptionsApiDocument,
|
|
76
|
+
"\n query DataHubConnectionsForList($options: DataHubConnectionListOptions) {\n dataHubConnections(options: $options) {\n items {\n id\n code\n type\n }\n totalItems\n }\n }\n": types.DataHubConnectionsForListDocument,
|
|
77
|
+
"\n query DataHubConnectionDetailApi($id: ID!) {\n dataHubConnection(id: $id) {\n id\n code\n type\n config\n }\n }\n": types.DataHubConnectionDetailApiDocument,
|
|
78
|
+
"\n mutation CreateDataHubConnectionApi($input: CreateDataHubConnectionInput!) {\n createDataHubConnection(input: $input) {\n id\n code\n }\n }\n": types.CreateDataHubConnectionApiDocument,
|
|
79
|
+
"\n mutation UpdateDataHubConnectionApi($input: UpdateDataHubConnectionInput!) {\n updateDataHubConnection(input: $input) {\n id\n code\n }\n }\n": types.UpdateDataHubConnectionApiDocument,
|
|
80
|
+
"\n mutation DeleteDataHubConnectionApi($id: ID!) {\n deleteDataHubConnection(id: $id) {\n result\n }\n }\n": types.DeleteDataHubConnectionApiDocument,
|
|
81
|
+
"\n query DataHubEntityFieldSchemasApi {\n dataHubLoaderEntitySchemas {\n entityType\n fields {\n key\n label\n type\n required\n readonly\n lookupable\n }\n }\n }\n": types.DataHubEntityFieldSchemasApiDocument,
|
|
82
|
+
"\n query DataHubSupportedEntitiesApi {\n dataHubSupportedEntities {\n code\n name\n description\n supportedOperations\n adapterCode\n }\n }\n": types.DataHubSupportedEntitiesApiDocument,
|
|
83
|
+
"\n query DataHubPipelineHooksApi($pipelineId: ID!) {\n dataHubPipelineHooks(pipelineId: $pipelineId)\n }\n": types.DataHubPipelineHooksApiDocument,
|
|
84
|
+
"\n mutation RunDataHubHookTestApi($pipelineId: ID!, $stage: String!, $payload: JSON) {\n runDataHubHookTest(pipelineId: $pipelineId, stage: $stage, payload: $payload)\n }\n": types.RunDataHubHookTestApiDocument,
|
|
85
|
+
"\n query DataHubEventsApi($limit: Int) {\n dataHubEvents(limit: $limit) {\n name\n createdAt\n payload\n }\n }\n": types.DataHubEventsApiDocument,
|
|
86
|
+
"\n query DataHubLogsApi($options: DataHubLogListOptions) {\n dataHubLogs(options: $options) {\n items {\n id\n createdAt\n level\n message\n stepKey\n context\n metadata\n pipelineId\n pipeline {\n id\n code\n name\n }\n runId\n durationMs\n recordsProcessed\n recordsFailed\n }\n totalItems\n }\n }\n": types.DataHubLogsApiDocument,
|
|
87
|
+
"\n query DataHubLogStatsApi($pipelineId: ID) {\n dataHubLogStats(pipelineId: $pipelineId) {\n total\n byLevel {\n DEBUG\n INFO\n WARN\n ERROR\n }\n errorsToday\n warningsToday\n avgDurationMs\n }\n }\n": types.DataHubLogStatsApiDocument,
|
|
88
|
+
"\n query DataHubRecentLogsApi($limit: Int) {\n dataHubRecentLogs(limit: $limit) {\n id\n createdAt\n level\n message\n stepKey\n pipelineId\n pipeline {\n id\n code\n name\n }\n runId\n durationMs\n recordsProcessed\n recordsFailed\n }\n }\n": types.DataHubRecentLogsApiDocument,
|
|
89
|
+
"\n query DataHubPipelineRunsApi($pipelineId: ID, $options: DataHubPipelineRunListOptions) {\n dataHubPipelineRuns(pipelineId: $pipelineId, options: $options) {\n items {\n id\n status\n startedAt\n finishedAt\n metrics\n }\n totalItems\n }\n }\n": types.DataHubPipelineRunsApiDocument,
|
|
90
|
+
"\n query DataHubPipelineRunDetailApi($id: ID!) {\n dataHubPipelineRun(id: $id) {\n id\n status\n startedAt\n finishedAt\n metrics\n error\n startedByUserId\n pipeline {\n id\n code\n name\n }\n }\n }\n": types.DataHubPipelineRunDetailApiDocument,
|
|
91
|
+
"\n query DataHubRunErrorsApi($runId: ID!) {\n dataHubRunErrors(runId: $runId) {\n id\n stepKey\n message\n payload\n }\n }\n": types.DataHubRunErrorsApiDocument,
|
|
92
|
+
"\n mutation CancelDataHubPipelineRunApi($id: ID!) {\n cancelDataHubPipelineRun(id: $id) {\n id\n status\n }\n }\n": types.CancelDataHubPipelineRunApiDocument,
|
|
93
|
+
"\n mutation RetryDataHubRecordApi($errorId: ID!, $patch: JSON) {\n retryDataHubRecord(errorId: $errorId, patch: $patch)\n }\n": types.RetryDataHubRecordApiDocument,
|
|
94
|
+
"\n mutation ApproveDataHubGateApi($runId: ID!, $stepKey: String!) {\n approveDataHubGate(runId: $runId, stepKey: $stepKey) {\n success\n message\n run {\n id\n status\n }\n }\n }\n": types.ApproveDataHubGateApiDocument,
|
|
95
|
+
"\n mutation RejectDataHubGateApi($runId: ID!, $stepKey: String!) {\n rejectDataHubGate(runId: $runId, stepKey: $stepKey) {\n success\n message\n run {\n id\n status\n }\n }\n }\n": types.RejectDataHubGateApiDocument,
|
|
96
|
+
"\n query DataHubRecordRetryAuditsApi($errorId: ID!) {\n dataHubRecordRetryAudits(errorId: $errorId) {\n id\n createdAt\n userId\n previousPayload\n patch\n resultingPayload\n }\n }\n": types.DataHubRecordRetryAuditsApiDocument,
|
|
97
|
+
"\n query DataHubPipelinesForList($options: DataHubPipelineListOptions) {\n dataHubPipelines(options: $options) {\n items {\n id\n code\n name\n enabled\n status\n updatedAt\n }\n totalItems\n }\n }\n": types.DataHubPipelinesForListDocument,
|
|
98
|
+
"\n query DataHubPipelineDetail($id: ID!) {\n dataHubPipeline(id: $id) {\n id\n createdAt\n updatedAt\n code\n name\n enabled\n status\n version\n publishedAt\n definition\n }\n }\n": types.DataHubPipelineDetailDocument,
|
|
99
|
+
"\n mutation CreateDataHubPipelineApi($input: CreateDataHubPipelineInput!) {\n createDataHubPipeline(input: $input) {\n id\n code\n name\n }\n }\n": types.CreateDataHubPipelineApiDocument,
|
|
100
|
+
"\n mutation UpdateDataHubPipelineApi($input: UpdateDataHubPipelineInput!) {\n updateDataHubPipeline(input: $input) {\n id\n code\n name\n }\n }\n": types.UpdateDataHubPipelineApiDocument,
|
|
101
|
+
"\n mutation DeleteDataHubPipelineApi($id: ID!) {\n deleteDataHubPipeline(id: $id) {\n result\n }\n }\n": types.DeleteDataHubPipelineApiDocument,
|
|
102
|
+
"\n mutation RunDataHubPipelineApi($pipelineId: ID!) {\n startDataHubPipelineRun(pipelineId: $pipelineId) {\n id\n status\n }\n }\n": types.RunDataHubPipelineApiDocument,
|
|
103
|
+
"\n query ValidateDataHubPipelineDefinitionApi($definition: JSON!, $level: String) {\n validateDataHubPipelineDefinition(definition: $definition, level: $level) {\n isValid\n issues {\n message\n stepKey\n reason\n field\n }\n warnings {\n message\n stepKey\n reason\n field\n }\n level\n }\n }\n": types.ValidateDataHubPipelineDefinitionApiDocument,
|
|
104
|
+
"\n mutation DryRunDataHubPipelineApi($pipelineId: ID!) {\n startDataHubPipelineDryRun(pipelineId: $pipelineId) {\n metrics\n notes\n sampleRecords { step before after }\n }\n }\n": types.DryRunDataHubPipelineApiDocument,
|
|
105
|
+
"\n query DataHubPipelineTimelineApi($pipelineId: ID!, $limit: Int) {\n dataHubPipelineTimeline(pipelineId: $pipelineId, limit: $limit) {\n revision {\n id\n createdAt\n version\n type\n commitMessage\n authorName\n changesSummary\n isLatest\n isCurrent\n }\n runCount\n lastRunAt\n lastRunStatus\n }\n }\n": types.DataHubPipelineTimelineApiDocument,
|
|
106
|
+
"\n mutation SubmitDataHubPipelineForReviewApi($id: ID!) {\n submitDataHubPipelineForReview(id: $id) {\n id\n status\n }\n }\n": types.SubmitDataHubPipelineForReviewApiDocument,
|
|
107
|
+
"\n mutation ApproveDataHubPipelineApi($id: ID!) {\n approveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n": types.ApproveDataHubPipelineApiDocument,
|
|
108
|
+
"\n mutation RejectDataHubPipelineReviewApi($id: ID!) {\n rejectDataHubPipelineReview(id: $id) {\n id\n status\n }\n }\n": types.RejectDataHubPipelineReviewApiDocument,
|
|
109
|
+
"\n mutation PublishDataHubPipelineApi($id: ID!) {\n publishDataHubPipeline(id: $id) {\n id\n status\n publishedAt\n }\n }\n": types.PublishDataHubPipelineApiDocument,
|
|
110
|
+
"\n mutation ArchiveDataHubPipelineApi($id: ID!) {\n archiveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n": types.ArchiveDataHubPipelineApiDocument,
|
|
111
|
+
"\n query DataHubQueueStatsApi {\n dataHubQueueStats {\n pending\n running\n failed\n completedToday\n byPipeline {\n code\n pending\n running\n }\n recentFailed {\n id\n code\n finishedAt\n error\n }\n }\n }\n": types.DataHubQueueStatsApiDocument,
|
|
112
|
+
"\n query DataHubDeadLettersApi {\n dataHubDeadLetters {\n id\n stepKey\n message\n payload\n }\n }\n": types.DataHubDeadLettersApiDocument,
|
|
113
|
+
"\n query DataHubConsumersApi {\n dataHubConsumers {\n pipelineCode\n queueName\n isActive\n messagesProcessed\n messagesFailed\n lastMessageAt\n }\n }\n": types.DataHubConsumersApiDocument,
|
|
114
|
+
"\n mutation StartDataHubConsumerApi($pipelineCode: String!) {\n startDataHubConsumer(pipelineCode: $pipelineCode)\n }\n": types.StartDataHubConsumerApiDocument,
|
|
115
|
+
"\n mutation StopDataHubConsumerApi($pipelineCode: String!) {\n stopDataHubConsumer(pipelineCode: $pipelineCode)\n }\n": types.StopDataHubConsumerApiDocument,
|
|
116
|
+
"\n mutation MarkDataHubDeadLetterApi($id: ID!, $deadLetter: Boolean!) {\n markDataHubDeadLetter(id: $id, deadLetter: $deadLetter)\n }\n": types.MarkDataHubDeadLetterApiDocument,
|
|
117
|
+
"\n query DataHubSecretsForList($options: DataHubSecretListOptions) {\n dataHubSecrets(options: $options) {\n items {\n id\n code\n provider\n }\n totalItems\n }\n }\n": types.DataHubSecretsForListDocument,
|
|
118
|
+
"\n query DataHubSecretDetailApi($id: ID!) {\n dataHubSecret(id: $id) {\n id\n code\n provider\n value\n metadata\n }\n }\n": types.DataHubSecretDetailApiDocument,
|
|
119
|
+
"\n mutation CreateDataHubSecretApi($input: CreateDataHubSecretInput!) {\n createDataHubSecret(input: $input) {\n id\n code\n }\n }\n": types.CreateDataHubSecretApiDocument,
|
|
120
|
+
"\n mutation UpdateDataHubSecretApi($input: UpdateDataHubSecretInput!) {\n updateDataHubSecret(input: $input) {\n id\n code\n }\n }\n": types.UpdateDataHubSecretApiDocument,
|
|
121
|
+
"\n mutation DeleteDataHubSecretApi($id: ID!) {\n deleteDataHubSecret(id: $id) {\n result\n }\n }\n": types.DeleteDataHubSecretApiDocument,
|
|
122
|
+
"\n query DataHubSettingsApi {\n dataHubSettings {\n retentionDaysRuns\n retentionDaysErrors\n retentionDaysLogs\n logPersistenceLevel\n }\n }\n": types.DataHubSettingsApiDocument,
|
|
123
|
+
"\n mutation UpdateDataHubSettingsApi($input: DataHubSettingsInput!) {\n updateDataHubSettings(input: $input) {\n retentionDaysRuns\n retentionDaysErrors\n retentionDaysLogs\n logPersistenceLevel\n }\n }\n": types.UpdateDataHubSettingsApiDocument,
|
|
124
|
+
"\n mutation PreviewDataHubExtractApi($step: JSON!, $limit: Int) {\n previewDataHubExtract(step: $step, limit: $limit) { records }\n }\n": types.PreviewDataHubExtractApiDocument,
|
|
125
|
+
"\n mutation SimulateDataHubTransformApi($step: JSON!, $records: JSON!) {\n simulateDataHubTransform(step: $step, records: $records)\n }\n": types.SimulateDataHubTransformApiDocument,
|
|
126
|
+
"\n mutation SimulateDataHubLoadApi($step: JSON!, $records: JSON!) {\n simulateDataHubLoad(step: $step, records: $records)\n }\n": types.SimulateDataHubLoadApiDocument,
|
|
127
|
+
"\n mutation SimulateDataHubValidateApi($step: JSON!, $records: JSON!) {\n simulateDataHubValidate(step: $step, records: $records) {\n records\n summary { input passed failed passRate }\n }\n }\n": types.SimulateDataHubValidateApiDocument,
|
|
128
|
+
"\n mutation PreviewDataHubFeedApi($feedCode: String!, $limit: Int) {\n previewDataHubFeed(feedCode: $feedCode, limit: $limit) { content contentType itemCount }\n }\n": types.PreviewDataHubFeedApiDocument,
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
133
|
+
*
|
|
134
|
+
*
|
|
135
|
+
* @example
|
|
136
|
+
* ```ts
|
|
137
|
+
* const query = graphql(`query GetUser($id: ID!) { user(id: $id) { name } }`);
|
|
138
|
+
* ```
|
|
139
|
+
*
|
|
140
|
+
* The query argument is unknown!
|
|
141
|
+
* Please regenerate the types.
|
|
142
|
+
*/
|
|
143
|
+
export function graphql(source: string): unknown;
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
147
|
+
*/
|
|
148
|
+
export function graphql(source: "\n query DataHubAdaptersApi {\n dataHubAdapters {\n type\n code\n name\n description\n category\n categoryLabel\n categoryOrder\n schema {\n fields {\n key\n label\n description\n type\n required\n defaultValue\n placeholder\n options {\n value\n label\n }\n group\n dependsOn {\n field\n value\n operator\n }\n validation {\n min\n max\n minLength\n maxLength\n pattern\n patternMessage\n }\n }\n groups {\n id\n label\n description\n }\n }\n icon\n color\n pure\n async\n batchable\n requires\n entityType\n formatType\n patchableFields\n editorType\n summaryTemplate\n wizardHidden\n builtIn\n }\n }\n"): (typeof documents)["\n query DataHubAdaptersApi {\n dataHubAdapters {\n type\n code\n name\n description\n category\n categoryLabel\n categoryOrder\n schema {\n fields {\n key\n label\n description\n type\n required\n defaultValue\n placeholder\n options {\n value\n label\n }\n group\n dependsOn {\n field\n value\n operator\n }\n validation {\n min\n max\n minLength\n maxLength\n pattern\n patternMessage\n }\n }\n groups {\n id\n label\n description\n }\n }\n icon\n color\n pure\n async\n batchable\n requires\n entityType\n formatType\n patchableFields\n editorType\n summaryTemplate\n wizardHidden\n builtIn\n }\n }\n"];
|
|
149
|
+
/**
|
|
150
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
151
|
+
*/
|
|
152
|
+
export function graphql(source: "\n query DataHubConfigOptionsApi {\n dataHubConfigOptions {\n stepTypes { type label description icon color bgColor borderColor inputs outputs category adapterType nodeType }\n loadStrategies { value label description icon }\n conflictStrategies { value label description icon }\n triggerTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } optionsRef } defaultValues configKeyMap wizardScopes }\n fileEncodings { value label description icon }\n csvDelimiters { value label description icon }\n compressionTypes { value label description icon }\n httpMethods { value label description icon }\n authTypes { value label description icon }\n destinationTypes { value label description icon }\n fileFormats { value label extensions mimeTypes supportsPreview requiresClientParser description }\n cleanupStrategies { value label description icon }\n newRecordStrategies { value label description icon }\n validationModes { value label description icon }\n queueTypes { value label description icon }\n vendureEvents { value label description icon category }\n comparisonOperators { value label description valueType noValue example }\n approvalTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n backoffStrategies { value label description icon }\n enrichmentSourceTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n validationRuleTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n exportAdapterCodes { value label adapterCode }\n feedAdapterCodes { value label adapterCode }\n connectionSchemas {\n type\n label\n fields { key label type required placeholder defaultValue description options { value label } }\n httpLike\n }\n destinationSchemas {\n type\n label\n configKey\n message\n fieldMapping\n fields { key label type required placeholder defaultValue description options { value label } }\n }\n hookStages { key label description icon category }\n hookStageCategories { key label color description gridClass order }\n logLevels { value label description icon }\n runModes { value label description icon }\n checkpointStrategies { value label description icon }\n parallelErrorPolicies { value label description icon }\n logPersistenceLevels { value label description icon }\n adapterTypes { value label description icon }\n runStatuses { value label description icon }\n fieldTransformTypes { value label description icon category }\n wizardStrategyMappings { wizardValue label loadStrategy conflictStrategy }\n queryTypeOptions { value label description icon }\n cronPresets { value label description icon }\n ackModes { value label description icon }\n }\n }\n"): (typeof documents)["\n query DataHubConfigOptionsApi {\n dataHubConfigOptions {\n stepTypes { type label description icon color bgColor borderColor inputs outputs category adapterType nodeType }\n loadStrategies { value label description icon }\n conflictStrategies { value label description icon }\n triggerTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } optionsRef } defaultValues configKeyMap wizardScopes }\n fileEncodings { value label description icon }\n csvDelimiters { value label description icon }\n compressionTypes { value label description icon }\n httpMethods { value label description icon }\n authTypes { value label description icon }\n destinationTypes { value label description icon }\n fileFormats { value label extensions mimeTypes supportsPreview requiresClientParser description }\n cleanupStrategies { value label description icon }\n newRecordStrategies { value label description icon }\n validationModes { value label description icon }\n queueTypes { value label description icon }\n vendureEvents { value label description icon category }\n comparisonOperators { value label description valueType noValue example }\n approvalTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n backoffStrategies { value label description icon }\n enrichmentSourceTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n validationRuleTypes { value label description icon fields { key label type required placeholder defaultValue description options { value label } } defaultValues }\n exportAdapterCodes { value label adapterCode }\n feedAdapterCodes { value label adapterCode }\n connectionSchemas {\n type\n label\n fields { key label type required placeholder defaultValue description options { value label } }\n httpLike\n }\n destinationSchemas {\n type\n label\n configKey\n message\n fieldMapping\n fields { key label type required placeholder defaultValue description options { value label } }\n }\n hookStages { key label description icon category }\n hookStageCategories { key label color description gridClass order }\n logLevels { value label description icon }\n runModes { value label description icon }\n checkpointStrategies { value label description icon }\n parallelErrorPolicies { value label description icon }\n logPersistenceLevels { value label description icon }\n adapterTypes { value label description icon }\n runStatuses { value label description icon }\n fieldTransformTypes { value label description icon category }\n wizardStrategyMappings { wizardValue label loadStrategy conflictStrategy }\n queryTypeOptions { value label description icon }\n cronPresets { value label description icon }\n ackModes { value label description icon }\n }\n }\n"];
|
|
153
|
+
/**
|
|
154
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
155
|
+
*/
|
|
156
|
+
export function graphql(source: "\n query DataHubConnectionsForList($options: DataHubConnectionListOptions) {\n dataHubConnections(options: $options) {\n items {\n id\n code\n type\n }\n totalItems\n }\n }\n"): (typeof documents)["\n query DataHubConnectionsForList($options: DataHubConnectionListOptions) {\n dataHubConnections(options: $options) {\n items {\n id\n code\n type\n }\n totalItems\n }\n }\n"];
|
|
157
|
+
/**
|
|
158
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
159
|
+
*/
|
|
160
|
+
export function graphql(source: "\n query DataHubConnectionDetailApi($id: ID!) {\n dataHubConnection(id: $id) {\n id\n code\n type\n config\n }\n }\n"): (typeof documents)["\n query DataHubConnectionDetailApi($id: ID!) {\n dataHubConnection(id: $id) {\n id\n code\n type\n config\n }\n }\n"];
|
|
161
|
+
/**
|
|
162
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
163
|
+
*/
|
|
164
|
+
export function graphql(source: "\n mutation CreateDataHubConnectionApi($input: CreateDataHubConnectionInput!) {\n createDataHubConnection(input: $input) {\n id\n code\n }\n }\n"): (typeof documents)["\n mutation CreateDataHubConnectionApi($input: CreateDataHubConnectionInput!) {\n createDataHubConnection(input: $input) {\n id\n code\n }\n }\n"];
|
|
165
|
+
/**
|
|
166
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
167
|
+
*/
|
|
168
|
+
export function graphql(source: "\n mutation UpdateDataHubConnectionApi($input: UpdateDataHubConnectionInput!) {\n updateDataHubConnection(input: $input) {\n id\n code\n }\n }\n"): (typeof documents)["\n mutation UpdateDataHubConnectionApi($input: UpdateDataHubConnectionInput!) {\n updateDataHubConnection(input: $input) {\n id\n code\n }\n }\n"];
|
|
169
|
+
/**
|
|
170
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
171
|
+
*/
|
|
172
|
+
export function graphql(source: "\n mutation DeleteDataHubConnectionApi($id: ID!) {\n deleteDataHubConnection(id: $id) {\n result\n }\n }\n"): (typeof documents)["\n mutation DeleteDataHubConnectionApi($id: ID!) {\n deleteDataHubConnection(id: $id) {\n result\n }\n }\n"];
|
|
173
|
+
/**
|
|
174
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
175
|
+
*/
|
|
176
|
+
export function graphql(source: "\n query DataHubEntityFieldSchemasApi {\n dataHubLoaderEntitySchemas {\n entityType\n fields {\n key\n label\n type\n required\n readonly\n lookupable\n }\n }\n }\n"): (typeof documents)["\n query DataHubEntityFieldSchemasApi {\n dataHubLoaderEntitySchemas {\n entityType\n fields {\n key\n label\n type\n required\n readonly\n lookupable\n }\n }\n }\n"];
|
|
177
|
+
/**
|
|
178
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
179
|
+
*/
|
|
180
|
+
export function graphql(source: "\n query DataHubSupportedEntitiesApi {\n dataHubSupportedEntities {\n code\n name\n description\n supportedOperations\n adapterCode\n }\n }\n"): (typeof documents)["\n query DataHubSupportedEntitiesApi {\n dataHubSupportedEntities {\n code\n name\n description\n supportedOperations\n adapterCode\n }\n }\n"];
|
|
181
|
+
/**
|
|
182
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
183
|
+
*/
|
|
184
|
+
export function graphql(source: "\n query DataHubPipelineHooksApi($pipelineId: ID!) {\n dataHubPipelineHooks(pipelineId: $pipelineId)\n }\n"): (typeof documents)["\n query DataHubPipelineHooksApi($pipelineId: ID!) {\n dataHubPipelineHooks(pipelineId: $pipelineId)\n }\n"];
|
|
185
|
+
/**
|
|
186
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
187
|
+
*/
|
|
188
|
+
export function graphql(source: "\n mutation RunDataHubHookTestApi($pipelineId: ID!, $stage: String!, $payload: JSON) {\n runDataHubHookTest(pipelineId: $pipelineId, stage: $stage, payload: $payload)\n }\n"): (typeof documents)["\n mutation RunDataHubHookTestApi($pipelineId: ID!, $stage: String!, $payload: JSON) {\n runDataHubHookTest(pipelineId: $pipelineId, stage: $stage, payload: $payload)\n }\n"];
|
|
189
|
+
/**
|
|
190
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
191
|
+
*/
|
|
192
|
+
export function graphql(source: "\n query DataHubEventsApi($limit: Int) {\n dataHubEvents(limit: $limit) {\n name\n createdAt\n payload\n }\n }\n"): (typeof documents)["\n query DataHubEventsApi($limit: Int) {\n dataHubEvents(limit: $limit) {\n name\n createdAt\n payload\n }\n }\n"];
|
|
193
|
+
/**
|
|
194
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
195
|
+
*/
|
|
196
|
+
export function graphql(source: "\n query DataHubLogsApi($options: DataHubLogListOptions) {\n dataHubLogs(options: $options) {\n items {\n id\n createdAt\n level\n message\n stepKey\n context\n metadata\n pipelineId\n pipeline {\n id\n code\n name\n }\n runId\n durationMs\n recordsProcessed\n recordsFailed\n }\n totalItems\n }\n }\n"): (typeof documents)["\n query DataHubLogsApi($options: DataHubLogListOptions) {\n dataHubLogs(options: $options) {\n items {\n id\n createdAt\n level\n message\n stepKey\n context\n metadata\n pipelineId\n pipeline {\n id\n code\n name\n }\n runId\n durationMs\n recordsProcessed\n recordsFailed\n }\n totalItems\n }\n }\n"];
|
|
197
|
+
/**
|
|
198
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
199
|
+
*/
|
|
200
|
+
export function graphql(source: "\n query DataHubLogStatsApi($pipelineId: ID) {\n dataHubLogStats(pipelineId: $pipelineId) {\n total\n byLevel {\n DEBUG\n INFO\n WARN\n ERROR\n }\n errorsToday\n warningsToday\n avgDurationMs\n }\n }\n"): (typeof documents)["\n query DataHubLogStatsApi($pipelineId: ID) {\n dataHubLogStats(pipelineId: $pipelineId) {\n total\n byLevel {\n DEBUG\n INFO\n WARN\n ERROR\n }\n errorsToday\n warningsToday\n avgDurationMs\n }\n }\n"];
|
|
201
|
+
/**
|
|
202
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
203
|
+
*/
|
|
204
|
+
export function graphql(source: "\n query DataHubRecentLogsApi($limit: Int) {\n dataHubRecentLogs(limit: $limit) {\n id\n createdAt\n level\n message\n stepKey\n pipelineId\n pipeline {\n id\n code\n name\n }\n runId\n durationMs\n recordsProcessed\n recordsFailed\n }\n }\n"): (typeof documents)["\n query DataHubRecentLogsApi($limit: Int) {\n dataHubRecentLogs(limit: $limit) {\n id\n createdAt\n level\n message\n stepKey\n pipelineId\n pipeline {\n id\n code\n name\n }\n runId\n durationMs\n recordsProcessed\n recordsFailed\n }\n }\n"];
|
|
205
|
+
/**
|
|
206
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
207
|
+
*/
|
|
208
|
+
export function graphql(source: "\n query DataHubPipelineRunsApi($pipelineId: ID, $options: DataHubPipelineRunListOptions) {\n dataHubPipelineRuns(pipelineId: $pipelineId, options: $options) {\n items {\n id\n status\n startedAt\n finishedAt\n metrics\n }\n totalItems\n }\n }\n"): (typeof documents)["\n query DataHubPipelineRunsApi($pipelineId: ID, $options: DataHubPipelineRunListOptions) {\n dataHubPipelineRuns(pipelineId: $pipelineId, options: $options) {\n items {\n id\n status\n startedAt\n finishedAt\n metrics\n }\n totalItems\n }\n }\n"];
|
|
209
|
+
/**
|
|
210
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
211
|
+
*/
|
|
212
|
+
export function graphql(source: "\n query DataHubPipelineRunDetailApi($id: ID!) {\n dataHubPipelineRun(id: $id) {\n id\n status\n startedAt\n finishedAt\n metrics\n error\n startedByUserId\n pipeline {\n id\n code\n name\n }\n }\n }\n"): (typeof documents)["\n query DataHubPipelineRunDetailApi($id: ID!) {\n dataHubPipelineRun(id: $id) {\n id\n status\n startedAt\n finishedAt\n metrics\n error\n startedByUserId\n pipeline {\n id\n code\n name\n }\n }\n }\n"];
|
|
213
|
+
/**
|
|
214
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
215
|
+
*/
|
|
216
|
+
export function graphql(source: "\n query DataHubRunErrorsApi($runId: ID!) {\n dataHubRunErrors(runId: $runId) {\n id\n stepKey\n message\n payload\n }\n }\n"): (typeof documents)["\n query DataHubRunErrorsApi($runId: ID!) {\n dataHubRunErrors(runId: $runId) {\n id\n stepKey\n message\n payload\n }\n }\n"];
|
|
217
|
+
/**
|
|
218
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
219
|
+
*/
|
|
220
|
+
export function graphql(source: "\n mutation CancelDataHubPipelineRunApi($id: ID!) {\n cancelDataHubPipelineRun(id: $id) {\n id\n status\n }\n }\n"): (typeof documents)["\n mutation CancelDataHubPipelineRunApi($id: ID!) {\n cancelDataHubPipelineRun(id: $id) {\n id\n status\n }\n }\n"];
|
|
221
|
+
/**
|
|
222
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
223
|
+
*/
|
|
224
|
+
export function graphql(source: "\n mutation RetryDataHubRecordApi($errorId: ID!, $patch: JSON) {\n retryDataHubRecord(errorId: $errorId, patch: $patch)\n }\n"): (typeof documents)["\n mutation RetryDataHubRecordApi($errorId: ID!, $patch: JSON) {\n retryDataHubRecord(errorId: $errorId, patch: $patch)\n }\n"];
|
|
225
|
+
/**
|
|
226
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
227
|
+
*/
|
|
228
|
+
export function graphql(source: "\n mutation ApproveDataHubGateApi($runId: ID!, $stepKey: String!) {\n approveDataHubGate(runId: $runId, stepKey: $stepKey) {\n success\n message\n run {\n id\n status\n }\n }\n }\n"): (typeof documents)["\n mutation ApproveDataHubGateApi($runId: ID!, $stepKey: String!) {\n approveDataHubGate(runId: $runId, stepKey: $stepKey) {\n success\n message\n run {\n id\n status\n }\n }\n }\n"];
|
|
229
|
+
/**
|
|
230
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
231
|
+
*/
|
|
232
|
+
export function graphql(source: "\n mutation RejectDataHubGateApi($runId: ID!, $stepKey: String!) {\n rejectDataHubGate(runId: $runId, stepKey: $stepKey) {\n success\n message\n run {\n id\n status\n }\n }\n }\n"): (typeof documents)["\n mutation RejectDataHubGateApi($runId: ID!, $stepKey: String!) {\n rejectDataHubGate(runId: $runId, stepKey: $stepKey) {\n success\n message\n run {\n id\n status\n }\n }\n }\n"];
|
|
233
|
+
/**
|
|
234
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
235
|
+
*/
|
|
236
|
+
export function graphql(source: "\n query DataHubRecordRetryAuditsApi($errorId: ID!) {\n dataHubRecordRetryAudits(errorId: $errorId) {\n id\n createdAt\n userId\n previousPayload\n patch\n resultingPayload\n }\n }\n"): (typeof documents)["\n query DataHubRecordRetryAuditsApi($errorId: ID!) {\n dataHubRecordRetryAudits(errorId: $errorId) {\n id\n createdAt\n userId\n previousPayload\n patch\n resultingPayload\n }\n }\n"];
|
|
237
|
+
/**
|
|
238
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
239
|
+
*/
|
|
240
|
+
export function graphql(source: "\n query DataHubPipelinesForList($options: DataHubPipelineListOptions) {\n dataHubPipelines(options: $options) {\n items {\n id\n code\n name\n enabled\n status\n updatedAt\n }\n totalItems\n }\n }\n"): (typeof documents)["\n query DataHubPipelinesForList($options: DataHubPipelineListOptions) {\n dataHubPipelines(options: $options) {\n items {\n id\n code\n name\n enabled\n status\n updatedAt\n }\n totalItems\n }\n }\n"];
|
|
241
|
+
/**
|
|
242
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
243
|
+
*/
|
|
244
|
+
export function graphql(source: "\n query DataHubPipelineDetail($id: ID!) {\n dataHubPipeline(id: $id) {\n id\n createdAt\n updatedAt\n code\n name\n enabled\n status\n version\n publishedAt\n definition\n }\n }\n"): (typeof documents)["\n query DataHubPipelineDetail($id: ID!) {\n dataHubPipeline(id: $id) {\n id\n createdAt\n updatedAt\n code\n name\n enabled\n status\n version\n publishedAt\n definition\n }\n }\n"];
|
|
245
|
+
/**
|
|
246
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
247
|
+
*/
|
|
248
|
+
export function graphql(source: "\n mutation CreateDataHubPipelineApi($input: CreateDataHubPipelineInput!) {\n createDataHubPipeline(input: $input) {\n id\n code\n name\n }\n }\n"): (typeof documents)["\n mutation CreateDataHubPipelineApi($input: CreateDataHubPipelineInput!) {\n createDataHubPipeline(input: $input) {\n id\n code\n name\n }\n }\n"];
|
|
249
|
+
/**
|
|
250
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
251
|
+
*/
|
|
252
|
+
export function graphql(source: "\n mutation UpdateDataHubPipelineApi($input: UpdateDataHubPipelineInput!) {\n updateDataHubPipeline(input: $input) {\n id\n code\n name\n }\n }\n"): (typeof documents)["\n mutation UpdateDataHubPipelineApi($input: UpdateDataHubPipelineInput!) {\n updateDataHubPipeline(input: $input) {\n id\n code\n name\n }\n }\n"];
|
|
253
|
+
/**
|
|
254
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
255
|
+
*/
|
|
256
|
+
export function graphql(source: "\n mutation DeleteDataHubPipelineApi($id: ID!) {\n deleteDataHubPipeline(id: $id) {\n result\n }\n }\n"): (typeof documents)["\n mutation DeleteDataHubPipelineApi($id: ID!) {\n deleteDataHubPipeline(id: $id) {\n result\n }\n }\n"];
|
|
257
|
+
/**
|
|
258
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
259
|
+
*/
|
|
260
|
+
export function graphql(source: "\n mutation RunDataHubPipelineApi($pipelineId: ID!) {\n startDataHubPipelineRun(pipelineId: $pipelineId) {\n id\n status\n }\n }\n"): (typeof documents)["\n mutation RunDataHubPipelineApi($pipelineId: ID!) {\n startDataHubPipelineRun(pipelineId: $pipelineId) {\n id\n status\n }\n }\n"];
|
|
261
|
+
/**
|
|
262
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
263
|
+
*/
|
|
264
|
+
export function graphql(source: "\n query ValidateDataHubPipelineDefinitionApi($definition: JSON!, $level: String) {\n validateDataHubPipelineDefinition(definition: $definition, level: $level) {\n isValid\n issues {\n message\n stepKey\n reason\n field\n }\n warnings {\n message\n stepKey\n reason\n field\n }\n level\n }\n }\n"): (typeof documents)["\n query ValidateDataHubPipelineDefinitionApi($definition: JSON!, $level: String) {\n validateDataHubPipelineDefinition(definition: $definition, level: $level) {\n isValid\n issues {\n message\n stepKey\n reason\n field\n }\n warnings {\n message\n stepKey\n reason\n field\n }\n level\n }\n }\n"];
|
|
265
|
+
/**
|
|
266
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
267
|
+
*/
|
|
268
|
+
export function graphql(source: "\n mutation DryRunDataHubPipelineApi($pipelineId: ID!) {\n startDataHubPipelineDryRun(pipelineId: $pipelineId) {\n metrics\n notes\n sampleRecords { step before after }\n }\n }\n"): (typeof documents)["\n mutation DryRunDataHubPipelineApi($pipelineId: ID!) {\n startDataHubPipelineDryRun(pipelineId: $pipelineId) {\n metrics\n notes\n sampleRecords { step before after }\n }\n }\n"];
|
|
269
|
+
/**
|
|
270
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
271
|
+
*/
|
|
272
|
+
export function graphql(source: "\n query DataHubPipelineTimelineApi($pipelineId: ID!, $limit: Int) {\n dataHubPipelineTimeline(pipelineId: $pipelineId, limit: $limit) {\n revision {\n id\n createdAt\n version\n type\n commitMessage\n authorName\n changesSummary\n isLatest\n isCurrent\n }\n runCount\n lastRunAt\n lastRunStatus\n }\n }\n"): (typeof documents)["\n query DataHubPipelineTimelineApi($pipelineId: ID!, $limit: Int) {\n dataHubPipelineTimeline(pipelineId: $pipelineId, limit: $limit) {\n revision {\n id\n createdAt\n version\n type\n commitMessage\n authorName\n changesSummary\n isLatest\n isCurrent\n }\n runCount\n lastRunAt\n lastRunStatus\n }\n }\n"];
|
|
273
|
+
/**
|
|
274
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
275
|
+
*/
|
|
276
|
+
export function graphql(source: "\n mutation SubmitDataHubPipelineForReviewApi($id: ID!) {\n submitDataHubPipelineForReview(id: $id) {\n id\n status\n }\n }\n"): (typeof documents)["\n mutation SubmitDataHubPipelineForReviewApi($id: ID!) {\n submitDataHubPipelineForReview(id: $id) {\n id\n status\n }\n }\n"];
|
|
277
|
+
/**
|
|
278
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
279
|
+
*/
|
|
280
|
+
export function graphql(source: "\n mutation ApproveDataHubPipelineApi($id: ID!) {\n approveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n"): (typeof documents)["\n mutation ApproveDataHubPipelineApi($id: ID!) {\n approveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n"];
|
|
281
|
+
/**
|
|
282
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
283
|
+
*/
|
|
284
|
+
export function graphql(source: "\n mutation RejectDataHubPipelineReviewApi($id: ID!) {\n rejectDataHubPipelineReview(id: $id) {\n id\n status\n }\n }\n"): (typeof documents)["\n mutation RejectDataHubPipelineReviewApi($id: ID!) {\n rejectDataHubPipelineReview(id: $id) {\n id\n status\n }\n }\n"];
|
|
285
|
+
/**
|
|
286
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
287
|
+
*/
|
|
288
|
+
export function graphql(source: "\n mutation PublishDataHubPipelineApi($id: ID!) {\n publishDataHubPipeline(id: $id) {\n id\n status\n publishedAt\n }\n }\n"): (typeof documents)["\n mutation PublishDataHubPipelineApi($id: ID!) {\n publishDataHubPipeline(id: $id) {\n id\n status\n publishedAt\n }\n }\n"];
|
|
289
|
+
/**
|
|
290
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
291
|
+
*/
|
|
292
|
+
export function graphql(source: "\n mutation ArchiveDataHubPipelineApi($id: ID!) {\n archiveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n"): (typeof documents)["\n mutation ArchiveDataHubPipelineApi($id: ID!) {\n archiveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n"];
|
|
293
|
+
/**
|
|
294
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
295
|
+
*/
|
|
296
|
+
export function graphql(source: "\n query DataHubQueueStatsApi {\n dataHubQueueStats {\n pending\n running\n failed\n completedToday\n byPipeline {\n code\n pending\n running\n }\n recentFailed {\n id\n code\n finishedAt\n error\n }\n }\n }\n"): (typeof documents)["\n query DataHubQueueStatsApi {\n dataHubQueueStats {\n pending\n running\n failed\n completedToday\n byPipeline {\n code\n pending\n running\n }\n recentFailed {\n id\n code\n finishedAt\n error\n }\n }\n }\n"];
|
|
297
|
+
/**
|
|
298
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
299
|
+
*/
|
|
300
|
+
export function graphql(source: "\n query DataHubDeadLettersApi {\n dataHubDeadLetters {\n id\n stepKey\n message\n payload\n }\n }\n"): (typeof documents)["\n query DataHubDeadLettersApi {\n dataHubDeadLetters {\n id\n stepKey\n message\n payload\n }\n }\n"];
|
|
301
|
+
/**
|
|
302
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
303
|
+
*/
|
|
304
|
+
export function graphql(source: "\n query DataHubConsumersApi {\n dataHubConsumers {\n pipelineCode\n queueName\n isActive\n messagesProcessed\n messagesFailed\n lastMessageAt\n }\n }\n"): (typeof documents)["\n query DataHubConsumersApi {\n dataHubConsumers {\n pipelineCode\n queueName\n isActive\n messagesProcessed\n messagesFailed\n lastMessageAt\n }\n }\n"];
|
|
305
|
+
/**
|
|
306
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
307
|
+
*/
|
|
308
|
+
export function graphql(source: "\n mutation StartDataHubConsumerApi($pipelineCode: String!) {\n startDataHubConsumer(pipelineCode: $pipelineCode)\n }\n"): (typeof documents)["\n mutation StartDataHubConsumerApi($pipelineCode: String!) {\n startDataHubConsumer(pipelineCode: $pipelineCode)\n }\n"];
|
|
309
|
+
/**
|
|
310
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
311
|
+
*/
|
|
312
|
+
export function graphql(source: "\n mutation StopDataHubConsumerApi($pipelineCode: String!) {\n stopDataHubConsumer(pipelineCode: $pipelineCode)\n }\n"): (typeof documents)["\n mutation StopDataHubConsumerApi($pipelineCode: String!) {\n stopDataHubConsumer(pipelineCode: $pipelineCode)\n }\n"];
|
|
313
|
+
/**
|
|
314
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
315
|
+
*/
|
|
316
|
+
export function graphql(source: "\n mutation MarkDataHubDeadLetterApi($id: ID!, $deadLetter: Boolean!) {\n markDataHubDeadLetter(id: $id, deadLetter: $deadLetter)\n }\n"): (typeof documents)["\n mutation MarkDataHubDeadLetterApi($id: ID!, $deadLetter: Boolean!) {\n markDataHubDeadLetter(id: $id, deadLetter: $deadLetter)\n }\n"];
|
|
317
|
+
/**
|
|
318
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
319
|
+
*/
|
|
320
|
+
export function graphql(source: "\n query DataHubSecretsForList($options: DataHubSecretListOptions) {\n dataHubSecrets(options: $options) {\n items {\n id\n code\n provider\n }\n totalItems\n }\n }\n"): (typeof documents)["\n query DataHubSecretsForList($options: DataHubSecretListOptions) {\n dataHubSecrets(options: $options) {\n items {\n id\n code\n provider\n }\n totalItems\n }\n }\n"];
|
|
321
|
+
/**
|
|
322
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
323
|
+
*/
|
|
324
|
+
export function graphql(source: "\n query DataHubSecretDetailApi($id: ID!) {\n dataHubSecret(id: $id) {\n id\n code\n provider\n value\n metadata\n }\n }\n"): (typeof documents)["\n query DataHubSecretDetailApi($id: ID!) {\n dataHubSecret(id: $id) {\n id\n code\n provider\n value\n metadata\n }\n }\n"];
|
|
325
|
+
/**
|
|
326
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
327
|
+
*/
|
|
328
|
+
export function graphql(source: "\n mutation CreateDataHubSecretApi($input: CreateDataHubSecretInput!) {\n createDataHubSecret(input: $input) {\n id\n code\n }\n }\n"): (typeof documents)["\n mutation CreateDataHubSecretApi($input: CreateDataHubSecretInput!) {\n createDataHubSecret(input: $input) {\n id\n code\n }\n }\n"];
|
|
329
|
+
/**
|
|
330
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
331
|
+
*/
|
|
332
|
+
export function graphql(source: "\n mutation UpdateDataHubSecretApi($input: UpdateDataHubSecretInput!) {\n updateDataHubSecret(input: $input) {\n id\n code\n }\n }\n"): (typeof documents)["\n mutation UpdateDataHubSecretApi($input: UpdateDataHubSecretInput!) {\n updateDataHubSecret(input: $input) {\n id\n code\n }\n }\n"];
|
|
333
|
+
/**
|
|
334
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
335
|
+
*/
|
|
336
|
+
export function graphql(source: "\n mutation DeleteDataHubSecretApi($id: ID!) {\n deleteDataHubSecret(id: $id) {\n result\n }\n }\n"): (typeof documents)["\n mutation DeleteDataHubSecretApi($id: ID!) {\n deleteDataHubSecret(id: $id) {\n result\n }\n }\n"];
|
|
337
|
+
/**
|
|
338
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
339
|
+
*/
|
|
340
|
+
export function graphql(source: "\n query DataHubSettingsApi {\n dataHubSettings {\n retentionDaysRuns\n retentionDaysErrors\n retentionDaysLogs\n logPersistenceLevel\n }\n }\n"): (typeof documents)["\n query DataHubSettingsApi {\n dataHubSettings {\n retentionDaysRuns\n retentionDaysErrors\n retentionDaysLogs\n logPersistenceLevel\n }\n }\n"];
|
|
341
|
+
/**
|
|
342
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
343
|
+
*/
|
|
344
|
+
export function graphql(source: "\n mutation UpdateDataHubSettingsApi($input: DataHubSettingsInput!) {\n updateDataHubSettings(input: $input) {\n retentionDaysRuns\n retentionDaysErrors\n retentionDaysLogs\n logPersistenceLevel\n }\n }\n"): (typeof documents)["\n mutation UpdateDataHubSettingsApi($input: DataHubSettingsInput!) {\n updateDataHubSettings(input: $input) {\n retentionDaysRuns\n retentionDaysErrors\n retentionDaysLogs\n logPersistenceLevel\n }\n }\n"];
|
|
345
|
+
/**
|
|
346
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
347
|
+
*/
|
|
348
|
+
export function graphql(source: "\n mutation PreviewDataHubExtractApi($step: JSON!, $limit: Int) {\n previewDataHubExtract(step: $step, limit: $limit) { records }\n }\n"): (typeof documents)["\n mutation PreviewDataHubExtractApi($step: JSON!, $limit: Int) {\n previewDataHubExtract(step: $step, limit: $limit) { records }\n }\n"];
|
|
349
|
+
/**
|
|
350
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
351
|
+
*/
|
|
352
|
+
export function graphql(source: "\n mutation SimulateDataHubTransformApi($step: JSON!, $records: JSON!) {\n simulateDataHubTransform(step: $step, records: $records)\n }\n"): (typeof documents)["\n mutation SimulateDataHubTransformApi($step: JSON!, $records: JSON!) {\n simulateDataHubTransform(step: $step, records: $records)\n }\n"];
|
|
353
|
+
/**
|
|
354
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
355
|
+
*/
|
|
356
|
+
export function graphql(source: "\n mutation SimulateDataHubLoadApi($step: JSON!, $records: JSON!) {\n simulateDataHubLoad(step: $step, records: $records)\n }\n"): (typeof documents)["\n mutation SimulateDataHubLoadApi($step: JSON!, $records: JSON!) {\n simulateDataHubLoad(step: $step, records: $records)\n }\n"];
|
|
357
|
+
/**
|
|
358
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
359
|
+
*/
|
|
360
|
+
export function graphql(source: "\n mutation SimulateDataHubValidateApi($step: JSON!, $records: JSON!) {\n simulateDataHubValidate(step: $step, records: $records) {\n records\n summary { input passed failed passRate }\n }\n }\n"): (typeof documents)["\n mutation SimulateDataHubValidateApi($step: JSON!, $records: JSON!) {\n simulateDataHubValidate(step: $step, records: $records) {\n records\n summary { input passed failed passRate }\n }\n }\n"];
|
|
361
|
+
/**
|
|
362
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
363
|
+
*/
|
|
364
|
+
export function graphql(source: "\n mutation PreviewDataHubFeedApi($feedCode: String!, $limit: Int) {\n previewDataHubFeed(feedCode: $feedCode, limit: $limit) { content contentType itemCount }\n }\n"): (typeof documents)["\n mutation PreviewDataHubFeedApi($feedCode: String!, $limit: Int) {\n previewDataHubFeed(feedCode: $feedCode, limit: $limit) { content contentType itemCount }\n }\n"];
|
|
365
|
+
|
|
366
|
+
export function graphql(source: string) {
|
|
367
|
+
return (documents as any)[source] ?? {};
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
export type DocumentType<TDocumentNode extends DocumentNode<any, any>> = TDocumentNode extends DocumentNode< infer TType, any> ? TType : never;
|