@oronts/vendure-data-hub-plugin 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/README.md +6 -2
- package/dashboard/gql/gql.ts +6 -6
- package/dashboard/gql/graphql.ts +9 -4
- package/dashboard/hooks/api/use-pipeline-runs.ts +1 -0
- package/dashboard/hooks/api/use-queues.ts +1 -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 +10383 -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 +222 -0
- package/dist/dashboard/hooks/api/use-pipelines.ts +279 -0
- package/dist/dashboard/hooks/api/use-queues.ts +142 -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/dist/shared/types/adapter-config.types.d.ts +254 -11
- package/dist/shared/types/adapter-config.types.d.ts.map +1 -1
- package/dist/shared/types/index.d.ts +1 -1
- package/dist/shared/types/index.d.ts.map +1 -1
- package/dist/shared/types/index.js.map +1 -1
- package/dist/shared/utils/error.d.ts +5 -0
- package/dist/shared/utils/error.d.ts.map +1 -1
- package/dist/shared/utils/error.js +11 -0
- package/dist/shared/utils/error.js.map +1 -1
- package/dist/src/api/schema/pipeline.schema.d.ts +1 -1
- package/dist/src/api/schema/pipeline.schema.d.ts.map +1 -1
- package/dist/src/api/schema/pipeline.schema.js +2 -0
- package/dist/src/api/schema/pipeline.schema.js.map +1 -1
- package/dist/src/bootstrap/initialization.d.ts.map +1 -1
- package/dist/src/bootstrap/initialization.js +6 -0
- package/dist/src/bootstrap/initialization.js.map +1 -1
- package/dist/src/entities/data/error-record.entity.d.ts +1 -0
- package/dist/src/entities/data/error-record.entity.d.ts.map +1 -1
- package/dist/src/entities/data/error-record.entity.js +4 -0
- package/dist/src/entities/data/error-record.entity.js.map +1 -1
- package/dist/src/gql/generated.d.ts +5 -0
- package/dist/src/gql/generated.d.ts.map +1 -1
- package/dist/src/gql/generated.js.map +1 -1
- package/dist/src/loaders/inventory/inventory.loader.d.ts.map +1 -1
- package/dist/src/loaders/inventory/inventory.loader.js +1 -2
- package/dist/src/loaders/inventory/inventory.loader.js.map +1 -1
- package/dist/src/runtime/executor-types.d.ts +3 -2
- package/dist/src/runtime/executor-types.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/asset-handler.js +1 -1
- package/dist/src/runtime/executors/loaders/asset-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/asset-import-handler.js +1 -1
- package/dist/src/runtime/executors/loaders/asset-import-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/channel-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/channel-handler.js +14 -1
- package/dist/src/runtime/executors/loaders/channel-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/collection-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/collection-handler.js +22 -3
- package/dist/src/runtime/executors/loaders/collection-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/customer-group-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/customer-group-handler.js +8 -1
- package/dist/src/runtime/executors/loaders/customer-group-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/customer-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/customer-handler.js +33 -2
- package/dist/src/runtime/executors/loaders/customer-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/facet-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/facet-handler.js +34 -2
- package/dist/src/runtime/executors/loaders/facet-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/graphql-mutation-handler.js +1 -1
- package/dist/src/runtime/executors/loaders/graphql-mutation-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/inventory-adjust-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/inventory-adjust-handler.js +8 -1
- package/dist/src/runtime/executors/loaders/inventory-adjust-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/inventory-handler.js +3 -3
- package/dist/src/runtime/executors/loaders/inventory-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/loader-handler-registry.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/loader-handler-registry.js +35 -10
- package/dist/src/runtime/executors/loaders/loader-handler-registry.js.map +1 -1
- package/dist/src/runtime/executors/loaders/order-handler.d.ts +1 -1
- package/dist/src/runtime/executors/loaders/order-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/order-handler.js +7 -4
- package/dist/src/runtime/executors/loaders/order-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/payment-method-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/payment-method-handler.js +14 -1
- package/dist/src/runtime/executors/loaders/payment-method-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/product-handler.d.ts +6 -0
- package/dist/src/runtime/executors/loaders/product-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/product-handler.js +31 -13
- package/dist/src/runtime/executors/loaders/product-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/promotion-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/promotion-handler.js +21 -2
- package/dist/src/runtime/executors/loaders/promotion-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/rest-handler.js +1 -1
- package/dist/src/runtime/executors/loaders/rest-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/shared-lookups.d.ts +28 -1
- package/dist/src/runtime/executors/loaders/shared-lookups.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/shared-lookups.js +136 -0
- package/dist/src/runtime/executors/loaders/shared-lookups.js.map +1 -1
- package/dist/src/runtime/executors/loaders/shipping-method-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/shipping-method-handler.js +8 -1
- package/dist/src/runtime/executors/loaders/shipping-method-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/stock-location-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/stock-location-handler.js +8 -1
- package/dist/src/runtime/executors/loaders/stock-location-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/tax-rate-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/tax-rate-handler.js +14 -1
- package/dist/src/runtime/executors/loaders/tax-rate-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/types.d.ts +2 -0
- package/dist/src/runtime/executors/loaders/types.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/variant-handler.d.ts +24 -2
- package/dist/src/runtime/executors/loaders/variant-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/variant-handler.js +190 -44
- package/dist/src/runtime/executors/loaders/variant-handler.js.map +1 -1
- package/dist/src/runtime/executors/sink-handler-registry.js +2 -2
- package/dist/src/runtime/executors/sink-handler-registry.js.map +1 -1
- package/dist/src/services/data/record-error.service.d.ts +1 -1
- package/dist/src/services/data/record-error.service.d.ts.map +1 -1
- package/dist/src/services/data/record-error.service.js +4 -1
- package/dist/src/services/data/record-error.service.js.map +1 -1
- package/dist/src/services/logger/execution-logger.d.ts +1 -1
- package/dist/src/services/logger/execution-logger.d.ts.map +1 -1
- package/dist/src/services/logger/execution-logger.js +8 -4
- package/dist/src/services/logger/execution-logger.js.map +1 -1
- package/dist/src/services/pipeline/pipeline-runner.service.d.ts.map +1 -1
- package/dist/src/services/pipeline/pipeline-runner.service.js +3 -3
- package/dist/src/services/pipeline/pipeline-runner.service.js.map +1 -1
- package/dist/src/utils/error.utils.d.ts +1 -1
- package/dist/src/utils/error.utils.d.ts.map +1 -1
- package/dist/src/utils/error.utils.js +2 -1
- package/dist/src/utils/error.utils.js.map +1 -1
- package/dist/src/utils/url-security.utils.d.ts +5 -3
- package/dist/src/utils/url-security.utils.d.ts.map +1 -1
- package/dist/src/utils/url-security.utils.js +20 -4
- package/dist/src/utils/url-security.utils.js.map +1 -1
- package/docs/reference/loaders.md +39 -2
- package/package.json +2 -2
- package/shared/types/adapter-config.types.ts +278 -9
- package/shared/types/index.ts +13 -0
- package/shared/utils/error.ts +11 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the Data Hub Plugin are documented here.
|
|
4
4
|
|
|
5
|
+
## [0.1.3] - 2026-02-26
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **Option group auto-creation** in variant loader: new `optionGroupsField` config auto-creates option groups and options from key-value pairs (e.g. `{ size: 'S', color: 'Blue' }`), assigns them to the parent product, and links variants. Also supports `optionIdsField` (direct IDs) and `optionCodesField` (code lookup)
|
|
9
|
+
- **Stack traces on error records**: failed records now capture JavaScript stack traces for debugging. Visible in dashboard error viewer and dead letter queue
|
|
10
|
+
- **Load strategy support** for all entity loaders: configurable `strategy` field (`UPSERT`, `CREATE`, `UPDATE`) controls whether records are created, updated, or both
|
|
11
|
+
- **Custom fields support** for product, variant, customer, collection, promotion, facet, and facet value loaders via `customFieldsField` config
|
|
12
|
+
- **SSRF protection wiring**: global SSRF config from plugin options now passed to all loader handlers for URL validation
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- SSRF protection config was not propagated from plugin-level `security.ssrf` settings to individual loader handlers
|
|
16
|
+
|
|
17
|
+
## [0.1.2] - 2026-02-24
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- Fixed dashboard extension path: Copy `dashboard/` into `dist/` during build so the relative path `../dashboard/index.tsx` resolves correctly from both source (`src/`) and compiled (`dist/src/`) locations
|
|
21
|
+
|
|
5
22
|
## [0.1.1] - 2026-02-24
|
|
6
23
|
|
|
7
24
|
### Fixed
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="https://oronts.com">
|
|
3
|
-
<img src="https://oronts.com/_next/image?url=%2Fimages%2Flogo%2FLogo-white.png&w=256&q=75" alt="Oronts"
|
|
3
|
+
<img src="https://oronts.com/_next/image?url=%2Fimages%2Flogo%2FLogo-white.png&w=256&q=75" alt="Oronts">
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
@@ -432,7 +432,7 @@ Execute custom JavaScript for complex transformations:
|
|
|
432
432
|
| Loader | Adapter Code | Description |
|
|
433
433
|
|--------|--------------|-------------|
|
|
434
434
|
| Product Loader | `productUpsert` | Create/update products with variants, prices, tax, and stock |
|
|
435
|
-
| Variant Loader | `variantUpsert` | Update product variants by SKU with multi-currency prices |
|
|
435
|
+
| Variant Loader | `variantUpsert` | Update product variants by SKU with multi-currency prices and auto-create option groups |
|
|
436
436
|
| Customer Loader | `customerUpsert` | Create/update customers with addresses and group memberships |
|
|
437
437
|
| Customer Group Loader | `customerGroupUpsert` | Create/update customer groups by name; assign customers by email |
|
|
438
438
|
| Collection Loader | `collectionUpsert` | Create/update collections with parent relationships |
|
|
@@ -1134,6 +1134,10 @@ const pipeline = createPipeline()
|
|
|
1134
1134
|
})
|
|
1135
1135
|
```
|
|
1136
1136
|
|
|
1137
|
+
### Stack Traces
|
|
1138
|
+
|
|
1139
|
+
Failed records automatically capture JavaScript stack traces when errors originate from exceptions. Stack traces are stored on the error record and visible in the dashboard error viewer and dead letter queue, aiding production debugging.
|
|
1140
|
+
|
|
1137
1141
|
---
|
|
1138
1142
|
|
|
1139
1143
|
## Requirements
|
package/dashboard/gql/gql.ts
CHANGED
|
@@ -31,7 +31,7 @@ type Documents = {
|
|
|
31
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
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
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,
|
|
34
|
+
"\n query DataHubRunErrorsApi($runId: ID!) {\n dataHubRunErrors(runId: $runId) {\n id\n stepKey\n message\n payload\n stackTrace\n }\n }\n": typeof types.DataHubRunErrorsApiDocument,
|
|
35
35
|
"\n mutation CancelDataHubPipelineRunApi($id: ID!) {\n cancelDataHubPipelineRun(id: $id) {\n id\n status\n }\n }\n": typeof types.CancelDataHubPipelineRunApiDocument,
|
|
36
36
|
"\n mutation RetryDataHubRecordApi($errorId: ID!, $patch: JSON) {\n retryDataHubRecord(errorId: $errorId, patch: $patch)\n }\n": typeof types.RetryDataHubRecordApiDocument,
|
|
37
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,
|
|
@@ -52,7 +52,7 @@ type Documents = {
|
|
|
52
52
|
"\n mutation PublishDataHubPipelineApi($id: ID!) {\n publishDataHubPipeline(id: $id) {\n id\n status\n publishedAt\n }\n }\n": typeof types.PublishDataHubPipelineApiDocument,
|
|
53
53
|
"\n mutation ArchiveDataHubPipelineApi($id: ID!) {\n archiveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n": typeof types.ArchiveDataHubPipelineApiDocument,
|
|
54
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,
|
|
55
|
+
"\n query DataHubDeadLettersApi {\n dataHubDeadLetters {\n id\n stepKey\n message\n payload\n stackTrace\n }\n }\n": typeof types.DataHubDeadLettersApiDocument,
|
|
56
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
57
|
"\n mutation StartDataHubConsumerApi($pipelineCode: String!) {\n startDataHubConsumer(pipelineCode: $pipelineCode)\n }\n": typeof types.StartDataHubConsumerApiDocument,
|
|
58
58
|
"\n mutation StopDataHubConsumerApi($pipelineCode: String!) {\n stopDataHubConsumer(pipelineCode: $pipelineCode)\n }\n": typeof types.StopDataHubConsumerApiDocument,
|
|
@@ -88,7 +88,7 @@ const documents: Documents = {
|
|
|
88
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
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
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,
|
|
91
|
+
"\n query DataHubRunErrorsApi($runId: ID!) {\n dataHubRunErrors(runId: $runId) {\n id\n stepKey\n message\n payload\n stackTrace\n }\n }\n": types.DataHubRunErrorsApiDocument,
|
|
92
92
|
"\n mutation CancelDataHubPipelineRunApi($id: ID!) {\n cancelDataHubPipelineRun(id: $id) {\n id\n status\n }\n }\n": types.CancelDataHubPipelineRunApiDocument,
|
|
93
93
|
"\n mutation RetryDataHubRecordApi($errorId: ID!, $patch: JSON) {\n retryDataHubRecord(errorId: $errorId, patch: $patch)\n }\n": types.RetryDataHubRecordApiDocument,
|
|
94
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,
|
|
@@ -109,7 +109,7 @@ const documents: Documents = {
|
|
|
109
109
|
"\n mutation PublishDataHubPipelineApi($id: ID!) {\n publishDataHubPipeline(id: $id) {\n id\n status\n publishedAt\n }\n }\n": types.PublishDataHubPipelineApiDocument,
|
|
110
110
|
"\n mutation ArchiveDataHubPipelineApi($id: ID!) {\n archiveDataHubPipeline(id: $id) {\n id\n status\n }\n }\n": types.ArchiveDataHubPipelineApiDocument,
|
|
111
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,
|
|
112
|
+
"\n query DataHubDeadLettersApi {\n dataHubDeadLetters {\n id\n stepKey\n message\n payload\n stackTrace\n }\n }\n": types.DataHubDeadLettersApiDocument,
|
|
113
113
|
"\n query DataHubConsumersApi {\n dataHubConsumers {\n pipelineCode\n queueName\n isActive\n messagesProcessed\n messagesFailed\n lastMessageAt\n }\n }\n": types.DataHubConsumersApiDocument,
|
|
114
114
|
"\n mutation StartDataHubConsumerApi($pipelineCode: String!) {\n startDataHubConsumer(pipelineCode: $pipelineCode)\n }\n": types.StartDataHubConsumerApiDocument,
|
|
115
115
|
"\n mutation StopDataHubConsumerApi($pipelineCode: String!) {\n stopDataHubConsumer(pipelineCode: $pipelineCode)\n }\n": types.StopDataHubConsumerApiDocument,
|
|
@@ -213,7 +213,7 @@ export function graphql(source: "\n query DataHubPipelineRunDetailApi($id: ID
|
|
|
213
213
|
/**
|
|
214
214
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
215
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"];
|
|
216
|
+
export function graphql(source: "\n query DataHubRunErrorsApi($runId: ID!) {\n dataHubRunErrors(runId: $runId) {\n id\n stepKey\n message\n payload\n stackTrace\n }\n }\n"): (typeof documents)["\n query DataHubRunErrorsApi($runId: ID!) {\n dataHubRunErrors(runId: $runId) {\n id\n stepKey\n message\n payload\n stackTrace\n }\n }\n"];
|
|
217
217
|
/**
|
|
218
218
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
219
219
|
*/
|
|
@@ -297,7 +297,7 @@ export function graphql(source: "\n query DataHubQueueStatsApi {\n dat
|
|
|
297
297
|
/**
|
|
298
298
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
299
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"];
|
|
300
|
+
export function graphql(source: "\n query DataHubDeadLettersApi {\n dataHubDeadLetters {\n id\n stepKey\n message\n payload\n stackTrace\n }\n }\n"): (typeof documents)["\n query DataHubDeadLettersApi {\n dataHubDeadLetters {\n id\n stepKey\n message\n payload\n stackTrace\n }\n }\n"];
|
|
301
301
|
/**
|
|
302
302
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
303
303
|
*/
|
package/dashboard/gql/graphql.ts
CHANGED
|
@@ -490,6 +490,7 @@ export type Collection = Node & {
|
|
|
490
490
|
parent?: Maybe<Collection>;
|
|
491
491
|
parentId: Scalars['ID']['output'];
|
|
492
492
|
position: Scalars['Int']['output'];
|
|
493
|
+
productVariantCount: Scalars['Int']['output'];
|
|
493
494
|
productVariants: ProductVariantList;
|
|
494
495
|
slug: Scalars['String']['output'];
|
|
495
496
|
translations: Array<CollectionTranslation>;
|
|
@@ -520,6 +521,7 @@ export type CollectionFilterParameter = {
|
|
|
520
521
|
name?: InputMaybe<StringOperators>;
|
|
521
522
|
parentId?: InputMaybe<IdOperators>;
|
|
522
523
|
position?: InputMaybe<NumberOperators>;
|
|
524
|
+
productVariantCount?: InputMaybe<NumberOperators>;
|
|
523
525
|
slug?: InputMaybe<StringOperators>;
|
|
524
526
|
updatedAt?: InputMaybe<DateOperators>;
|
|
525
527
|
};
|
|
@@ -561,6 +563,7 @@ export type CollectionSortParameter = {
|
|
|
561
563
|
name?: InputMaybe<SortOrder>;
|
|
562
564
|
parentId?: InputMaybe<SortOrder>;
|
|
563
565
|
position?: InputMaybe<SortOrder>;
|
|
566
|
+
productVariantCount?: InputMaybe<SortOrder>;
|
|
564
567
|
slug?: InputMaybe<SortOrder>;
|
|
565
568
|
updatedAt?: InputMaybe<SortOrder>;
|
|
566
569
|
};
|
|
@@ -2841,6 +2844,8 @@ export type DataHubRecordError = Node & {
|
|
|
2841
2844
|
/** The record data that failed to process */
|
|
2842
2845
|
payload: Scalars['JSON']['output'];
|
|
2843
2846
|
run: DataHubPipelineRun;
|
|
2847
|
+
/** JavaScript stack trace for debugging (only present when the error originated from an exception) */
|
|
2848
|
+
stackTrace?: Maybe<Scalars['String']['output']>;
|
|
2844
2849
|
/** The step key where the error occurred */
|
|
2845
2850
|
stepKey: Scalars['String']['output'];
|
|
2846
2851
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -10056,7 +10061,7 @@ export type DataHubRunErrorsApiQueryVariables = Exact<{
|
|
|
10056
10061
|
}>;
|
|
10057
10062
|
|
|
10058
10063
|
|
|
10059
|
-
export type DataHubRunErrorsApiQuery = { __typename?: 'Query', dataHubRunErrors: Array<{ __typename?: 'DataHubRecordError', id: string | number, stepKey: string, message: string, payload: Record<string, unknown
|
|
10064
|
+
export type DataHubRunErrorsApiQuery = { __typename?: 'Query', dataHubRunErrors: Array<{ __typename?: 'DataHubRecordError', id: string | number, stepKey: string, message: string, payload: Record<string, unknown>, stackTrace?: string | null }> };
|
|
10060
10065
|
|
|
10061
10066
|
export type CancelDataHubPipelineRunApiMutationVariables = Exact<{
|
|
10062
10067
|
id: Scalars['ID']['input'];
|
|
@@ -10204,7 +10209,7 @@ export type DataHubQueueStatsApiQuery = { __typename?: 'Query', dataHubQueueStat
|
|
|
10204
10209
|
export type DataHubDeadLettersApiQueryVariables = Exact<{ [key: string]: never; }>;
|
|
10205
10210
|
|
|
10206
10211
|
|
|
10207
|
-
export type DataHubDeadLettersApiQuery = { __typename?: 'Query', dataHubDeadLetters: Array<{ __typename?: 'DataHubRecordError', id: string | number, stepKey: string, message: string, payload: Record<string, unknown
|
|
10212
|
+
export type DataHubDeadLettersApiQuery = { __typename?: 'Query', dataHubDeadLetters: Array<{ __typename?: 'DataHubRecordError', id: string | number, stepKey: string, message: string, payload: Record<string, unknown>, stackTrace?: string | null }> };
|
|
10208
10213
|
|
|
10209
10214
|
export type DataHubConsumersApiQueryVariables = Exact<{ [key: string]: never; }>;
|
|
10210
10215
|
|
|
@@ -10338,7 +10343,7 @@ export const DataHubLogStatsApiDocument = {"kind":"Document","definitions":[{"ki
|
|
|
10338
10343
|
export const DataHubRecentLogsApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubRecentLogsApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubRecentLogs"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"level"}},{"kind":"Field","name":{"kind":"Name","value":"message"}},{"kind":"Field","name":{"kind":"Name","value":"stepKey"}},{"kind":"Field","name":{"kind":"Name","value":"pipelineId"}},{"kind":"Field","name":{"kind":"Name","value":"pipeline"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"runId"}},{"kind":"Field","name":{"kind":"Name","value":"durationMs"}},{"kind":"Field","name":{"kind":"Name","value":"recordsProcessed"}},{"kind":"Field","name":{"kind":"Name","value":"recordsFailed"}}]}}]}}]} as unknown as DocumentNode<DataHubRecentLogsApiQuery, DataHubRecentLogsApiQueryVariables>;
|
|
10339
10344
|
export const DataHubPipelineRunsApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubPipelineRunsApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pipelineId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"options"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DataHubPipelineRunListOptions"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubPipelineRuns"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"pipelineId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pipelineId"}}},{"kind":"Argument","name":{"kind":"Name","value":"options"},"value":{"kind":"Variable","name":{"kind":"Name","value":"options"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"startedAt"}},{"kind":"Field","name":{"kind":"Name","value":"finishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"metrics"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalItems"}}]}}]}}]} as unknown as DocumentNode<DataHubPipelineRunsApiQuery, DataHubPipelineRunsApiQueryVariables>;
|
|
10340
10345
|
export const DataHubPipelineRunDetailApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubPipelineRunDetailApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubPipelineRun"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"startedAt"}},{"kind":"Field","name":{"kind":"Name","value":"finishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"metrics"}},{"kind":"Field","name":{"kind":"Name","value":"error"}},{"kind":"Field","name":{"kind":"Name","value":"startedByUserId"}},{"kind":"Field","name":{"kind":"Name","value":"pipeline"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode<DataHubPipelineRunDetailApiQuery, DataHubPipelineRunDetailApiQueryVariables>;
|
|
10341
|
-
export const DataHubRunErrorsApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubRunErrorsApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"runId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubRunErrors"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"runId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"runId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"stepKey"}},{"kind":"Field","name":{"kind":"Name","value":"message"}},{"kind":"Field","name":{"kind":"Name","value":"payload"}}]}}]}}]} as unknown as DocumentNode<DataHubRunErrorsApiQuery, DataHubRunErrorsApiQueryVariables>;
|
|
10346
|
+
export const DataHubRunErrorsApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubRunErrorsApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"runId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubRunErrors"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"runId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"runId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"stepKey"}},{"kind":"Field","name":{"kind":"Name","value":"message"}},{"kind":"Field","name":{"kind":"Name","value":"payload"}},{"kind":"Field","name":{"kind":"Name","value":"stackTrace"}}]}}]}}]} as unknown as DocumentNode<DataHubRunErrorsApiQuery, DataHubRunErrorsApiQueryVariables>;
|
|
10342
10347
|
export const CancelDataHubPipelineRunApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CancelDataHubPipelineRunApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cancelDataHubPipelineRun"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]} as unknown as DocumentNode<CancelDataHubPipelineRunApiMutation, CancelDataHubPipelineRunApiMutationVariables>;
|
|
10343
10348
|
export const RetryDataHubRecordApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RetryDataHubRecordApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"errorId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"patch"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"retryDataHubRecord"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"errorId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"errorId"}}},{"kind":"Argument","name":{"kind":"Name","value":"patch"},"value":{"kind":"Variable","name":{"kind":"Name","value":"patch"}}}]}]}}]} as unknown as DocumentNode<RetryDataHubRecordApiMutation, RetryDataHubRecordApiMutationVariables>;
|
|
10344
10349
|
export const ApproveDataHubGateApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"ApproveDataHubGateApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"runId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"stepKey"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"approveDataHubGate"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"runId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"runId"}}},{"kind":"Argument","name":{"kind":"Name","value":"stepKey"},"value":{"kind":"Variable","name":{"kind":"Name","value":"stepKey"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}},{"kind":"Field","name":{"kind":"Name","value":"message"}},{"kind":"Field","name":{"kind":"Name","value":"run"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]}}]} as unknown as DocumentNode<ApproveDataHubGateApiMutation, ApproveDataHubGateApiMutationVariables>;
|
|
@@ -10359,7 +10364,7 @@ export const RejectDataHubPipelineReviewApiDocument = {"kind":"Document","defini
|
|
|
10359
10364
|
export const PublishDataHubPipelineApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"PublishDataHubPipelineApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"publishDataHubPipeline"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"publishedAt"}}]}}]}}]} as unknown as DocumentNode<PublishDataHubPipelineApiMutation, PublishDataHubPipelineApiMutationVariables>;
|
|
10360
10365
|
export const ArchiveDataHubPipelineApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"ArchiveDataHubPipelineApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"archiveDataHubPipeline"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]} as unknown as DocumentNode<ArchiveDataHubPipelineApiMutation, ArchiveDataHubPipelineApiMutationVariables>;
|
|
10361
10366
|
export const DataHubQueueStatsApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubQueueStatsApi"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubQueueStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pending"}},{"kind":"Field","name":{"kind":"Name","value":"running"}},{"kind":"Field","name":{"kind":"Name","value":"failed"}},{"kind":"Field","name":{"kind":"Name","value":"completedToday"}},{"kind":"Field","name":{"kind":"Name","value":"byPipeline"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"pending"}},{"kind":"Field","name":{"kind":"Name","value":"running"}}]}},{"kind":"Field","name":{"kind":"Name","value":"recentFailed"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"finishedAt"}},{"kind":"Field","name":{"kind":"Name","value":"error"}}]}}]}}]}}]} as unknown as DocumentNode<DataHubQueueStatsApiQuery, DataHubQueueStatsApiQueryVariables>;
|
|
10362
|
-
export const DataHubDeadLettersApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubDeadLettersApi"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubDeadLetters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"stepKey"}},{"kind":"Field","name":{"kind":"Name","value":"message"}},{"kind":"Field","name":{"kind":"Name","value":"payload"}}]}}]}}]} as unknown as DocumentNode<DataHubDeadLettersApiQuery, DataHubDeadLettersApiQueryVariables>;
|
|
10367
|
+
export const DataHubDeadLettersApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubDeadLettersApi"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubDeadLetters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"stepKey"}},{"kind":"Field","name":{"kind":"Name","value":"message"}},{"kind":"Field","name":{"kind":"Name","value":"payload"}},{"kind":"Field","name":{"kind":"Name","value":"stackTrace"}}]}}]}}]} as unknown as DocumentNode<DataHubDeadLettersApiQuery, DataHubDeadLettersApiQueryVariables>;
|
|
10363
10368
|
export const DataHubConsumersApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubConsumersApi"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubConsumers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pipelineCode"}},{"kind":"Field","name":{"kind":"Name","value":"queueName"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"messagesProcessed"}},{"kind":"Field","name":{"kind":"Name","value":"messagesFailed"}},{"kind":"Field","name":{"kind":"Name","value":"lastMessageAt"}}]}}]}}]} as unknown as DocumentNode<DataHubConsumersApiQuery, DataHubConsumersApiQueryVariables>;
|
|
10364
10369
|
export const StartDataHubConsumerApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"StartDataHubConsumerApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pipelineCode"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"startDataHubConsumer"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"pipelineCode"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pipelineCode"}}}]}]}}]} as unknown as DocumentNode<StartDataHubConsumerApiMutation, StartDataHubConsumerApiMutationVariables>;
|
|
10365
10370
|
export const StopDataHubConsumerApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"StopDataHubConsumerApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pipelineCode"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"stopDataHubConsumer"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"pipelineCode"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pipelineCode"}}}]}]}}]} as unknown as DocumentNode<StopDataHubConsumerApiMutation, StopDataHubConsumerApiMutationVariables>;
|