@oronts/vendure-data-hub-plugin 0.1.4 → 0.1.6
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 +60 -3
- package/CONTRIBUTING.md +2 -2
- package/README.md +5 -2
- package/dashboard/components/common/ConnectionConfigEditor.tsx +42 -5
- package/dashboard/components/pipelines/PipelineImport.tsx +3 -2
- package/dashboard/components/pipelines/ReactFlowPipelineEditor.tsx +8 -10
- package/dashboard/components/pipelines/shared/NodePropertiesPanel.tsx +1 -1
- package/dashboard/components/pipelines/shared/PipelineNode.tsx +2 -2
- package/dashboard/components/shared/step-config/AdapterRequiredWarning.tsx +3 -3
- package/dashboard/components/shared/step-config/AdvancedEditors.tsx +2 -2
- package/dashboard/components/shared/step-config/EnrichConfigComponent.tsx +1 -1
- package/dashboard/components/shared/step-config/GateConfigComponent.tsx +0 -1
- package/dashboard/components/shared/step-config/OperatorFieldInput.tsx +1 -1
- package/dashboard/components/shared/step-config/RouteConfigComponent.tsx +3 -4
- package/dashboard/components/shared/step-config/StepConfigPanel.tsx +20 -17
- package/dashboard/components/shared/step-config/ValidateConfigComponent.tsx +4 -9
- package/dashboard/components/templates/TemplateGallery.tsx +0 -3
- package/dashboard/components/wizards/export-wizard/ReviewStep.tsx +2 -2
- package/dashboard/components/wizards/import-wizard/ImportWizard.tsx +3 -6
- package/dashboard/components/wizards/import-wizard/MappingStep.tsx +3 -5
- package/dashboard/components/wizards/import-wizard/ReviewStep.tsx +2 -2
- package/dashboard/components/wizards/import-wizard/SourceStep.tsx +3 -3
- package/dashboard/components/wizards/import-wizard/StrategyStep.tsx +1 -2
- package/dashboard/components/wizards/import-wizard/TargetStep.tsx +1 -2
- package/dashboard/components/wizards/import-wizard/TriggerStep.tsx +1 -2
- package/dashboard/constants/colors.ts +1 -1
- package/dashboard/constants/file-format-registry.ts +22 -46
- package/dashboard/constants/ui-types.ts +5 -5
- package/dashboard/gql/gql.ts +3 -3
- package/dashboard/gql/graphql.ts +43 -16
- package/dashboard/hooks/api/use-config-options.ts +4 -6
- package/dashboard/hooks/index.ts +1 -1
- package/dashboard/hooks/use-adapter-catalog.ts +1 -3
- package/dashboard/hooks/use-import-templates.ts +1 -4
- package/dashboard/routes/connections/ConnectionDetail.tsx +22 -7
- package/dashboard/routes/hooks/Hooks.tsx +8 -7
- package/dashboard/routes/logs/Logs.tsx +4 -4
- package/dashboard/routes/logs/components/LogDetailDrawer.tsx +3 -3
- package/dashboard/routes/logs/components/LogExplorerTab.tsx +18 -22
- package/dashboard/routes/logs/components/LogTableRow.tsx +4 -3
- package/dashboard/routes/logs/components/LogsOverviewTab.tsx +3 -3
- package/dashboard/routes/logs/components/RealtimeLogTab.tsx +2 -2
- package/dashboard/routes/pipelines/ImportWizardPage.tsx +1 -1
- package/dashboard/routes/pipelines/PipelineRunsBlock.tsx +6 -6
- package/dashboard/routes/pipelines/RunDetailsPanel.tsx +0 -1
- package/dashboard/routes/pipelines/RunErrorsList.tsx +10 -6
- package/dashboard/routes/pipelines/StepSummaryTable.tsx +3 -4
- package/dashboard/routes/pipelines/components/DryRunDialog.tsx +8 -12
- package/dashboard/routes/pipelines/components/PipelineWebhookInfo.tsx +5 -4
- package/dashboard/routes/pipelines/components/ValidationPanel.tsx +6 -4
- package/dashboard/routes/pipelines/components/VersionHistoryDialog.tsx +1 -1
- package/dashboard/routes/queues/ConsumersTable.tsx +1 -1
- package/dashboard/routes/queues/FailedRunsTable.tsx +1 -1
- package/dashboard/routes/queues/QueuesPage.tsx +5 -3
- package/dashboard/routes/secrets/SecretDetail.tsx +18 -3
- package/dashboard/routes/settings/Settings.tsx +3 -5
- package/dashboard/types/ui-types.ts +1 -2
- package/dashboard/utils/formatters.ts +8 -16
- package/dashboard/utils/icon-resolver.ts +2 -2
- package/dashboard/utils/index.ts +0 -1
- package/dashboard/utils/trigger-sync.ts +0 -8
- package/dashboard/utils/wizard-to-pipeline.ts +35 -14
- package/dist/connectors/registry.d.ts.map +1 -1
- package/dist/connectors/registry.js +22 -5
- package/dist/connectors/registry.js.map +1 -1
- package/dist/dashboard/components/common/ConnectionConfigEditor.tsx +42 -5
- package/dist/dashboard/components/pipelines/PipelineImport.tsx +3 -2
- package/dist/dashboard/components/pipelines/ReactFlowPipelineEditor.tsx +8 -10
- package/dist/dashboard/components/pipelines/shared/NodePropertiesPanel.tsx +1 -1
- package/dist/dashboard/components/pipelines/shared/PipelineNode.tsx +2 -2
- package/dist/dashboard/components/shared/step-config/AdapterRequiredWarning.tsx +3 -3
- package/dist/dashboard/components/shared/step-config/AdvancedEditors.tsx +2 -2
- package/dist/dashboard/components/shared/step-config/EnrichConfigComponent.tsx +1 -1
- package/dist/dashboard/components/shared/step-config/GateConfigComponent.tsx +0 -1
- package/dist/dashboard/components/shared/step-config/OperatorFieldInput.tsx +1 -1
- package/dist/dashboard/components/shared/step-config/RouteConfigComponent.tsx +3 -4
- package/dist/dashboard/components/shared/step-config/StepConfigPanel.tsx +20 -17
- package/dist/dashboard/components/shared/step-config/ValidateConfigComponent.tsx +4 -9
- package/dist/dashboard/components/templates/TemplateGallery.tsx +0 -3
- package/dist/dashboard/components/wizards/export-wizard/ReviewStep.tsx +2 -2
- package/dist/dashboard/components/wizards/import-wizard/ImportWizard.tsx +3 -6
- package/dist/dashboard/components/wizards/import-wizard/MappingStep.tsx +3 -5
- package/dist/dashboard/components/wizards/import-wizard/ReviewStep.tsx +2 -2
- package/dist/dashboard/components/wizards/import-wizard/SourceStep.tsx +3 -3
- package/dist/dashboard/components/wizards/import-wizard/StrategyStep.tsx +1 -2
- package/dist/dashboard/components/wizards/import-wizard/TargetStep.tsx +1 -2
- package/dist/dashboard/components/wizards/import-wizard/TriggerStep.tsx +1 -2
- package/dist/dashboard/constants/colors.ts +1 -1
- package/dist/dashboard/constants/file-format-registry.ts +22 -46
- package/dist/dashboard/constants/ui-types.ts +5 -5
- package/dist/dashboard/gql/gql.ts +3 -3
- package/dist/dashboard/gql/graphql.ts +43 -16
- package/dist/dashboard/hooks/api/use-config-options.ts +4 -6
- package/dist/dashboard/hooks/index.ts +1 -1
- package/dist/dashboard/hooks/use-adapter-catalog.ts +1 -3
- package/dist/dashboard/hooks/use-import-templates.ts +1 -4
- package/dist/dashboard/routes/connections/ConnectionDetail.tsx +22 -7
- package/dist/dashboard/routes/hooks/Hooks.tsx +8 -7
- package/dist/dashboard/routes/logs/Logs.tsx +4 -4
- package/dist/dashboard/routes/logs/components/LogDetailDrawer.tsx +3 -3
- package/dist/dashboard/routes/logs/components/LogExplorerTab.tsx +18 -22
- package/dist/dashboard/routes/logs/components/LogTableRow.tsx +4 -3
- package/dist/dashboard/routes/logs/components/LogsOverviewTab.tsx +3 -3
- package/dist/dashboard/routes/logs/components/RealtimeLogTab.tsx +2 -2
- package/dist/dashboard/routes/pipelines/ImportWizardPage.tsx +1 -1
- package/dist/dashboard/routes/pipelines/PipelineRunsBlock.tsx +6 -6
- package/dist/dashboard/routes/pipelines/RunDetailsPanel.tsx +0 -1
- package/dist/dashboard/routes/pipelines/RunErrorsList.tsx +10 -6
- package/dist/dashboard/routes/pipelines/StepSummaryTable.tsx +3 -4
- package/dist/dashboard/routes/pipelines/components/DryRunDialog.tsx +8 -12
- package/dist/dashboard/routes/pipelines/components/PipelineWebhookInfo.tsx +5 -4
- package/dist/dashboard/routes/pipelines/components/ValidationPanel.tsx +6 -4
- package/dist/dashboard/routes/pipelines/components/VersionHistoryDialog.tsx +1 -1
- package/dist/dashboard/routes/queues/ConsumersTable.tsx +1 -1
- package/dist/dashboard/routes/queues/FailedRunsTable.tsx +1 -1
- package/dist/dashboard/routes/queues/QueuesPage.tsx +5 -3
- package/dist/dashboard/routes/secrets/SecretDetail.tsx +18 -3
- package/dist/dashboard/routes/settings/Settings.tsx +3 -5
- package/dist/dashboard/types/ui-types.ts +1 -2
- package/dist/dashboard/utils/formatters.ts +8 -16
- package/dist/dashboard/utils/icon-resolver.ts +2 -2
- package/dist/dashboard/utils/index.ts +0 -1
- package/dist/dashboard/utils/trigger-sync.ts +0 -8
- package/dist/dashboard/utils/wizard-to-pipeline.ts +35 -14
- package/dist/shared/constants/step-type-configs.d.ts +1 -1
- package/dist/shared/constants/step-type-configs.js +2 -2
- package/dist/shared/constants/step-type-configs.js.map +1 -1
- package/dist/shared/types/adapter-config.types.d.ts +3 -3
- package/dist/shared/types/adapter-config.types.d.ts.map +1 -1
- package/dist/shared/types/adapter.types.d.ts +1 -1
- package/dist/shared/types/execution.types.d.ts +2 -6
- package/dist/shared/types/execution.types.d.ts.map +1 -1
- package/dist/shared/types/extractor.types.d.ts +1 -1
- package/dist/shared/types/extractor.types.d.ts.map +1 -1
- package/dist/shared/types/index.d.ts +2 -2
- package/dist/shared/types/index.d.ts.map +1 -1
- package/dist/shared/types/pipeline.types.d.ts +2 -3
- package/dist/shared/types/pipeline.types.d.ts.map +1 -1
- package/dist/shared/types/step.types.d.ts +2 -2
- package/dist/shared/types/step.types.d.ts.map +1 -1
- package/dist/shared/types/trigger.types.d.ts +4 -27
- package/dist/shared/types/trigger.types.d.ts.map +1 -1
- package/dist/shared/utils/csv-parse.js +2 -2
- package/dist/shared/utils/csv-parse.js.map +1 -1
- package/dist/shared/utils/validation.js +1 -1
- package/dist/shared/utils/validation.js.map +1 -1
- package/dist/shared/vendure-schemas.d.ts +1 -1
- package/dist/shared/vendure-schemas.js +1 -1
- package/dist/src/adapters/registry.d.ts +1 -1
- package/dist/src/adapters/registry.js +1 -1
- package/dist/src/adapters/registry.js.map +1 -1
- package/dist/src/api/controllers/file-upload.controller.d.ts +1 -0
- package/dist/src/api/controllers/file-upload.controller.d.ts.map +1 -1
- package/dist/src/api/controllers/file-upload.controller.js +62 -64
- package/dist/src/api/controllers/file-upload.controller.js.map +1 -1
- package/dist/src/api/controllers/webhook.controller.d.ts.map +1 -1
- package/dist/src/api/controllers/webhook.controller.js +38 -11
- package/dist/src/api/controllers/webhook.controller.js.map +1 -1
- package/dist/src/api/resolvers/analytics.resolver.d.ts +19 -1
- package/dist/src/api/resolvers/analytics.resolver.d.ts.map +1 -1
- package/dist/src/api/resolvers/analytics.resolver.js +18 -1
- package/dist/src/api/resolvers/analytics.resolver.js.map +1 -1
- package/dist/src/api/resolvers/connection.resolver.d.ts +3 -1
- package/dist/src/api/resolvers/connection.resolver.d.ts.map +1 -1
- package/dist/src/api/resolvers/connection.resolver.js +19 -7
- package/dist/src/api/resolvers/connection.resolver.js.map +1 -1
- package/dist/src/api/resolvers/entity-schema.resolver.js +2 -2
- package/dist/src/api/resolvers/entity-schema.resolver.js.map +1 -1
- package/dist/src/api/resolvers/error.resolver.js +1 -1
- package/dist/src/api/resolvers/error.resolver.js.map +1 -1
- package/dist/src/api/resolvers/log.resolver.js +1 -1
- package/dist/src/api/resolvers/log.resolver.js.map +1 -1
- package/dist/src/api/resolvers/pipeline.resolver.d.ts +1 -3
- package/dist/src/api/resolvers/pipeline.resolver.d.ts.map +1 -1
- package/dist/src/api/resolvers/pipeline.resolver.js +10 -27
- package/dist/src/api/resolvers/pipeline.resolver.js.map +1 -1
- package/dist/src/api/resolvers/secret.resolver.d.ts +5 -1
- package/dist/src/api/resolvers/secret.resolver.d.ts.map +1 -1
- package/dist/src/api/resolvers/secret.resolver.js +37 -10
- package/dist/src/api/resolvers/secret.resolver.js.map +1 -1
- package/dist/src/api/schema/connection.schema.d.ts +2 -2
- package/dist/src/api/schema/connection.schema.d.ts.map +1 -1
- package/dist/src/api/schema/connection.schema.js +1 -8
- package/dist/src/api/schema/connection.schema.js.map +1 -1
- package/dist/src/api/schema/log.schema.d.ts +2 -2
- package/dist/src/api/schema/log.schema.d.ts.map +1 -1
- package/dist/src/api/schema/log.schema.js +1 -8
- package/dist/src/api/schema/log.schema.js.map +1 -1
- package/dist/src/api/schema/pipeline.schema.d.ts +2 -2
- package/dist/src/api/schema/pipeline.schema.d.ts.map +1 -1
- package/dist/src/api/schema/pipeline.schema.js +2 -18
- package/dist/src/api/schema/pipeline.schema.js.map +1 -1
- package/dist/src/api/schema/secret.schema.d.ts +2 -2
- package/dist/src/api/schema/secret.schema.d.ts.map +1 -1
- package/dist/src/api/schema/secret.schema.js +1 -9
- package/dist/src/api/schema/secret.schema.js.map +1 -1
- package/dist/src/api/types/index.d.ts +0 -1
- package/dist/src/api/types/index.d.ts.map +1 -1
- package/dist/src/api/types/index.js +0 -1
- package/dist/src/api/types/index.js.map +1 -1
- package/dist/src/api/types/outputs.d.ts +1 -1
- package/dist/src/api/types/outputs.js +1 -1
- package/dist/src/bootstrap/initialization.d.ts.map +1 -1
- package/dist/src/bootstrap/initialization.js +0 -4
- package/dist/src/bootstrap/initialization.js.map +1 -1
- package/dist/src/bootstrap/seed-data.d.ts +3 -1
- package/dist/src/bootstrap/seed-data.d.ts.map +1 -1
- package/dist/src/bootstrap/seed-data.js +50 -29
- package/dist/src/bootstrap/seed-data.js.map +1 -1
- package/dist/src/constants/adapter-schema-options.d.ts +4 -4
- package/dist/src/constants/adapter-schema-options.d.ts.map +1 -1
- package/dist/src/constants/adapter-schema-options.js +21 -14
- package/dist/src/constants/adapter-schema-options.js.map +1 -1
- package/dist/src/constants/adapters.d.ts +1 -1
- package/dist/src/constants/adapters.js +1 -1
- package/dist/src/constants/connection-schemas.d.ts.map +1 -1
- package/dist/src/constants/connection-schemas.js +2 -1
- package/dist/src/constants/connection-schemas.js.map +1 -1
- package/dist/src/constants/core.d.ts +2 -0
- package/dist/src/constants/core.d.ts.map +1 -1
- package/dist/src/constants/core.js +2 -0
- package/dist/src/constants/core.js.map +1 -1
- package/dist/src/constants/defaults/index.d.ts +0 -5
- package/dist/src/constants/defaults/index.d.ts.map +1 -1
- package/dist/src/constants/defaults/index.js +0 -5
- package/dist/src/constants/defaults/index.js.map +1 -1
- package/dist/src/constants/defaults/reliability-defaults.d.ts +8 -2
- package/dist/src/constants/defaults/reliability-defaults.d.ts.map +1 -1
- package/dist/src/constants/defaults/reliability-defaults.js +8 -2
- package/dist/src/constants/defaults/reliability-defaults.js.map +1 -1
- package/dist/src/constants/defaults/scheduler-defaults.d.ts +2 -0
- package/dist/src/constants/defaults/scheduler-defaults.d.ts.map +1 -1
- package/dist/src/constants/defaults/scheduler-defaults.js +2 -0
- package/dist/src/constants/defaults/scheduler-defaults.js.map +1 -1
- package/dist/src/constants/defaults/sink-defaults.d.ts +2 -0
- package/dist/src/constants/defaults/sink-defaults.d.ts.map +1 -1
- package/dist/src/constants/defaults/sink-defaults.js +2 -0
- package/dist/src/constants/defaults/sink-defaults.js.map +1 -1
- package/dist/src/constants/defaults/storage-defaults.d.ts +20 -0
- package/dist/src/constants/defaults/storage-defaults.d.ts.map +1 -1
- package/dist/src/constants/defaults/storage-defaults.js +21 -1
- package/dist/src/constants/defaults/storage-defaults.js.map +1 -1
- package/dist/src/constants/defaults/ui-defaults.d.ts +4 -0
- package/dist/src/constants/defaults/ui-defaults.d.ts.map +1 -1
- package/dist/src/constants/defaults/ui-defaults.js +4 -0
- package/dist/src/constants/defaults/ui-defaults.js.map +1 -1
- package/dist/src/constants/enums.d.ts +11 -2
- package/dist/src/constants/enums.d.ts.map +1 -1
- package/dist/src/constants/enums.js +9 -0
- package/dist/src/constants/enums.js.map +1 -1
- package/dist/src/constants/file-format-metadata.js +3 -3
- package/dist/src/constants/file-format-metadata.js.map +1 -1
- package/dist/src/constants/services.d.ts +1 -0
- package/dist/src/constants/services.d.ts.map +1 -1
- package/dist/src/constants/services.js +1 -0
- package/dist/src/constants/services.js.map +1 -1
- package/dist/src/data-hub.plugin.d.ts.map +1 -1
- package/dist/src/data-hub.plugin.js +3 -5
- package/dist/src/data-hub.plugin.js.map +1 -1
- package/dist/src/entities/data/checkpoint.entity.d.ts +1 -1
- package/dist/src/entities/data/checkpoint.entity.d.ts.map +1 -1
- package/dist/src/entities/data/checkpoint.entity.js +3 -4
- package/dist/src/entities/data/checkpoint.entity.js.map +1 -1
- package/dist/src/entities/data/error-record.entity.d.ts +2 -2
- package/dist/src/entities/data/error-record.entity.d.ts.map +1 -1
- package/dist/src/entities/data/error-record.entity.js +3 -3
- package/dist/src/entities/data/error-record.entity.js.map +1 -1
- package/dist/src/entities/data/retry-audit.entity.d.ts +1 -1
- package/dist/src/entities/data/retry-audit.entity.d.ts.map +1 -1
- package/dist/src/entities/data/retry-audit.entity.js +2 -2
- package/dist/src/entities/data/retry-audit.entity.js.map +1 -1
- package/dist/src/entities/pipeline/pipeline-log.entity.js +1 -1
- package/dist/src/entities/pipeline/pipeline-log.entity.js.map +1 -1
- package/dist/src/entities/pipeline/pipeline-revision.entity.d.ts +1 -1
- package/dist/src/entities/pipeline/pipeline-revision.entity.d.ts.map +1 -1
- package/dist/src/entities/pipeline/pipeline-revision.entity.js +2 -2
- package/dist/src/entities/pipeline/pipeline-revision.entity.js.map +1 -1
- package/dist/src/entities/pipeline/pipeline-run.entity.d.ts +3 -3
- package/dist/src/entities/pipeline/pipeline-run.entity.d.ts.map +1 -1
- package/dist/src/entities/pipeline/pipeline-run.entity.js +4 -4
- package/dist/src/entities/pipeline/pipeline-run.entity.js.map +1 -1
- package/dist/src/entities/pipeline/pipeline.entity.d.ts.map +1 -1
- package/dist/src/entities/pipeline/pipeline.entity.js +1 -4
- package/dist/src/entities/pipeline/pipeline.entity.js.map +1 -1
- package/dist/src/extractors/cdc/cdc.extractor.js +7 -6
- package/dist/src/extractors/cdc/cdc.extractor.js.map +1 -1
- package/dist/src/extractors/database/connection-pool.d.ts +1 -1
- package/dist/src/extractors/database/connection-pool.d.ts.map +1 -1
- package/dist/src/extractors/database/connection-pool.js +84 -7
- package/dist/src/extractors/database/connection-pool.js.map +1 -1
- package/dist/src/extractors/database/database.extractor.d.ts.map +1 -1
- package/dist/src/extractors/database/database.extractor.js +1 -3
- package/dist/src/extractors/database/database.extractor.js.map +1 -1
- package/dist/src/extractors/database/query-builder.d.ts.map +1 -1
- package/dist/src/extractors/database/query-builder.js +15 -19
- package/dist/src/extractors/database/query-builder.js.map +1 -1
- package/dist/src/extractors/ftp/connection.d.ts.map +1 -1
- package/dist/src/extractors/ftp/connection.js +36 -18
- package/dist/src/extractors/ftp/connection.js.map +1 -1
- package/dist/src/extractors/graphql/graphql.extractor.d.ts.map +1 -1
- package/dist/src/extractors/graphql/graphql.extractor.js +8 -1
- package/dist/src/extractors/graphql/graphql.extractor.js.map +1 -1
- package/dist/src/extractors/graphql/helpers.d.ts.map +1 -1
- package/dist/src/extractors/graphql/helpers.js +0 -1
- package/dist/src/extractors/graphql/helpers.js.map +1 -1
- package/dist/src/extractors/graphql/schema.d.ts.map +1 -1
- package/dist/src/extractors/graphql/schema.js +3 -36
- package/dist/src/extractors/graphql/schema.js.map +1 -1
- package/dist/src/extractors/http-api/http-api.extractor.d.ts.map +1 -1
- package/dist/src/extractors/http-api/http-api.extractor.js +3 -1
- package/dist/src/extractors/http-api/http-api.extractor.js.map +1 -1
- package/dist/src/extractors/http-api/response-parser.d.ts.map +1 -1
- package/dist/src/extractors/http-api/response-parser.js +11 -1
- package/dist/src/extractors/http-api/response-parser.js.map +1 -1
- package/dist/src/extractors/http-api/schema.d.ts.map +1 -1
- package/dist/src/extractors/http-api/schema.js +0 -6
- package/dist/src/extractors/http-api/schema.js.map +1 -1
- package/dist/src/extractors/s3/client.d.ts.map +1 -1
- package/dist/src/extractors/s3/client.js +17 -3
- package/dist/src/extractors/s3/client.js.map +1 -1
- package/dist/src/extractors/shared/file-format.utils.d.ts +1 -1
- package/dist/src/extractors/shared/file-format.utils.js +2 -2
- package/dist/src/extractors/shared/file-format.utils.js.map +1 -1
- package/dist/src/feeds/feed-generator.service.d.ts.map +1 -1
- package/dist/src/feeds/feed-generator.service.js +4 -2
- package/dist/src/feeds/feed-generator.service.js.map +1 -1
- package/dist/src/feeds/generators/csv-feed.generator.d.ts.map +1 -1
- package/dist/src/feeds/generators/csv-feed.generator.js +4 -4
- package/dist/src/feeds/generators/csv-feed.generator.js.map +1 -1
- package/dist/src/feeds/generators/feed-helpers.d.ts.map +1 -1
- package/dist/src/feeds/generators/feed-helpers.js +5 -4
- package/dist/src/feeds/generators/feed-helpers.js.map +1 -1
- package/dist/src/feeds/generators/json-feed.generator.js +1 -1
- package/dist/src/feeds/generators/json-feed.generator.js.map +1 -1
- package/dist/src/gql/generated.d.ts +41 -14
- package/dist/src/gql/generated.d.ts.map +1 -1
- package/dist/src/gql/generated.js.map +1 -1
- package/dist/src/index.d.ts +3 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +19 -5
- package/dist/src/index.js.map +1 -1
- package/dist/src/jobs/handlers/schedule.handler.d.ts.map +1 -1
- package/dist/src/jobs/handlers/schedule.handler.js +6 -4
- package/dist/src/jobs/handlers/schedule.handler.js.map +1 -1
- package/dist/src/jobs/processors/job-processor.js +1 -1
- package/dist/src/jobs/processors/job-processor.js.map +1 -1
- package/dist/src/loaders/asset/asset.loader.d.ts +3 -18
- package/dist/src/loaders/asset/asset.loader.d.ts.map +1 -1
- package/dist/src/loaders/asset/asset.loader.js +4 -20
- package/dist/src/loaders/asset/asset.loader.js.map +1 -1
- package/dist/src/loaders/asset/helpers.d.ts.map +1 -1
- package/dist/src/loaders/asset/helpers.js +19 -9
- package/dist/src/loaders/asset/helpers.js.map +1 -1
- package/dist/src/loaders/base/base-loader.js +1 -1
- package/dist/src/loaders/base/base-loader.js.map +1 -1
- package/dist/src/loaders/base/validation-builder.d.ts.map +1 -1
- package/dist/src/loaders/base/validation-builder.js +0 -1
- package/dist/src/loaders/base/validation-builder.js.map +1 -1
- package/dist/src/loaders/channel/channel.loader.d.ts +3 -27
- package/dist/src/loaders/channel/channel.loader.d.ts.map +1 -1
- package/dist/src/loaders/channel/channel.loader.js +4 -30
- package/dist/src/loaders/channel/channel.loader.js.map +1 -1
- package/dist/src/loaders/channel/helpers.d.ts.map +1 -1
- package/dist/src/loaders/channel/helpers.js +4 -5
- package/dist/src/loaders/channel/helpers.js.map +1 -1
- package/dist/src/loaders/collection/collection.loader.d.ts +3 -17
- package/dist/src/loaders/collection/collection.loader.d.ts.map +1 -1
- package/dist/src/loaders/collection/collection.loader.js +6 -18
- package/dist/src/loaders/collection/collection.loader.js.map +1 -1
- package/dist/src/loaders/collection/helpers.d.ts.map +1 -1
- package/dist/src/loaders/collection/helpers.js +4 -5
- package/dist/src/loaders/collection/helpers.js.map +1 -1
- package/dist/src/loaders/customer/customer.loader.d.ts +3 -15
- package/dist/src/loaders/customer/customer.loader.d.ts.map +1 -1
- package/dist/src/loaders/customer/customer.loader.js +6 -17
- package/dist/src/loaders/customer/customer.loader.js.map +1 -1
- package/dist/src/loaders/customer/helpers.d.ts +0 -1
- package/dist/src/loaders/customer/helpers.d.ts.map +1 -1
- package/dist/src/loaders/customer/helpers.js +9 -12
- package/dist/src/loaders/customer/helpers.js.map +1 -1
- package/dist/src/loaders/customer-group/customer-group.loader.d.ts +3 -15
- package/dist/src/loaders/customer-group/customer-group.loader.d.ts.map +1 -1
- package/dist/src/loaders/customer-group/customer-group.loader.js +3 -16
- package/dist/src/loaders/customer-group/customer-group.loader.js.map +1 -1
- package/dist/src/loaders/facet/facet.loader.d.ts +3 -15
- package/dist/src/loaders/facet/facet.loader.d.ts.map +1 -1
- package/dist/src/loaders/facet/facet.loader.js +4 -17
- package/dist/src/loaders/facet/facet.loader.js.map +1 -1
- package/dist/src/loaders/facet-value/facet-value.loader.d.ts +1 -7
- package/dist/src/loaders/facet-value/facet-value.loader.d.ts.map +1 -1
- package/dist/src/loaders/facet-value/facet-value.loader.js +4 -10
- package/dist/src/loaders/facet-value/facet-value.loader.js.map +1 -1
- package/dist/src/loaders/inventory/inventory.loader.d.ts +4 -13
- package/dist/src/loaders/inventory/inventory.loader.d.ts.map +1 -1
- package/dist/src/loaders/inventory/inventory.loader.js +13 -18
- package/dist/src/loaders/inventory/inventory.loader.js.map +1 -1
- package/dist/src/loaders/order/helpers.d.ts +1 -6
- package/dist/src/loaders/order/helpers.d.ts.map +1 -1
- package/dist/src/loaders/order/helpers.js +12 -31
- package/dist/src/loaders/order/helpers.js.map +1 -1
- package/dist/src/loaders/order/order.loader.d.ts +1 -6
- package/dist/src/loaders/order/order.loader.d.ts.map +1 -1
- package/dist/src/loaders/order/order.loader.js +26 -25
- package/dist/src/loaders/order/order.loader.js.map +1 -1
- package/dist/src/loaders/order/types.d.ts +3 -3
- package/dist/src/loaders/order/types.js +1 -1
- package/dist/src/loaders/payment-method/payment-method.loader.d.ts +3 -33
- package/dist/src/loaders/payment-method/payment-method.loader.d.ts.map +1 -1
- package/dist/src/loaders/payment-method/payment-method.loader.js +10 -42
- package/dist/src/loaders/payment-method/payment-method.loader.js.map +1 -1
- package/dist/src/loaders/product/product.loader.d.ts +3 -15
- package/dist/src/loaders/product/product.loader.d.ts.map +1 -1
- package/dist/src/loaders/product/product.loader.js +3 -16
- package/dist/src/loaders/product/product.loader.js.map +1 -1
- package/dist/src/loaders/product-variant/helpers.d.ts.map +1 -1
- package/dist/src/loaders/product-variant/helpers.js +2 -1
- package/dist/src/loaders/product-variant/helpers.js.map +1 -1
- package/dist/src/loaders/product-variant/product-variant.loader.d.ts +1 -12
- package/dist/src/loaders/product-variant/product-variant.loader.d.ts.map +1 -1
- package/dist/src/loaders/product-variant/product-variant.loader.js +4 -16
- package/dist/src/loaders/product-variant/product-variant.loader.js.map +1 -1
- package/dist/src/loaders/promotion/helpers.d.ts +2 -22
- package/dist/src/loaders/promotion/helpers.d.ts.map +1 -1
- package/dist/src/loaders/promotion/helpers.js +7 -28
- package/dist/src/loaders/promotion/helpers.js.map +1 -1
- package/dist/src/loaders/promotion/promotion.loader.d.ts +3 -15
- package/dist/src/loaders/promotion/promotion.loader.d.ts.map +1 -1
- package/dist/src/loaders/promotion/promotion.loader.js +11 -23
- package/dist/src/loaders/promotion/promotion.loader.js.map +1 -1
- package/dist/src/loaders/shared-helpers.d.ts.map +1 -1
- package/dist/src/loaders/shared-helpers.js +17 -8
- package/dist/src/loaders/shared-helpers.js.map +1 -1
- package/dist/src/loaders/shipping-method/shipping-method.loader.d.ts +3 -15
- package/dist/src/loaders/shipping-method/shipping-method.loader.d.ts.map +1 -1
- package/dist/src/loaders/shipping-method/shipping-method.loader.js +10 -24
- package/dist/src/loaders/shipping-method/shipping-method.loader.js.map +1 -1
- package/dist/src/loaders/stock-location/stock-location.loader.d.ts +3 -15
- package/dist/src/loaders/stock-location/stock-location.loader.d.ts.map +1 -1
- package/dist/src/loaders/stock-location/stock-location.loader.js +3 -16
- package/dist/src/loaders/stock-location/stock-location.loader.js.map +1 -1
- package/dist/src/loaders/tax-rate/helpers.d.ts.map +1 -1
- package/dist/src/loaders/tax-rate/helpers.js +3 -2
- package/dist/src/loaders/tax-rate/helpers.js.map +1 -1
- package/dist/src/loaders/tax-rate/tax-rate.loader.d.ts +3 -23
- package/dist/src/loaders/tax-rate/tax-rate.loader.d.ts.map +1 -1
- package/dist/src/loaders/tax-rate/tax-rate.loader.js +5 -25
- package/dist/src/loaders/tax-rate/tax-rate.loader.js.map +1 -1
- package/dist/src/mappers/helpers/mapping-helpers.d.ts.map +1 -1
- package/dist/src/mappers/helpers/mapping-helpers.js +0 -2
- package/dist/src/mappers/helpers/mapping-helpers.js.map +1 -1
- package/dist/src/mappers/transformers/string/string-transformers.js +2 -2
- package/dist/src/mappers/transformers/string/string-transformers.js.map +1 -1
- package/dist/src/operators/aggregation/helpers.d.ts.map +1 -1
- package/dist/src/operators/aggregation/helpers.js +2 -3
- package/dist/src/operators/aggregation/helpers.js.map +1 -1
- package/dist/src/operators/date/helpers.js +1 -1
- package/dist/src/operators/date/helpers.js.map +1 -1
- package/dist/src/operators/enrichment/helpers.d.ts.map +1 -1
- package/dist/src/operators/enrichment/helpers.js +6 -8
- package/dist/src/operators/enrichment/helpers.js.map +1 -1
- package/dist/src/operators/helpers.d.ts.map +1 -1
- package/dist/src/operators/helpers.js +5 -4
- package/dist/src/operators/helpers.js.map +1 -1
- package/dist/src/operators/index.d.ts +1 -1
- package/dist/src/operators/index.d.ts.map +1 -1
- package/dist/src/operators/index.js +1 -1
- package/dist/src/operators/index.js.map +1 -1
- package/dist/src/operators/json/helpers.js +1 -1
- package/dist/src/operators/json/helpers.js.map +1 -1
- package/dist/src/operators/logic/helpers.d.ts.map +1 -1
- package/dist/src/operators/logic/helpers.js +4 -3
- package/dist/src/operators/logic/helpers.js.map +1 -1
- package/dist/src/operators/numeric/helpers.js +1 -1
- package/dist/src/operators/numeric/helpers.js.map +1 -1
- package/dist/src/operators/script/script.operators.d.ts.map +1 -1
- package/dist/src/operators/script/script.operators.js +17 -8
- package/dist/src/operators/script/script.operators.js.map +1 -1
- package/dist/src/operators/string/helpers.js +3 -3
- package/dist/src/operators/string/helpers.js.map +1 -1
- package/dist/src/parsers/formats/json.parser.d.ts.map +1 -1
- package/dist/src/parsers/formats/json.parser.js +6 -7
- package/dist/src/parsers/formats/json.parser.js.map +1 -1
- package/dist/src/parsers/formats/xml.parser.d.ts.map +1 -1
- package/dist/src/parsers/formats/xml.parser.js +5 -7
- package/dist/src/parsers/formats/xml.parser.js.map +1 -1
- package/dist/src/parsers/helpers/encoding.d.ts.map +1 -1
- package/dist/src/parsers/helpers/encoding.js +4 -3
- package/dist/src/parsers/helpers/encoding.js.map +1 -1
- package/dist/src/parsers/types.d.ts +2 -2
- package/dist/src/parsers/types.js +2 -2
- package/dist/src/runtime/adapter-runtime.service.d.ts +1 -0
- package/dist/src/runtime/adapter-runtime.service.d.ts.map +1 -1
- package/dist/src/runtime/adapter-runtime.service.js +62 -43
- package/dist/src/runtime/adapter-runtime.service.js.map +1 -1
- package/dist/src/runtime/executors/context-adapters.d.ts +4 -9
- package/dist/src/runtime/executors/context-adapters.d.ts.map +1 -1
- package/dist/src/runtime/executors/context-adapters.js +4 -4
- package/dist/src/runtime/executors/context-adapters.js.map +1 -1
- package/dist/src/runtime/executors/export.executor.d.ts.map +1 -1
- package/dist/src/runtime/executors/export.executor.js +10 -7
- package/dist/src/runtime/executors/export.executor.js.map +1 -1
- package/dist/src/runtime/executors/exporters/export-handler-registry.d.ts.map +1 -1
- package/dist/src/runtime/executors/exporters/export-handler-registry.js +0 -8
- package/dist/src/runtime/executors/exporters/export-handler-registry.js.map +1 -1
- package/dist/src/runtime/executors/exporters/export-helpers.js +1 -1
- package/dist/src/runtime/executors/exporters/export-helpers.js.map +1 -1
- package/dist/src/runtime/executors/exporters/http-export.handler.js +2 -2
- package/dist/src/runtime/executors/exporters/http-export.handler.js.map +1 -1
- package/dist/src/runtime/executors/extract.executor.d.ts.map +1 -1
- package/dist/src/runtime/executors/extract.executor.js +0 -1
- package/dist/src/runtime/executors/extract.executor.js.map +1 -1
- package/dist/src/runtime/executors/extractors/file-extract.handler.d.ts +2 -1
- package/dist/src/runtime/executors/extractors/file-extract.handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/extractors/file-extract.handler.js +24 -5
- package/dist/src/runtime/executors/extractors/file-extract.handler.js.map +1 -1
- package/dist/src/runtime/executors/extractors/graphql-extract.handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/extractors/graphql-extract.handler.js +67 -10
- package/dist/src/runtime/executors/extractors/graphql-extract.handler.js.map +1 -1
- package/dist/src/runtime/executors/extractors/rest-extract.handler.d.ts +2 -1
- package/dist/src/runtime/executors/extractors/rest-extract.handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/extractors/rest-extract.handler.js +133 -27
- package/dist/src/runtime/executors/extractors/rest-extract.handler.js.map +1 -1
- package/dist/src/runtime/executors/feed.executor.d.ts +1 -1
- package/dist/src/runtime/executors/feed.executor.js +5 -5
- package/dist/src/runtime/executors/feed.executor.js.map +1 -1
- package/dist/src/runtime/executors/feeds/feed-handler-registry.d.ts.map +1 -1
- package/dist/src/runtime/executors/feeds/feed-handler-registry.js +0 -13
- package/dist/src/runtime/executors/feeds/feed-handler-registry.js.map +1 -1
- package/dist/src/runtime/executors/gate.executor.d.ts.map +1 -1
- package/dist/src/runtime/executors/gate.executor.js +16 -9
- package/dist/src/runtime/executors/gate.executor.js.map +1 -1
- package/dist/src/runtime/executors/load.executor.js +2 -2
- package/dist/src/runtime/executors/load.executor.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 +16 -20
- package/dist/src/runtime/executors/loaders/channel-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/customer-handler.d.ts +1 -1
- package/dist/src/runtime/executors/loaders/customer-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/customer-handler.js +20 -20
- package/dist/src/runtime/executors/loaders/customer-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/deletion-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/deletion-handler.js +16 -14
- package/dist/src/runtime/executors/loaders/deletion-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/inventory-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/inventory-handler.js +15 -20
- 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 +0 -11
- package/dist/src/runtime/executors/loaders/loader-handler-registry.js.map +1 -1
- package/dist/src/runtime/executors/loaders/order-handler.d.ts +2 -1
- package/dist/src/runtime/executors/loaders/order-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/order-handler.js +20 -10
- package/dist/src/runtime/executors/loaders/order-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/product-handler.d.ts +0 -4
- package/dist/src/runtime/executors/loaders/product-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/product-handler.js +2 -8
- package/dist/src/runtime/executors/loaders/product-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/promotion-handler.js +10 -10
- package/dist/src/runtime/executors/loaders/promotion-handler.js.map +1 -1
- package/dist/src/runtime/executors/loaders/shared-http-client.js +1 -1
- package/dist/src/runtime/executors/loaders/shared-http-client.js.map +1 -1
- package/dist/src/runtime/executors/loaders/shared-lookups.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/shared-lookups.js +3 -4
- package/dist/src/runtime/executors/loaders/shared-lookups.js.map +1 -1
- package/dist/src/runtime/executors/loaders/variant-handler.d.ts.map +1 -1
- package/dist/src/runtime/executors/loaders/variant-handler.js +27 -19
- package/dist/src/runtime/executors/loaders/variant-handler.js.map +1 -1
- package/dist/src/runtime/executors/sink-handler-registry.d.ts +2 -0
- package/dist/src/runtime/executors/sink-handler-registry.d.ts.map +1 -1
- package/dist/src/runtime/executors/sink-handler-registry.js +82 -49
- package/dist/src/runtime/executors/sink-handler-registry.js.map +1 -1
- package/dist/src/runtime/executors/sink.executor.js +4 -4
- package/dist/src/runtime/executors/sink.executor.js.map +1 -1
- package/dist/src/runtime/executors/transform.executor.d.ts +1 -1
- package/dist/src/runtime/executors/transform.executor.d.ts.map +1 -1
- package/dist/src/runtime/executors/transform.executor.js +44 -30
- package/dist/src/runtime/executors/transform.executor.js.map +1 -1
- package/dist/src/runtime/helpers/dry-run-simulator.js +4 -4
- package/dist/src/runtime/helpers/dry-run-simulator.js.map +1 -1
- package/dist/src/runtime/helpers/execution-lifecycle.d.ts +1 -0
- package/dist/src/runtime/helpers/execution-lifecycle.d.ts.map +1 -1
- package/dist/src/runtime/helpers/execution-lifecycle.js +2 -2
- package/dist/src/runtime/helpers/execution-lifecycle.js.map +1 -1
- package/dist/src/runtime/orchestration/graph-executor.d.ts +1 -0
- package/dist/src/runtime/orchestration/graph-executor.d.ts.map +1 -1
- package/dist/src/runtime/orchestration/graph-executor.js +31 -36
- package/dist/src/runtime/orchestration/graph-executor.js.map +1 -1
- package/dist/src/runtime/orchestration/linear-executor.d.ts +3 -0
- package/dist/src/runtime/orchestration/linear-executor.d.ts.map +1 -1
- package/dist/src/runtime/orchestration/linear-executor.js +3 -13
- package/dist/src/runtime/orchestration/linear-executor.js.map +1 -1
- package/dist/src/runtime/orchestration/replay-executor.d.ts.map +1 -1
- package/dist/src/runtime/orchestration/replay-executor.js +17 -3
- package/dist/src/runtime/orchestration/replay-executor.js.map +1 -1
- package/dist/src/runtime/orchestration/throughput-controller.d.ts.map +1 -1
- package/dist/src/runtime/orchestration/throughput-controller.js +0 -5
- package/dist/src/runtime/orchestration/throughput-controller.js.map +1 -1
- package/dist/src/runtime/sandbox/safe-evaluator.d.ts.map +1 -1
- package/dist/src/runtime/sandbox/safe-evaluator.js +3 -6
- package/dist/src/runtime/sandbox/safe-evaluator.js.map +1 -1
- package/dist/src/runtime/utils.d.ts +1 -1
- package/dist/src/runtime/utils.d.ts.map +1 -1
- package/dist/src/runtime/utils.js +7 -4
- package/dist/src/runtime/utils.js.map +1 -1
- package/dist/src/sdk/adapters/queue/internal.adapter.d.ts +3 -14
- package/dist/src/sdk/adapters/queue/internal.adapter.d.ts.map +1 -1
- package/dist/src/sdk/adapters/queue/internal.adapter.js +41 -27
- package/dist/src/sdk/adapters/queue/internal.adapter.js.map +1 -1
- package/dist/src/sdk/adapters/queue/queue-adapter.interface.d.ts +24 -23
- package/dist/src/sdk/adapters/queue/queue-adapter.interface.d.ts.map +1 -1
- package/dist/src/sdk/adapters/queue/rabbitmq-amqp.adapter.d.ts.map +1 -1
- package/dist/src/sdk/adapters/queue/rabbitmq-amqp.adapter.js +1 -3
- package/dist/src/sdk/adapters/queue/rabbitmq-amqp.adapter.js.map +1 -1
- package/dist/src/sdk/adapters/queue/rabbitmq.adapter.d.ts +2 -17
- package/dist/src/sdk/adapters/queue/rabbitmq.adapter.d.ts.map +1 -1
- package/dist/src/sdk/adapters/queue/rabbitmq.adapter.js +9 -20
- package/dist/src/sdk/adapters/queue/rabbitmq.adapter.js.map +1 -1
- package/dist/src/sdk/adapters/queue/redis-streams.adapter.d.ts.map +1 -1
- package/dist/src/sdk/adapters/queue/redis-streams.adapter.js +11 -3
- package/dist/src/sdk/adapters/queue/redis-streams.adapter.js.map +1 -1
- package/dist/src/sdk/adapters/queue/sqs.adapter.d.ts +1 -1
- package/dist/src/sdk/adapters/queue/sqs.adapter.d.ts.map +1 -1
- package/dist/src/sdk/adapters/queue/sqs.adapter.js +5 -4
- package/dist/src/sdk/adapters/queue/sqs.adapter.js.map +1 -1
- package/dist/src/sdk/constants.d.ts +1 -1
- package/dist/src/sdk/constants.d.ts.map +1 -1
- package/dist/src/sdk/constants.js +2 -1
- package/dist/src/sdk/constants.js.map +1 -1
- package/dist/src/sdk/dsl/pipeline-builder.js +1 -1
- package/dist/src/sdk/dsl/pipeline-builder.js.map +1 -1
- package/dist/src/sdk/dsl/step-configs.d.ts +51 -10
- package/dist/src/sdk/dsl/step-configs.d.ts.map +1 -1
- package/dist/src/sdk/dsl/transform-builder.d.ts +2 -2
- package/dist/src/sdk/dsl/transform-builder.d.ts.map +1 -1
- package/dist/src/sdk/dsl/transform-builder.js +2 -2
- package/dist/src/sdk/dsl/transform-builder.js.map +1 -1
- package/dist/src/sdk/dsl/validation-helpers.js +3 -3
- package/dist/src/sdk/dsl/validation-helpers.js.map +1 -1
- package/dist/src/sdk/registry.service.js +2 -2
- package/dist/src/sdk/registry.service.js.map +1 -1
- package/dist/src/sdk/types/connection-types.d.ts +1 -1
- package/dist/src/sdk/types/connection-types.d.ts.map +1 -1
- package/dist/src/services/analytics/time-series.helpers.d.ts.map +1 -1
- package/dist/src/services/analytics/time-series.helpers.js +4 -6
- package/dist/src/services/analytics/time-series.helpers.js.map +1 -1
- package/dist/src/services/config/connection.service.d.ts.map +1 -1
- package/dist/src/services/config/connection.service.js +11 -1
- package/dist/src/services/config/connection.service.js.map +1 -1
- package/dist/src/services/config/secret.service.d.ts +1 -1
- package/dist/src/services/config/secret.service.d.ts.map +1 -1
- package/dist/src/services/config/secret.service.js +15 -8
- package/dist/src/services/config/secret.service.js.map +1 -1
- package/dist/src/services/config/settings.service.d.ts.map +1 -1
- package/dist/src/services/config/settings.service.js +0 -2
- package/dist/src/services/config/settings.service.js.map +1 -1
- package/dist/src/services/data/checkpoint.service.d.ts.map +1 -1
- package/dist/src/services/data/checkpoint.service.js +14 -8
- package/dist/src/services/data/checkpoint.service.js.map +1 -1
- package/dist/src/services/data/record-error.service.d.ts.map +1 -1
- package/dist/src/services/data/record-error.service.js +0 -13
- package/dist/src/services/data/record-error.service.js.map +1 -1
- package/dist/src/services/destinations/delivery-utils.d.ts +1 -1
- package/dist/src/services/destinations/delivery-utils.d.ts.map +1 -1
- package/dist/src/services/destinations/delivery-utils.js +4 -2
- package/dist/src/services/destinations/delivery-utils.js.map +1 -1
- package/dist/src/services/destinations/destination-handler-registry.d.ts.map +1 -1
- package/dist/src/services/destinations/destination-handler-registry.js +9 -5
- package/dist/src/services/destinations/destination-handler-registry.js.map +1 -1
- package/dist/src/services/destinations/email.handler.js +1 -1
- package/dist/src/services/destinations/email.handler.js.map +1 -1
- package/dist/src/services/destinations/ftp.handler.js +1 -1
- package/dist/src/services/destinations/ftp.handler.js.map +1 -1
- package/dist/src/services/destinations/http.handler.d.ts.map +1 -1
- package/dist/src/services/destinations/http.handler.js +1 -0
- package/dist/src/services/destinations/http.handler.js.map +1 -1
- package/dist/src/services/destinations/s3.handler.d.ts.map +1 -1
- package/dist/src/services/destinations/s3.handler.js +25 -11
- package/dist/src/services/destinations/s3.handler.js.map +1 -1
- package/dist/src/services/events/consumer-discovery.d.ts.map +1 -1
- package/dist/src/services/events/consumer-discovery.js +13 -12
- package/dist/src/services/events/consumer-discovery.js.map +1 -1
- package/dist/src/services/events/domain-events.service.d.ts.map +1 -1
- package/dist/src/services/events/domain-events.service.js +2 -2
- package/dist/src/services/events/domain-events.service.js.map +1 -1
- package/dist/src/services/events/event-trigger.service.d.ts.map +1 -1
- package/dist/src/services/events/event-trigger.service.js +56 -9
- package/dist/src/services/events/event-trigger.service.js.map +1 -1
- package/dist/src/services/events/file-watch.service.d.ts +6 -1
- package/dist/src/services/events/file-watch.service.d.ts.map +1 -1
- package/dist/src/services/events/file-watch.service.js +133 -48
- package/dist/src/services/events/file-watch.service.js.map +1 -1
- package/dist/src/services/events/hook.service.d.ts.map +1 -1
- package/dist/src/services/events/hook.service.js +64 -12
- package/dist/src/services/events/hook.service.js.map +1 -1
- package/dist/src/services/events/message-consumer.service.d.ts +3 -1
- package/dist/src/services/events/message-consumer.service.d.ts.map +1 -1
- package/dist/src/services/events/message-consumer.service.js +6 -4
- package/dist/src/services/events/message-consumer.service.js.map +1 -1
- package/dist/src/services/events/message-processing.d.ts +4 -1
- package/dist/src/services/events/message-processing.d.ts.map +1 -1
- package/dist/src/services/events/message-processing.js +47 -6
- package/dist/src/services/events/message-processing.js.map +1 -1
- package/dist/src/services/logger/sanitizer.d.ts.map +1 -1
- package/dist/src/services/logger/sanitizer.js +4 -5
- package/dist/src/services/logger/sanitizer.js.map +1 -1
- package/dist/src/services/pipeline/pipeline-log.service.d.ts +0 -4
- package/dist/src/services/pipeline/pipeline-log.service.d.ts.map +1 -1
- package/dist/src/services/pipeline/pipeline-log.service.js +2 -14
- package/dist/src/services/pipeline/pipeline-log.service.js.map +1 -1
- package/dist/src/services/pipeline/pipeline-runner.service.d.ts +6 -1
- package/dist/src/services/pipeline/pipeline-runner.service.d.ts.map +1 -1
- package/dist/src/services/pipeline/pipeline-runner.service.js +111 -17
- package/dist/src/services/pipeline/pipeline-runner.service.js.map +1 -1
- package/dist/src/services/pipeline/pipeline.service.d.ts +8 -4
- package/dist/src/services/pipeline/pipeline.service.d.ts.map +1 -1
- package/dist/src/services/pipeline/pipeline.service.js +51 -35
- package/dist/src/services/pipeline/pipeline.service.js.map +1 -1
- package/dist/src/services/rate-limit/rate-limit.service.d.ts.map +1 -1
- package/dist/src/services/rate-limit/rate-limit.service.js +3 -5
- package/dist/src/services/rate-limit/rate-limit.service.js.map +1 -1
- package/dist/src/services/runtime/batch-rollback.service.d.ts.map +1 -1
- package/dist/src/services/runtime/batch-rollback.service.js +1 -6
- package/dist/src/services/runtime/batch-rollback.service.js.map +1 -1
- package/dist/src/services/runtime/distributed-lock.service.d.ts.map +1 -1
- package/dist/src/services/runtime/distributed-lock.service.js +10 -12
- package/dist/src/services/runtime/distributed-lock.service.js.map +1 -1
- package/dist/src/services/runtime/lock-backends/lock-backend.factory.d.ts +1 -1
- package/dist/src/services/runtime/lock-backends/lock-backend.factory.d.ts.map +1 -1
- package/dist/src/services/runtime/lock-backends/lock-backend.factory.js +5 -4
- package/dist/src/services/runtime/lock-backends/lock-backend.factory.js.map +1 -1
- package/dist/src/services/storage/storage-backend.factory.d.ts.map +1 -1
- package/dist/src/services/storage/storage-backend.factory.js +2 -1
- package/dist/src/services/storage/storage-backend.factory.js.map +1 -1
- package/dist/src/services/validation/adapter-validation.js +2 -2
- package/dist/src/services/validation/adapter-validation.js.map +1 -1
- package/dist/src/services/validation/definition-validation.service.d.ts.map +1 -1
- package/dist/src/services/validation/definition-validation.service.js +1 -1
- package/dist/src/services/validation/definition-validation.service.js.map +1 -1
- package/dist/src/services/validation/trigger-validation.d.ts.map +1 -1
- package/dist/src/services/validation/trigger-validation.js +23 -29
- package/dist/src/services/validation/trigger-validation.js.map +1 -1
- package/dist/src/services/versioning/field-detection.d.ts.map +1 -1
- package/dist/src/services/versioning/field-detection.js +0 -1
- package/dist/src/services/versioning/field-detection.js.map +1 -1
- package/dist/src/services/versioning/impact-collectors.d.ts.map +1 -1
- package/dist/src/services/versioning/impact-collectors.js +26 -11
- package/dist/src/services/versioning/impact-collectors.js.map +1 -1
- package/dist/src/services/versioning/revision.service.d.ts.map +1 -1
- package/dist/src/services/versioning/revision.service.js +4 -1
- package/dist/src/services/versioning/revision.service.js.map +1 -1
- package/dist/src/services/versioning/sandbox/load-operation-simulator.d.ts.map +1 -1
- package/dist/src/services/versioning/sandbox/load-operation-simulator.js +26 -10
- package/dist/src/services/versioning/sandbox/load-operation-simulator.js.map +1 -1
- package/dist/src/services/webhooks/webhook-retry.service.d.ts +1 -1
- package/dist/src/services/webhooks/webhook-retry.service.d.ts.map +1 -1
- package/dist/src/services/webhooks/webhook-retry.service.js +27 -22
- package/dist/src/services/webhooks/webhook-retry.service.js.map +1 -1
- package/dist/src/services/webhooks/webhook.helpers.js +1 -1
- package/dist/src/services/webhooks/webhook.helpers.js.map +1 -1
- package/dist/src/templates/defaults.js +6 -6
- package/dist/src/templates/defaults.js.map +1 -1
- package/dist/src/templates/imports/types.d.ts +1 -1
- package/dist/src/templates/imports/types.js +1 -1
- package/dist/src/transforms/field/date-transforms.js +15 -15
- package/dist/src/transforms/field/date-transforms.js.map +1 -1
- package/dist/src/transforms/field/number-transforms.d.ts +0 -26
- package/dist/src/transforms/field/number-transforms.d.ts.map +1 -1
- package/dist/src/transforms/field/number-transforms.js +0 -26
- package/dist/src/transforms/field/number-transforms.js.map +1 -1
- package/dist/src/transforms/helpers/expression-eval.d.ts +0 -1
- package/dist/src/transforms/helpers/expression-eval.d.ts.map +1 -1
- package/dist/src/transforms/helpers/expression-eval.js +15 -26
- package/dist/src/transforms/helpers/expression-eval.js.map +1 -1
- package/dist/src/transforms/record/lookup-transforms.js +1 -1
- package/dist/src/transforms/record/lookup-transforms.js.map +1 -1
- package/dist/src/types/loader-configs.d.ts +6 -6
- package/dist/src/types/loader-configs.d.ts.map +1 -1
- package/dist/src/types/plugin-options.d.ts +0 -10
- package/dist/src/types/plugin-options.d.ts.map +1 -1
- package/dist/src/types/step-configs.d.ts +13 -5
- package/dist/src/types/step-configs.d.ts.map +1 -1
- package/dist/src/types/step-configs.js.map +1 -1
- package/dist/src/types/typed-config.js +1 -1
- package/dist/src/types/typed-config.js.map +1 -1
- package/dist/src/utils/code-security.utils.d.ts.map +1 -1
- package/dist/src/utils/code-security.utils.js +11 -13
- package/dist/src/utils/code-security.utils.js.map +1 -1
- package/dist/src/utils/encryption.utils.d.ts +2 -2
- package/dist/src/utils/encryption.utils.d.ts.map +1 -1
- package/dist/src/utils/encryption.utils.js +13 -17
- package/dist/src/utils/encryption.utils.js.map +1 -1
- package/dist/src/utils/object-path.utils.d.ts.map +1 -1
- package/dist/src/utils/object-path.utils.js +22 -6
- package/dist/src/utils/object-path.utils.js.map +1 -1
- package/dist/src/utils/retry.utils.js +14 -14
- package/dist/src/utils/retry.utils.js.map +1 -1
- package/dist/src/utils/sql-security.utils.d.ts.map +1 -1
- package/dist/src/utils/sql-security.utils.js +6 -3
- package/dist/src/utils/sql-security.utils.js.map +1 -1
- package/dist/src/utils/url-security.utils.d.ts +21 -0
- package/dist/src/utils/url-security.utils.d.ts.map +1 -1
- package/dist/src/utils/url-security.utils.js +71 -3
- package/dist/src/utils/url-security.utils.js.map +1 -1
- package/dist/src/validation/pipeline-definition.validator.js +3 -11
- package/dist/src/validation/pipeline-definition.validator.js.map +1 -1
- package/docs/deployment/README.md +1 -1
- package/docs/deployment/configuration.md +4 -4
- package/docs/deployment/migrations.md +2 -3
- package/docs/deployment/permissions.md +1 -1
- package/docs/deployment/production.md +4 -4
- package/docs/deployment/troubleshooting.md +27 -18
- package/docs/developer-guide/architecture.md +2 -2
- package/docs/developer-guide/extending/README.md +6 -6
- package/docs/developer-guide/extending/events.md +2 -2
- package/docs/developer-guide/graphql-api.md +36 -117
- package/docs/examples/validation-error-messages.md +1 -1
- package/docs/getting-started/quick-start.md +1 -1
- package/docs/guides/multi-entity.md +0 -1
- package/docs/reference/extractors.md +19 -24
- package/docs/reference/operators-complete.md +1 -1
- package/docs/user-guide/external-integrations.md +1 -1
- package/docs/user-guide/queue-messaging.md +14 -11
- package/docs/user-guide/recipes.md +0 -1
- package/docs/user-guide/wizards.md +0 -1
- package/package.json +3 -1
- package/sdk/types/connection-types.ts +9 -0
- package/shared/constants/step-type-configs.ts +2 -2
- package/shared/types/adapter-config.types.ts +3 -3
- package/shared/types/adapter.types.ts +1 -1
- package/shared/types/execution.types.ts +2 -5
- package/shared/types/extractor.types.ts +1 -1
- package/shared/types/index.ts +1 -1
- package/shared/types/pipeline.types.ts +2 -3
- package/shared/types/step.types.ts +3 -4
- package/shared/types/trigger.types.ts +4 -28
- package/shared/utils/csv-parse.ts +2 -2
- package/shared/utils/validation.ts +1 -1
- package/shared/vendure-schemas.ts +1 -1
- package/dist/src/api/types/args.d.ts +0 -12
- package/dist/src/api/types/args.d.ts.map +0 -1
- package/dist/src/api/types/args.js +0 -13
- package/dist/src/api/types/args.js.map +0 -1
|
@@ -1797,10 +1797,15 @@ export type DataHubConnectionList = PaginatedList & {
|
|
|
1797
1797
|
};
|
|
1798
1798
|
|
|
1799
1799
|
export type DataHubConnectionListOptions = {
|
|
1800
|
-
|
|
1800
|
+
/** Allows the results to be filtered */
|
|
1801
|
+
filter?: InputMaybe<DataHubConnectionFilterParameter>;
|
|
1802
|
+
/** Specifies whether multiple top-level "filter" fields should be combined with a logical AND or OR operation. Defaults to AND. */
|
|
1801
1803
|
filterOperator?: InputMaybe<LogicalOperator>;
|
|
1804
|
+
/** Skips the first n results, for use in pagination */
|
|
1802
1805
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1803
|
-
sort
|
|
1806
|
+
/** Specifies which properties to sort the results by */
|
|
1807
|
+
sort?: InputMaybe<DataHubConnectionSortParameter>;
|
|
1808
|
+
/** Takes n results, for use in pagination */
|
|
1804
1809
|
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1805
1810
|
};
|
|
1806
1811
|
|
|
@@ -2497,10 +2502,15 @@ export type DataHubLogList = PaginatedList & {
|
|
|
2497
2502
|
};
|
|
2498
2503
|
|
|
2499
2504
|
export type DataHubLogListOptions = {
|
|
2500
|
-
|
|
2505
|
+
/** Allows the results to be filtered */
|
|
2506
|
+
filter?: InputMaybe<DataHubLogFilterParameter>;
|
|
2507
|
+
/** Specifies whether multiple top-level "filter" fields should be combined with a logical AND or OR operation. Defaults to AND. */
|
|
2501
2508
|
filterOperator?: InputMaybe<LogicalOperator>;
|
|
2509
|
+
/** Skips the first n results, for use in pagination */
|
|
2502
2510
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2503
|
-
sort
|
|
2511
|
+
/** Specifies which properties to sort the results by */
|
|
2512
|
+
sort?: InputMaybe<DataHubLogSortParameter>;
|
|
2513
|
+
/** Takes n results, for use in pagination */
|
|
2504
2514
|
take?: InputMaybe<Scalars['Int']['input']>;
|
|
2505
2515
|
};
|
|
2506
2516
|
|
|
@@ -2598,15 +2608,15 @@ export type DataHubPipelineList = PaginatedList & {
|
|
|
2598
2608
|
};
|
|
2599
2609
|
|
|
2600
2610
|
export type DataHubPipelineListOptions = {
|
|
2601
|
-
/**
|
|
2602
|
-
filter?: InputMaybe<
|
|
2603
|
-
/**
|
|
2611
|
+
/** Allows the results to be filtered */
|
|
2612
|
+
filter?: InputMaybe<DataHubPipelineFilterParameter>;
|
|
2613
|
+
/** Specifies whether multiple top-level "filter" fields should be combined with a logical AND or OR operation. Defaults to AND. */
|
|
2604
2614
|
filterOperator?: InputMaybe<LogicalOperator>;
|
|
2605
|
-
/**
|
|
2615
|
+
/** Skips the first n results, for use in pagination */
|
|
2606
2616
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2607
|
-
/**
|
|
2608
|
-
sort?: InputMaybe<
|
|
2609
|
-
/**
|
|
2617
|
+
/** Specifies which properties to sort the results by */
|
|
2618
|
+
sort?: InputMaybe<DataHubPipelineSortParameter>;
|
|
2619
|
+
/** Takes n results, for use in pagination */
|
|
2610
2620
|
take?: InputMaybe<Scalars['Int']['input']>;
|
|
2611
2621
|
};
|
|
2612
2622
|
|
|
@@ -2673,9 +2683,13 @@ export type DataHubPipelineRun = Node & {
|
|
|
2673
2683
|
__typename?: 'DataHubPipelineRun';
|
|
2674
2684
|
/** Checkpoint data for resumable pipelines: { lastProcessedId, cursor, state } */
|
|
2675
2685
|
checkpoint?: Maybe<Scalars['JSON']['output']>;
|
|
2686
|
+
/** Alias for finishedAt — when the run reached a terminal state */
|
|
2687
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2676
2688
|
createdAt: Scalars['DateTime']['output'];
|
|
2677
2689
|
/** Error message if run failed */
|
|
2678
2690
|
error?: Maybe<Scalars['String']['output']>;
|
|
2691
|
+
/** Alias for error — error message if the run failed */
|
|
2692
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
2679
2693
|
finishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2680
2694
|
id: Scalars['ID']['output'];
|
|
2681
2695
|
/** Execution metrics: { recordsProcessed, recordsFailed, stepMetrics, duration, etc. } */
|
|
@@ -2693,8 +2707,10 @@ export type DataHubPipelineRun = Node & {
|
|
|
2693
2707
|
export type DataHubPipelineRunFilterParameter = {
|
|
2694
2708
|
_and?: InputMaybe<Array<DataHubPipelineRunFilterParameter>>;
|
|
2695
2709
|
_or?: InputMaybe<Array<DataHubPipelineRunFilterParameter>>;
|
|
2710
|
+
completedAt?: InputMaybe<DateOperators>;
|
|
2696
2711
|
createdAt?: InputMaybe<DateOperators>;
|
|
2697
2712
|
error?: InputMaybe<StringOperators>;
|
|
2713
|
+
errorMessage?: InputMaybe<StringOperators>;
|
|
2698
2714
|
finishedAt?: InputMaybe<DateOperators>;
|
|
2699
2715
|
id?: InputMaybe<IdOperators>;
|
|
2700
2716
|
startedAt?: InputMaybe<DateOperators>;
|
|
@@ -2724,8 +2740,10 @@ export type DataHubPipelineRunListOptions = {
|
|
|
2724
2740
|
};
|
|
2725
2741
|
|
|
2726
2742
|
export type DataHubPipelineRunSortParameter = {
|
|
2743
|
+
completedAt?: InputMaybe<SortOrder>;
|
|
2727
2744
|
createdAt?: InputMaybe<SortOrder>;
|
|
2728
2745
|
error?: InputMaybe<SortOrder>;
|
|
2746
|
+
errorMessage?: InputMaybe<SortOrder>;
|
|
2729
2747
|
finishedAt?: InputMaybe<SortOrder>;
|
|
2730
2748
|
id?: InputMaybe<SortOrder>;
|
|
2731
2749
|
startedAt?: InputMaybe<SortOrder>;
|
|
@@ -3396,10 +3414,15 @@ export type DataHubSecretList = PaginatedList & {
|
|
|
3396
3414
|
};
|
|
3397
3415
|
|
|
3398
3416
|
export type DataHubSecretListOptions = {
|
|
3399
|
-
|
|
3417
|
+
/** Allows the results to be filtered */
|
|
3418
|
+
filter?: InputMaybe<DataHubSecretFilterParameter>;
|
|
3419
|
+
/** Specifies whether multiple top-level "filter" fields should be combined with a logical AND or OR operation. Defaults to AND. */
|
|
3400
3420
|
filterOperator?: InputMaybe<LogicalOperator>;
|
|
3421
|
+
/** Skips the first n results, for use in pagination */
|
|
3401
3422
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3402
|
-
sort
|
|
3423
|
+
/** Specifies which properties to sort the results by */
|
|
3424
|
+
sort?: InputMaybe<DataHubSecretSortParameter>;
|
|
3425
|
+
/** Takes n results, for use in pagination */
|
|
3403
3426
|
take?: InputMaybe<Scalars['Int']['input']>;
|
|
3404
3427
|
};
|
|
3405
3428
|
|
|
@@ -5280,7 +5303,11 @@ export type Mutation = {
|
|
|
5280
5303
|
settleRefund: SettleRefundResult;
|
|
5281
5304
|
/** Simulate load step - checks what would be created/updated without writing */
|
|
5282
5305
|
simulateDataHubLoad: Scalars['JSON']['output'];
|
|
5283
|
-
/**
|
|
5306
|
+
/**
|
|
5307
|
+
* Simulate transform step - applies transforms to input records.
|
|
5308
|
+
* The step argument expects a JSON object with shape:
|
|
5309
|
+
* { config: { operators: [{ op: string, args: Record<string, any> }] } }
|
|
5310
|
+
*/
|
|
5284
5311
|
simulateDataHubTransform: Array<Scalars['JSON']['output']>;
|
|
5285
5312
|
/** Simulate validate step - runs validation rules on input records */
|
|
5286
5313
|
simulateDataHubValidate: DataHubValidateResult;
|
|
@@ -9950,7 +9977,7 @@ export type DataHubAdaptersApiQuery = { __typename?: 'Query', dataHubAdapters: A
|
|
|
9950
9977
|
export type DataHubConfigOptionsApiQueryVariables = Exact<{ [key: string]: never; }>;
|
|
9951
9978
|
|
|
9952
9979
|
|
|
9953
|
-
export type DataHubConfigOptionsApiQuery = { __typename?: 'Query', dataHubConfigOptions: { __typename?: 'DataHubConfigOptions', stepTypes: Array<{ __typename?: 'DataHubStepTypeConfig', type: string, label: string, description: string, icon: string, color: string, bgColor: string, borderColor: string, inputs: number, outputs: number, category: string, adapterType?: string | null, nodeType: string }>, loadStrategies: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, conflictStrategies: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, triggerTypes: Array<{ __typename?: 'DataHubTypedOptionValue', value: string, label: string, description?: string | null, icon?: string | null, defaultValues?: Record<string, unknown> | null, configKeyMap?: Record<string, unknown> | null, wizardScopes?: Array<string> | null, fields: Array<{ __typename?: 'DataHubConnectionSchemaField', key: string, label: string, type: string, required?: boolean | null, placeholder?: string | null, defaultValue?: Record<string, unknown> | null, description?: string | null, optionsRef?: string | null, options?: Array<{ __typename?: 'DataHubOption', value: string, label: string }> | null }> }>, fileEncodings: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, csvDelimiters: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, compressionTypes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, httpMethods: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, authTypes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, destinationTypes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, fileFormats: Array<{ __typename?: 'DataHubFileFormatMetadata', value: string, label: string,
|
|
9980
|
+
export type DataHubConfigOptionsApiQuery = { __typename?: 'Query', dataHubConfigOptions: { __typename?: 'DataHubConfigOptions', stepTypes: Array<{ __typename?: 'DataHubStepTypeConfig', type: string, label: string, description: string, icon: string, color: string, bgColor: string, borderColor: string, inputs: number, outputs: number, category: string, adapterType?: string | null, nodeType: string }>, loadStrategies: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, conflictStrategies: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, triggerTypes: Array<{ __typename?: 'DataHubTypedOptionValue', value: string, label: string, description?: string | null, icon?: string | null, defaultValues?: Record<string, unknown> | null, configKeyMap?: Record<string, unknown> | null, wizardScopes?: Array<string> | null, fields: Array<{ __typename?: 'DataHubConnectionSchemaField', key: string, label: string, type: string, required?: boolean | null, placeholder?: string | null, defaultValue?: Record<string, unknown> | null, description?: string | null, optionsRef?: string | null, options?: Array<{ __typename?: 'DataHubOption', value: string, label: string }> | null }> }>, fileEncodings: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, csvDelimiters: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, compressionTypes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, httpMethods: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, authTypes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, destinationTypes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, fileFormats: Array<{ __typename?: 'DataHubFileFormatMetadata', value: string, label: string, description?: string | null }>, cleanupStrategies: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, newRecordStrategies: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, validationModes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, queueTypes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, vendureEvents: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null, category?: string | null }>, comparisonOperators: Array<{ __typename?: 'DataHubComparisonOperator', value: string, label: string, description?: string | null, valueType?: string | null, noValue?: boolean | null, example?: string | null }>, approvalTypes: Array<{ __typename?: 'DataHubTypedOptionValue', value: string, label: string, description?: string | null, icon?: string | null, defaultValues?: Record<string, unknown> | null, fields: Array<{ __typename?: 'DataHubConnectionSchemaField', key: string, label: string, type: string, required?: boolean | null, placeholder?: string | null, defaultValue?: Record<string, unknown> | null, description?: string | null, options?: Array<{ __typename?: 'DataHubOption', value: string, label: string }> | null }> }>, backoffStrategies: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, enrichmentSourceTypes: Array<{ __typename?: 'DataHubTypedOptionValue', value: string, label: string, description?: string | null, icon?: string | null, defaultValues?: Record<string, unknown> | null, fields: Array<{ __typename?: 'DataHubConnectionSchemaField', key: string, label: string, type: string, required?: boolean | null, placeholder?: string | null, defaultValue?: Record<string, unknown> | null, description?: string | null, options?: Array<{ __typename?: 'DataHubOption', value: string, label: string }> | null }> }>, validationRuleTypes: Array<{ __typename?: 'DataHubTypedOptionValue', value: string, label: string, description?: string | null, icon?: string | null, defaultValues?: Record<string, unknown> | null, fields: Array<{ __typename?: 'DataHubConnectionSchemaField', key: string, label: string, type: string, required?: boolean | null, placeholder?: string | null, defaultValue?: Record<string, unknown> | null, description?: string | null, options?: Array<{ __typename?: 'DataHubOption', value: string, label: string }> | null }> }>, exportAdapterCodes: Array<{ __typename?: 'DataHubAdapterCodeMapping', value: string, label: string, adapterCode: string }>, feedAdapterCodes: Array<{ __typename?: 'DataHubAdapterCodeMapping', value: string, label: string, adapterCode: string }>, connectionSchemas: Array<{ __typename?: 'DataHubConnectionSchema', type: string, label: string, httpLike?: boolean | null, fields: Array<{ __typename?: 'DataHubConnectionSchemaField', key: string, label: string, type: string, required?: boolean | null, placeholder?: string | null, defaultValue?: Record<string, unknown> | null, description?: string | null, options?: Array<{ __typename?: 'DataHubOption', value: string, label: string }> | null }> }>, destinationSchemas: Array<{ __typename?: 'DataHubDestinationSchema', type: string, label: string, configKey: string, message?: string | null, fieldMapping?: Record<string, unknown> | null, fields: Array<{ __typename?: 'DataHubConnectionSchemaField', key: string, label: string, type: string, required?: boolean | null, placeholder?: string | null, defaultValue?: Record<string, unknown> | null, description?: string | null, options?: Array<{ __typename?: 'DataHubOption', value: string, label: string }> | null }> }>, hookStages: Array<{ __typename?: 'DataHubHookStage', key: string, label: string, description: string, icon: string, category: string }>, hookStageCategories: Array<{ __typename?: 'DataHubHookStageCategory', key: string, label: string, color: string, description: string, gridClass: string, order: number }>, logLevels: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, runModes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, checkpointStrategies: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, parallelErrorPolicies: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, logPersistenceLevels: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, adapterTypes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, runStatuses: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, fieldTransformTypes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null, category?: string | null }>, wizardStrategyMappings: Array<{ __typename?: 'DataHubWizardStrategyMapping', wizardValue: string, label: string, loadStrategy: string, conflictStrategy: string }>, queryTypeOptions: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, cronPresets: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }>, ackModes: Array<{ __typename?: 'DataHubOptionValue', value: string, label: string, description?: string | null, icon?: string | null }> } };
|
|
9954
9981
|
|
|
9955
9982
|
export type DataHubConnectionsForListQueryVariables = Exact<{
|
|
9956
9983
|
options?: InputMaybe<DataHubConnectionListOptions>;
|
|
@@ -10327,7 +10354,7 @@ export type PreviewDataHubFeedApiMutation = { __typename?: 'Mutation', previewDa
|
|
|
10327
10354
|
|
|
10328
10355
|
|
|
10329
10356
|
export const DataHubAdaptersApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubAdaptersApi"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubAdapters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"category"}},{"kind":"Field","name":{"kind":"Name","value":"categoryLabel"}},{"kind":"Field","name":{"kind":"Name","value":"categoryOrder"}},{"kind":"Field","name":{"kind":"Name","value":"schema"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}},{"kind":"Field","name":{"kind":"Name","value":"group"}},{"kind":"Field","name":{"kind":"Name","value":"dependsOn"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"field"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"operator"}}]}},{"kind":"Field","name":{"kind":"Name","value":"validation"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"min"}},{"kind":"Field","name":{"kind":"Name","value":"max"}},{"kind":"Field","name":{"kind":"Name","value":"minLength"}},{"kind":"Field","name":{"kind":"Name","value":"maxLength"}},{"kind":"Field","name":{"kind":"Name","value":"pattern"}},{"kind":"Field","name":{"kind":"Name","value":"patternMessage"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"groups"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"pure"}},{"kind":"Field","name":{"kind":"Name","value":"async"}},{"kind":"Field","name":{"kind":"Name","value":"batchable"}},{"kind":"Field","name":{"kind":"Name","value":"requires"}},{"kind":"Field","name":{"kind":"Name","value":"entityType"}},{"kind":"Field","name":{"kind":"Name","value":"formatType"}},{"kind":"Field","name":{"kind":"Name","value":"patchableFields"}},{"kind":"Field","name":{"kind":"Name","value":"editorType"}},{"kind":"Field","name":{"kind":"Name","value":"summaryTemplate"}},{"kind":"Field","name":{"kind":"Name","value":"wizardHidden"}},{"kind":"Field","name":{"kind":"Name","value":"builtIn"}}]}}]}}]} as unknown as DocumentNode<DataHubAdaptersApiQuery, DataHubAdaptersApiQueryVariables>;
|
|
10330
|
-
export const DataHubConfigOptionsApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubConfigOptionsApi"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubConfigOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"stepTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"bgColor"}},{"kind":"Field","name":{"kind":"Name","value":"borderColor"}},{"kind":"Field","name":{"kind":"Name","value":"inputs"}},{"kind":"Field","name":{"kind":"Name","value":"outputs"}},{"kind":"Field","name":{"kind":"Name","value":"category"}},{"kind":"Field","name":{"kind":"Name","value":"adapterType"}},{"kind":"Field","name":{"kind":"Name","value":"nodeType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"loadStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"conflictStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"triggerTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}},{"kind":"Field","name":{"kind":"Name","value":"optionsRef"}}]}},{"kind":"Field","name":{"kind":"Name","value":"defaultValues"}},{"kind":"Field","name":{"kind":"Name","value":"configKeyMap"}},{"kind":"Field","name":{"kind":"Name","value":"wizardScopes"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fileEncodings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"csvDelimiters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"compressionTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"httpMethods"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"authTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"destinationTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fileFormats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"extensions"}},{"kind":"Field","name":{"kind":"Name","value":"mimeTypes"}},{"kind":"Field","name":{"kind":"Name","value":"supportsPreview"}},{"kind":"Field","name":{"kind":"Name","value":"requiresClientParser"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"Field","name":{"kind":"Name","value":"cleanupStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"newRecordStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"validationModes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"queueTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"vendureEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"category"}}]}},{"kind":"Field","name":{"kind":"Name","value":"comparisonOperators"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"valueType"}},{"kind":"Field","name":{"kind":"Name","value":"noValue"}},{"kind":"Field","name":{"kind":"Name","value":"example"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvalTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"defaultValues"}}]}},{"kind":"Field","name":{"kind":"Name","value":"backoffStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"enrichmentSourceTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"defaultValues"}}]}},{"kind":"Field","name":{"kind":"Name","value":"validationRuleTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"defaultValues"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exportAdapterCodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"adapterCode"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feedAdapterCodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"adapterCode"}}]}},{"kind":"Field","name":{"kind":"Name","value":"connectionSchemas"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"httpLike"}}]}},{"kind":"Field","name":{"kind":"Name","value":"destinationSchemas"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"configKey"}},{"kind":"Field","name":{"kind":"Name","value":"message"}},{"kind":"Field","name":{"kind":"Name","value":"fieldMapping"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"hookStages"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"category"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hookStageCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridClass"}},{"kind":"Field","name":{"kind":"Name","value":"order"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logLevels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"runModes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"checkpointStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parallelErrorPolicies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logPersistenceLevels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"adapterTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"runStatuses"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fieldTransformTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"category"}}]}},{"kind":"Field","name":{"kind":"Name","value":"wizardStrategyMappings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"wizardValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"loadStrategy"}},{"kind":"Field","name":{"kind":"Name","value":"conflictStrategy"}}]}},{"kind":"Field","name":{"kind":"Name","value":"queryTypeOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"cronPresets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ackModes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}}]}}]}}]} as unknown as DocumentNode<DataHubConfigOptionsApiQuery, DataHubConfigOptionsApiQueryVariables>;
|
|
10357
|
+
export const DataHubConfigOptionsApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubConfigOptionsApi"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubConfigOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"stepTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"bgColor"}},{"kind":"Field","name":{"kind":"Name","value":"borderColor"}},{"kind":"Field","name":{"kind":"Name","value":"inputs"}},{"kind":"Field","name":{"kind":"Name","value":"outputs"}},{"kind":"Field","name":{"kind":"Name","value":"category"}},{"kind":"Field","name":{"kind":"Name","value":"adapterType"}},{"kind":"Field","name":{"kind":"Name","value":"nodeType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"loadStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"conflictStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"triggerTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}},{"kind":"Field","name":{"kind":"Name","value":"optionsRef"}}]}},{"kind":"Field","name":{"kind":"Name","value":"defaultValues"}},{"kind":"Field","name":{"kind":"Name","value":"configKeyMap"}},{"kind":"Field","name":{"kind":"Name","value":"wizardScopes"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fileEncodings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"csvDelimiters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"compressionTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"httpMethods"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"authTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"destinationTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fileFormats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}},{"kind":"Field","name":{"kind":"Name","value":"cleanupStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"newRecordStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"validationModes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"queueTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"vendureEvents"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"category"}}]}},{"kind":"Field","name":{"kind":"Name","value":"comparisonOperators"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"valueType"}},{"kind":"Field","name":{"kind":"Name","value":"noValue"}},{"kind":"Field","name":{"kind":"Name","value":"example"}}]}},{"kind":"Field","name":{"kind":"Name","value":"approvalTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"defaultValues"}}]}},{"kind":"Field","name":{"kind":"Name","value":"backoffStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"enrichmentSourceTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"defaultValues"}}]}},{"kind":"Field","name":{"kind":"Name","value":"validationRuleTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"defaultValues"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exportAdapterCodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"adapterCode"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feedAdapterCodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"adapterCode"}}]}},{"kind":"Field","name":{"kind":"Name","value":"connectionSchemas"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"httpLike"}}]}},{"kind":"Field","name":{"kind":"Name","value":"destinationSchemas"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"configKey"}},{"kind":"Field","name":{"kind":"Name","value":"message"}},{"kind":"Field","name":{"kind":"Name","value":"fieldMapping"}},{"kind":"Field","name":{"kind":"Name","value":"fields"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"required"}},{"kind":"Field","name":{"kind":"Name","value":"placeholder"}},{"kind":"Field","name":{"kind":"Name","value":"defaultValue"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"options"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"hookStages"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"category"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hookStageCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridClass"}},{"kind":"Field","name":{"kind":"Name","value":"order"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logLevels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"runModes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"checkpointStrategies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"parallelErrorPolicies"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"logPersistenceLevels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"adapterTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"runStatuses"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fieldTransformTypes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"category"}}]}},{"kind":"Field","name":{"kind":"Name","value":"wizardStrategyMappings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"wizardValue"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"loadStrategy"}},{"kind":"Field","name":{"kind":"Name","value":"conflictStrategy"}}]}},{"kind":"Field","name":{"kind":"Name","value":"queryTypeOptions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"cronPresets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ackModes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}}]}}]}}]}}]} as unknown as DocumentNode<DataHubConfigOptionsApiQuery, DataHubConfigOptionsApiQueryVariables>;
|
|
10331
10358
|
export const DataHubConnectionsForListDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubConnectionsForList"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"options"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DataHubConnectionListOptions"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dataHubConnections"},"arguments":[{"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":"code"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalItems"}}]}}]}}]} as unknown as DocumentNode<DataHubConnectionsForListQuery, DataHubConnectionsForListQueryVariables>;
|
|
10332
10359
|
export const DataHubConnectionDetailApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DataHubConnectionDetailApi"},"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":"dataHubConnection"},"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":"code"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"config"}}]}}]}}]} as unknown as DocumentNode<DataHubConnectionDetailApiQuery, DataHubConnectionDetailApiQueryVariables>;
|
|
10333
10360
|
export const CreateDataHubConnectionApiDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateDataHubConnectionApi"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CreateDataHubConnectionInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createDataHubConnection"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}}]}}]}}]} as unknown as DocumentNode<CreateDataHubConnectionApiMutation, CreateDataHubConnectionApiMutationVariables>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useMemo } from 'react';
|
|
1
|
+
import { useMemo, useCallback } from 'react';
|
|
2
2
|
import { useQuery } from '@tanstack/react-query';
|
|
3
3
|
import { api } from '@vendure/dashboard';
|
|
4
4
|
import { graphql } from '../../gql';
|
|
@@ -28,7 +28,7 @@ const configOptionsDocument = graphql(`
|
|
|
28
28
|
httpMethods { value label description icon }
|
|
29
29
|
authTypes { value label description icon }
|
|
30
30
|
destinationTypes { value label description icon }
|
|
31
|
-
fileFormats { value label
|
|
31
|
+
fileFormats { value label description }
|
|
32
32
|
cleanupStrategies { value label description icon }
|
|
33
33
|
newRecordStrategies { value label description icon }
|
|
34
34
|
validationModes { value label description icon }
|
|
@@ -264,8 +264,6 @@ type ConfigOptionValueField = Exclude<keyof ConfigOptionsData, 'stepTypes' | 'co
|
|
|
264
264
|
/** Fields that return AdapterCodeMapping[] (value, label, adapterCode). */
|
|
265
265
|
type AdapterCodeMappingField = 'exportAdapterCodes' | 'feedAdapterCodes';
|
|
266
266
|
|
|
267
|
-
export type ConfigOptionsField = keyof ConfigOptionsData;
|
|
268
|
-
|
|
269
267
|
export function useConfigOptions() {
|
|
270
268
|
return useQuery({
|
|
271
269
|
queryKey: configOptionKeys.options(),
|
|
@@ -351,8 +349,8 @@ export function useStepConfigs(): UseStepConfigsResult {
|
|
|
351
349
|
return record;
|
|
352
350
|
}, [data]);
|
|
353
351
|
|
|
354
|
-
const getStepConfig =
|
|
355
|
-
(
|
|
352
|
+
const getStepConfig = useCallback(
|
|
353
|
+
(type: StepType | string): StepConfig | undefined => {
|
|
356
354
|
const normalized = String(type).toUpperCase() as StepType;
|
|
357
355
|
return stepConfigs[normalized];
|
|
358
356
|
},
|
|
@@ -187,9 +187,7 @@ export function useAdapterCatalog(): UseAdapterCatalogResult {
|
|
|
187
187
|
};
|
|
188
188
|
}, [adapters]);
|
|
189
189
|
|
|
190
|
-
const connectionCodes =
|
|
191
|
-
return connectionCodesData ?? [];
|
|
192
|
-
}, [connectionCodesData]);
|
|
190
|
+
const connectionCodes = connectionCodesData ?? [];
|
|
193
191
|
|
|
194
192
|
const secretOptions = React.useMemo(() => {
|
|
195
193
|
return (secretsData?.items ?? []).map(s => ({
|
|
@@ -108,10 +108,7 @@ export function useImportTemplates(): UseImportTemplatesResult {
|
|
|
108
108
|
staleTime: CACHE_TIMES.ADAPTER_CATALOG,
|
|
109
109
|
});
|
|
110
110
|
|
|
111
|
-
const categories =
|
|
112
|
-
() => backendCategories ?? [],
|
|
113
|
-
[backendCategories],
|
|
114
|
-
);
|
|
111
|
+
const categories = backendCategories ?? [];
|
|
115
112
|
|
|
116
113
|
const getTemplateById = React.useCallback(
|
|
117
114
|
(id: string) => templates.find(t => t.id === id),
|
|
@@ -92,6 +92,12 @@ function ConnectionDetailPage({ route }: { route: AnyRoute }) {
|
|
|
92
92
|
|
|
93
93
|
const configCacheRef = React.useRef<Record<string, Record<string, unknown>>>({});
|
|
94
94
|
|
|
95
|
+
React.useEffect(() => {
|
|
96
|
+
if (creating && !form.getValues('type')) {
|
|
97
|
+
form.setValue('type', CONNECTION_DEFAULT_TYPE, { shouldDirty: false, shouldValidate: true });
|
|
98
|
+
}
|
|
99
|
+
}, [creating, form]);
|
|
100
|
+
|
|
95
101
|
React.useEffect(() => {
|
|
96
102
|
if (!entity) {
|
|
97
103
|
return;
|
|
@@ -158,14 +164,22 @@ function ConnectionDetailPage({ route }: { route: AnyRoute }) {
|
|
|
158
164
|
label="Connection Type"
|
|
159
165
|
control={form.control}
|
|
160
166
|
rules={{ required: ERROR_MESSAGES.CONNECTION_TYPE_REQUIRED }}
|
|
161
|
-
render={({ field, fieldState }) =>
|
|
167
|
+
render={({ field, fieldState }) => {
|
|
168
|
+
// Ensure the form state has a valid type value, not just a visual fallback.
|
|
169
|
+
// Without this, the Select displays the correct default but the form
|
|
170
|
+
// submits an empty string because field.value was never updated.
|
|
171
|
+
const effectiveType =
|
|
172
|
+
(typeof field.value === 'string' && field.value.length > 0)
|
|
173
|
+
? field.value
|
|
174
|
+
: String(entity?.type ?? CONNECTION_DEFAULT_TYPE);
|
|
175
|
+
if (field.value !== effectiveType) {
|
|
176
|
+
// Schedule the form state sync outside the render cycle
|
|
177
|
+
queueMicrotask(() => field.onChange(effectiveType));
|
|
178
|
+
}
|
|
179
|
+
return (
|
|
162
180
|
<div>
|
|
163
181
|
<Select
|
|
164
|
-
value={
|
|
165
|
-
(typeof field.value === 'string' && field.value.length > 0)
|
|
166
|
-
? field.value
|
|
167
|
-
: String(entity?.type ?? CONNECTION_DEFAULT_TYPE)
|
|
168
|
-
}
|
|
182
|
+
value={effectiveType}
|
|
169
183
|
onValueChange={val => {
|
|
170
184
|
const prevType = (field.value as UIConnectionType | undefined) ?? (entity?.type as UIConnectionType | undefined);
|
|
171
185
|
const nextType = val as UIConnectionType;
|
|
@@ -191,7 +205,8 @@ function ConnectionDetailPage({ route }: { route: AnyRoute }) {
|
|
|
191
205
|
</Select>
|
|
192
206
|
<FieldError error={fieldState.error?.message} touched={fieldState.isTouched} />
|
|
193
207
|
</div>
|
|
194
|
-
|
|
208
|
+
);
|
|
209
|
+
}}
|
|
195
210
|
/>
|
|
196
211
|
</DetailFormGrid>
|
|
197
212
|
|
|
@@ -304,12 +304,11 @@ function HooksPage() {
|
|
|
304
304
|
</tr>
|
|
305
305
|
</thead>
|
|
306
306
|
<tbody>
|
|
307
|
-
{/* Events have unique createdAt timestamps, used as stable keys */}
|
|
308
307
|
{(eventsQuery.data ?? [])
|
|
309
308
|
.filter(e => !eventFilter || (e.name ?? '').toLowerCase().includes(eventFilter.toLowerCase()))
|
|
310
309
|
.slice(0, UI_LIMITS.TABLE_PREVIEW_ROWS)
|
|
311
|
-
.map((e) => (
|
|
312
|
-
<tr key={`${e.createdAt}-${e.name}`} className="border-t align-top hover:bg-muted/50">
|
|
310
|
+
.map((e, i) => (
|
|
311
|
+
<tr key={`${e.createdAt}-${e.name}-${i}`} className="border-t align-top hover:bg-muted/50">
|
|
313
312
|
<td className="px-3 py-2 text-muted-foreground">
|
|
314
313
|
<Clock className="w-3 h-3 inline mr-1" />
|
|
315
314
|
{formatDateTime(e.createdAt as string)}
|
|
@@ -324,11 +323,13 @@ function HooksPage() {
|
|
|
324
323
|
</td>
|
|
325
324
|
</tr>
|
|
326
325
|
))}
|
|
327
|
-
{(eventsQuery.data ?? [])
|
|
326
|
+
{(eventsQuery.data ?? [])
|
|
327
|
+
.filter(e => !eventFilter || (e.name ?? '').toLowerCase().includes(eventFilter.toLowerCase()))
|
|
328
|
+
.length === 0 && (
|
|
328
329
|
<tr>
|
|
329
330
|
<td colSpan={3} className="px-3 py-8 text-center text-muted-foreground">
|
|
330
331
|
<Info className="w-5 h-5 mx-auto mb-2 opacity-50" />
|
|
331
|
-
No events yet. Test a hook to see events appear here.
|
|
332
|
+
{eventFilter ? 'No matching events.' : 'No events yet. Test a hook to see events appear here.'}
|
|
332
333
|
</td>
|
|
333
334
|
</tr>
|
|
334
335
|
)}
|
|
@@ -403,10 +404,10 @@ const HookStageCard = React.memo(function HookStageCard({
|
|
|
403
404
|
</div>
|
|
404
405
|
{isLoading && <Loader2 className="w-4 h-4 animate-spin text-primary" />}
|
|
405
406
|
{!isLoading && testResult === 'success' && (
|
|
406
|
-
<CheckCircle2 className="w-4 h-4 text-green-600" />
|
|
407
|
+
<CheckCircle2 className="w-4 h-4 text-green-600 dark:text-green-400" />
|
|
407
408
|
)}
|
|
408
409
|
{!isLoading && testResult === 'error' && (
|
|
409
|
-
<XCircle className="w-4 h-4 text-red-600" />
|
|
410
|
+
<XCircle className="w-4 h-4 text-red-600 dark:text-red-400" />
|
|
410
411
|
)}
|
|
411
412
|
</div>
|
|
412
413
|
<p className="text-xs text-muted-foreground line-clamp-2">
|
|
@@ -45,10 +45,10 @@ export const logsPage: DashboardRouteDefinition = {
|
|
|
45
45
|
* Logs page with tabbed layout: Overview, Log Explorer, Real-time Feed.
|
|
46
46
|
*/
|
|
47
47
|
function LogsPage() {
|
|
48
|
-
const
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
const params = typeof window !== 'undefined'
|
|
49
|
+
? new URLSearchParams(window.location.search)
|
|
50
|
+
: new URLSearchParams();
|
|
51
|
+
const initialRunId = params.get('runId') ?? undefined;
|
|
52
52
|
|
|
53
53
|
const [activeTab, setActiveTab] = React.useState(initialRunId ? 'logs' : 'overview');
|
|
54
54
|
|
|
@@ -78,7 +78,7 @@ export const LogDetailDrawer = memo(function LogDetailDrawer({ log, onClose }: L
|
|
|
78
78
|
</div>
|
|
79
79
|
<div>
|
|
80
80
|
<div className="text-xs text-muted-foreground">Records Failed</div>
|
|
81
|
-
<div className={`text-sm ${log.recordsFailed > 0 ? 'text-red-600' : ''}`}>
|
|
81
|
+
<div className={`text-sm ${(log.recordsFailed ?? 0) > 0 ? 'text-red-600 dark:text-red-400' : ''}`}>
|
|
82
82
|
{log.recordsFailed ?? '—'}
|
|
83
83
|
</div>
|
|
84
84
|
</div>
|
|
@@ -98,12 +98,12 @@ export const LogDetailDrawer = memo(function LogDetailDrawer({ log, onClose }: L
|
|
|
98
98
|
</div>
|
|
99
99
|
)}
|
|
100
100
|
|
|
101
|
-
{log.runId && (
|
|
101
|
+
{log.runId && log.pipeline?.id && (
|
|
102
102
|
<div className="pt-3 border-t">
|
|
103
103
|
<Button asChild variant="outline" size="sm">
|
|
104
104
|
<Link
|
|
105
105
|
to={`${ROUTES.PIPELINES}/$id`}
|
|
106
|
-
params={{ id: log.pipeline
|
|
106
|
+
params={{ id: log.pipeline.id }}
|
|
107
107
|
>
|
|
108
108
|
View Pipeline
|
|
109
109
|
</Link>
|