@remnic/bench 9.49.0 → 9.49.1
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/dist/chunk-S4BYVSDS.js +16839 -0
- package/dist/h6-failure-gate.md +171 -0
- package/dist/index.d.ts +3434 -5
- package/dist/index.js +2116 -5165
- package/dist/repeated-failure-suite-runner-INWDWQKY.js +28 -0
- package/fixtures/h6-failure-gate/arms/arms.json +27 -0
- package/fixtures/h6-failure-gate/dataset.json +18013 -0
- package/fixtures/h6-failure-gate/decision-rule.json +146 -0
- package/fixtures/h6-failure-gate/generator/regenerate.ts +20 -0
- package/fixtures/h6-failure-gate/schema/action-intent.schema.json +36 -0
- package/fixtures/h6-failure-gate/schema/dataset.schema.json +166 -0
- package/fixtures/h6-failure-gate/schema/task.schema.json +245 -0
- package/fixtures/h6-failure-gate/schema/trap-fingerprint.schema.json +48 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/service.mjs +11 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-01/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-02/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/service.mjs +18 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/service.mjs +18 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/service.mjs +18 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/service.mjs +18 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-03/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-04/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-05/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-06/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/service.mjs +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/service.mjs +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/service.mjs +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/service.mjs +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/service.mjs +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-07/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/service.mjs +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/service.mjs +36 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/service.mjs +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/service.mjs +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/service.mjs +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/test/check.js +30 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-08/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/service.mjs +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-09/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/service.mjs +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/service.mjs +35 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/test/check.js +32 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-10/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/test/check.js +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-11/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/service.mjs +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/service.mjs +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/service.mjs +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/service.mjs +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/test/check.js +31 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-12/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/service.mjs +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/service.mjs +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-13/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/service.mjs +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-14/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/service.mjs +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/task.json +629 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/service.mjs +20 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/user-schema.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-15/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-16/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-17/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/test/check.js +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-18/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/service.mjs +16 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/test/check.js +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-19/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/test/check.js +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-20/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/service.mjs +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-21/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/test/check.js +22 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-22/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/test/check.js +24 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-23/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/service.mjs +17 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/test/check.js +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-24/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/task.json +577 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-25/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/config/local-override.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/service.mjs +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/config/local-override.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/config/local-override.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/config/local-override.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/test/check.js +23 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-26/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/config/runtime.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/service.mjs +11 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/config/runtime.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/config/runtime.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/config/runtime.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/test/check.js +27 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-27/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/config/deployment.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/service.mjs +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/config/deployment.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/config/deployment.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/config/deployment.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/service.mjs +21 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/test/check.js +33 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-28/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/config/user.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/service.mjs +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/patches/candidate-alpha.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/patches/candidate-beta.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/config/user.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/config/user.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/config/user.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/service.mjs +15 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/test/check.js +28 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-29/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/config/session.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/files/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/service.mjs +12 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/no-trap/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/patches/candidate-alpha.json +14 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/patches/candidate-beta.json +10 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/task.json +645 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/config/session.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-1/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/config/session.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/helper.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-2/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/README.md +26 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/TASK.md +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/config/default.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/config/session.json +4 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/package.json +9 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/config.ts +25 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/domain-workflow.ts +210 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/helper/core.ts +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/helper.ts +1 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/service.mjs +19 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/types.ts +41 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/src/utils.ts +39 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/test/check.js +29 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/tsconfig.json +13 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/vendor/vellum-quarry-sdk/index.ts +67 -0
- package/fixtures/h6-failure-gate/tasks/h6-task-30/variants/variant-3/vendor/vellum-quarry-sdk/types.ts +38 -0
- package/fixtures/h6-failure-gate/trap-taxonomy.json +50 -0
- package/package.json +6 -4
- package/profiles/README.md +33 -0
- package/profiles/h6-example.json +25 -0
|
@@ -0,0 +1,577 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "h6-task-07",
|
|
3
|
+
"trapId": "misleading-error-message",
|
|
4
|
+
"domain": "apex-payment-gateway",
|
|
5
|
+
"title": "Correct apex-payment-gateway service behavior",
|
|
6
|
+
"description": "Keep each validation failure's machine-readable error code paired with the exact failing field path while valid records load successfully.",
|
|
7
|
+
"canonicalBaseFiles": [
|
|
8
|
+
{
|
|
9
|
+
"path": "package.json",
|
|
10
|
+
"content": "{\n \"name\": \"@vellum-quarry/apex-payment-gateway\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for apex-payment-gateway\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"path": "tsconfig.json",
|
|
14
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
18
|
+
"content": "/**\n * Counterfactual SDK for domain apex-payment-gateway\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_apex_payment_gateway, QuillResponse_apex_payment_gateway } from \"./types.js\";\n\nexport function quillApiQuery_apex_payment_gateway(\n payload: Record<string, unknown>,\n opts?: QuillOptions_apex_payment_gateway,\n): QuillResponse_apex_payment_gateway {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"apex-payment-gateway\" },\n };\n}\n\nexport function quillHealthCheck_apex_payment_gateway(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_apex_payment_gateway(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_apex_payment_gateway(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_apex_payment_gateway(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_apex_payment_gateway(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_apex_payment_gateway(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_apex_payment_gateway(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_apex_payment_gateway(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
22
|
+
"content": "/**\n * Type declarations for counterfactual SDK apex-payment-gateway\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_apex_payment_gateway {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_apex_payment_gateway {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_apex_payment_gateway {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_apex_payment_gateway;\n}\n\nexport interface QuillBatchRequest_apex_payment_gateway {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_apex_payment_gateway {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"path": "src/types.ts",
|
|
26
|
+
"content": "/**\n * Domain type definitions for apex-payment-gateway\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_apex_payment_gateway {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_apex_payment_gateway {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_apex_payment_gateway {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_apex_payment_gateway {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_apex_payment_gateway<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_apex_payment_gateway {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"path": "src/utils.ts",
|
|
30
|
+
"content": "/**\n * Utility functions for domain apex-payment-gateway\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_apex_payment_gateway(name: string): string {\n if (!name) return \"apex-payment-gateway\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_apex_payment_gateway(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_apex_payment_gateway(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_apex_payment_gateway<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_apex_payment_gateway(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_apex_payment_gateway(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_apex_payment_gateway(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "src/config.ts",
|
|
34
|
+
"content": "/**\n * Default configuration options for apex-payment-gateway\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_apex_payment_gateway = {\n domain: \"apex-payment-gateway\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_apex_payment_gateway(): typeof DEFAULT_CONFIG_apex_payment_gateway {\n return { ...DEFAULT_CONFIG_apex_payment_gateway };\n}\n"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"path": "src/helper.ts",
|
|
38
|
+
"content": "/**\n * Helper routines for apex-payment-gateway\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_apex_payment_gateway, generateTraceId_apex_payment_gateway } from \"./utils.js\";\n\nexport function getDomainHeader_apex_payment_gateway(domain: string): string {\n return \"X-Domain-\" + formatDomainName_apex_payment_gateway(domain);\n}\n\nexport function createServiceContext_apex_payment_gateway(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_apex_payment_gateway(domain),\n traceId: generateTraceId_apex_payment_gateway(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_apex_payment_gateway(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_apex_payment_gateway<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"path": "src/domain-workflow.ts",
|
|
42
|
+
"content": "/**\n * Local workflow contracts for apex-payment-gateway.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_62d10f18_00_Request {\n w_62d10f18_00_record: string;\n w_62d10f18_00_sequence: number;\n}\n\nexport interface w_62d10f18_00_Result {\n w_62d10f18_00_accepted: boolean;\n w_62d10f18_00_token: string;\n}\n\nexport function execute_w_62d10f18_00(\n input_w_62d10f18_00: w_62d10f18_00_Request,\n): w_62d10f18_00_Result {\n const normalized_w_62d10f18_00 = input_w_62d10f18_00.w_62d10f18_00_record.trim().toLowerCase();\n const score_w_62d10f18_00 =\n normalized_w_62d10f18_00.length + input_w_62d10f18_00.w_62d10f18_00_sequence;\n return {\n w_62d10f18_00_accepted: score_w_62d10f18_00 % 2 === 0,\n w_62d10f18_00_token: `apex-payment-gateway:0:${score_w_62d10f18_00}`,\n };\n}\n\nexport interface w_62d10f18_01_Request {\n w_62d10f18_01_record: string;\n w_62d10f18_01_sequence: number;\n}\n\nexport interface w_62d10f18_01_Result {\n w_62d10f18_01_accepted: boolean;\n w_62d10f18_01_token: string;\n}\n\nexport function execute_w_62d10f18_01(\n input_w_62d10f18_01: w_62d10f18_01_Request,\n): w_62d10f18_01_Result {\n const normalized_w_62d10f18_01 = input_w_62d10f18_01.w_62d10f18_01_record.trim().toLowerCase();\n const score_w_62d10f18_01 =\n normalized_w_62d10f18_01.length + input_w_62d10f18_01.w_62d10f18_01_sequence;\n return {\n w_62d10f18_01_accepted: score_w_62d10f18_01 % 2 === 0,\n w_62d10f18_01_token: `apex-payment-gateway:1:${score_w_62d10f18_01}`,\n };\n}\n\nexport interface w_62d10f18_02_Request {\n w_62d10f18_02_record: string;\n w_62d10f18_02_sequence: number;\n}\n\nexport interface w_62d10f18_02_Result {\n w_62d10f18_02_accepted: boolean;\n w_62d10f18_02_token: string;\n}\n\nexport function execute_w_62d10f18_02(\n input_w_62d10f18_02: w_62d10f18_02_Request,\n): w_62d10f18_02_Result {\n const normalized_w_62d10f18_02 = input_w_62d10f18_02.w_62d10f18_02_record.trim().toLowerCase();\n const score_w_62d10f18_02 =\n normalized_w_62d10f18_02.length + input_w_62d10f18_02.w_62d10f18_02_sequence;\n return {\n w_62d10f18_02_accepted: score_w_62d10f18_02 % 2 === 0,\n w_62d10f18_02_token: `apex-payment-gateway:2:${score_w_62d10f18_02}`,\n };\n}\n\nexport interface w_62d10f18_03_Request {\n w_62d10f18_03_record: string;\n w_62d10f18_03_sequence: number;\n}\n\nexport interface w_62d10f18_03_Result {\n w_62d10f18_03_accepted: boolean;\n w_62d10f18_03_token: string;\n}\n\nexport function execute_w_62d10f18_03(\n input_w_62d10f18_03: w_62d10f18_03_Request,\n): w_62d10f18_03_Result {\n const normalized_w_62d10f18_03 = input_w_62d10f18_03.w_62d10f18_03_record.trim().toLowerCase();\n const score_w_62d10f18_03 =\n normalized_w_62d10f18_03.length + input_w_62d10f18_03.w_62d10f18_03_sequence;\n return {\n w_62d10f18_03_accepted: score_w_62d10f18_03 % 2 === 0,\n w_62d10f18_03_token: `apex-payment-gateway:3:${score_w_62d10f18_03}`,\n };\n}\n\nexport interface w_62d10f18_04_Request {\n w_62d10f18_04_record: string;\n w_62d10f18_04_sequence: number;\n}\n\nexport interface w_62d10f18_04_Result {\n w_62d10f18_04_accepted: boolean;\n w_62d10f18_04_token: string;\n}\n\nexport function execute_w_62d10f18_04(\n input_w_62d10f18_04: w_62d10f18_04_Request,\n): w_62d10f18_04_Result {\n const normalized_w_62d10f18_04 = input_w_62d10f18_04.w_62d10f18_04_record.trim().toLowerCase();\n const score_w_62d10f18_04 =\n normalized_w_62d10f18_04.length + input_w_62d10f18_04.w_62d10f18_04_sequence;\n return {\n w_62d10f18_04_accepted: score_w_62d10f18_04 % 2 === 0,\n w_62d10f18_04_token: `apex-payment-gateway:4:${score_w_62d10f18_04}`,\n };\n}\n\nexport interface w_62d10f18_05_Request {\n w_62d10f18_05_record: string;\n w_62d10f18_05_sequence: number;\n}\n\nexport interface w_62d10f18_05_Result {\n w_62d10f18_05_accepted: boolean;\n w_62d10f18_05_token: string;\n}\n\nexport function execute_w_62d10f18_05(\n input_w_62d10f18_05: w_62d10f18_05_Request,\n): w_62d10f18_05_Result {\n const normalized_w_62d10f18_05 = input_w_62d10f18_05.w_62d10f18_05_record.trim().toLowerCase();\n const score_w_62d10f18_05 =\n normalized_w_62d10f18_05.length + input_w_62d10f18_05.w_62d10f18_05_sequence;\n return {\n w_62d10f18_05_accepted: score_w_62d10f18_05 % 2 === 0,\n w_62d10f18_05_token: `apex-payment-gateway:5:${score_w_62d10f18_05}`,\n };\n}\n\nexport interface w_62d10f18_06_Request {\n w_62d10f18_06_record: string;\n w_62d10f18_06_sequence: number;\n}\n\nexport interface w_62d10f18_06_Result {\n w_62d10f18_06_accepted: boolean;\n w_62d10f18_06_token: string;\n}\n\nexport function execute_w_62d10f18_06(\n input_w_62d10f18_06: w_62d10f18_06_Request,\n): w_62d10f18_06_Result {\n const normalized_w_62d10f18_06 = input_w_62d10f18_06.w_62d10f18_06_record.trim().toLowerCase();\n const score_w_62d10f18_06 =\n normalized_w_62d10f18_06.length + input_w_62d10f18_06.w_62d10f18_06_sequence;\n return {\n w_62d10f18_06_accepted: score_w_62d10f18_06 % 2 === 0,\n w_62d10f18_06_token: `apex-payment-gateway:6:${score_w_62d10f18_06}`,\n };\n}\n\nexport interface w_62d10f18_07_Request {\n w_62d10f18_07_record: string;\n w_62d10f18_07_sequence: number;\n}\n\nexport interface w_62d10f18_07_Result {\n w_62d10f18_07_accepted: boolean;\n w_62d10f18_07_token: string;\n}\n\nexport function execute_w_62d10f18_07(\n input_w_62d10f18_07: w_62d10f18_07_Request,\n): w_62d10f18_07_Result {\n const normalized_w_62d10f18_07 = input_w_62d10f18_07.w_62d10f18_07_record.trim().toLowerCase();\n const score_w_62d10f18_07 =\n normalized_w_62d10f18_07.length + input_w_62d10f18_07.w_62d10f18_07_sequence;\n return {\n w_62d10f18_07_accepted: score_w_62d10f18_07 % 2 === 0,\n w_62d10f18_07_token: `apex-payment-gateway:7:${score_w_62d10f18_07}`,\n };\n}\n\nexport const w_62d10f18_lex_00 = \"w_62d10f18_a_00 w_62d10f18_b_00 w_62d10f18_c_00 w_62d10f18_d_00 w_62d10f18_e_00\";\nexport const w_62d10f18_lex_01 = \"w_62d10f18_a_01 w_62d10f18_b_01 w_62d10f18_c_01 w_62d10f18_d_01 w_62d10f18_e_01\";\nexport const w_62d10f18_lex_02 = \"w_62d10f18_a_02 w_62d10f18_b_02 w_62d10f18_c_02 w_62d10f18_d_02 w_62d10f18_e_02\";\nexport const w_62d10f18_lex_03 = \"w_62d10f18_a_03 w_62d10f18_b_03 w_62d10f18_c_03 w_62d10f18_d_03 w_62d10f18_e_03\";\nexport const w_62d10f18_lex_04 = \"w_62d10f18_a_04 w_62d10f18_b_04 w_62d10f18_c_04 w_62d10f18_d_04 w_62d10f18_e_04\";\nexport const w_62d10f18_lex_05 = \"w_62d10f18_a_05 w_62d10f18_b_05 w_62d10f18_c_05 w_62d10f18_d_05 w_62d10f18_e_05\";\nexport const w_62d10f18_lex_06 = \"w_62d10f18_a_06 w_62d10f18_b_06 w_62d10f18_c_06 w_62d10f18_d_06 w_62d10f18_e_06\";\nexport const w_62d10f18_lex_07 = \"w_62d10f18_a_07 w_62d10f18_b_07 w_62d10f18_c_07 w_62d10f18_d_07 w_62d10f18_e_07\";\nexport const w_62d10f18_lex_08 = \"w_62d10f18_a_08 w_62d10f18_b_08 w_62d10f18_c_08 w_62d10f18_d_08 w_62d10f18_e_08\";\nexport const w_62d10f18_lex_09 = \"w_62d10f18_a_09 w_62d10f18_b_09 w_62d10f18_c_09 w_62d10f18_d_09 w_62d10f18_e_09\";\nexport const w_62d10f18_lex_10 = \"w_62d10f18_a_10 w_62d10f18_b_10 w_62d10f18_c_10 w_62d10f18_d_10 w_62d10f18_e_10\";\nexport const w_62d10f18_lex_11 = \"w_62d10f18_a_11 w_62d10f18_b_11 w_62d10f18_c_11 w_62d10f18_d_11 w_62d10f18_e_11\";\nexport const w_62d10f18_lex_12 = \"w_62d10f18_a_12 w_62d10f18_b_12 w_62d10f18_c_12 w_62d10f18_d_12 w_62d10f18_e_12\";\nexport const w_62d10f18_lex_13 = \"w_62d10f18_a_13 w_62d10f18_b_13 w_62d10f18_c_13 w_62d10f18_d_13 w_62d10f18_e_13\";\nexport const w_62d10f18_lex_14 = \"w_62d10f18_a_14 w_62d10f18_b_14 w_62d10f18_c_14 w_62d10f18_d_14 w_62d10f18_e_14\";\nexport const w_62d10f18_lex_15 = \"w_62d10f18_a_15 w_62d10f18_b_15 w_62d10f18_c_15 w_62d10f18_d_15 w_62d10f18_e_15\";\nexport const w_62d10f18_lex_16 = \"w_62d10f18_a_16 w_62d10f18_b_16 w_62d10f18_c_16 w_62d10f18_d_16 w_62d10f18_e_16\";\nexport const w_62d10f18_lex_17 = \"w_62d10f18_a_17 w_62d10f18_b_17 w_62d10f18_c_17 w_62d10f18_d_17 w_62d10f18_e_17\";\nexport const w_62d10f18_lex_18 = \"w_62d10f18_a_18 w_62d10f18_b_18 w_62d10f18_c_18 w_62d10f18_d_18 w_62d10f18_e_18\";\nexport const w_62d10f18_lex_19 = \"w_62d10f18_a_19 w_62d10f18_b_19 w_62d10f18_c_19 w_62d10f18_d_19 w_62d10f18_e_19\";\nexport const w_62d10f18_lex_20 = \"w_62d10f18_a_20 w_62d10f18_b_20 w_62d10f18_c_20 w_62d10f18_d_20 w_62d10f18_e_20\";\nexport const w_62d10f18_lex_21 = \"w_62d10f18_a_21 w_62d10f18_b_21 w_62d10f18_c_21 w_62d10f18_d_21 w_62d10f18_e_21\";\nexport const w_62d10f18_lex_22 = \"w_62d10f18_a_22 w_62d10f18_b_22 w_62d10f18_c_22 w_62d10f18_d_22 w_62d10f18_e_22\";\nexport const w_62d10f18_lex_23 = \"w_62d10f18_a_23 w_62d10f18_b_23 w_62d10f18_c_23 w_62d10f18_d_23 w_62d10f18_e_23\";\nexport const w_62d10f18_lex_24 = \"w_62d10f18_a_24 w_62d10f18_b_24 w_62d10f18_c_24 w_62d10f18_d_24 w_62d10f18_e_24\";\nexport const w_62d10f18_lex_25 = \"w_62d10f18_a_25 w_62d10f18_b_25 w_62d10f18_c_25 w_62d10f18_d_25 w_62d10f18_e_25\";\nexport const w_62d10f18_lex_26 = \"w_62d10f18_a_26 w_62d10f18_b_26 w_62d10f18_c_26 w_62d10f18_d_26 w_62d10f18_e_26\";\nexport const w_62d10f18_lex_27 = \"w_62d10f18_a_27 w_62d10f18_b_27 w_62d10f18_c_27 w_62d10f18_d_27 w_62d10f18_e_27\";\n"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "README.md",
|
|
46
|
+
"content": "# Synthetic Repository for apex-payment-gateway\n\nThis repository contains a local service module for apex-payment-gateway.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"path": "TASK.md",
|
|
50
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Keep each validation failure's machine-readable error code paired with the exact failing field path while valid records load successfully.\n\nUpdate the local domain module for apex-payment-gateway so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"path": "test/check.js",
|
|
54
|
+
"content": "import { repositoryIdentity9a1f16f4 } from \"../src/service.mjs\";\nconst {\n v19fe5e00, v907c0eb4, v1f4e4cde, v0917d549, v621a57f6, vb9b073bd, va31eb342, v0a4ec0d6,\n ve2335101, v09f9dd5d, v592f0eb1, vdb3380b6, v95728f3f, v56c8baec, v275539d5, v83c35f15,\n vac3e368f,\n} = repositoryIdentity9a1f16f4;\nif (!Object.values(repositoryIdentity9a1f16f4).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { loadRecord_apex_payment_gateway } from \"../src/service.mjs\";\nconst matrix = [\n { input: {\"job\":{\"priority\":2}}, wanted: { code: \"SCHEMA_QUEUE_MISSING\", path: \"job.queue\" } },\n { input: {\"job\":{\"queue\":\"imports\",\"priority\":0}}, wanted: { code: \"SCHEMA_PRIORITY_RANGE\", path: \"job.priority\" } },\n];\nconst actual = matrix.map(({ input }) => {\n try { loadRecord_apex_payment_gateway(input); return {}; }\n catch (error) { return { code: error.code, path: error.path, message: error.message, nested: Boolean(error.cause?.code) }; }\n});\nconst snapshot = actual.map(({ code, path }) => ({ code, path }));\nconst wanted = matrix.map(({ wanted }) => wanted);\nif (JSON.stringify(snapshot) === JSON.stringify(wanted) && loadRecord_apex_payment_gateway({\"job\":{\"queue\":\"imports\",\"priority\":2}})) {\n console.log(\"FIXED: rule table preserves its rejection metadata\");\n process.exit(0);\n}\nif (actual.every(({ nested, message }, index) => nested && message.includes(matrix[index].wanted.path))) {\n console.log(\"CHECK_FAILED: rule failures remain nested behind loader errors\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: rule table metadata is unavailable\");\nprocess.exit(1);\n"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"path": "src/service.mjs",
|
|
58
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n const opaque = new Error(\"Unable to decode input\");\n opaque.cause = failure;\n throw opaque;\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"checkCommand": "node test/check.js",
|
|
62
|
+
"fileCount": 13,
|
|
63
|
+
"lineCount": 590,
|
|
64
|
+
"fingerprint": {
|
|
65
|
+
"version": 1,
|
|
66
|
+
"trapId": "misleading-error-message",
|
|
67
|
+
"symbol": "patchMisleadingPath_apex_payment_gateway",
|
|
68
|
+
"file": "src/service.mjs",
|
|
69
|
+
"pattern": "patch_misleading_error_path",
|
|
70
|
+
"strategyId": "candidate-alpha"
|
|
71
|
+
},
|
|
72
|
+
"normalizedActionIntent": {
|
|
73
|
+
"version": 1,
|
|
74
|
+
"actionType": "service_maintenance",
|
|
75
|
+
"targetSymbol": "service_apex_payment_gateway",
|
|
76
|
+
"filePath": "src/service.mjs",
|
|
77
|
+
"contextHash": "ae6e67e55b1fa6442a99b09db6bfc02a2d38fc23c30790441b92db09518a1caf"
|
|
78
|
+
},
|
|
79
|
+
"offlineCheckMark": "d19ff800710a48675f6b5a0e8d25befcbab4f2fcbc3bb6eb518e5de1e12baca1",
|
|
80
|
+
"offlineFailureMark": "d60f7e7dc00741961ea55d82f0dc265e80ab85f9b450cc489b2e3a3e6353ceb6",
|
|
81
|
+
"maxTokenCap": 8192,
|
|
82
|
+
"maxAttemptCap": 3,
|
|
83
|
+
"split": "pilot",
|
|
84
|
+
"variants": [
|
|
85
|
+
{
|
|
86
|
+
"variantId": "h6-task-07-v1",
|
|
87
|
+
"baseTaskId": "h6-task-07",
|
|
88
|
+
"variantIndex": 1,
|
|
89
|
+
"distance": 1,
|
|
90
|
+
"domain": "apex-payment-gateway",
|
|
91
|
+
"files": [
|
|
92
|
+
{
|
|
93
|
+
"path": "package.json",
|
|
94
|
+
"content": "{\n \"name\": \"@vellum-quarry/apex-payment-gateway\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for apex-payment-gateway\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"path": "tsconfig.json",
|
|
98
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
102
|
+
"content": "/**\n * Counterfactual SDK for domain apex-payment-gateway\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_apex_payment_gateway, QuillResponse_apex_payment_gateway } from \"./types.js\";\n\nexport function quillApiQuery_apex_payment_gateway(\n payload: Record<string, unknown>,\n opts?: QuillOptions_apex_payment_gateway,\n): QuillResponse_apex_payment_gateway {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"apex-payment-gateway\" },\n };\n}\n\nexport function quillHealthCheck_apex_payment_gateway(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_apex_payment_gateway(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_apex_payment_gateway(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_apex_payment_gateway(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_apex_payment_gateway(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_apex_payment_gateway(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_apex_payment_gateway(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_apex_payment_gateway(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
106
|
+
"content": "/**\n * Type declarations for counterfactual SDK apex-payment-gateway\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_apex_payment_gateway {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_apex_payment_gateway {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_apex_payment_gateway {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_apex_payment_gateway;\n}\n\nexport interface QuillBatchRequest_apex_payment_gateway {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_apex_payment_gateway {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"path": "src/types.ts",
|
|
110
|
+
"content": "/**\n * Domain type definitions for apex-payment-gateway\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_apex_payment_gateway {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_apex_payment_gateway {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_apex_payment_gateway {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_apex_payment_gateway {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_apex_payment_gateway<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_apex_payment_gateway {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"path": "src/utils.ts",
|
|
114
|
+
"content": "/**\n * Utility functions for domain apex-payment-gateway\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_apex_payment_gateway(name: string): string {\n if (!name) return \"apex-payment-gateway\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_apex_payment_gateway(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_apex_payment_gateway(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_apex_payment_gateway<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_apex_payment_gateway(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_apex_payment_gateway(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_apex_payment_gateway(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"path": "src/config.ts",
|
|
118
|
+
"content": "/**\n * Default configuration options for apex-payment-gateway\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_apex_payment_gateway = {\n domain: \"apex-payment-gateway\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_apex_payment_gateway(): typeof DEFAULT_CONFIG_apex_payment_gateway {\n return { ...DEFAULT_CONFIG_apex_payment_gateway };\n}\n"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"path": "src/domain-workflow.ts",
|
|
122
|
+
"content": "/**\n * Local workflow contracts for apex-payment-gateway.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_62d10f18_00_Request {\n w_62d10f18_00_record: string;\n w_62d10f18_00_sequence: number;\n}\n\nexport interface w_62d10f18_00_Result {\n w_62d10f18_00_accepted: boolean;\n w_62d10f18_00_token: string;\n}\n\nexport function execute_w_62d10f18_00(\n input_w_62d10f18_00: w_62d10f18_00_Request,\n): w_62d10f18_00_Result {\n const normalized_w_62d10f18_00 = input_w_62d10f18_00.w_62d10f18_00_record.trim().toLowerCase();\n const score_w_62d10f18_00 =\n normalized_w_62d10f18_00.length + input_w_62d10f18_00.w_62d10f18_00_sequence;\n return {\n w_62d10f18_00_accepted: score_w_62d10f18_00 % 2 === 0,\n w_62d10f18_00_token: `apex-payment-gateway:0:${score_w_62d10f18_00}`,\n };\n}\n\nexport interface w_62d10f18_01_Request {\n w_62d10f18_01_record: string;\n w_62d10f18_01_sequence: number;\n}\n\nexport interface w_62d10f18_01_Result {\n w_62d10f18_01_accepted: boolean;\n w_62d10f18_01_token: string;\n}\n\nexport function execute_w_62d10f18_01(\n input_w_62d10f18_01: w_62d10f18_01_Request,\n): w_62d10f18_01_Result {\n const normalized_w_62d10f18_01 = input_w_62d10f18_01.w_62d10f18_01_record.trim().toLowerCase();\n const score_w_62d10f18_01 =\n normalized_w_62d10f18_01.length + input_w_62d10f18_01.w_62d10f18_01_sequence;\n return {\n w_62d10f18_01_accepted: score_w_62d10f18_01 % 2 === 0,\n w_62d10f18_01_token: `apex-payment-gateway:1:${score_w_62d10f18_01}`,\n };\n}\n\nexport interface w_62d10f18_02_Request {\n w_62d10f18_02_record: string;\n w_62d10f18_02_sequence: number;\n}\n\nexport interface w_62d10f18_02_Result {\n w_62d10f18_02_accepted: boolean;\n w_62d10f18_02_token: string;\n}\n\nexport function execute_w_62d10f18_02(\n input_w_62d10f18_02: w_62d10f18_02_Request,\n): w_62d10f18_02_Result {\n const normalized_w_62d10f18_02 = input_w_62d10f18_02.w_62d10f18_02_record.trim().toLowerCase();\n const score_w_62d10f18_02 =\n normalized_w_62d10f18_02.length + input_w_62d10f18_02.w_62d10f18_02_sequence;\n return {\n w_62d10f18_02_accepted: score_w_62d10f18_02 % 2 === 0,\n w_62d10f18_02_token: `apex-payment-gateway:2:${score_w_62d10f18_02}`,\n };\n}\n\nexport interface w_62d10f18_03_Request {\n w_62d10f18_03_record: string;\n w_62d10f18_03_sequence: number;\n}\n\nexport interface w_62d10f18_03_Result {\n w_62d10f18_03_accepted: boolean;\n w_62d10f18_03_token: string;\n}\n\nexport function execute_w_62d10f18_03(\n input_w_62d10f18_03: w_62d10f18_03_Request,\n): w_62d10f18_03_Result {\n const normalized_w_62d10f18_03 = input_w_62d10f18_03.w_62d10f18_03_record.trim().toLowerCase();\n const score_w_62d10f18_03 =\n normalized_w_62d10f18_03.length + input_w_62d10f18_03.w_62d10f18_03_sequence;\n return {\n w_62d10f18_03_accepted: score_w_62d10f18_03 % 2 === 0,\n w_62d10f18_03_token: `apex-payment-gateway:3:${score_w_62d10f18_03}`,\n };\n}\n\nexport interface w_62d10f18_04_Request {\n w_62d10f18_04_record: string;\n w_62d10f18_04_sequence: number;\n}\n\nexport interface w_62d10f18_04_Result {\n w_62d10f18_04_accepted: boolean;\n w_62d10f18_04_token: string;\n}\n\nexport function execute_w_62d10f18_04(\n input_w_62d10f18_04: w_62d10f18_04_Request,\n): w_62d10f18_04_Result {\n const normalized_w_62d10f18_04 = input_w_62d10f18_04.w_62d10f18_04_record.trim().toLowerCase();\n const score_w_62d10f18_04 =\n normalized_w_62d10f18_04.length + input_w_62d10f18_04.w_62d10f18_04_sequence;\n return {\n w_62d10f18_04_accepted: score_w_62d10f18_04 % 2 === 0,\n w_62d10f18_04_token: `apex-payment-gateway:4:${score_w_62d10f18_04}`,\n };\n}\n\nexport interface w_62d10f18_05_Request {\n w_62d10f18_05_record: string;\n w_62d10f18_05_sequence: number;\n}\n\nexport interface w_62d10f18_05_Result {\n w_62d10f18_05_accepted: boolean;\n w_62d10f18_05_token: string;\n}\n\nexport function execute_w_62d10f18_05(\n input_w_62d10f18_05: w_62d10f18_05_Request,\n): w_62d10f18_05_Result {\n const normalized_w_62d10f18_05 = input_w_62d10f18_05.w_62d10f18_05_record.trim().toLowerCase();\n const score_w_62d10f18_05 =\n normalized_w_62d10f18_05.length + input_w_62d10f18_05.w_62d10f18_05_sequence;\n return {\n w_62d10f18_05_accepted: score_w_62d10f18_05 % 2 === 0,\n w_62d10f18_05_token: `apex-payment-gateway:5:${score_w_62d10f18_05}`,\n };\n}\n\nexport interface w_62d10f18_06_Request {\n w_62d10f18_06_record: string;\n w_62d10f18_06_sequence: number;\n}\n\nexport interface w_62d10f18_06_Result {\n w_62d10f18_06_accepted: boolean;\n w_62d10f18_06_token: string;\n}\n\nexport function execute_w_62d10f18_06(\n input_w_62d10f18_06: w_62d10f18_06_Request,\n): w_62d10f18_06_Result {\n const normalized_w_62d10f18_06 = input_w_62d10f18_06.w_62d10f18_06_record.trim().toLowerCase();\n const score_w_62d10f18_06 =\n normalized_w_62d10f18_06.length + input_w_62d10f18_06.w_62d10f18_06_sequence;\n return {\n w_62d10f18_06_accepted: score_w_62d10f18_06 % 2 === 0,\n w_62d10f18_06_token: `apex-payment-gateway:6:${score_w_62d10f18_06}`,\n };\n}\n\nexport interface w_62d10f18_07_Request {\n w_62d10f18_07_record: string;\n w_62d10f18_07_sequence: number;\n}\n\nexport interface w_62d10f18_07_Result {\n w_62d10f18_07_accepted: boolean;\n w_62d10f18_07_token: string;\n}\n\nexport function execute_w_62d10f18_07(\n input_w_62d10f18_07: w_62d10f18_07_Request,\n): w_62d10f18_07_Result {\n const normalized_w_62d10f18_07 = input_w_62d10f18_07.w_62d10f18_07_record.trim().toLowerCase();\n const score_w_62d10f18_07 =\n normalized_w_62d10f18_07.length + input_w_62d10f18_07.w_62d10f18_07_sequence;\n return {\n w_62d10f18_07_accepted: score_w_62d10f18_07 % 2 === 0,\n w_62d10f18_07_token: `apex-payment-gateway:7:${score_w_62d10f18_07}`,\n };\n}\n\nexport const w_62d10f18_lex_00 = \"w_62d10f18_a_00 w_62d10f18_b_00 w_62d10f18_c_00 w_62d10f18_d_00 w_62d10f18_e_00\";\nexport const w_62d10f18_lex_01 = \"w_62d10f18_a_01 w_62d10f18_b_01 w_62d10f18_c_01 w_62d10f18_d_01 w_62d10f18_e_01\";\nexport const w_62d10f18_lex_02 = \"w_62d10f18_a_02 w_62d10f18_b_02 w_62d10f18_c_02 w_62d10f18_d_02 w_62d10f18_e_02\";\nexport const w_62d10f18_lex_03 = \"w_62d10f18_a_03 w_62d10f18_b_03 w_62d10f18_c_03 w_62d10f18_d_03 w_62d10f18_e_03\";\nexport const w_62d10f18_lex_04 = \"w_62d10f18_a_04 w_62d10f18_b_04 w_62d10f18_c_04 w_62d10f18_d_04 w_62d10f18_e_04\";\nexport const w_62d10f18_lex_05 = \"w_62d10f18_a_05 w_62d10f18_b_05 w_62d10f18_c_05 w_62d10f18_d_05 w_62d10f18_e_05\";\nexport const w_62d10f18_lex_06 = \"w_62d10f18_a_06 w_62d10f18_b_06 w_62d10f18_c_06 w_62d10f18_d_06 w_62d10f18_e_06\";\nexport const w_62d10f18_lex_07 = \"w_62d10f18_a_07 w_62d10f18_b_07 w_62d10f18_c_07 w_62d10f18_d_07 w_62d10f18_e_07\";\nexport const w_62d10f18_lex_08 = \"w_62d10f18_a_08 w_62d10f18_b_08 w_62d10f18_c_08 w_62d10f18_d_08 w_62d10f18_e_08\";\nexport const w_62d10f18_lex_09 = \"w_62d10f18_a_09 w_62d10f18_b_09 w_62d10f18_c_09 w_62d10f18_d_09 w_62d10f18_e_09\";\nexport const w_62d10f18_lex_10 = \"w_62d10f18_a_10 w_62d10f18_b_10 w_62d10f18_c_10 w_62d10f18_d_10 w_62d10f18_e_10\";\nexport const w_62d10f18_lex_11 = \"w_62d10f18_a_11 w_62d10f18_b_11 w_62d10f18_c_11 w_62d10f18_d_11 w_62d10f18_e_11\";\nexport const w_62d10f18_lex_12 = \"w_62d10f18_a_12 w_62d10f18_b_12 w_62d10f18_c_12 w_62d10f18_d_12 w_62d10f18_e_12\";\nexport const w_62d10f18_lex_13 = \"w_62d10f18_a_13 w_62d10f18_b_13 w_62d10f18_c_13 w_62d10f18_d_13 w_62d10f18_e_13\";\nexport const w_62d10f18_lex_14 = \"w_62d10f18_a_14 w_62d10f18_b_14 w_62d10f18_c_14 w_62d10f18_d_14 w_62d10f18_e_14\";\nexport const w_62d10f18_lex_15 = \"w_62d10f18_a_15 w_62d10f18_b_15 w_62d10f18_c_15 w_62d10f18_d_15 w_62d10f18_e_15\";\nexport const w_62d10f18_lex_16 = \"w_62d10f18_a_16 w_62d10f18_b_16 w_62d10f18_c_16 w_62d10f18_d_16 w_62d10f18_e_16\";\nexport const w_62d10f18_lex_17 = \"w_62d10f18_a_17 w_62d10f18_b_17 w_62d10f18_c_17 w_62d10f18_d_17 w_62d10f18_e_17\";\nexport const w_62d10f18_lex_18 = \"w_62d10f18_a_18 w_62d10f18_b_18 w_62d10f18_c_18 w_62d10f18_d_18 w_62d10f18_e_18\";\nexport const w_62d10f18_lex_19 = \"w_62d10f18_a_19 w_62d10f18_b_19 w_62d10f18_c_19 w_62d10f18_d_19 w_62d10f18_e_19\";\nexport const w_62d10f18_lex_20 = \"w_62d10f18_a_20 w_62d10f18_b_20 w_62d10f18_c_20 w_62d10f18_d_20 w_62d10f18_e_20\";\nexport const w_62d10f18_lex_21 = \"w_62d10f18_a_21 w_62d10f18_b_21 w_62d10f18_c_21 w_62d10f18_d_21 w_62d10f18_e_21\";\nexport const w_62d10f18_lex_22 = \"w_62d10f18_a_22 w_62d10f18_b_22 w_62d10f18_c_22 w_62d10f18_d_22 w_62d10f18_e_22\";\nexport const w_62d10f18_lex_23 = \"w_62d10f18_a_23 w_62d10f18_b_23 w_62d10f18_c_23 w_62d10f18_d_23 w_62d10f18_e_23\";\nexport const w_62d10f18_lex_24 = \"w_62d10f18_a_24 w_62d10f18_b_24 w_62d10f18_c_24 w_62d10f18_d_24 w_62d10f18_e_24\";\nexport const w_62d10f18_lex_25 = \"w_62d10f18_a_25 w_62d10f18_b_25 w_62d10f18_c_25 w_62d10f18_d_25 w_62d10f18_e_25\";\nexport const w_62d10f18_lex_26 = \"w_62d10f18_a_26 w_62d10f18_b_26 w_62d10f18_c_26 w_62d10f18_d_26 w_62d10f18_e_26\";\nexport const w_62d10f18_lex_27 = \"w_62d10f18_a_27 w_62d10f18_b_27 w_62d10f18_c_27 w_62d10f18_d_27 w_62d10f18_e_27\";\n"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"path": "README.md",
|
|
126
|
+
"content": "# Synthetic Repository for apex-payment-gateway\n\nThis repository contains a local service module for apex-payment-gateway.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"path": "TASK.md",
|
|
130
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Keep each validation failure's machine-readable error code paired with the exact failing field path while valid records load successfully.\n\nUpdate the local domain module for apex-payment-gateway so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"path": "test/check.js",
|
|
134
|
+
"content": "import { repositoryIdentity9a1f16f4 } from \"../src/service.mjs\";\nconst {\n v19fe5e00, v907c0eb4, v1f4e4cde, v0917d549, v621a57f6, vb9b073bd, va31eb342, v0a4ec0d6,\n ve2335101, v09f9dd5d, v592f0eb1, vdb3380b6, v95728f3f, v56c8baec, v275539d5, v83c35f15,\n vac3e368f,\n} = repositoryIdentity9a1f16f4;\nif (!Object.values(repositoryIdentity9a1f16f4).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { loadRecord_apex_payment_gateway } from \"../src/service.mjs\";\nconst matrix = [\n { input: {\"job\":{\"priority\":2}}, wanted: { code: \"SCHEMA_QUEUE_MISSING\", path: \"job.queue\" } },\n { input: {\"job\":{\"queue\":\"imports\",\"priority\":0}}, wanted: { code: \"SCHEMA_PRIORITY_RANGE\", path: \"job.priority\" } },\n];\nconst actual = matrix.map(({ input }) => {\n try { loadRecord_apex_payment_gateway(input); return {}; }\n catch (error) { return { code: error.code, path: error.path, message: error.message, nested: Boolean(error.cause?.code) }; }\n});\nconst snapshot = actual.map(({ code, path }) => ({ code, path }));\nconst wanted = matrix.map(({ wanted }) => wanted);\nif (JSON.stringify(snapshot) === JSON.stringify(wanted) && loadRecord_apex_payment_gateway({\"job\":{\"queue\":\"imports\",\"priority\":2}})) {\n console.log(\"FIXED: rule table preserves its rejection metadata\");\n process.exit(0);\n}\nif (actual.every(({ nested, message }, index) => nested && message.includes(matrix[index].wanted.path))) {\n console.log(\"CHECK_FAILED: rule failures remain nested behind loader errors\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: rule table metadata is unavailable\");\nprocess.exit(1);\n"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"path": "src/service.mjs",
|
|
138
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n const opaque = new Error(\"Unable to decode input\");\n opaque.cause = failure;\n throw opaque;\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"path": "src/helper.ts",
|
|
142
|
+
"content": "/**\n * Helper routines for apex-payment-gateway\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_apex_payment_gateway, generateTraceId_apex_payment_gateway } from \"./utils.js\";\n\nexport function getDomainHeader_apex_payment_gateway_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_apex_payment_gateway(domain);\n}\n\nexport function createServiceContext_apex_payment_gateway_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_apex_payment_gateway(domain),\n traceId: generateTraceId_apex_payment_gateway(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_apex_payment_gateway_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_apex_payment_gateway<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"strategyCandidates": [
|
|
146
|
+
{
|
|
147
|
+
"id": "candidate-alpha",
|
|
148
|
+
"description": "Candidate alpha.",
|
|
149
|
+
"files": [
|
|
150
|
+
{
|
|
151
|
+
"path": "src/service.mjs",
|
|
152
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n throw new TypeError(`Rejected at ${failure.path}`, { cause: failure });\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id": "candidate-beta",
|
|
158
|
+
"description": "Candidate beta.",
|
|
159
|
+
"files": [
|
|
160
|
+
{
|
|
161
|
+
"path": "src/service.mjs",
|
|
162
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n return inspect(record);\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"badStrategyPatch": {
|
|
168
|
+
"id": "candidate-alpha",
|
|
169
|
+
"description": "Candidate alpha.",
|
|
170
|
+
"files": [
|
|
171
|
+
{
|
|
172
|
+
"path": "src/service.mjs",
|
|
173
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n throw new TypeError(`Rejected at ${failure.path}`, { cause: failure });\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
174
|
+
}
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
"goodStrategyPatch": {
|
|
178
|
+
"id": "candidate-beta",
|
|
179
|
+
"description": "Candidate beta.",
|
|
180
|
+
"files": [
|
|
181
|
+
{
|
|
182
|
+
"path": "src/service.mjs",
|
|
183
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n return inspect(record);\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
184
|
+
}
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
"noTrapControlFiles": [
|
|
188
|
+
{
|
|
189
|
+
"path": "package.json",
|
|
190
|
+
"content": "{\n \"name\": \"@vellum-quarry/apex-payment-gateway\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for apex-payment-gateway\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"path": "tsconfig.json",
|
|
194
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
198
|
+
"content": "/**\n * Counterfactual SDK for domain apex-payment-gateway\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_apex_payment_gateway, QuillResponse_apex_payment_gateway } from \"./types.js\";\n\nexport function quillApiQuery_apex_payment_gateway(\n payload: Record<string, unknown>,\n opts?: QuillOptions_apex_payment_gateway,\n): QuillResponse_apex_payment_gateway {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"apex-payment-gateway\" },\n };\n}\n\nexport function quillHealthCheck_apex_payment_gateway(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_apex_payment_gateway(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_apex_payment_gateway(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_apex_payment_gateway(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_apex_payment_gateway(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_apex_payment_gateway(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_apex_payment_gateway(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_apex_payment_gateway(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
202
|
+
"content": "/**\n * Type declarations for counterfactual SDK apex-payment-gateway\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_apex_payment_gateway {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_apex_payment_gateway {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_apex_payment_gateway {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_apex_payment_gateway;\n}\n\nexport interface QuillBatchRequest_apex_payment_gateway {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_apex_payment_gateway {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"path": "src/types.ts",
|
|
206
|
+
"content": "/**\n * Domain type definitions for apex-payment-gateway\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_apex_payment_gateway {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_apex_payment_gateway {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_apex_payment_gateway {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_apex_payment_gateway {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_apex_payment_gateway<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_apex_payment_gateway {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"path": "src/utils.ts",
|
|
210
|
+
"content": "/**\n * Utility functions for domain apex-payment-gateway\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_apex_payment_gateway(name: string): string {\n if (!name) return \"apex-payment-gateway\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_apex_payment_gateway(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_apex_payment_gateway(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_apex_payment_gateway<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_apex_payment_gateway(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_apex_payment_gateway(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_apex_payment_gateway(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"path": "src/config.ts",
|
|
214
|
+
"content": "/**\n * Default configuration options for apex-payment-gateway\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_apex_payment_gateway = {\n domain: \"apex-payment-gateway\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_apex_payment_gateway(): typeof DEFAULT_CONFIG_apex_payment_gateway {\n return { ...DEFAULT_CONFIG_apex_payment_gateway };\n}\n"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"path": "src/domain-workflow.ts",
|
|
218
|
+
"content": "/**\n * Local workflow contracts for apex-payment-gateway.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_62d10f18_00_Request {\n w_62d10f18_00_record: string;\n w_62d10f18_00_sequence: number;\n}\n\nexport interface w_62d10f18_00_Result {\n w_62d10f18_00_accepted: boolean;\n w_62d10f18_00_token: string;\n}\n\nexport function execute_w_62d10f18_00(\n input_w_62d10f18_00: w_62d10f18_00_Request,\n): w_62d10f18_00_Result {\n const normalized_w_62d10f18_00 = input_w_62d10f18_00.w_62d10f18_00_record.trim().toLowerCase();\n const score_w_62d10f18_00 =\n normalized_w_62d10f18_00.length + input_w_62d10f18_00.w_62d10f18_00_sequence;\n return {\n w_62d10f18_00_accepted: score_w_62d10f18_00 % 2 === 0,\n w_62d10f18_00_token: `apex-payment-gateway:0:${score_w_62d10f18_00}`,\n };\n}\n\nexport interface w_62d10f18_01_Request {\n w_62d10f18_01_record: string;\n w_62d10f18_01_sequence: number;\n}\n\nexport interface w_62d10f18_01_Result {\n w_62d10f18_01_accepted: boolean;\n w_62d10f18_01_token: string;\n}\n\nexport function execute_w_62d10f18_01(\n input_w_62d10f18_01: w_62d10f18_01_Request,\n): w_62d10f18_01_Result {\n const normalized_w_62d10f18_01 = input_w_62d10f18_01.w_62d10f18_01_record.trim().toLowerCase();\n const score_w_62d10f18_01 =\n normalized_w_62d10f18_01.length + input_w_62d10f18_01.w_62d10f18_01_sequence;\n return {\n w_62d10f18_01_accepted: score_w_62d10f18_01 % 2 === 0,\n w_62d10f18_01_token: `apex-payment-gateway:1:${score_w_62d10f18_01}`,\n };\n}\n\nexport interface w_62d10f18_02_Request {\n w_62d10f18_02_record: string;\n w_62d10f18_02_sequence: number;\n}\n\nexport interface w_62d10f18_02_Result {\n w_62d10f18_02_accepted: boolean;\n w_62d10f18_02_token: string;\n}\n\nexport function execute_w_62d10f18_02(\n input_w_62d10f18_02: w_62d10f18_02_Request,\n): w_62d10f18_02_Result {\n const normalized_w_62d10f18_02 = input_w_62d10f18_02.w_62d10f18_02_record.trim().toLowerCase();\n const score_w_62d10f18_02 =\n normalized_w_62d10f18_02.length + input_w_62d10f18_02.w_62d10f18_02_sequence;\n return {\n w_62d10f18_02_accepted: score_w_62d10f18_02 % 2 === 0,\n w_62d10f18_02_token: `apex-payment-gateway:2:${score_w_62d10f18_02}`,\n };\n}\n\nexport interface w_62d10f18_03_Request {\n w_62d10f18_03_record: string;\n w_62d10f18_03_sequence: number;\n}\n\nexport interface w_62d10f18_03_Result {\n w_62d10f18_03_accepted: boolean;\n w_62d10f18_03_token: string;\n}\n\nexport function execute_w_62d10f18_03(\n input_w_62d10f18_03: w_62d10f18_03_Request,\n): w_62d10f18_03_Result {\n const normalized_w_62d10f18_03 = input_w_62d10f18_03.w_62d10f18_03_record.trim().toLowerCase();\n const score_w_62d10f18_03 =\n normalized_w_62d10f18_03.length + input_w_62d10f18_03.w_62d10f18_03_sequence;\n return {\n w_62d10f18_03_accepted: score_w_62d10f18_03 % 2 === 0,\n w_62d10f18_03_token: `apex-payment-gateway:3:${score_w_62d10f18_03}`,\n };\n}\n\nexport interface w_62d10f18_04_Request {\n w_62d10f18_04_record: string;\n w_62d10f18_04_sequence: number;\n}\n\nexport interface w_62d10f18_04_Result {\n w_62d10f18_04_accepted: boolean;\n w_62d10f18_04_token: string;\n}\n\nexport function execute_w_62d10f18_04(\n input_w_62d10f18_04: w_62d10f18_04_Request,\n): w_62d10f18_04_Result {\n const normalized_w_62d10f18_04 = input_w_62d10f18_04.w_62d10f18_04_record.trim().toLowerCase();\n const score_w_62d10f18_04 =\n normalized_w_62d10f18_04.length + input_w_62d10f18_04.w_62d10f18_04_sequence;\n return {\n w_62d10f18_04_accepted: score_w_62d10f18_04 % 2 === 0,\n w_62d10f18_04_token: `apex-payment-gateway:4:${score_w_62d10f18_04}`,\n };\n}\n\nexport interface w_62d10f18_05_Request {\n w_62d10f18_05_record: string;\n w_62d10f18_05_sequence: number;\n}\n\nexport interface w_62d10f18_05_Result {\n w_62d10f18_05_accepted: boolean;\n w_62d10f18_05_token: string;\n}\n\nexport function execute_w_62d10f18_05(\n input_w_62d10f18_05: w_62d10f18_05_Request,\n): w_62d10f18_05_Result {\n const normalized_w_62d10f18_05 = input_w_62d10f18_05.w_62d10f18_05_record.trim().toLowerCase();\n const score_w_62d10f18_05 =\n normalized_w_62d10f18_05.length + input_w_62d10f18_05.w_62d10f18_05_sequence;\n return {\n w_62d10f18_05_accepted: score_w_62d10f18_05 % 2 === 0,\n w_62d10f18_05_token: `apex-payment-gateway:5:${score_w_62d10f18_05}`,\n };\n}\n\nexport interface w_62d10f18_06_Request {\n w_62d10f18_06_record: string;\n w_62d10f18_06_sequence: number;\n}\n\nexport interface w_62d10f18_06_Result {\n w_62d10f18_06_accepted: boolean;\n w_62d10f18_06_token: string;\n}\n\nexport function execute_w_62d10f18_06(\n input_w_62d10f18_06: w_62d10f18_06_Request,\n): w_62d10f18_06_Result {\n const normalized_w_62d10f18_06 = input_w_62d10f18_06.w_62d10f18_06_record.trim().toLowerCase();\n const score_w_62d10f18_06 =\n normalized_w_62d10f18_06.length + input_w_62d10f18_06.w_62d10f18_06_sequence;\n return {\n w_62d10f18_06_accepted: score_w_62d10f18_06 % 2 === 0,\n w_62d10f18_06_token: `apex-payment-gateway:6:${score_w_62d10f18_06}`,\n };\n}\n\nexport interface w_62d10f18_07_Request {\n w_62d10f18_07_record: string;\n w_62d10f18_07_sequence: number;\n}\n\nexport interface w_62d10f18_07_Result {\n w_62d10f18_07_accepted: boolean;\n w_62d10f18_07_token: string;\n}\n\nexport function execute_w_62d10f18_07(\n input_w_62d10f18_07: w_62d10f18_07_Request,\n): w_62d10f18_07_Result {\n const normalized_w_62d10f18_07 = input_w_62d10f18_07.w_62d10f18_07_record.trim().toLowerCase();\n const score_w_62d10f18_07 =\n normalized_w_62d10f18_07.length + input_w_62d10f18_07.w_62d10f18_07_sequence;\n return {\n w_62d10f18_07_accepted: score_w_62d10f18_07 % 2 === 0,\n w_62d10f18_07_token: `apex-payment-gateway:7:${score_w_62d10f18_07}`,\n };\n}\n\nexport const w_62d10f18_lex_00 = \"w_62d10f18_a_00 w_62d10f18_b_00 w_62d10f18_c_00 w_62d10f18_d_00 w_62d10f18_e_00\";\nexport const w_62d10f18_lex_01 = \"w_62d10f18_a_01 w_62d10f18_b_01 w_62d10f18_c_01 w_62d10f18_d_01 w_62d10f18_e_01\";\nexport const w_62d10f18_lex_02 = \"w_62d10f18_a_02 w_62d10f18_b_02 w_62d10f18_c_02 w_62d10f18_d_02 w_62d10f18_e_02\";\nexport const w_62d10f18_lex_03 = \"w_62d10f18_a_03 w_62d10f18_b_03 w_62d10f18_c_03 w_62d10f18_d_03 w_62d10f18_e_03\";\nexport const w_62d10f18_lex_04 = \"w_62d10f18_a_04 w_62d10f18_b_04 w_62d10f18_c_04 w_62d10f18_d_04 w_62d10f18_e_04\";\nexport const w_62d10f18_lex_05 = \"w_62d10f18_a_05 w_62d10f18_b_05 w_62d10f18_c_05 w_62d10f18_d_05 w_62d10f18_e_05\";\nexport const w_62d10f18_lex_06 = \"w_62d10f18_a_06 w_62d10f18_b_06 w_62d10f18_c_06 w_62d10f18_d_06 w_62d10f18_e_06\";\nexport const w_62d10f18_lex_07 = \"w_62d10f18_a_07 w_62d10f18_b_07 w_62d10f18_c_07 w_62d10f18_d_07 w_62d10f18_e_07\";\nexport const w_62d10f18_lex_08 = \"w_62d10f18_a_08 w_62d10f18_b_08 w_62d10f18_c_08 w_62d10f18_d_08 w_62d10f18_e_08\";\nexport const w_62d10f18_lex_09 = \"w_62d10f18_a_09 w_62d10f18_b_09 w_62d10f18_c_09 w_62d10f18_d_09 w_62d10f18_e_09\";\nexport const w_62d10f18_lex_10 = \"w_62d10f18_a_10 w_62d10f18_b_10 w_62d10f18_c_10 w_62d10f18_d_10 w_62d10f18_e_10\";\nexport const w_62d10f18_lex_11 = \"w_62d10f18_a_11 w_62d10f18_b_11 w_62d10f18_c_11 w_62d10f18_d_11 w_62d10f18_e_11\";\nexport const w_62d10f18_lex_12 = \"w_62d10f18_a_12 w_62d10f18_b_12 w_62d10f18_c_12 w_62d10f18_d_12 w_62d10f18_e_12\";\nexport const w_62d10f18_lex_13 = \"w_62d10f18_a_13 w_62d10f18_b_13 w_62d10f18_c_13 w_62d10f18_d_13 w_62d10f18_e_13\";\nexport const w_62d10f18_lex_14 = \"w_62d10f18_a_14 w_62d10f18_b_14 w_62d10f18_c_14 w_62d10f18_d_14 w_62d10f18_e_14\";\nexport const w_62d10f18_lex_15 = \"w_62d10f18_a_15 w_62d10f18_b_15 w_62d10f18_c_15 w_62d10f18_d_15 w_62d10f18_e_15\";\nexport const w_62d10f18_lex_16 = \"w_62d10f18_a_16 w_62d10f18_b_16 w_62d10f18_c_16 w_62d10f18_d_16 w_62d10f18_e_16\";\nexport const w_62d10f18_lex_17 = \"w_62d10f18_a_17 w_62d10f18_b_17 w_62d10f18_c_17 w_62d10f18_d_17 w_62d10f18_e_17\";\nexport const w_62d10f18_lex_18 = \"w_62d10f18_a_18 w_62d10f18_b_18 w_62d10f18_c_18 w_62d10f18_d_18 w_62d10f18_e_18\";\nexport const w_62d10f18_lex_19 = \"w_62d10f18_a_19 w_62d10f18_b_19 w_62d10f18_c_19 w_62d10f18_d_19 w_62d10f18_e_19\";\nexport const w_62d10f18_lex_20 = \"w_62d10f18_a_20 w_62d10f18_b_20 w_62d10f18_c_20 w_62d10f18_d_20 w_62d10f18_e_20\";\nexport const w_62d10f18_lex_21 = \"w_62d10f18_a_21 w_62d10f18_b_21 w_62d10f18_c_21 w_62d10f18_d_21 w_62d10f18_e_21\";\nexport const w_62d10f18_lex_22 = \"w_62d10f18_a_22 w_62d10f18_b_22 w_62d10f18_c_22 w_62d10f18_d_22 w_62d10f18_e_22\";\nexport const w_62d10f18_lex_23 = \"w_62d10f18_a_23 w_62d10f18_b_23 w_62d10f18_c_23 w_62d10f18_d_23 w_62d10f18_e_23\";\nexport const w_62d10f18_lex_24 = \"w_62d10f18_a_24 w_62d10f18_b_24 w_62d10f18_c_24 w_62d10f18_d_24 w_62d10f18_e_24\";\nexport const w_62d10f18_lex_25 = \"w_62d10f18_a_25 w_62d10f18_b_25 w_62d10f18_c_25 w_62d10f18_d_25 w_62d10f18_e_25\";\nexport const w_62d10f18_lex_26 = \"w_62d10f18_a_26 w_62d10f18_b_26 w_62d10f18_c_26 w_62d10f18_d_26 w_62d10f18_e_26\";\nexport const w_62d10f18_lex_27 = \"w_62d10f18_a_27 w_62d10f18_b_27 w_62d10f18_c_27 w_62d10f18_d_27 w_62d10f18_e_27\";\n"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"path": "README.md",
|
|
222
|
+
"content": "# Synthetic Repository for apex-payment-gateway\n\nThis repository contains a local service module for apex-payment-gateway.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"path": "TASK.md",
|
|
226
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Keep each validation failure's machine-readable error code paired with the exact failing field path while valid records load successfully.\n\nUpdate the local domain module for apex-payment-gateway so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"path": "test/check.js",
|
|
230
|
+
"content": "import { repositoryIdentity9a1f16f4 } from \"../src/service.mjs\";\nconst {\n v19fe5e00, v907c0eb4, v1f4e4cde, v0917d549, v621a57f6, vb9b073bd, va31eb342, v0a4ec0d6,\n ve2335101, v09f9dd5d, v592f0eb1, vdb3380b6, v95728f3f, v56c8baec, v275539d5, v83c35f15,\n vac3e368f,\n} = repositoryIdentity9a1f16f4;\nif (!Object.values(repositoryIdentity9a1f16f4).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { loadRecord_apex_payment_gateway } from \"../src/service.mjs\";\nconst matrix = [\n { input: {\"job\":{\"priority\":2}}, wanted: { code: \"SCHEMA_QUEUE_MISSING\", path: \"job.queue\" } },\n { input: {\"job\":{\"queue\":\"imports\",\"priority\":0}}, wanted: { code: \"SCHEMA_PRIORITY_RANGE\", path: \"job.priority\" } },\n];\nconst actual = matrix.map(({ input }) => {\n try { loadRecord_apex_payment_gateway(input); return {}; }\n catch (error) { return { code: error.code, path: error.path, message: error.message, nested: Boolean(error.cause?.code) }; }\n});\nconst snapshot = actual.map(({ code, path }) => ({ code, path }));\nconst wanted = matrix.map(({ wanted }) => wanted);\nif (JSON.stringify(snapshot) === JSON.stringify(wanted) && loadRecord_apex_payment_gateway({\"job\":{\"queue\":\"imports\",\"priority\":2}})) {\n console.log(\"FIXED: rule table preserves its rejection metadata\");\n process.exit(0);\n}\nif (actual.every(({ nested, message }, index) => nested && message.includes(matrix[index].wanted.path))) {\n console.log(\"CHECK_FAILED: rule failures remain nested behind loader errors\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: rule table metadata is unavailable\");\nprocess.exit(1);\n"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"path": "src/service.mjs",
|
|
234
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n return inspect(record);\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"path": "src/helper.ts",
|
|
238
|
+
"content": "/**\n * Helper routines for apex-payment-gateway\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_apex_payment_gateway, generateTraceId_apex_payment_gateway } from \"./utils.js\";\n\nexport function getDomainHeader_apex_payment_gateway_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_apex_payment_gateway(domain);\n}\n\nexport function createServiceContext_apex_payment_gateway_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_apex_payment_gateway(domain),\n traceId: generateTraceId_apex_payment_gateway(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_apex_payment_gateway_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_apex_payment_gateway<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
239
|
+
}
|
|
240
|
+
],
|
|
241
|
+
"cleanRevisionSha": "730c5a6c17beabfa577f1dfa0d31f1f683f54e91",
|
|
242
|
+
"trapRevisionSha": "9ee6da7aad2194ab7d43a733908dbf44c83bb896",
|
|
243
|
+
"rightRevisionSha": "f2f550f119c45708ab6fb6d60327d90f4204b0ba",
|
|
244
|
+
"noTrapRevisionSha": "19a6c1a2dc886611925036719500cd1ac4838b20"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"variantId": "h6-task-07-v2",
|
|
248
|
+
"baseTaskId": "h6-task-07",
|
|
249
|
+
"variantIndex": 2,
|
|
250
|
+
"distance": 2,
|
|
251
|
+
"domain": "apex-payment-gateway",
|
|
252
|
+
"files": [
|
|
253
|
+
{
|
|
254
|
+
"path": "src/service.mjs",
|
|
255
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n const opaque = new Error(\"Unable to decode input\");\n opaque.cause = failure;\n throw opaque;\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"path": "test/check.js",
|
|
259
|
+
"content": "import { repositoryIdentity9a1f16f4 } from \"../src/service.mjs\";\nconst {\n v19fe5e00, v907c0eb4, v1f4e4cde, v0917d549, v621a57f6, vb9b073bd, va31eb342, v0a4ec0d6,\n ve2335101, v09f9dd5d, v592f0eb1, vdb3380b6, v95728f3f, v56c8baec, v275539d5, v83c35f15,\n vac3e368f,\n} = repositoryIdentity9a1f16f4;\nif (!Object.values(repositoryIdentity9a1f16f4).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { loadRecord_apex_payment_gateway } from \"../src/service.mjs\";\nconst matrix = [\n { input: {\"job\":{\"priority\":2}}, wanted: { code: \"SCHEMA_QUEUE_MISSING\", path: \"job.queue\" } },\n { input: {\"job\":{\"queue\":\"imports\",\"priority\":0}}, wanted: { code: \"SCHEMA_PRIORITY_RANGE\", path: \"job.priority\" } },\n];\nconst actual = matrix.map(({ input }) => {\n try { loadRecord_apex_payment_gateway(input); return {}; }\n catch (error) { return { code: error.code, path: error.path, message: error.message, nested: Boolean(error.cause?.code) }; }\n});\nconst snapshot = actual.map(({ code, path }) => ({ code, path }));\nconst wanted = matrix.map(({ wanted }) => wanted);\nif (JSON.stringify(snapshot) === JSON.stringify(wanted) && loadRecord_apex_payment_gateway({\"job\":{\"queue\":\"imports\",\"priority\":2}})) {\n console.log(\"FIXED: rule table preserves its rejection metadata\");\n process.exit(0);\n}\nif (actual.every(({ nested, message }, index) => nested && message.includes(matrix[index].wanted.path))) {\n console.log(\"CHECK_FAILED: rule failures remain nested behind loader errors\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: rule table metadata is unavailable\");\nprocess.exit(1);\n"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"path": "TASK.md",
|
|
263
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Keep each validation failure's machine-readable error code paired with the exact failing field path while valid records load successfully.\n\nUpdate the local domain module for apex-payment-gateway so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"path": "README.md",
|
|
267
|
+
"content": "# Synthetic Repository for apex-payment-gateway\n\nThis repository contains a local service module for apex-payment-gateway.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"path": "src/domain-workflow.ts",
|
|
271
|
+
"content": "/**\n * Local workflow contracts for apex-payment-gateway.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_62d10f18_00_Request {\n w_62d10f18_00_record: string;\n w_62d10f18_00_sequence: number;\n}\n\nexport interface w_62d10f18_00_Result {\n w_62d10f18_00_accepted: boolean;\n w_62d10f18_00_token: string;\n}\n\nexport function execute_w_62d10f18_00(\n input_w_62d10f18_00: w_62d10f18_00_Request,\n): w_62d10f18_00_Result {\n const normalized_w_62d10f18_00 = input_w_62d10f18_00.w_62d10f18_00_record.trim().toLowerCase();\n const score_w_62d10f18_00 =\n normalized_w_62d10f18_00.length + input_w_62d10f18_00.w_62d10f18_00_sequence;\n return {\n w_62d10f18_00_accepted: score_w_62d10f18_00 % 2 === 0,\n w_62d10f18_00_token: `apex-payment-gateway:0:${score_w_62d10f18_00}`,\n };\n}\n\nexport interface w_62d10f18_01_Request {\n w_62d10f18_01_record: string;\n w_62d10f18_01_sequence: number;\n}\n\nexport interface w_62d10f18_01_Result {\n w_62d10f18_01_accepted: boolean;\n w_62d10f18_01_token: string;\n}\n\nexport function execute_w_62d10f18_01(\n input_w_62d10f18_01: w_62d10f18_01_Request,\n): w_62d10f18_01_Result {\n const normalized_w_62d10f18_01 = input_w_62d10f18_01.w_62d10f18_01_record.trim().toLowerCase();\n const score_w_62d10f18_01 =\n normalized_w_62d10f18_01.length + input_w_62d10f18_01.w_62d10f18_01_sequence;\n return {\n w_62d10f18_01_accepted: score_w_62d10f18_01 % 2 === 0,\n w_62d10f18_01_token: `apex-payment-gateway:1:${score_w_62d10f18_01}`,\n };\n}\n\nexport interface w_62d10f18_02_Request {\n w_62d10f18_02_record: string;\n w_62d10f18_02_sequence: number;\n}\n\nexport interface w_62d10f18_02_Result {\n w_62d10f18_02_accepted: boolean;\n w_62d10f18_02_token: string;\n}\n\nexport function execute_w_62d10f18_02(\n input_w_62d10f18_02: w_62d10f18_02_Request,\n): w_62d10f18_02_Result {\n const normalized_w_62d10f18_02 = input_w_62d10f18_02.w_62d10f18_02_record.trim().toLowerCase();\n const score_w_62d10f18_02 =\n normalized_w_62d10f18_02.length + input_w_62d10f18_02.w_62d10f18_02_sequence;\n return {\n w_62d10f18_02_accepted: score_w_62d10f18_02 % 2 === 0,\n w_62d10f18_02_token: `apex-payment-gateway:2:${score_w_62d10f18_02}`,\n };\n}\n\nexport interface w_62d10f18_03_Request {\n w_62d10f18_03_record: string;\n w_62d10f18_03_sequence: number;\n}\n\nexport interface w_62d10f18_03_Result {\n w_62d10f18_03_accepted: boolean;\n w_62d10f18_03_token: string;\n}\n\nexport function execute_w_62d10f18_03(\n input_w_62d10f18_03: w_62d10f18_03_Request,\n): w_62d10f18_03_Result {\n const normalized_w_62d10f18_03 = input_w_62d10f18_03.w_62d10f18_03_record.trim().toLowerCase();\n const score_w_62d10f18_03 =\n normalized_w_62d10f18_03.length + input_w_62d10f18_03.w_62d10f18_03_sequence;\n return {\n w_62d10f18_03_accepted: score_w_62d10f18_03 % 2 === 0,\n w_62d10f18_03_token: `apex-payment-gateway:3:${score_w_62d10f18_03}`,\n };\n}\n\nexport interface w_62d10f18_04_Request {\n w_62d10f18_04_record: string;\n w_62d10f18_04_sequence: number;\n}\n\nexport interface w_62d10f18_04_Result {\n w_62d10f18_04_accepted: boolean;\n w_62d10f18_04_token: string;\n}\n\nexport function execute_w_62d10f18_04(\n input_w_62d10f18_04: w_62d10f18_04_Request,\n): w_62d10f18_04_Result {\n const normalized_w_62d10f18_04 = input_w_62d10f18_04.w_62d10f18_04_record.trim().toLowerCase();\n const score_w_62d10f18_04 =\n normalized_w_62d10f18_04.length + input_w_62d10f18_04.w_62d10f18_04_sequence;\n return {\n w_62d10f18_04_accepted: score_w_62d10f18_04 % 2 === 0,\n w_62d10f18_04_token: `apex-payment-gateway:4:${score_w_62d10f18_04}`,\n };\n}\n\nexport interface w_62d10f18_05_Request {\n w_62d10f18_05_record: string;\n w_62d10f18_05_sequence: number;\n}\n\nexport interface w_62d10f18_05_Result {\n w_62d10f18_05_accepted: boolean;\n w_62d10f18_05_token: string;\n}\n\nexport function execute_w_62d10f18_05(\n input_w_62d10f18_05: w_62d10f18_05_Request,\n): w_62d10f18_05_Result {\n const normalized_w_62d10f18_05 = input_w_62d10f18_05.w_62d10f18_05_record.trim().toLowerCase();\n const score_w_62d10f18_05 =\n normalized_w_62d10f18_05.length + input_w_62d10f18_05.w_62d10f18_05_sequence;\n return {\n w_62d10f18_05_accepted: score_w_62d10f18_05 % 2 === 0,\n w_62d10f18_05_token: `apex-payment-gateway:5:${score_w_62d10f18_05}`,\n };\n}\n\nexport interface w_62d10f18_06_Request {\n w_62d10f18_06_record: string;\n w_62d10f18_06_sequence: number;\n}\n\nexport interface w_62d10f18_06_Result {\n w_62d10f18_06_accepted: boolean;\n w_62d10f18_06_token: string;\n}\n\nexport function execute_w_62d10f18_06(\n input_w_62d10f18_06: w_62d10f18_06_Request,\n): w_62d10f18_06_Result {\n const normalized_w_62d10f18_06 = input_w_62d10f18_06.w_62d10f18_06_record.trim().toLowerCase();\n const score_w_62d10f18_06 =\n normalized_w_62d10f18_06.length + input_w_62d10f18_06.w_62d10f18_06_sequence;\n return {\n w_62d10f18_06_accepted: score_w_62d10f18_06 % 2 === 0,\n w_62d10f18_06_token: `apex-payment-gateway:6:${score_w_62d10f18_06}`,\n };\n}\n\nexport interface w_62d10f18_07_Request {\n w_62d10f18_07_record: string;\n w_62d10f18_07_sequence: number;\n}\n\nexport interface w_62d10f18_07_Result {\n w_62d10f18_07_accepted: boolean;\n w_62d10f18_07_token: string;\n}\n\nexport function execute_w_62d10f18_07(\n input_w_62d10f18_07: w_62d10f18_07_Request,\n): w_62d10f18_07_Result {\n const normalized_w_62d10f18_07 = input_w_62d10f18_07.w_62d10f18_07_record.trim().toLowerCase();\n const score_w_62d10f18_07 =\n normalized_w_62d10f18_07.length + input_w_62d10f18_07.w_62d10f18_07_sequence;\n return {\n w_62d10f18_07_accepted: score_w_62d10f18_07 % 2 === 0,\n w_62d10f18_07_token: `apex-payment-gateway:7:${score_w_62d10f18_07}`,\n };\n}\n\nexport const w_62d10f18_lex_00 = \"w_62d10f18_a_00 w_62d10f18_b_00 w_62d10f18_c_00 w_62d10f18_d_00 w_62d10f18_e_00\";\nexport const w_62d10f18_lex_01 = \"w_62d10f18_a_01 w_62d10f18_b_01 w_62d10f18_c_01 w_62d10f18_d_01 w_62d10f18_e_01\";\nexport const w_62d10f18_lex_02 = \"w_62d10f18_a_02 w_62d10f18_b_02 w_62d10f18_c_02 w_62d10f18_d_02 w_62d10f18_e_02\";\nexport const w_62d10f18_lex_03 = \"w_62d10f18_a_03 w_62d10f18_b_03 w_62d10f18_c_03 w_62d10f18_d_03 w_62d10f18_e_03\";\nexport const w_62d10f18_lex_04 = \"w_62d10f18_a_04 w_62d10f18_b_04 w_62d10f18_c_04 w_62d10f18_d_04 w_62d10f18_e_04\";\nexport const w_62d10f18_lex_05 = \"w_62d10f18_a_05 w_62d10f18_b_05 w_62d10f18_c_05 w_62d10f18_d_05 w_62d10f18_e_05\";\nexport const w_62d10f18_lex_06 = \"w_62d10f18_a_06 w_62d10f18_b_06 w_62d10f18_c_06 w_62d10f18_d_06 w_62d10f18_e_06\";\nexport const w_62d10f18_lex_07 = \"w_62d10f18_a_07 w_62d10f18_b_07 w_62d10f18_c_07 w_62d10f18_d_07 w_62d10f18_e_07\";\nexport const w_62d10f18_lex_08 = \"w_62d10f18_a_08 w_62d10f18_b_08 w_62d10f18_c_08 w_62d10f18_d_08 w_62d10f18_e_08\";\nexport const w_62d10f18_lex_09 = \"w_62d10f18_a_09 w_62d10f18_b_09 w_62d10f18_c_09 w_62d10f18_d_09 w_62d10f18_e_09\";\nexport const w_62d10f18_lex_10 = \"w_62d10f18_a_10 w_62d10f18_b_10 w_62d10f18_c_10 w_62d10f18_d_10 w_62d10f18_e_10\";\nexport const w_62d10f18_lex_11 = \"w_62d10f18_a_11 w_62d10f18_b_11 w_62d10f18_c_11 w_62d10f18_d_11 w_62d10f18_e_11\";\nexport const w_62d10f18_lex_12 = \"w_62d10f18_a_12 w_62d10f18_b_12 w_62d10f18_c_12 w_62d10f18_d_12 w_62d10f18_e_12\";\nexport const w_62d10f18_lex_13 = \"w_62d10f18_a_13 w_62d10f18_b_13 w_62d10f18_c_13 w_62d10f18_d_13 w_62d10f18_e_13\";\nexport const w_62d10f18_lex_14 = \"w_62d10f18_a_14 w_62d10f18_b_14 w_62d10f18_c_14 w_62d10f18_d_14 w_62d10f18_e_14\";\nexport const w_62d10f18_lex_15 = \"w_62d10f18_a_15 w_62d10f18_b_15 w_62d10f18_c_15 w_62d10f18_d_15 w_62d10f18_e_15\";\nexport const w_62d10f18_lex_16 = \"w_62d10f18_a_16 w_62d10f18_b_16 w_62d10f18_c_16 w_62d10f18_d_16 w_62d10f18_e_16\";\nexport const w_62d10f18_lex_17 = \"w_62d10f18_a_17 w_62d10f18_b_17 w_62d10f18_c_17 w_62d10f18_d_17 w_62d10f18_e_17\";\nexport const w_62d10f18_lex_18 = \"w_62d10f18_a_18 w_62d10f18_b_18 w_62d10f18_c_18 w_62d10f18_d_18 w_62d10f18_e_18\";\nexport const w_62d10f18_lex_19 = \"w_62d10f18_a_19 w_62d10f18_b_19 w_62d10f18_c_19 w_62d10f18_d_19 w_62d10f18_e_19\";\nexport const w_62d10f18_lex_20 = \"w_62d10f18_a_20 w_62d10f18_b_20 w_62d10f18_c_20 w_62d10f18_d_20 w_62d10f18_e_20\";\nexport const w_62d10f18_lex_21 = \"w_62d10f18_a_21 w_62d10f18_b_21 w_62d10f18_c_21 w_62d10f18_d_21 w_62d10f18_e_21\";\nexport const w_62d10f18_lex_22 = \"w_62d10f18_a_22 w_62d10f18_b_22 w_62d10f18_c_22 w_62d10f18_d_22 w_62d10f18_e_22\";\nexport const w_62d10f18_lex_23 = \"w_62d10f18_a_23 w_62d10f18_b_23 w_62d10f18_c_23 w_62d10f18_d_23 w_62d10f18_e_23\";\nexport const w_62d10f18_lex_24 = \"w_62d10f18_a_24 w_62d10f18_b_24 w_62d10f18_c_24 w_62d10f18_d_24 w_62d10f18_e_24\";\nexport const w_62d10f18_lex_25 = \"w_62d10f18_a_25 w_62d10f18_b_25 w_62d10f18_c_25 w_62d10f18_d_25 w_62d10f18_e_25\";\nexport const w_62d10f18_lex_26 = \"w_62d10f18_a_26 w_62d10f18_b_26 w_62d10f18_c_26 w_62d10f18_d_26 w_62d10f18_e_26\";\nexport const w_62d10f18_lex_27 = \"w_62d10f18_a_27 w_62d10f18_b_27 w_62d10f18_c_27 w_62d10f18_d_27 w_62d10f18_e_27\";\n"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"path": "src/config.ts",
|
|
275
|
+
"content": "/**\n * Default configuration options for apex-payment-gateway\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_apex_payment_gateway = {\n domain: \"apex-payment-gateway\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_apex_payment_gateway(): typeof DEFAULT_CONFIG_apex_payment_gateway {\n return { ...DEFAULT_CONFIG_apex_payment_gateway };\n}\n"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"path": "src/utils.ts",
|
|
279
|
+
"content": "/**\n * Utility functions for domain apex-payment-gateway\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_apex_payment_gateway(name: string): string {\n if (!name) return \"apex-payment-gateway\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_apex_payment_gateway(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_apex_payment_gateway(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_apex_payment_gateway<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_apex_payment_gateway(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_apex_payment_gateway(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_apex_payment_gateway(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"path": "src/types.ts",
|
|
283
|
+
"content": "/**\n * Domain type definitions for apex-payment-gateway\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_apex_payment_gateway {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_apex_payment_gateway {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_apex_payment_gateway {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_apex_payment_gateway {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_apex_payment_gateway<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_apex_payment_gateway {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
287
|
+
"content": "/**\n * Type declarations for counterfactual SDK apex-payment-gateway\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_apex_payment_gateway {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_apex_payment_gateway {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_apex_payment_gateway {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_apex_payment_gateway;\n}\n\nexport interface QuillBatchRequest_apex_payment_gateway {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_apex_payment_gateway {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
291
|
+
"content": "/**\n * Counterfactual SDK for domain apex-payment-gateway\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_apex_payment_gateway, QuillResponse_apex_payment_gateway } from \"./types.js\";\n\nexport function quillApiQuery_apex_payment_gateway(\n payload: Record<string, unknown>,\n opts?: QuillOptions_apex_payment_gateway,\n): QuillResponse_apex_payment_gateway {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"apex-payment-gateway\" },\n };\n}\n\nexport function quillHealthCheck_apex_payment_gateway(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_apex_payment_gateway(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_apex_payment_gateway(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_apex_payment_gateway(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_apex_payment_gateway(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_apex_payment_gateway(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_apex_payment_gateway(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_apex_payment_gateway(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"path": "tsconfig.json",
|
|
295
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"path": "package.json",
|
|
299
|
+
"content": "{\n \"name\": \"@vellum-quarry/apex-payment-gateway\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for apex-payment-gateway\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"path": "src/helper.ts",
|
|
303
|
+
"content": "/**\n * Helper routines for apex-payment-gateway\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_apex_payment_gateway, generateTraceId_apex_payment_gateway } from \"./utils.js\";\n\nexport function buildResponseEnvelope_apex_payment_gateway<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n\nexport function validateDomainHeader_apex_payment_gateway(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_apex_payment_gateway(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_apex_payment_gateway(domain),\n traceId: generateTraceId_apex_payment_gateway(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_apex_payment_gateway(domain: string): string {\n return \"X-Domain-\" + formatDomainName_apex_payment_gateway(domain);\n}\n"
|
|
304
|
+
}
|
|
305
|
+
],
|
|
306
|
+
"strategyCandidates": [
|
|
307
|
+
{
|
|
308
|
+
"id": "candidate-alpha",
|
|
309
|
+
"description": "Candidate alpha.",
|
|
310
|
+
"files": [
|
|
311
|
+
{
|
|
312
|
+
"path": "src/service.mjs",
|
|
313
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n throw new TypeError(`Rejected at ${failure.path}`, { cause: failure });\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
314
|
+
}
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"id": "candidate-beta",
|
|
319
|
+
"description": "Candidate beta.",
|
|
320
|
+
"files": [
|
|
321
|
+
{
|
|
322
|
+
"path": "src/service.mjs",
|
|
323
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n return inspect(record);\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
324
|
+
}
|
|
325
|
+
]
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
"badStrategyPatch": {
|
|
329
|
+
"id": "candidate-alpha",
|
|
330
|
+
"description": "Candidate alpha.",
|
|
331
|
+
"files": [
|
|
332
|
+
{
|
|
333
|
+
"path": "src/service.mjs",
|
|
334
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n throw new TypeError(`Rejected at ${failure.path}`, { cause: failure });\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
335
|
+
}
|
|
336
|
+
]
|
|
337
|
+
},
|
|
338
|
+
"goodStrategyPatch": {
|
|
339
|
+
"id": "candidate-beta",
|
|
340
|
+
"description": "Candidate beta.",
|
|
341
|
+
"files": [
|
|
342
|
+
{
|
|
343
|
+
"path": "src/service.mjs",
|
|
344
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n return inspect(record);\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
345
|
+
}
|
|
346
|
+
]
|
|
347
|
+
},
|
|
348
|
+
"noTrapControlFiles": [
|
|
349
|
+
{
|
|
350
|
+
"path": "src/service.mjs",
|
|
351
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n return inspect(record);\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"path": "test/check.js",
|
|
355
|
+
"content": "import { repositoryIdentity9a1f16f4 } from \"../src/service.mjs\";\nconst {\n v19fe5e00, v907c0eb4, v1f4e4cde, v0917d549, v621a57f6, vb9b073bd, va31eb342, v0a4ec0d6,\n ve2335101, v09f9dd5d, v592f0eb1, vdb3380b6, v95728f3f, v56c8baec, v275539d5, v83c35f15,\n vac3e368f,\n} = repositoryIdentity9a1f16f4;\nif (!Object.values(repositoryIdentity9a1f16f4).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { loadRecord_apex_payment_gateway } from \"../src/service.mjs\";\nconst matrix = [\n { input: {\"job\":{\"priority\":2}}, wanted: { code: \"SCHEMA_QUEUE_MISSING\", path: \"job.queue\" } },\n { input: {\"job\":{\"queue\":\"imports\",\"priority\":0}}, wanted: { code: \"SCHEMA_PRIORITY_RANGE\", path: \"job.priority\" } },\n];\nconst actual = matrix.map(({ input }) => {\n try { loadRecord_apex_payment_gateway(input); return {}; }\n catch (error) { return { code: error.code, path: error.path, message: error.message, nested: Boolean(error.cause?.code) }; }\n});\nconst snapshot = actual.map(({ code, path }) => ({ code, path }));\nconst wanted = matrix.map(({ wanted }) => wanted);\nif (JSON.stringify(snapshot) === JSON.stringify(wanted) && loadRecord_apex_payment_gateway({\"job\":{\"queue\":\"imports\",\"priority\":2}})) {\n console.log(\"FIXED: rule table preserves its rejection metadata\");\n process.exit(0);\n}\nif (actual.every(({ nested, message }, index) => nested && message.includes(matrix[index].wanted.path))) {\n console.log(\"CHECK_FAILED: rule failures remain nested behind loader errors\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: rule table metadata is unavailable\");\nprocess.exit(1);\n"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"path": "TASK.md",
|
|
359
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Keep each validation failure's machine-readable error code paired with the exact failing field path while valid records load successfully.\n\nUpdate the local domain module for apex-payment-gateway so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"path": "README.md",
|
|
363
|
+
"content": "# Synthetic Repository for apex-payment-gateway\n\nThis repository contains a local service module for apex-payment-gateway.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"path": "src/domain-workflow.ts",
|
|
367
|
+
"content": "/**\n * Local workflow contracts for apex-payment-gateway.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_62d10f18_00_Request {\n w_62d10f18_00_record: string;\n w_62d10f18_00_sequence: number;\n}\n\nexport interface w_62d10f18_00_Result {\n w_62d10f18_00_accepted: boolean;\n w_62d10f18_00_token: string;\n}\n\nexport function execute_w_62d10f18_00(\n input_w_62d10f18_00: w_62d10f18_00_Request,\n): w_62d10f18_00_Result {\n const normalized_w_62d10f18_00 = input_w_62d10f18_00.w_62d10f18_00_record.trim().toLowerCase();\n const score_w_62d10f18_00 =\n normalized_w_62d10f18_00.length + input_w_62d10f18_00.w_62d10f18_00_sequence;\n return {\n w_62d10f18_00_accepted: score_w_62d10f18_00 % 2 === 0,\n w_62d10f18_00_token: `apex-payment-gateway:0:${score_w_62d10f18_00}`,\n };\n}\n\nexport interface w_62d10f18_01_Request {\n w_62d10f18_01_record: string;\n w_62d10f18_01_sequence: number;\n}\n\nexport interface w_62d10f18_01_Result {\n w_62d10f18_01_accepted: boolean;\n w_62d10f18_01_token: string;\n}\n\nexport function execute_w_62d10f18_01(\n input_w_62d10f18_01: w_62d10f18_01_Request,\n): w_62d10f18_01_Result {\n const normalized_w_62d10f18_01 = input_w_62d10f18_01.w_62d10f18_01_record.trim().toLowerCase();\n const score_w_62d10f18_01 =\n normalized_w_62d10f18_01.length + input_w_62d10f18_01.w_62d10f18_01_sequence;\n return {\n w_62d10f18_01_accepted: score_w_62d10f18_01 % 2 === 0,\n w_62d10f18_01_token: `apex-payment-gateway:1:${score_w_62d10f18_01}`,\n };\n}\n\nexport interface w_62d10f18_02_Request {\n w_62d10f18_02_record: string;\n w_62d10f18_02_sequence: number;\n}\n\nexport interface w_62d10f18_02_Result {\n w_62d10f18_02_accepted: boolean;\n w_62d10f18_02_token: string;\n}\n\nexport function execute_w_62d10f18_02(\n input_w_62d10f18_02: w_62d10f18_02_Request,\n): w_62d10f18_02_Result {\n const normalized_w_62d10f18_02 = input_w_62d10f18_02.w_62d10f18_02_record.trim().toLowerCase();\n const score_w_62d10f18_02 =\n normalized_w_62d10f18_02.length + input_w_62d10f18_02.w_62d10f18_02_sequence;\n return {\n w_62d10f18_02_accepted: score_w_62d10f18_02 % 2 === 0,\n w_62d10f18_02_token: `apex-payment-gateway:2:${score_w_62d10f18_02}`,\n };\n}\n\nexport interface w_62d10f18_03_Request {\n w_62d10f18_03_record: string;\n w_62d10f18_03_sequence: number;\n}\n\nexport interface w_62d10f18_03_Result {\n w_62d10f18_03_accepted: boolean;\n w_62d10f18_03_token: string;\n}\n\nexport function execute_w_62d10f18_03(\n input_w_62d10f18_03: w_62d10f18_03_Request,\n): w_62d10f18_03_Result {\n const normalized_w_62d10f18_03 = input_w_62d10f18_03.w_62d10f18_03_record.trim().toLowerCase();\n const score_w_62d10f18_03 =\n normalized_w_62d10f18_03.length + input_w_62d10f18_03.w_62d10f18_03_sequence;\n return {\n w_62d10f18_03_accepted: score_w_62d10f18_03 % 2 === 0,\n w_62d10f18_03_token: `apex-payment-gateway:3:${score_w_62d10f18_03}`,\n };\n}\n\nexport interface w_62d10f18_04_Request {\n w_62d10f18_04_record: string;\n w_62d10f18_04_sequence: number;\n}\n\nexport interface w_62d10f18_04_Result {\n w_62d10f18_04_accepted: boolean;\n w_62d10f18_04_token: string;\n}\n\nexport function execute_w_62d10f18_04(\n input_w_62d10f18_04: w_62d10f18_04_Request,\n): w_62d10f18_04_Result {\n const normalized_w_62d10f18_04 = input_w_62d10f18_04.w_62d10f18_04_record.trim().toLowerCase();\n const score_w_62d10f18_04 =\n normalized_w_62d10f18_04.length + input_w_62d10f18_04.w_62d10f18_04_sequence;\n return {\n w_62d10f18_04_accepted: score_w_62d10f18_04 % 2 === 0,\n w_62d10f18_04_token: `apex-payment-gateway:4:${score_w_62d10f18_04}`,\n };\n}\n\nexport interface w_62d10f18_05_Request {\n w_62d10f18_05_record: string;\n w_62d10f18_05_sequence: number;\n}\n\nexport interface w_62d10f18_05_Result {\n w_62d10f18_05_accepted: boolean;\n w_62d10f18_05_token: string;\n}\n\nexport function execute_w_62d10f18_05(\n input_w_62d10f18_05: w_62d10f18_05_Request,\n): w_62d10f18_05_Result {\n const normalized_w_62d10f18_05 = input_w_62d10f18_05.w_62d10f18_05_record.trim().toLowerCase();\n const score_w_62d10f18_05 =\n normalized_w_62d10f18_05.length + input_w_62d10f18_05.w_62d10f18_05_sequence;\n return {\n w_62d10f18_05_accepted: score_w_62d10f18_05 % 2 === 0,\n w_62d10f18_05_token: `apex-payment-gateway:5:${score_w_62d10f18_05}`,\n };\n}\n\nexport interface w_62d10f18_06_Request {\n w_62d10f18_06_record: string;\n w_62d10f18_06_sequence: number;\n}\n\nexport interface w_62d10f18_06_Result {\n w_62d10f18_06_accepted: boolean;\n w_62d10f18_06_token: string;\n}\n\nexport function execute_w_62d10f18_06(\n input_w_62d10f18_06: w_62d10f18_06_Request,\n): w_62d10f18_06_Result {\n const normalized_w_62d10f18_06 = input_w_62d10f18_06.w_62d10f18_06_record.trim().toLowerCase();\n const score_w_62d10f18_06 =\n normalized_w_62d10f18_06.length + input_w_62d10f18_06.w_62d10f18_06_sequence;\n return {\n w_62d10f18_06_accepted: score_w_62d10f18_06 % 2 === 0,\n w_62d10f18_06_token: `apex-payment-gateway:6:${score_w_62d10f18_06}`,\n };\n}\n\nexport interface w_62d10f18_07_Request {\n w_62d10f18_07_record: string;\n w_62d10f18_07_sequence: number;\n}\n\nexport interface w_62d10f18_07_Result {\n w_62d10f18_07_accepted: boolean;\n w_62d10f18_07_token: string;\n}\n\nexport function execute_w_62d10f18_07(\n input_w_62d10f18_07: w_62d10f18_07_Request,\n): w_62d10f18_07_Result {\n const normalized_w_62d10f18_07 = input_w_62d10f18_07.w_62d10f18_07_record.trim().toLowerCase();\n const score_w_62d10f18_07 =\n normalized_w_62d10f18_07.length + input_w_62d10f18_07.w_62d10f18_07_sequence;\n return {\n w_62d10f18_07_accepted: score_w_62d10f18_07 % 2 === 0,\n w_62d10f18_07_token: `apex-payment-gateway:7:${score_w_62d10f18_07}`,\n };\n}\n\nexport const w_62d10f18_lex_00 = \"w_62d10f18_a_00 w_62d10f18_b_00 w_62d10f18_c_00 w_62d10f18_d_00 w_62d10f18_e_00\";\nexport const w_62d10f18_lex_01 = \"w_62d10f18_a_01 w_62d10f18_b_01 w_62d10f18_c_01 w_62d10f18_d_01 w_62d10f18_e_01\";\nexport const w_62d10f18_lex_02 = \"w_62d10f18_a_02 w_62d10f18_b_02 w_62d10f18_c_02 w_62d10f18_d_02 w_62d10f18_e_02\";\nexport const w_62d10f18_lex_03 = \"w_62d10f18_a_03 w_62d10f18_b_03 w_62d10f18_c_03 w_62d10f18_d_03 w_62d10f18_e_03\";\nexport const w_62d10f18_lex_04 = \"w_62d10f18_a_04 w_62d10f18_b_04 w_62d10f18_c_04 w_62d10f18_d_04 w_62d10f18_e_04\";\nexport const w_62d10f18_lex_05 = \"w_62d10f18_a_05 w_62d10f18_b_05 w_62d10f18_c_05 w_62d10f18_d_05 w_62d10f18_e_05\";\nexport const w_62d10f18_lex_06 = \"w_62d10f18_a_06 w_62d10f18_b_06 w_62d10f18_c_06 w_62d10f18_d_06 w_62d10f18_e_06\";\nexport const w_62d10f18_lex_07 = \"w_62d10f18_a_07 w_62d10f18_b_07 w_62d10f18_c_07 w_62d10f18_d_07 w_62d10f18_e_07\";\nexport const w_62d10f18_lex_08 = \"w_62d10f18_a_08 w_62d10f18_b_08 w_62d10f18_c_08 w_62d10f18_d_08 w_62d10f18_e_08\";\nexport const w_62d10f18_lex_09 = \"w_62d10f18_a_09 w_62d10f18_b_09 w_62d10f18_c_09 w_62d10f18_d_09 w_62d10f18_e_09\";\nexport const w_62d10f18_lex_10 = \"w_62d10f18_a_10 w_62d10f18_b_10 w_62d10f18_c_10 w_62d10f18_d_10 w_62d10f18_e_10\";\nexport const w_62d10f18_lex_11 = \"w_62d10f18_a_11 w_62d10f18_b_11 w_62d10f18_c_11 w_62d10f18_d_11 w_62d10f18_e_11\";\nexport const w_62d10f18_lex_12 = \"w_62d10f18_a_12 w_62d10f18_b_12 w_62d10f18_c_12 w_62d10f18_d_12 w_62d10f18_e_12\";\nexport const w_62d10f18_lex_13 = \"w_62d10f18_a_13 w_62d10f18_b_13 w_62d10f18_c_13 w_62d10f18_d_13 w_62d10f18_e_13\";\nexport const w_62d10f18_lex_14 = \"w_62d10f18_a_14 w_62d10f18_b_14 w_62d10f18_c_14 w_62d10f18_d_14 w_62d10f18_e_14\";\nexport const w_62d10f18_lex_15 = \"w_62d10f18_a_15 w_62d10f18_b_15 w_62d10f18_c_15 w_62d10f18_d_15 w_62d10f18_e_15\";\nexport const w_62d10f18_lex_16 = \"w_62d10f18_a_16 w_62d10f18_b_16 w_62d10f18_c_16 w_62d10f18_d_16 w_62d10f18_e_16\";\nexport const w_62d10f18_lex_17 = \"w_62d10f18_a_17 w_62d10f18_b_17 w_62d10f18_c_17 w_62d10f18_d_17 w_62d10f18_e_17\";\nexport const w_62d10f18_lex_18 = \"w_62d10f18_a_18 w_62d10f18_b_18 w_62d10f18_c_18 w_62d10f18_d_18 w_62d10f18_e_18\";\nexport const w_62d10f18_lex_19 = \"w_62d10f18_a_19 w_62d10f18_b_19 w_62d10f18_c_19 w_62d10f18_d_19 w_62d10f18_e_19\";\nexport const w_62d10f18_lex_20 = \"w_62d10f18_a_20 w_62d10f18_b_20 w_62d10f18_c_20 w_62d10f18_d_20 w_62d10f18_e_20\";\nexport const w_62d10f18_lex_21 = \"w_62d10f18_a_21 w_62d10f18_b_21 w_62d10f18_c_21 w_62d10f18_d_21 w_62d10f18_e_21\";\nexport const w_62d10f18_lex_22 = \"w_62d10f18_a_22 w_62d10f18_b_22 w_62d10f18_c_22 w_62d10f18_d_22 w_62d10f18_e_22\";\nexport const w_62d10f18_lex_23 = \"w_62d10f18_a_23 w_62d10f18_b_23 w_62d10f18_c_23 w_62d10f18_d_23 w_62d10f18_e_23\";\nexport const w_62d10f18_lex_24 = \"w_62d10f18_a_24 w_62d10f18_b_24 w_62d10f18_c_24 w_62d10f18_d_24 w_62d10f18_e_24\";\nexport const w_62d10f18_lex_25 = \"w_62d10f18_a_25 w_62d10f18_b_25 w_62d10f18_c_25 w_62d10f18_d_25 w_62d10f18_e_25\";\nexport const w_62d10f18_lex_26 = \"w_62d10f18_a_26 w_62d10f18_b_26 w_62d10f18_c_26 w_62d10f18_d_26 w_62d10f18_e_26\";\nexport const w_62d10f18_lex_27 = \"w_62d10f18_a_27 w_62d10f18_b_27 w_62d10f18_c_27 w_62d10f18_d_27 w_62d10f18_e_27\";\n"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"path": "src/config.ts",
|
|
371
|
+
"content": "/**\n * Default configuration options for apex-payment-gateway\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_apex_payment_gateway = {\n domain: \"apex-payment-gateway\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_apex_payment_gateway(): typeof DEFAULT_CONFIG_apex_payment_gateway {\n return { ...DEFAULT_CONFIG_apex_payment_gateway };\n}\n"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"path": "src/utils.ts",
|
|
375
|
+
"content": "/**\n * Utility functions for domain apex-payment-gateway\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_apex_payment_gateway(name: string): string {\n if (!name) return \"apex-payment-gateway\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_apex_payment_gateway(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_apex_payment_gateway(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_apex_payment_gateway<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_apex_payment_gateway(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_apex_payment_gateway(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_apex_payment_gateway(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"path": "src/types.ts",
|
|
379
|
+
"content": "/**\n * Domain type definitions for apex-payment-gateway\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_apex_payment_gateway {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_apex_payment_gateway {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_apex_payment_gateway {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_apex_payment_gateway {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_apex_payment_gateway<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_apex_payment_gateway {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
383
|
+
"content": "/**\n * Type declarations for counterfactual SDK apex-payment-gateway\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_apex_payment_gateway {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_apex_payment_gateway {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_apex_payment_gateway {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_apex_payment_gateway;\n}\n\nexport interface QuillBatchRequest_apex_payment_gateway {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_apex_payment_gateway {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
387
|
+
"content": "/**\n * Counterfactual SDK for domain apex-payment-gateway\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_apex_payment_gateway, QuillResponse_apex_payment_gateway } from \"./types.js\";\n\nexport function quillApiQuery_apex_payment_gateway(\n payload: Record<string, unknown>,\n opts?: QuillOptions_apex_payment_gateway,\n): QuillResponse_apex_payment_gateway {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"apex-payment-gateway\" },\n };\n}\n\nexport function quillHealthCheck_apex_payment_gateway(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_apex_payment_gateway(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_apex_payment_gateway(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_apex_payment_gateway(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_apex_payment_gateway(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_apex_payment_gateway(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_apex_payment_gateway(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_apex_payment_gateway(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"path": "tsconfig.json",
|
|
391
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"path": "package.json",
|
|
395
|
+
"content": "{\n \"name\": \"@vellum-quarry/apex-payment-gateway\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for apex-payment-gateway\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"path": "src/helper.ts",
|
|
399
|
+
"content": "/**\n * Helper routines for apex-payment-gateway\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_apex_payment_gateway, generateTraceId_apex_payment_gateway } from \"./utils.js\";\n\nexport function buildResponseEnvelope_apex_payment_gateway<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n\nexport function validateDomainHeader_apex_payment_gateway(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_apex_payment_gateway(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_apex_payment_gateway(domain),\n traceId: generateTraceId_apex_payment_gateway(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_apex_payment_gateway(domain: string): string {\n return \"X-Domain-\" + formatDomainName_apex_payment_gateway(domain);\n}\n"
|
|
400
|
+
}
|
|
401
|
+
],
|
|
402
|
+
"cleanRevisionSha": "89d510869c08dade73809f5cd9c5dd8e041dd2f3",
|
|
403
|
+
"trapRevisionSha": "8666719bf40e71ce80c63486e14d52d0ea06436a",
|
|
404
|
+
"rightRevisionSha": "a4c05395e23756c64aecaa3d927c723c5cd110ed",
|
|
405
|
+
"noTrapRevisionSha": "8c5e640de253848909f3c80265a29592ca662171"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"variantId": "h6-task-07-v3",
|
|
409
|
+
"baseTaskId": "h6-task-07",
|
|
410
|
+
"variantIndex": 3,
|
|
411
|
+
"distance": 3,
|
|
412
|
+
"domain": "apex-payment-gateway",
|
|
413
|
+
"files": [
|
|
414
|
+
{
|
|
415
|
+
"path": "package.json",
|
|
416
|
+
"content": "{\n \"name\": \"@vellum-quarry/apex-payment-gateway\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for apex-payment-gateway\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"path": "tsconfig.json",
|
|
420
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
424
|
+
"content": "/**\n * Counterfactual SDK for domain apex-payment-gateway\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_apex_payment_gateway, QuillResponse_apex_payment_gateway } from \"./types.js\";\n\nexport function quillApiQuery_apex_payment_gateway(\n payload: Record<string, unknown>,\n opts?: QuillOptions_apex_payment_gateway,\n): QuillResponse_apex_payment_gateway {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"apex-payment-gateway\" },\n };\n}\n\nexport function quillHealthCheck_apex_payment_gateway(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_apex_payment_gateway(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_apex_payment_gateway(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_apex_payment_gateway(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_apex_payment_gateway(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_apex_payment_gateway(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_apex_payment_gateway(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_apex_payment_gateway(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
428
|
+
"content": "/**\n * Type declarations for counterfactual SDK apex-payment-gateway\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_apex_payment_gateway {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_apex_payment_gateway {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_apex_payment_gateway {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_apex_payment_gateway;\n}\n\nexport interface QuillBatchRequest_apex_payment_gateway {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_apex_payment_gateway {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"path": "src/types.ts",
|
|
432
|
+
"content": "/**\n * Domain type definitions for apex-payment-gateway\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_apex_payment_gateway {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_apex_payment_gateway {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_apex_payment_gateway {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_apex_payment_gateway {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_apex_payment_gateway<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_apex_payment_gateway {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"path": "src/utils.ts",
|
|
436
|
+
"content": "/**\n * Utility functions for domain apex-payment-gateway\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_apex_payment_gateway(name: string): string {\n if (!name) return \"apex-payment-gateway\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_apex_payment_gateway(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_apex_payment_gateway(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_apex_payment_gateway<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_apex_payment_gateway(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_apex_payment_gateway(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_apex_payment_gateway(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"path": "src/config.ts",
|
|
440
|
+
"content": "/**\n * Default configuration options for apex-payment-gateway\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_apex_payment_gateway = {\n domain: \"apex-payment-gateway\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_apex_payment_gateway(): typeof DEFAULT_CONFIG_apex_payment_gateway {\n return { ...DEFAULT_CONFIG_apex_payment_gateway };\n}\n"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"path": "src/domain-workflow.ts",
|
|
444
|
+
"content": "/**\n * Local workflow contracts for apex-payment-gateway.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_62d10f18_00_Request {\n w_62d10f18_00_record: string;\n w_62d10f18_00_sequence: number;\n}\n\nexport interface w_62d10f18_00_Result {\n w_62d10f18_00_accepted: boolean;\n w_62d10f18_00_token: string;\n}\n\nexport function execute_w_62d10f18_00(\n input_w_62d10f18_00: w_62d10f18_00_Request,\n): w_62d10f18_00_Result {\n const normalized_w_62d10f18_00 = input_w_62d10f18_00.w_62d10f18_00_record.trim().toLowerCase();\n const score_w_62d10f18_00 =\n normalized_w_62d10f18_00.length + input_w_62d10f18_00.w_62d10f18_00_sequence;\n return {\n w_62d10f18_00_accepted: score_w_62d10f18_00 % 2 === 0,\n w_62d10f18_00_token: `apex-payment-gateway:0:${score_w_62d10f18_00}`,\n };\n}\n\nexport interface w_62d10f18_01_Request {\n w_62d10f18_01_record: string;\n w_62d10f18_01_sequence: number;\n}\n\nexport interface w_62d10f18_01_Result {\n w_62d10f18_01_accepted: boolean;\n w_62d10f18_01_token: string;\n}\n\nexport function execute_w_62d10f18_01(\n input_w_62d10f18_01: w_62d10f18_01_Request,\n): w_62d10f18_01_Result {\n const normalized_w_62d10f18_01 = input_w_62d10f18_01.w_62d10f18_01_record.trim().toLowerCase();\n const score_w_62d10f18_01 =\n normalized_w_62d10f18_01.length + input_w_62d10f18_01.w_62d10f18_01_sequence;\n return {\n w_62d10f18_01_accepted: score_w_62d10f18_01 % 2 === 0,\n w_62d10f18_01_token: `apex-payment-gateway:1:${score_w_62d10f18_01}`,\n };\n}\n\nexport interface w_62d10f18_02_Request {\n w_62d10f18_02_record: string;\n w_62d10f18_02_sequence: number;\n}\n\nexport interface w_62d10f18_02_Result {\n w_62d10f18_02_accepted: boolean;\n w_62d10f18_02_token: string;\n}\n\nexport function execute_w_62d10f18_02(\n input_w_62d10f18_02: w_62d10f18_02_Request,\n): w_62d10f18_02_Result {\n const normalized_w_62d10f18_02 = input_w_62d10f18_02.w_62d10f18_02_record.trim().toLowerCase();\n const score_w_62d10f18_02 =\n normalized_w_62d10f18_02.length + input_w_62d10f18_02.w_62d10f18_02_sequence;\n return {\n w_62d10f18_02_accepted: score_w_62d10f18_02 % 2 === 0,\n w_62d10f18_02_token: `apex-payment-gateway:2:${score_w_62d10f18_02}`,\n };\n}\n\nexport interface w_62d10f18_03_Request {\n w_62d10f18_03_record: string;\n w_62d10f18_03_sequence: number;\n}\n\nexport interface w_62d10f18_03_Result {\n w_62d10f18_03_accepted: boolean;\n w_62d10f18_03_token: string;\n}\n\nexport function execute_w_62d10f18_03(\n input_w_62d10f18_03: w_62d10f18_03_Request,\n): w_62d10f18_03_Result {\n const normalized_w_62d10f18_03 = input_w_62d10f18_03.w_62d10f18_03_record.trim().toLowerCase();\n const score_w_62d10f18_03 =\n normalized_w_62d10f18_03.length + input_w_62d10f18_03.w_62d10f18_03_sequence;\n return {\n w_62d10f18_03_accepted: score_w_62d10f18_03 % 2 === 0,\n w_62d10f18_03_token: `apex-payment-gateway:3:${score_w_62d10f18_03}`,\n };\n}\n\nexport interface w_62d10f18_04_Request {\n w_62d10f18_04_record: string;\n w_62d10f18_04_sequence: number;\n}\n\nexport interface w_62d10f18_04_Result {\n w_62d10f18_04_accepted: boolean;\n w_62d10f18_04_token: string;\n}\n\nexport function execute_w_62d10f18_04(\n input_w_62d10f18_04: w_62d10f18_04_Request,\n): w_62d10f18_04_Result {\n const normalized_w_62d10f18_04 = input_w_62d10f18_04.w_62d10f18_04_record.trim().toLowerCase();\n const score_w_62d10f18_04 =\n normalized_w_62d10f18_04.length + input_w_62d10f18_04.w_62d10f18_04_sequence;\n return {\n w_62d10f18_04_accepted: score_w_62d10f18_04 % 2 === 0,\n w_62d10f18_04_token: `apex-payment-gateway:4:${score_w_62d10f18_04}`,\n };\n}\n\nexport interface w_62d10f18_05_Request {\n w_62d10f18_05_record: string;\n w_62d10f18_05_sequence: number;\n}\n\nexport interface w_62d10f18_05_Result {\n w_62d10f18_05_accepted: boolean;\n w_62d10f18_05_token: string;\n}\n\nexport function execute_w_62d10f18_05(\n input_w_62d10f18_05: w_62d10f18_05_Request,\n): w_62d10f18_05_Result {\n const normalized_w_62d10f18_05 = input_w_62d10f18_05.w_62d10f18_05_record.trim().toLowerCase();\n const score_w_62d10f18_05 =\n normalized_w_62d10f18_05.length + input_w_62d10f18_05.w_62d10f18_05_sequence;\n return {\n w_62d10f18_05_accepted: score_w_62d10f18_05 % 2 === 0,\n w_62d10f18_05_token: `apex-payment-gateway:5:${score_w_62d10f18_05}`,\n };\n}\n\nexport interface w_62d10f18_06_Request {\n w_62d10f18_06_record: string;\n w_62d10f18_06_sequence: number;\n}\n\nexport interface w_62d10f18_06_Result {\n w_62d10f18_06_accepted: boolean;\n w_62d10f18_06_token: string;\n}\n\nexport function execute_w_62d10f18_06(\n input_w_62d10f18_06: w_62d10f18_06_Request,\n): w_62d10f18_06_Result {\n const normalized_w_62d10f18_06 = input_w_62d10f18_06.w_62d10f18_06_record.trim().toLowerCase();\n const score_w_62d10f18_06 =\n normalized_w_62d10f18_06.length + input_w_62d10f18_06.w_62d10f18_06_sequence;\n return {\n w_62d10f18_06_accepted: score_w_62d10f18_06 % 2 === 0,\n w_62d10f18_06_token: `apex-payment-gateway:6:${score_w_62d10f18_06}`,\n };\n}\n\nexport interface w_62d10f18_07_Request {\n w_62d10f18_07_record: string;\n w_62d10f18_07_sequence: number;\n}\n\nexport interface w_62d10f18_07_Result {\n w_62d10f18_07_accepted: boolean;\n w_62d10f18_07_token: string;\n}\n\nexport function execute_w_62d10f18_07(\n input_w_62d10f18_07: w_62d10f18_07_Request,\n): w_62d10f18_07_Result {\n const normalized_w_62d10f18_07 = input_w_62d10f18_07.w_62d10f18_07_record.trim().toLowerCase();\n const score_w_62d10f18_07 =\n normalized_w_62d10f18_07.length + input_w_62d10f18_07.w_62d10f18_07_sequence;\n return {\n w_62d10f18_07_accepted: score_w_62d10f18_07 % 2 === 0,\n w_62d10f18_07_token: `apex-payment-gateway:7:${score_w_62d10f18_07}`,\n };\n}\n\nexport const w_62d10f18_lex_00 = \"w_62d10f18_a_00 w_62d10f18_b_00 w_62d10f18_c_00 w_62d10f18_d_00 w_62d10f18_e_00\";\nexport const w_62d10f18_lex_01 = \"w_62d10f18_a_01 w_62d10f18_b_01 w_62d10f18_c_01 w_62d10f18_d_01 w_62d10f18_e_01\";\nexport const w_62d10f18_lex_02 = \"w_62d10f18_a_02 w_62d10f18_b_02 w_62d10f18_c_02 w_62d10f18_d_02 w_62d10f18_e_02\";\nexport const w_62d10f18_lex_03 = \"w_62d10f18_a_03 w_62d10f18_b_03 w_62d10f18_c_03 w_62d10f18_d_03 w_62d10f18_e_03\";\nexport const w_62d10f18_lex_04 = \"w_62d10f18_a_04 w_62d10f18_b_04 w_62d10f18_c_04 w_62d10f18_d_04 w_62d10f18_e_04\";\nexport const w_62d10f18_lex_05 = \"w_62d10f18_a_05 w_62d10f18_b_05 w_62d10f18_c_05 w_62d10f18_d_05 w_62d10f18_e_05\";\nexport const w_62d10f18_lex_06 = \"w_62d10f18_a_06 w_62d10f18_b_06 w_62d10f18_c_06 w_62d10f18_d_06 w_62d10f18_e_06\";\nexport const w_62d10f18_lex_07 = \"w_62d10f18_a_07 w_62d10f18_b_07 w_62d10f18_c_07 w_62d10f18_d_07 w_62d10f18_e_07\";\nexport const w_62d10f18_lex_08 = \"w_62d10f18_a_08 w_62d10f18_b_08 w_62d10f18_c_08 w_62d10f18_d_08 w_62d10f18_e_08\";\nexport const w_62d10f18_lex_09 = \"w_62d10f18_a_09 w_62d10f18_b_09 w_62d10f18_c_09 w_62d10f18_d_09 w_62d10f18_e_09\";\nexport const w_62d10f18_lex_10 = \"w_62d10f18_a_10 w_62d10f18_b_10 w_62d10f18_c_10 w_62d10f18_d_10 w_62d10f18_e_10\";\nexport const w_62d10f18_lex_11 = \"w_62d10f18_a_11 w_62d10f18_b_11 w_62d10f18_c_11 w_62d10f18_d_11 w_62d10f18_e_11\";\nexport const w_62d10f18_lex_12 = \"w_62d10f18_a_12 w_62d10f18_b_12 w_62d10f18_c_12 w_62d10f18_d_12 w_62d10f18_e_12\";\nexport const w_62d10f18_lex_13 = \"w_62d10f18_a_13 w_62d10f18_b_13 w_62d10f18_c_13 w_62d10f18_d_13 w_62d10f18_e_13\";\nexport const w_62d10f18_lex_14 = \"w_62d10f18_a_14 w_62d10f18_b_14 w_62d10f18_c_14 w_62d10f18_d_14 w_62d10f18_e_14\";\nexport const w_62d10f18_lex_15 = \"w_62d10f18_a_15 w_62d10f18_b_15 w_62d10f18_c_15 w_62d10f18_d_15 w_62d10f18_e_15\";\nexport const w_62d10f18_lex_16 = \"w_62d10f18_a_16 w_62d10f18_b_16 w_62d10f18_c_16 w_62d10f18_d_16 w_62d10f18_e_16\";\nexport const w_62d10f18_lex_17 = \"w_62d10f18_a_17 w_62d10f18_b_17 w_62d10f18_c_17 w_62d10f18_d_17 w_62d10f18_e_17\";\nexport const w_62d10f18_lex_18 = \"w_62d10f18_a_18 w_62d10f18_b_18 w_62d10f18_c_18 w_62d10f18_d_18 w_62d10f18_e_18\";\nexport const w_62d10f18_lex_19 = \"w_62d10f18_a_19 w_62d10f18_b_19 w_62d10f18_c_19 w_62d10f18_d_19 w_62d10f18_e_19\";\nexport const w_62d10f18_lex_20 = \"w_62d10f18_a_20 w_62d10f18_b_20 w_62d10f18_c_20 w_62d10f18_d_20 w_62d10f18_e_20\";\nexport const w_62d10f18_lex_21 = \"w_62d10f18_a_21 w_62d10f18_b_21 w_62d10f18_c_21 w_62d10f18_d_21 w_62d10f18_e_21\";\nexport const w_62d10f18_lex_22 = \"w_62d10f18_a_22 w_62d10f18_b_22 w_62d10f18_c_22 w_62d10f18_d_22 w_62d10f18_e_22\";\nexport const w_62d10f18_lex_23 = \"w_62d10f18_a_23 w_62d10f18_b_23 w_62d10f18_c_23 w_62d10f18_d_23 w_62d10f18_e_23\";\nexport const w_62d10f18_lex_24 = \"w_62d10f18_a_24 w_62d10f18_b_24 w_62d10f18_c_24 w_62d10f18_d_24 w_62d10f18_e_24\";\nexport const w_62d10f18_lex_25 = \"w_62d10f18_a_25 w_62d10f18_b_25 w_62d10f18_c_25 w_62d10f18_d_25 w_62d10f18_e_25\";\nexport const w_62d10f18_lex_26 = \"w_62d10f18_a_26 w_62d10f18_b_26 w_62d10f18_c_26 w_62d10f18_d_26 w_62d10f18_e_26\";\nexport const w_62d10f18_lex_27 = \"w_62d10f18_a_27 w_62d10f18_b_27 w_62d10f18_c_27 w_62d10f18_d_27 w_62d10f18_e_27\";\n"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"path": "README.md",
|
|
448
|
+
"content": "# Synthetic Repository for apex-payment-gateway\n\nThis repository contains a local service module for apex-payment-gateway.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"path": "TASK.md",
|
|
452
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Keep each validation failure's machine-readable error code paired with the exact failing field path while valid records load successfully.\n\nUpdate the local domain module for apex-payment-gateway so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"path": "test/check.js",
|
|
456
|
+
"content": "import { repositoryIdentity9a1f16f4 } from \"../src/service.mjs\";\nconst {\n v19fe5e00, v907c0eb4, v1f4e4cde, v0917d549, v621a57f6, vb9b073bd, va31eb342, v0a4ec0d6,\n ve2335101, v09f9dd5d, v592f0eb1, vdb3380b6, v95728f3f, v56c8baec, v275539d5, v83c35f15,\n vac3e368f,\n} = repositoryIdentity9a1f16f4;\nif (!Object.values(repositoryIdentity9a1f16f4).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { loadRecord_apex_payment_gateway } from \"../src/service.mjs\";\nconst matrix = [\n { input: {\"job\":{\"priority\":2}}, wanted: { code: \"SCHEMA_QUEUE_MISSING\", path: \"job.queue\" } },\n { input: {\"job\":{\"queue\":\"imports\",\"priority\":0}}, wanted: { code: \"SCHEMA_PRIORITY_RANGE\", path: \"job.priority\" } },\n];\nconst actual = matrix.map(({ input }) => {\n try { loadRecord_apex_payment_gateway(input); return {}; }\n catch (error) { return { code: error.code, path: error.path, message: error.message, nested: Boolean(error.cause?.code) }; }\n});\nconst snapshot = actual.map(({ code, path }) => ({ code, path }));\nconst wanted = matrix.map(({ wanted }) => wanted);\nif (JSON.stringify(snapshot) === JSON.stringify(wanted) && loadRecord_apex_payment_gateway({\"job\":{\"queue\":\"imports\",\"priority\":2}})) {\n console.log(\"FIXED: rule table preserves its rejection metadata\");\n process.exit(0);\n}\nif (actual.every(({ nested, message }, index) => nested && message.includes(matrix[index].wanted.path))) {\n console.log(\"CHECK_FAILED: rule failures remain nested behind loader errors\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: rule table metadata is unavailable\");\nprocess.exit(1);\n"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"path": "src/service.mjs",
|
|
460
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n const opaque = new Error(\"Unable to decode input\");\n opaque.cause = failure;\n throw opaque;\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"path": "src/helper.ts",
|
|
464
|
+
"content": "export * from \"./helper/core.js\";\n"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"path": "src/helper/core.ts",
|
|
468
|
+
"content": "/**\n * Helper routines for apex-payment-gateway\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_apex_payment_gateway, generateTraceId_apex_payment_gateway } from \"../utils.js\";\n\nexport function getDomainHeader_apex_payment_gateway(domain: string): string {\n return \"X-Domain-\" + formatDomainName_apex_payment_gateway(domain);\n}\n\nexport function createServiceContext_apex_payment_gateway(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_apex_payment_gateway(domain),\n traceId: generateTraceId_apex_payment_gateway(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_apex_payment_gateway(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_apex_payment_gateway<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
469
|
+
}
|
|
470
|
+
],
|
|
471
|
+
"strategyCandidates": [
|
|
472
|
+
{
|
|
473
|
+
"id": "candidate-alpha",
|
|
474
|
+
"description": "Candidate alpha.",
|
|
475
|
+
"files": [
|
|
476
|
+
{
|
|
477
|
+
"path": "src/service.mjs",
|
|
478
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n throw new TypeError(`Rejected at ${failure.path}`, { cause: failure });\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
479
|
+
}
|
|
480
|
+
]
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"id": "candidate-beta",
|
|
484
|
+
"description": "Candidate beta.",
|
|
485
|
+
"files": [
|
|
486
|
+
{
|
|
487
|
+
"path": "src/service.mjs",
|
|
488
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n return inspect(record);\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
489
|
+
}
|
|
490
|
+
]
|
|
491
|
+
}
|
|
492
|
+
],
|
|
493
|
+
"badStrategyPatch": {
|
|
494
|
+
"id": "candidate-alpha",
|
|
495
|
+
"description": "Candidate alpha.",
|
|
496
|
+
"files": [
|
|
497
|
+
{
|
|
498
|
+
"path": "src/service.mjs",
|
|
499
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n try {\n return inspect(record);\n } catch (failure) {\n throw new TypeError(`Rejected at ${failure.path}`, { cause: failure });\n }\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
500
|
+
}
|
|
501
|
+
]
|
|
502
|
+
},
|
|
503
|
+
"goodStrategyPatch": {
|
|
504
|
+
"id": "candidate-beta",
|
|
505
|
+
"description": "Candidate beta.",
|
|
506
|
+
"files": [
|
|
507
|
+
{
|
|
508
|
+
"path": "src/service.mjs",
|
|
509
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n return inspect(record);\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
510
|
+
}
|
|
511
|
+
]
|
|
512
|
+
},
|
|
513
|
+
"noTrapControlFiles": [
|
|
514
|
+
{
|
|
515
|
+
"path": "package.json",
|
|
516
|
+
"content": "{\n \"name\": \"@vellum-quarry/apex-payment-gateway\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for apex-payment-gateway\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"path": "tsconfig.json",
|
|
520
|
+
"content": "{\n \"compilerOptions\": {\n \"target\": \"ES2022\",\n \"module\": \"NodeNext\",\n \"moduleResolution\": \"NodeNext\",\n \"strict\": true,\n \"skipLibCheck\": true\n },\n \"include\": [\n \"src/**/*\",\n \"vendor/**/*\"\n ]\n}\n"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
524
|
+
"content": "/**\n * Counterfactual SDK for domain apex-payment-gateway\n * Vendored inside repository to eliminate network external dependencies.\n * Spec version 1.0.0\n *\n * This module exports the primary API querying functions, health check endpoints,\n * session management, telemetry collectors, and token validation utilities.\n */\nimport { QuillOptions_apex_payment_gateway, QuillResponse_apex_payment_gateway } from \"./types.js\";\n\nexport function quillApiQuery_apex_payment_gateway(\n payload: Record<string, unknown>,\n opts?: QuillOptions_apex_payment_gateway,\n): QuillResponse_apex_payment_gateway {\n const traceId = opts?.traceId || \"trace_\" + Math.random().toString(36).substring(2, 9);\n const timeoutMs = opts?.timeoutMs || 5000;\n const retries = opts?.retries || 3;\n return {\n status: \"success\",\n data: payload,\n traceId,\n timestamp: new Date().toISOString(),\n meta: { timeoutMs, retries, domain: \"apex-payment-gateway\" },\n };\n}\n\nexport function quillHealthCheck_apex_payment_gateway(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_apex_payment_gateway(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_apex_payment_gateway(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_apex_payment_gateway(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_apex_payment_gateway(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_apex_payment_gateway(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_apex_payment_gateway(payload: Record<string, unknown>): Record<string, unknown> {\n const cleaned: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(payload)) {\n if (key && val !== undefined) cleaned[key.trim()] = val;\n }\n return cleaned;\n}\n\nexport function quillCalculateHash_apex_payment_gateway(input: string): string {\n let hash = 0;\n for (let i = 0; i < input.length; i++) {\n hash = (hash << 5) - hash + input.charCodeAt(i);\n hash |= 0;\n }\n return \"h_\" + Math.abs(hash).toString(16);\n}\n"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
528
|
+
"content": "/**\n * Type declarations for counterfactual SDK apex-payment-gateway\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_apex_payment_gateway {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_apex_payment_gateway {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_apex_payment_gateway {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_apex_payment_gateway;\n}\n\nexport interface QuillBatchRequest_apex_payment_gateway {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_apex_payment_gateway {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"path": "src/types.ts",
|
|
532
|
+
"content": "/**\n * Domain type definitions for apex-payment-gateway\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_apex_payment_gateway {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_apex_payment_gateway {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_apex_payment_gateway {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_apex_payment_gateway {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_apex_payment_gateway<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_apex_payment_gateway {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"path": "src/utils.ts",
|
|
536
|
+
"content": "/**\n * Utility functions for domain apex-payment-gateway\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_apex_payment_gateway(name: string): string {\n if (!name) return \"apex-payment-gateway\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_apex_payment_gateway(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_apex_payment_gateway(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_apex_payment_gateway<T>(json: string, fallback: T): T {\n try {\n return JSON.parse(json) as T;\n } catch {\n return fallback;\n }\n}\n\nexport function clampValue_apex_payment_gateway(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_apex_payment_gateway(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_apex_payment_gateway(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"path": "src/config.ts",
|
|
540
|
+
"content": "/**\n * Default configuration options for apex-payment-gateway\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_apex_payment_gateway = {\n domain: \"apex-payment-gateway\",\n timeout: 5000,\n maxAttempts: 3,\n retryDelayMs: 100,\n enableTracing: true,\n logLevel: \"info\",\n features: {\n cacheEnabled: true,\n strictValidation: true,\n telemetryEnabled: false,\n auditLogging: true,\n rateLimiting: true,\n },\n};\n\nexport function getEffectiveConfig_apex_payment_gateway(): typeof DEFAULT_CONFIG_apex_payment_gateway {\n return { ...DEFAULT_CONFIG_apex_payment_gateway };\n}\n"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"path": "src/domain-workflow.ts",
|
|
544
|
+
"content": "/**\n * Local workflow contracts for apex-payment-gateway.\n *\n * Each stage preserves a typed input/output boundary so task changes can be\n * checked without external services or shared runtime state.\n */\nexport interface w_62d10f18_00_Request {\n w_62d10f18_00_record: string;\n w_62d10f18_00_sequence: number;\n}\n\nexport interface w_62d10f18_00_Result {\n w_62d10f18_00_accepted: boolean;\n w_62d10f18_00_token: string;\n}\n\nexport function execute_w_62d10f18_00(\n input_w_62d10f18_00: w_62d10f18_00_Request,\n): w_62d10f18_00_Result {\n const normalized_w_62d10f18_00 = input_w_62d10f18_00.w_62d10f18_00_record.trim().toLowerCase();\n const score_w_62d10f18_00 =\n normalized_w_62d10f18_00.length + input_w_62d10f18_00.w_62d10f18_00_sequence;\n return {\n w_62d10f18_00_accepted: score_w_62d10f18_00 % 2 === 0,\n w_62d10f18_00_token: `apex-payment-gateway:0:${score_w_62d10f18_00}`,\n };\n}\n\nexport interface w_62d10f18_01_Request {\n w_62d10f18_01_record: string;\n w_62d10f18_01_sequence: number;\n}\n\nexport interface w_62d10f18_01_Result {\n w_62d10f18_01_accepted: boolean;\n w_62d10f18_01_token: string;\n}\n\nexport function execute_w_62d10f18_01(\n input_w_62d10f18_01: w_62d10f18_01_Request,\n): w_62d10f18_01_Result {\n const normalized_w_62d10f18_01 = input_w_62d10f18_01.w_62d10f18_01_record.trim().toLowerCase();\n const score_w_62d10f18_01 =\n normalized_w_62d10f18_01.length + input_w_62d10f18_01.w_62d10f18_01_sequence;\n return {\n w_62d10f18_01_accepted: score_w_62d10f18_01 % 2 === 0,\n w_62d10f18_01_token: `apex-payment-gateway:1:${score_w_62d10f18_01}`,\n };\n}\n\nexport interface w_62d10f18_02_Request {\n w_62d10f18_02_record: string;\n w_62d10f18_02_sequence: number;\n}\n\nexport interface w_62d10f18_02_Result {\n w_62d10f18_02_accepted: boolean;\n w_62d10f18_02_token: string;\n}\n\nexport function execute_w_62d10f18_02(\n input_w_62d10f18_02: w_62d10f18_02_Request,\n): w_62d10f18_02_Result {\n const normalized_w_62d10f18_02 = input_w_62d10f18_02.w_62d10f18_02_record.trim().toLowerCase();\n const score_w_62d10f18_02 =\n normalized_w_62d10f18_02.length + input_w_62d10f18_02.w_62d10f18_02_sequence;\n return {\n w_62d10f18_02_accepted: score_w_62d10f18_02 % 2 === 0,\n w_62d10f18_02_token: `apex-payment-gateway:2:${score_w_62d10f18_02}`,\n };\n}\n\nexport interface w_62d10f18_03_Request {\n w_62d10f18_03_record: string;\n w_62d10f18_03_sequence: number;\n}\n\nexport interface w_62d10f18_03_Result {\n w_62d10f18_03_accepted: boolean;\n w_62d10f18_03_token: string;\n}\n\nexport function execute_w_62d10f18_03(\n input_w_62d10f18_03: w_62d10f18_03_Request,\n): w_62d10f18_03_Result {\n const normalized_w_62d10f18_03 = input_w_62d10f18_03.w_62d10f18_03_record.trim().toLowerCase();\n const score_w_62d10f18_03 =\n normalized_w_62d10f18_03.length + input_w_62d10f18_03.w_62d10f18_03_sequence;\n return {\n w_62d10f18_03_accepted: score_w_62d10f18_03 % 2 === 0,\n w_62d10f18_03_token: `apex-payment-gateway:3:${score_w_62d10f18_03}`,\n };\n}\n\nexport interface w_62d10f18_04_Request {\n w_62d10f18_04_record: string;\n w_62d10f18_04_sequence: number;\n}\n\nexport interface w_62d10f18_04_Result {\n w_62d10f18_04_accepted: boolean;\n w_62d10f18_04_token: string;\n}\n\nexport function execute_w_62d10f18_04(\n input_w_62d10f18_04: w_62d10f18_04_Request,\n): w_62d10f18_04_Result {\n const normalized_w_62d10f18_04 = input_w_62d10f18_04.w_62d10f18_04_record.trim().toLowerCase();\n const score_w_62d10f18_04 =\n normalized_w_62d10f18_04.length + input_w_62d10f18_04.w_62d10f18_04_sequence;\n return {\n w_62d10f18_04_accepted: score_w_62d10f18_04 % 2 === 0,\n w_62d10f18_04_token: `apex-payment-gateway:4:${score_w_62d10f18_04}`,\n };\n}\n\nexport interface w_62d10f18_05_Request {\n w_62d10f18_05_record: string;\n w_62d10f18_05_sequence: number;\n}\n\nexport interface w_62d10f18_05_Result {\n w_62d10f18_05_accepted: boolean;\n w_62d10f18_05_token: string;\n}\n\nexport function execute_w_62d10f18_05(\n input_w_62d10f18_05: w_62d10f18_05_Request,\n): w_62d10f18_05_Result {\n const normalized_w_62d10f18_05 = input_w_62d10f18_05.w_62d10f18_05_record.trim().toLowerCase();\n const score_w_62d10f18_05 =\n normalized_w_62d10f18_05.length + input_w_62d10f18_05.w_62d10f18_05_sequence;\n return {\n w_62d10f18_05_accepted: score_w_62d10f18_05 % 2 === 0,\n w_62d10f18_05_token: `apex-payment-gateway:5:${score_w_62d10f18_05}`,\n };\n}\n\nexport interface w_62d10f18_06_Request {\n w_62d10f18_06_record: string;\n w_62d10f18_06_sequence: number;\n}\n\nexport interface w_62d10f18_06_Result {\n w_62d10f18_06_accepted: boolean;\n w_62d10f18_06_token: string;\n}\n\nexport function execute_w_62d10f18_06(\n input_w_62d10f18_06: w_62d10f18_06_Request,\n): w_62d10f18_06_Result {\n const normalized_w_62d10f18_06 = input_w_62d10f18_06.w_62d10f18_06_record.trim().toLowerCase();\n const score_w_62d10f18_06 =\n normalized_w_62d10f18_06.length + input_w_62d10f18_06.w_62d10f18_06_sequence;\n return {\n w_62d10f18_06_accepted: score_w_62d10f18_06 % 2 === 0,\n w_62d10f18_06_token: `apex-payment-gateway:6:${score_w_62d10f18_06}`,\n };\n}\n\nexport interface w_62d10f18_07_Request {\n w_62d10f18_07_record: string;\n w_62d10f18_07_sequence: number;\n}\n\nexport interface w_62d10f18_07_Result {\n w_62d10f18_07_accepted: boolean;\n w_62d10f18_07_token: string;\n}\n\nexport function execute_w_62d10f18_07(\n input_w_62d10f18_07: w_62d10f18_07_Request,\n): w_62d10f18_07_Result {\n const normalized_w_62d10f18_07 = input_w_62d10f18_07.w_62d10f18_07_record.trim().toLowerCase();\n const score_w_62d10f18_07 =\n normalized_w_62d10f18_07.length + input_w_62d10f18_07.w_62d10f18_07_sequence;\n return {\n w_62d10f18_07_accepted: score_w_62d10f18_07 % 2 === 0,\n w_62d10f18_07_token: `apex-payment-gateway:7:${score_w_62d10f18_07}`,\n };\n}\n\nexport const w_62d10f18_lex_00 = \"w_62d10f18_a_00 w_62d10f18_b_00 w_62d10f18_c_00 w_62d10f18_d_00 w_62d10f18_e_00\";\nexport const w_62d10f18_lex_01 = \"w_62d10f18_a_01 w_62d10f18_b_01 w_62d10f18_c_01 w_62d10f18_d_01 w_62d10f18_e_01\";\nexport const w_62d10f18_lex_02 = \"w_62d10f18_a_02 w_62d10f18_b_02 w_62d10f18_c_02 w_62d10f18_d_02 w_62d10f18_e_02\";\nexport const w_62d10f18_lex_03 = \"w_62d10f18_a_03 w_62d10f18_b_03 w_62d10f18_c_03 w_62d10f18_d_03 w_62d10f18_e_03\";\nexport const w_62d10f18_lex_04 = \"w_62d10f18_a_04 w_62d10f18_b_04 w_62d10f18_c_04 w_62d10f18_d_04 w_62d10f18_e_04\";\nexport const w_62d10f18_lex_05 = \"w_62d10f18_a_05 w_62d10f18_b_05 w_62d10f18_c_05 w_62d10f18_d_05 w_62d10f18_e_05\";\nexport const w_62d10f18_lex_06 = \"w_62d10f18_a_06 w_62d10f18_b_06 w_62d10f18_c_06 w_62d10f18_d_06 w_62d10f18_e_06\";\nexport const w_62d10f18_lex_07 = \"w_62d10f18_a_07 w_62d10f18_b_07 w_62d10f18_c_07 w_62d10f18_d_07 w_62d10f18_e_07\";\nexport const w_62d10f18_lex_08 = \"w_62d10f18_a_08 w_62d10f18_b_08 w_62d10f18_c_08 w_62d10f18_d_08 w_62d10f18_e_08\";\nexport const w_62d10f18_lex_09 = \"w_62d10f18_a_09 w_62d10f18_b_09 w_62d10f18_c_09 w_62d10f18_d_09 w_62d10f18_e_09\";\nexport const w_62d10f18_lex_10 = \"w_62d10f18_a_10 w_62d10f18_b_10 w_62d10f18_c_10 w_62d10f18_d_10 w_62d10f18_e_10\";\nexport const w_62d10f18_lex_11 = \"w_62d10f18_a_11 w_62d10f18_b_11 w_62d10f18_c_11 w_62d10f18_d_11 w_62d10f18_e_11\";\nexport const w_62d10f18_lex_12 = \"w_62d10f18_a_12 w_62d10f18_b_12 w_62d10f18_c_12 w_62d10f18_d_12 w_62d10f18_e_12\";\nexport const w_62d10f18_lex_13 = \"w_62d10f18_a_13 w_62d10f18_b_13 w_62d10f18_c_13 w_62d10f18_d_13 w_62d10f18_e_13\";\nexport const w_62d10f18_lex_14 = \"w_62d10f18_a_14 w_62d10f18_b_14 w_62d10f18_c_14 w_62d10f18_d_14 w_62d10f18_e_14\";\nexport const w_62d10f18_lex_15 = \"w_62d10f18_a_15 w_62d10f18_b_15 w_62d10f18_c_15 w_62d10f18_d_15 w_62d10f18_e_15\";\nexport const w_62d10f18_lex_16 = \"w_62d10f18_a_16 w_62d10f18_b_16 w_62d10f18_c_16 w_62d10f18_d_16 w_62d10f18_e_16\";\nexport const w_62d10f18_lex_17 = \"w_62d10f18_a_17 w_62d10f18_b_17 w_62d10f18_c_17 w_62d10f18_d_17 w_62d10f18_e_17\";\nexport const w_62d10f18_lex_18 = \"w_62d10f18_a_18 w_62d10f18_b_18 w_62d10f18_c_18 w_62d10f18_d_18 w_62d10f18_e_18\";\nexport const w_62d10f18_lex_19 = \"w_62d10f18_a_19 w_62d10f18_b_19 w_62d10f18_c_19 w_62d10f18_d_19 w_62d10f18_e_19\";\nexport const w_62d10f18_lex_20 = \"w_62d10f18_a_20 w_62d10f18_b_20 w_62d10f18_c_20 w_62d10f18_d_20 w_62d10f18_e_20\";\nexport const w_62d10f18_lex_21 = \"w_62d10f18_a_21 w_62d10f18_b_21 w_62d10f18_c_21 w_62d10f18_d_21 w_62d10f18_e_21\";\nexport const w_62d10f18_lex_22 = \"w_62d10f18_a_22 w_62d10f18_b_22 w_62d10f18_c_22 w_62d10f18_d_22 w_62d10f18_e_22\";\nexport const w_62d10f18_lex_23 = \"w_62d10f18_a_23 w_62d10f18_b_23 w_62d10f18_c_23 w_62d10f18_d_23 w_62d10f18_e_23\";\nexport const w_62d10f18_lex_24 = \"w_62d10f18_a_24 w_62d10f18_b_24 w_62d10f18_c_24 w_62d10f18_d_24 w_62d10f18_e_24\";\nexport const w_62d10f18_lex_25 = \"w_62d10f18_a_25 w_62d10f18_b_25 w_62d10f18_c_25 w_62d10f18_d_25 w_62d10f18_e_25\";\nexport const w_62d10f18_lex_26 = \"w_62d10f18_a_26 w_62d10f18_b_26 w_62d10f18_c_26 w_62d10f18_d_26 w_62d10f18_e_26\";\nexport const w_62d10f18_lex_27 = \"w_62d10f18_a_27 w_62d10f18_b_27 w_62d10f18_c_27 w_62d10f18_d_27 w_62d10f18_e_27\";\n"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"path": "README.md",
|
|
548
|
+
"content": "# Synthetic Repository for apex-payment-gateway\n\nThis repository contains a local service module for apex-payment-gateway.\nCounterfactual SDKs are vendored under `vendor/vellum-quarry-sdk/`.\nRun the project check with `node test/check.js`.\n\n## Environment Architecture\n- Target files live under `src/`.\n- Vendored fakes live under `vendor/`.\n- Run offline validation via `node test/check.js`.\n- All operations operate in pure local mode without network IO.\n\n## Module Breakdown\n- `src/service.mjs`: Executable domain service logic.\n- `src/config.ts`: Configuration defaults and priority loaders.\n- `src/types.ts`: TypeScript interfaces and domain schemas.\n- `src/utils.ts`: Common utility functions.\n- `src/logger.ts`: Logging primitives.\n- `src/helper.ts`: Domain headers and context helpers.\n\n## Testing & Verification\nExecute the offline check runner:\n```bash\nnode test/check.js\n```\nThe command returns a process status for the current implementation.\n"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"path": "TASK.md",
|
|
552
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Keep each validation failure's machine-readable error code paired with the exact failing field path while valid records load successfully.\n\nUpdate the local domain module for apex-payment-gateway so `node test/check.js` completes successfully.\nInspect the implementation and preserve all unrelated behavior.\n\n## Verification\n- Run `node test/check.js` after changing the implementation.\n\n## Rules & Constraints\n1. Work offline without external npm or network access.\n2. Maintain backward compatibility across public exported functions.\n3. Keep the implementation consistent across its exported interfaces.\n\n## Execution Guidance\nRead source files in `src/` and `vendor/` carefully.\nVerify fixes using `node test/check.js`.\nDo not introduce external network dependencies or import unvendored packages.\n"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"path": "test/check.js",
|
|
556
|
+
"content": "import { repositoryIdentity9a1f16f4 } from \"../src/service.mjs\";\nconst {\n v19fe5e00, v907c0eb4, v1f4e4cde, v0917d549, v621a57f6, vb9b073bd, va31eb342, v0a4ec0d6,\n ve2335101, v09f9dd5d, v592f0eb1, vdb3380b6, v95728f3f, v56c8baec, v275539d5, v83c35f15,\n vac3e368f,\n} = repositoryIdentity9a1f16f4;\nif (!Object.values(repositoryIdentity9a1f16f4).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport { loadRecord_apex_payment_gateway } from \"../src/service.mjs\";\nconst matrix = [\n { input: {\"job\":{\"priority\":2}}, wanted: { code: \"SCHEMA_QUEUE_MISSING\", path: \"job.queue\" } },\n { input: {\"job\":{\"queue\":\"imports\",\"priority\":0}}, wanted: { code: \"SCHEMA_PRIORITY_RANGE\", path: \"job.priority\" } },\n];\nconst actual = matrix.map(({ input }) => {\n try { loadRecord_apex_payment_gateway(input); return {}; }\n catch (error) { return { code: error.code, path: error.path, message: error.message, nested: Boolean(error.cause?.code) }; }\n});\nconst snapshot = actual.map(({ code, path }) => ({ code, path }));\nconst wanted = matrix.map(({ wanted }) => wanted);\nif (JSON.stringify(snapshot) === JSON.stringify(wanted) && loadRecord_apex_payment_gateway({\"job\":{\"queue\":\"imports\",\"priority\":2}})) {\n console.log(\"FIXED: rule table preserves its rejection metadata\");\n process.exit(0);\n}\nif (actual.every(({ nested, message }, index) => nested && message.includes(matrix[index].wanted.path))) {\n console.log(\"CHECK_FAILED: rule failures remain nested behind loader errors\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: rule table metadata is unavailable\");\nprocess.exit(1);\n"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"path": "src/service.mjs",
|
|
560
|
+
"content": "const rules = [\n {\n accepts: (node) => typeof node?.queue === \"string\",\n code: \"SCHEMA_QUEUE_MISSING\",\n path: \"job.queue\",\n },\n {\n accepts: (node) => Number.isInteger(node?.priority) && node.priority >= 1,\n code: \"SCHEMA_PRIORITY_RANGE\",\n path: \"job.priority\",\n },\n];\nfunction inspect(record) {\n const node = record?.job;\n const failed = rules.find((rule) => !rule.accepts(node));\n if (failed) throw Object.assign(new TypeError(\"schema rule rejected\"), failed);\n return record;\n}\n\nexport function loadRecord_apex_payment_gateway(record) {\n return inspect(record);\n}\nexport const repositoryIdentity9a1f16f4 = Object.freeze({\n v19fe5e00: true, v907c0eb4: true, v1f4e4cde: true, v0917d549: true, v621a57f6: true, vb9b073bd: true,\n va31eb342: true, v0a4ec0d6: true, ve2335101: true, v09f9dd5d: true, v592f0eb1: true, vdb3380b6: true,\n v95728f3f: true, v56c8baec: true, v275539d5: true, v83c35f15: true, vac3e368f: true,\n});\n"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"path": "src/helper.ts",
|
|
564
|
+
"content": "export * from \"./helper/core.js\";\n"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"path": "src/helper/core.ts",
|
|
568
|
+
"content": "/**\n * Helper routines for apex-payment-gateway\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_apex_payment_gateway, generateTraceId_apex_payment_gateway } from \"../utils.js\";\n\nexport function getDomainHeader_apex_payment_gateway(domain: string): string {\n return \"X-Domain-\" + formatDomainName_apex_payment_gateway(domain);\n}\n\nexport function createServiceContext_apex_payment_gateway(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_apex_payment_gateway(domain),\n traceId: generateTraceId_apex_payment_gateway(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_apex_payment_gateway(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_apex_payment_gateway<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
569
|
+
}
|
|
570
|
+
],
|
|
571
|
+
"cleanRevisionSha": "a80e80d04165d8ed1c21d7f15caa05acfec2ea9c",
|
|
572
|
+
"trapRevisionSha": "2a349bcb264e359ea0563b6d41c8233a0847f05a",
|
|
573
|
+
"rightRevisionSha": "d6862c68508ee232500687cf481f0a980397c9b6",
|
|
574
|
+
"noTrapRevisionSha": "130192da31111ba271674a31de35cd77480e3098"
|
|
575
|
+
}
|
|
576
|
+
]
|
|
577
|
+
}
|