@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,645 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "h6-task-29",
|
|
3
|
+
"trapId": "config-shadowing",
|
|
4
|
+
"domain": "schema-registry-store",
|
|
5
|
+
"title": "Correct schema-registry-store service behavior",
|
|
6
|
+
"description": "Revise the canonical default configuration so runtime loads the new values from that source; do not edit an unused shadow copy.",
|
|
7
|
+
"canonicalBaseFiles": [
|
|
8
|
+
{
|
|
9
|
+
"path": "package.json",
|
|
10
|
+
"content": "{\n \"name\": \"@vellum-quarry/schema-registry-store\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for schema-registry-store\",\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 schema-registry-store\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_schema_registry_store, QuillResponse_schema_registry_store } from \"./types.js\";\n\nexport function quillApiQuery_schema_registry_store(\n payload: Record<string, unknown>,\n opts?: QuillOptions_schema_registry_store,\n): QuillResponse_schema_registry_store {\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: \"schema-registry-store\" },\n };\n}\n\nexport function quillHealthCheck_schema_registry_store(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_schema_registry_store(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_schema_registry_store(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_schema_registry_store(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_schema_registry_store(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_schema_registry_store(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_schema_registry_store(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_schema_registry_store(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 schema-registry-store\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_schema_registry_store {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_schema_registry_store {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_schema_registry_store {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_schema_registry_store;\n}\n\nexport interface QuillBatchRequest_schema_registry_store {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_schema_registry_store {\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 schema-registry-store\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_schema_registry_store {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_schema_registry_store {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_schema_registry_store {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_schema_registry_store {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_schema_registry_store<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_schema_registry_store {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"path": "src/utils.ts",
|
|
30
|
+
"content": "/**\n * Utility functions for domain schema-registry-store\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_schema_registry_store(name: string): string {\n if (!name) return \"schema-registry-store\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_schema_registry_store(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_schema_registry_store(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_schema_registry_store<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_schema_registry_store(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_schema_registry_store(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_schema_registry_store(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 schema-registry-store\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_schema_registry_store = {\n domain: \"schema-registry-store\",\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_schema_registry_store(): typeof DEFAULT_CONFIG_schema_registry_store {\n return { ...DEFAULT_CONFIG_schema_registry_store };\n}\n"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"path": "src/helper.ts",
|
|
38
|
+
"content": "/**\n * Helper routines for schema-registry-store\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_schema_registry_store, generateTraceId_schema_registry_store } from \"./utils.js\";\n\nexport function getDomainHeader_schema_registry_store(domain: string): string {\n return \"X-Domain-\" + formatDomainName_schema_registry_store(domain);\n}\n\nexport function createServiceContext_schema_registry_store(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_schema_registry_store(domain),\n traceId: generateTraceId_schema_registry_store(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_schema_registry_store(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_schema_registry_store<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 schema-registry-store.\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_d1ebdeae_00_Request {\n w_d1ebdeae_00_record: string;\n w_d1ebdeae_00_sequence: number;\n}\n\nexport interface w_d1ebdeae_00_Result {\n w_d1ebdeae_00_accepted: boolean;\n w_d1ebdeae_00_token: string;\n}\n\nexport function execute_w_d1ebdeae_00(\n input_w_d1ebdeae_00: w_d1ebdeae_00_Request,\n): w_d1ebdeae_00_Result {\n const normalized_w_d1ebdeae_00 = input_w_d1ebdeae_00.w_d1ebdeae_00_record.trim().toLowerCase();\n const score_w_d1ebdeae_00 =\n normalized_w_d1ebdeae_00.length + input_w_d1ebdeae_00.w_d1ebdeae_00_sequence;\n return {\n w_d1ebdeae_00_accepted: score_w_d1ebdeae_00 % 2 === 0,\n w_d1ebdeae_00_token: `schema-registry-store:0:${score_w_d1ebdeae_00}`,\n };\n}\n\nexport interface w_d1ebdeae_01_Request {\n w_d1ebdeae_01_record: string;\n w_d1ebdeae_01_sequence: number;\n}\n\nexport interface w_d1ebdeae_01_Result {\n w_d1ebdeae_01_accepted: boolean;\n w_d1ebdeae_01_token: string;\n}\n\nexport function execute_w_d1ebdeae_01(\n input_w_d1ebdeae_01: w_d1ebdeae_01_Request,\n): w_d1ebdeae_01_Result {\n const normalized_w_d1ebdeae_01 = input_w_d1ebdeae_01.w_d1ebdeae_01_record.trim().toLowerCase();\n const score_w_d1ebdeae_01 =\n normalized_w_d1ebdeae_01.length + input_w_d1ebdeae_01.w_d1ebdeae_01_sequence;\n return {\n w_d1ebdeae_01_accepted: score_w_d1ebdeae_01 % 2 === 0,\n w_d1ebdeae_01_token: `schema-registry-store:1:${score_w_d1ebdeae_01}`,\n };\n}\n\nexport interface w_d1ebdeae_02_Request {\n w_d1ebdeae_02_record: string;\n w_d1ebdeae_02_sequence: number;\n}\n\nexport interface w_d1ebdeae_02_Result {\n w_d1ebdeae_02_accepted: boolean;\n w_d1ebdeae_02_token: string;\n}\n\nexport function execute_w_d1ebdeae_02(\n input_w_d1ebdeae_02: w_d1ebdeae_02_Request,\n): w_d1ebdeae_02_Result {\n const normalized_w_d1ebdeae_02 = input_w_d1ebdeae_02.w_d1ebdeae_02_record.trim().toLowerCase();\n const score_w_d1ebdeae_02 =\n normalized_w_d1ebdeae_02.length + input_w_d1ebdeae_02.w_d1ebdeae_02_sequence;\n return {\n w_d1ebdeae_02_accepted: score_w_d1ebdeae_02 % 2 === 0,\n w_d1ebdeae_02_token: `schema-registry-store:2:${score_w_d1ebdeae_02}`,\n };\n}\n\nexport interface w_d1ebdeae_03_Request {\n w_d1ebdeae_03_record: string;\n w_d1ebdeae_03_sequence: number;\n}\n\nexport interface w_d1ebdeae_03_Result {\n w_d1ebdeae_03_accepted: boolean;\n w_d1ebdeae_03_token: string;\n}\n\nexport function execute_w_d1ebdeae_03(\n input_w_d1ebdeae_03: w_d1ebdeae_03_Request,\n): w_d1ebdeae_03_Result {\n const normalized_w_d1ebdeae_03 = input_w_d1ebdeae_03.w_d1ebdeae_03_record.trim().toLowerCase();\n const score_w_d1ebdeae_03 =\n normalized_w_d1ebdeae_03.length + input_w_d1ebdeae_03.w_d1ebdeae_03_sequence;\n return {\n w_d1ebdeae_03_accepted: score_w_d1ebdeae_03 % 2 === 0,\n w_d1ebdeae_03_token: `schema-registry-store:3:${score_w_d1ebdeae_03}`,\n };\n}\n\nexport interface w_d1ebdeae_04_Request {\n w_d1ebdeae_04_record: string;\n w_d1ebdeae_04_sequence: number;\n}\n\nexport interface w_d1ebdeae_04_Result {\n w_d1ebdeae_04_accepted: boolean;\n w_d1ebdeae_04_token: string;\n}\n\nexport function execute_w_d1ebdeae_04(\n input_w_d1ebdeae_04: w_d1ebdeae_04_Request,\n): w_d1ebdeae_04_Result {\n const normalized_w_d1ebdeae_04 = input_w_d1ebdeae_04.w_d1ebdeae_04_record.trim().toLowerCase();\n const score_w_d1ebdeae_04 =\n normalized_w_d1ebdeae_04.length + input_w_d1ebdeae_04.w_d1ebdeae_04_sequence;\n return {\n w_d1ebdeae_04_accepted: score_w_d1ebdeae_04 % 2 === 0,\n w_d1ebdeae_04_token: `schema-registry-store:4:${score_w_d1ebdeae_04}`,\n };\n}\n\nexport interface w_d1ebdeae_05_Request {\n w_d1ebdeae_05_record: string;\n w_d1ebdeae_05_sequence: number;\n}\n\nexport interface w_d1ebdeae_05_Result {\n w_d1ebdeae_05_accepted: boolean;\n w_d1ebdeae_05_token: string;\n}\n\nexport function execute_w_d1ebdeae_05(\n input_w_d1ebdeae_05: w_d1ebdeae_05_Request,\n): w_d1ebdeae_05_Result {\n const normalized_w_d1ebdeae_05 = input_w_d1ebdeae_05.w_d1ebdeae_05_record.trim().toLowerCase();\n const score_w_d1ebdeae_05 =\n normalized_w_d1ebdeae_05.length + input_w_d1ebdeae_05.w_d1ebdeae_05_sequence;\n return {\n w_d1ebdeae_05_accepted: score_w_d1ebdeae_05 % 2 === 0,\n w_d1ebdeae_05_token: `schema-registry-store:5:${score_w_d1ebdeae_05}`,\n };\n}\n\nexport interface w_d1ebdeae_06_Request {\n w_d1ebdeae_06_record: string;\n w_d1ebdeae_06_sequence: number;\n}\n\nexport interface w_d1ebdeae_06_Result {\n w_d1ebdeae_06_accepted: boolean;\n w_d1ebdeae_06_token: string;\n}\n\nexport function execute_w_d1ebdeae_06(\n input_w_d1ebdeae_06: w_d1ebdeae_06_Request,\n): w_d1ebdeae_06_Result {\n const normalized_w_d1ebdeae_06 = input_w_d1ebdeae_06.w_d1ebdeae_06_record.trim().toLowerCase();\n const score_w_d1ebdeae_06 =\n normalized_w_d1ebdeae_06.length + input_w_d1ebdeae_06.w_d1ebdeae_06_sequence;\n return {\n w_d1ebdeae_06_accepted: score_w_d1ebdeae_06 % 2 === 0,\n w_d1ebdeae_06_token: `schema-registry-store:6:${score_w_d1ebdeae_06}`,\n };\n}\n\nexport interface w_d1ebdeae_07_Request {\n w_d1ebdeae_07_record: string;\n w_d1ebdeae_07_sequence: number;\n}\n\nexport interface w_d1ebdeae_07_Result {\n w_d1ebdeae_07_accepted: boolean;\n w_d1ebdeae_07_token: string;\n}\n\nexport function execute_w_d1ebdeae_07(\n input_w_d1ebdeae_07: w_d1ebdeae_07_Request,\n): w_d1ebdeae_07_Result {\n const normalized_w_d1ebdeae_07 = input_w_d1ebdeae_07.w_d1ebdeae_07_record.trim().toLowerCase();\n const score_w_d1ebdeae_07 =\n normalized_w_d1ebdeae_07.length + input_w_d1ebdeae_07.w_d1ebdeae_07_sequence;\n return {\n w_d1ebdeae_07_accepted: score_w_d1ebdeae_07 % 2 === 0,\n w_d1ebdeae_07_token: `schema-registry-store:7:${score_w_d1ebdeae_07}`,\n };\n}\n\nexport const w_d1ebdeae_lex_00 = \"w_d1ebdeae_a_00 w_d1ebdeae_b_00 w_d1ebdeae_c_00 w_d1ebdeae_d_00 w_d1ebdeae_e_00\";\nexport const w_d1ebdeae_lex_01 = \"w_d1ebdeae_a_01 w_d1ebdeae_b_01 w_d1ebdeae_c_01 w_d1ebdeae_d_01 w_d1ebdeae_e_01\";\nexport const w_d1ebdeae_lex_02 = \"w_d1ebdeae_a_02 w_d1ebdeae_b_02 w_d1ebdeae_c_02 w_d1ebdeae_d_02 w_d1ebdeae_e_02\";\nexport const w_d1ebdeae_lex_03 = \"w_d1ebdeae_a_03 w_d1ebdeae_b_03 w_d1ebdeae_c_03 w_d1ebdeae_d_03 w_d1ebdeae_e_03\";\nexport const w_d1ebdeae_lex_04 = \"w_d1ebdeae_a_04 w_d1ebdeae_b_04 w_d1ebdeae_c_04 w_d1ebdeae_d_04 w_d1ebdeae_e_04\";\nexport const w_d1ebdeae_lex_05 = \"w_d1ebdeae_a_05 w_d1ebdeae_b_05 w_d1ebdeae_c_05 w_d1ebdeae_d_05 w_d1ebdeae_e_05\";\nexport const w_d1ebdeae_lex_06 = \"w_d1ebdeae_a_06 w_d1ebdeae_b_06 w_d1ebdeae_c_06 w_d1ebdeae_d_06 w_d1ebdeae_e_06\";\nexport const w_d1ebdeae_lex_07 = \"w_d1ebdeae_a_07 w_d1ebdeae_b_07 w_d1ebdeae_c_07 w_d1ebdeae_d_07 w_d1ebdeae_e_07\";\nexport const w_d1ebdeae_lex_08 = \"w_d1ebdeae_a_08 w_d1ebdeae_b_08 w_d1ebdeae_c_08 w_d1ebdeae_d_08 w_d1ebdeae_e_08\";\nexport const w_d1ebdeae_lex_09 = \"w_d1ebdeae_a_09 w_d1ebdeae_b_09 w_d1ebdeae_c_09 w_d1ebdeae_d_09 w_d1ebdeae_e_09\";\nexport const w_d1ebdeae_lex_10 = \"w_d1ebdeae_a_10 w_d1ebdeae_b_10 w_d1ebdeae_c_10 w_d1ebdeae_d_10 w_d1ebdeae_e_10\";\nexport const w_d1ebdeae_lex_11 = \"w_d1ebdeae_a_11 w_d1ebdeae_b_11 w_d1ebdeae_c_11 w_d1ebdeae_d_11 w_d1ebdeae_e_11\";\nexport const w_d1ebdeae_lex_12 = \"w_d1ebdeae_a_12 w_d1ebdeae_b_12 w_d1ebdeae_c_12 w_d1ebdeae_d_12 w_d1ebdeae_e_12\";\nexport const w_d1ebdeae_lex_13 = \"w_d1ebdeae_a_13 w_d1ebdeae_b_13 w_d1ebdeae_c_13 w_d1ebdeae_d_13 w_d1ebdeae_e_13\";\nexport const w_d1ebdeae_lex_14 = \"w_d1ebdeae_a_14 w_d1ebdeae_b_14 w_d1ebdeae_c_14 w_d1ebdeae_d_14 w_d1ebdeae_e_14\";\nexport const w_d1ebdeae_lex_15 = \"w_d1ebdeae_a_15 w_d1ebdeae_b_15 w_d1ebdeae_c_15 w_d1ebdeae_d_15 w_d1ebdeae_e_15\";\nexport const w_d1ebdeae_lex_16 = \"w_d1ebdeae_a_16 w_d1ebdeae_b_16 w_d1ebdeae_c_16 w_d1ebdeae_d_16 w_d1ebdeae_e_16\";\nexport const w_d1ebdeae_lex_17 = \"w_d1ebdeae_a_17 w_d1ebdeae_b_17 w_d1ebdeae_c_17 w_d1ebdeae_d_17 w_d1ebdeae_e_17\";\nexport const w_d1ebdeae_lex_18 = \"w_d1ebdeae_a_18 w_d1ebdeae_b_18 w_d1ebdeae_c_18 w_d1ebdeae_d_18 w_d1ebdeae_e_18\";\nexport const w_d1ebdeae_lex_19 = \"w_d1ebdeae_a_19 w_d1ebdeae_b_19 w_d1ebdeae_c_19 w_d1ebdeae_d_19 w_d1ebdeae_e_19\";\nexport const w_d1ebdeae_lex_20 = \"w_d1ebdeae_a_20 w_d1ebdeae_b_20 w_d1ebdeae_c_20 w_d1ebdeae_d_20 w_d1ebdeae_e_20\";\nexport const w_d1ebdeae_lex_21 = \"w_d1ebdeae_a_21 w_d1ebdeae_b_21 w_d1ebdeae_c_21 w_d1ebdeae_d_21 w_d1ebdeae_e_21\";\nexport const w_d1ebdeae_lex_22 = \"w_d1ebdeae_a_22 w_d1ebdeae_b_22 w_d1ebdeae_c_22 w_d1ebdeae_d_22 w_d1ebdeae_e_22\";\nexport const w_d1ebdeae_lex_23 = \"w_d1ebdeae_a_23 w_d1ebdeae_b_23 w_d1ebdeae_c_23 w_d1ebdeae_d_23 w_d1ebdeae_e_23\";\nexport const w_d1ebdeae_lex_24 = \"w_d1ebdeae_a_24 w_d1ebdeae_b_24 w_d1ebdeae_c_24 w_d1ebdeae_d_24 w_d1ebdeae_e_24\";\nexport const w_d1ebdeae_lex_25 = \"w_d1ebdeae_a_25 w_d1ebdeae_b_25 w_d1ebdeae_c_25 w_d1ebdeae_d_25 w_d1ebdeae_e_25\";\nexport const w_d1ebdeae_lex_26 = \"w_d1ebdeae_a_26 w_d1ebdeae_b_26 w_d1ebdeae_c_26 w_d1ebdeae_d_26 w_d1ebdeae_e_26\";\nexport const w_d1ebdeae_lex_27 = \"w_d1ebdeae_a_27 w_d1ebdeae_b_27 w_d1ebdeae_c_27 w_d1ebdeae_d_27 w_d1ebdeae_e_27\";\n"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "README.md",
|
|
46
|
+
"content": "# Synthetic Repository for schema-registry-store\n\nThis repository contains a local service module for schema-registry-store.\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: Revise the canonical default configuration so runtime loads the new values from that source; do not edit an unused shadow copy.\n\nUpdate the local domain module for schema-registry-store 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 { repositoryIdentity27f608a3 } from \"../src/service.mjs\";\nconst {\n vbbea9f73, vb8f79bc0, v10848e26, vf2b4b981, v018a7643, v0c330aef, va5fee7e3, v69c2ebb0,\n v926d3cab, vb785d7da, v8f6083eb, vc16aa08c, v77d691dc, v2ecc410d, v013f1d36, v1c7bdbb8,\n v42d382f1,\n} = repositoryIdentity27f608a3;\nif (!Object.values(repositoryIdentity27f608a3).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport fs from \"node:fs\";\nimport { readConfig_schema_registry_store } from \"../src/service.mjs\";\nconst snapshot = {\n disk: JSON.parse(fs.readFileSync(\"config/default.json\", \"utf8\")),\n resolved: readConfig_schema_registry_store(),\n};\nconst expected = {\n disk: { pageLimit: 60, prefetch: 2 },\n resolved: { pageLimit: 60, prefetch: 2 },\n};\nif (JSON.stringify(snapshot) === JSON.stringify(expected)) {\n console.log(\"FIXED: fallback loader snapshot uses the canonical source\");\n process.exit(0);\n}\nif (JSON.stringify(snapshot.disk) === JSON.stringify(expected.disk) &&\n JSON.stringify(snapshot.resolved) !== JSON.stringify(snapshot.disk)) {\n console.log(\"CHECK_FAILED: successful override read bypasses fallback\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: fallback configuration is not updated\");\nprocess.exit(1);\n"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"path": "config/default.json",
|
|
58
|
+
"content": "{\n \"pageLimit\": 25,\n \"prefetch\": 2\n}\n"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"path": "config/user.json",
|
|
62
|
+
"content": "{\n \"pageLimit\": 10,\n \"prefetch\": 1\n}\n"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"path": "src/service.mjs",
|
|
66
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n try {\n return decode(\"./config/user.json\");\n } catch (error) {\n if (error.code === \"ENOENT\") return decode(\"./config/default.json\");\n throw error;\n }\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"checkCommand": "node test/check.js",
|
|
70
|
+
"fileCount": 15,
|
|
71
|
+
"lineCount": 582,
|
|
72
|
+
"fingerprint": {
|
|
73
|
+
"version": 1,
|
|
74
|
+
"trapId": "config-shadowing",
|
|
75
|
+
"symbol": "editShadowedDefaultConfig_schema_registry_store",
|
|
76
|
+
"file": "src/service.mjs",
|
|
77
|
+
"pattern": "edit_shadowed_config",
|
|
78
|
+
"strategyId": "candidate-alpha"
|
|
79
|
+
},
|
|
80
|
+
"normalizedActionIntent": {
|
|
81
|
+
"version": 1,
|
|
82
|
+
"actionType": "service_maintenance",
|
|
83
|
+
"targetSymbol": "service_schema_registry_store",
|
|
84
|
+
"filePath": "config/default.json",
|
|
85
|
+
"contextHash": "9a43c28f6cdf6fbb7fd4498ae9b559fb743e9fdde95a3ed000870147c1c7e4e2"
|
|
86
|
+
},
|
|
87
|
+
"offlineCheckMark": "5c53305956ce7ddcb119feae7469b2eb7f39bfa921bcb6c3cbc00166716785df",
|
|
88
|
+
"offlineFailureMark": "7fa97935f3f26494086d2ec72fff7d8388d5e15c3e5db0b05a7ce6333b744099",
|
|
89
|
+
"maxTokenCap": 8192,
|
|
90
|
+
"maxAttemptCap": 3,
|
|
91
|
+
"split": "main",
|
|
92
|
+
"variants": [
|
|
93
|
+
{
|
|
94
|
+
"variantId": "h6-task-29-v1",
|
|
95
|
+
"baseTaskId": "h6-task-29",
|
|
96
|
+
"variantIndex": 1,
|
|
97
|
+
"distance": 1,
|
|
98
|
+
"domain": "schema-registry-store",
|
|
99
|
+
"files": [
|
|
100
|
+
{
|
|
101
|
+
"path": "package.json",
|
|
102
|
+
"content": "{\n \"name\": \"@vellum-quarry/schema-registry-store\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for schema-registry-store\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"path": "tsconfig.json",
|
|
106
|
+
"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"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
110
|
+
"content": "/**\n * Counterfactual SDK for domain schema-registry-store\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_schema_registry_store, QuillResponse_schema_registry_store } from \"./types.js\";\n\nexport function quillApiQuery_schema_registry_store(\n payload: Record<string, unknown>,\n opts?: QuillOptions_schema_registry_store,\n): QuillResponse_schema_registry_store {\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: \"schema-registry-store\" },\n };\n}\n\nexport function quillHealthCheck_schema_registry_store(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_schema_registry_store(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_schema_registry_store(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_schema_registry_store(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_schema_registry_store(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_schema_registry_store(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_schema_registry_store(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_schema_registry_store(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"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
114
|
+
"content": "/**\n * Type declarations for counterfactual SDK schema-registry-store\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_schema_registry_store {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_schema_registry_store {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_schema_registry_store {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_schema_registry_store;\n}\n\nexport interface QuillBatchRequest_schema_registry_store {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_schema_registry_store {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"path": "src/types.ts",
|
|
118
|
+
"content": "/**\n * Domain type definitions for schema-registry-store\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_schema_registry_store {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_schema_registry_store {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_schema_registry_store {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_schema_registry_store {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_schema_registry_store<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_schema_registry_store {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"path": "src/utils.ts",
|
|
122
|
+
"content": "/**\n * Utility functions for domain schema-registry-store\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_schema_registry_store(name: string): string {\n if (!name) return \"schema-registry-store\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_schema_registry_store(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_schema_registry_store(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_schema_registry_store<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_schema_registry_store(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_schema_registry_store(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_schema_registry_store(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"path": "src/config.ts",
|
|
126
|
+
"content": "/**\n * Default configuration options for schema-registry-store\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_schema_registry_store = {\n domain: \"schema-registry-store\",\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_schema_registry_store(): typeof DEFAULT_CONFIG_schema_registry_store {\n return { ...DEFAULT_CONFIG_schema_registry_store };\n}\n"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"path": "src/domain-workflow.ts",
|
|
130
|
+
"content": "/**\n * Local workflow contracts for schema-registry-store.\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_d1ebdeae_00_Request {\n w_d1ebdeae_00_record: string;\n w_d1ebdeae_00_sequence: number;\n}\n\nexport interface w_d1ebdeae_00_Result {\n w_d1ebdeae_00_accepted: boolean;\n w_d1ebdeae_00_token: string;\n}\n\nexport function execute_w_d1ebdeae_00(\n input_w_d1ebdeae_00: w_d1ebdeae_00_Request,\n): w_d1ebdeae_00_Result {\n const normalized_w_d1ebdeae_00 = input_w_d1ebdeae_00.w_d1ebdeae_00_record.trim().toLowerCase();\n const score_w_d1ebdeae_00 =\n normalized_w_d1ebdeae_00.length + input_w_d1ebdeae_00.w_d1ebdeae_00_sequence;\n return {\n w_d1ebdeae_00_accepted: score_w_d1ebdeae_00 % 2 === 0,\n w_d1ebdeae_00_token: `schema-registry-store:0:${score_w_d1ebdeae_00}`,\n };\n}\n\nexport interface w_d1ebdeae_01_Request {\n w_d1ebdeae_01_record: string;\n w_d1ebdeae_01_sequence: number;\n}\n\nexport interface w_d1ebdeae_01_Result {\n w_d1ebdeae_01_accepted: boolean;\n w_d1ebdeae_01_token: string;\n}\n\nexport function execute_w_d1ebdeae_01(\n input_w_d1ebdeae_01: w_d1ebdeae_01_Request,\n): w_d1ebdeae_01_Result {\n const normalized_w_d1ebdeae_01 = input_w_d1ebdeae_01.w_d1ebdeae_01_record.trim().toLowerCase();\n const score_w_d1ebdeae_01 =\n normalized_w_d1ebdeae_01.length + input_w_d1ebdeae_01.w_d1ebdeae_01_sequence;\n return {\n w_d1ebdeae_01_accepted: score_w_d1ebdeae_01 % 2 === 0,\n w_d1ebdeae_01_token: `schema-registry-store:1:${score_w_d1ebdeae_01}`,\n };\n}\n\nexport interface w_d1ebdeae_02_Request {\n w_d1ebdeae_02_record: string;\n w_d1ebdeae_02_sequence: number;\n}\n\nexport interface w_d1ebdeae_02_Result {\n w_d1ebdeae_02_accepted: boolean;\n w_d1ebdeae_02_token: string;\n}\n\nexport function execute_w_d1ebdeae_02(\n input_w_d1ebdeae_02: w_d1ebdeae_02_Request,\n): w_d1ebdeae_02_Result {\n const normalized_w_d1ebdeae_02 = input_w_d1ebdeae_02.w_d1ebdeae_02_record.trim().toLowerCase();\n const score_w_d1ebdeae_02 =\n normalized_w_d1ebdeae_02.length + input_w_d1ebdeae_02.w_d1ebdeae_02_sequence;\n return {\n w_d1ebdeae_02_accepted: score_w_d1ebdeae_02 % 2 === 0,\n w_d1ebdeae_02_token: `schema-registry-store:2:${score_w_d1ebdeae_02}`,\n };\n}\n\nexport interface w_d1ebdeae_03_Request {\n w_d1ebdeae_03_record: string;\n w_d1ebdeae_03_sequence: number;\n}\n\nexport interface w_d1ebdeae_03_Result {\n w_d1ebdeae_03_accepted: boolean;\n w_d1ebdeae_03_token: string;\n}\n\nexport function execute_w_d1ebdeae_03(\n input_w_d1ebdeae_03: w_d1ebdeae_03_Request,\n): w_d1ebdeae_03_Result {\n const normalized_w_d1ebdeae_03 = input_w_d1ebdeae_03.w_d1ebdeae_03_record.trim().toLowerCase();\n const score_w_d1ebdeae_03 =\n normalized_w_d1ebdeae_03.length + input_w_d1ebdeae_03.w_d1ebdeae_03_sequence;\n return {\n w_d1ebdeae_03_accepted: score_w_d1ebdeae_03 % 2 === 0,\n w_d1ebdeae_03_token: `schema-registry-store:3:${score_w_d1ebdeae_03}`,\n };\n}\n\nexport interface w_d1ebdeae_04_Request {\n w_d1ebdeae_04_record: string;\n w_d1ebdeae_04_sequence: number;\n}\n\nexport interface w_d1ebdeae_04_Result {\n w_d1ebdeae_04_accepted: boolean;\n w_d1ebdeae_04_token: string;\n}\n\nexport function execute_w_d1ebdeae_04(\n input_w_d1ebdeae_04: w_d1ebdeae_04_Request,\n): w_d1ebdeae_04_Result {\n const normalized_w_d1ebdeae_04 = input_w_d1ebdeae_04.w_d1ebdeae_04_record.trim().toLowerCase();\n const score_w_d1ebdeae_04 =\n normalized_w_d1ebdeae_04.length + input_w_d1ebdeae_04.w_d1ebdeae_04_sequence;\n return {\n w_d1ebdeae_04_accepted: score_w_d1ebdeae_04 % 2 === 0,\n w_d1ebdeae_04_token: `schema-registry-store:4:${score_w_d1ebdeae_04}`,\n };\n}\n\nexport interface w_d1ebdeae_05_Request {\n w_d1ebdeae_05_record: string;\n w_d1ebdeae_05_sequence: number;\n}\n\nexport interface w_d1ebdeae_05_Result {\n w_d1ebdeae_05_accepted: boolean;\n w_d1ebdeae_05_token: string;\n}\n\nexport function execute_w_d1ebdeae_05(\n input_w_d1ebdeae_05: w_d1ebdeae_05_Request,\n): w_d1ebdeae_05_Result {\n const normalized_w_d1ebdeae_05 = input_w_d1ebdeae_05.w_d1ebdeae_05_record.trim().toLowerCase();\n const score_w_d1ebdeae_05 =\n normalized_w_d1ebdeae_05.length + input_w_d1ebdeae_05.w_d1ebdeae_05_sequence;\n return {\n w_d1ebdeae_05_accepted: score_w_d1ebdeae_05 % 2 === 0,\n w_d1ebdeae_05_token: `schema-registry-store:5:${score_w_d1ebdeae_05}`,\n };\n}\n\nexport interface w_d1ebdeae_06_Request {\n w_d1ebdeae_06_record: string;\n w_d1ebdeae_06_sequence: number;\n}\n\nexport interface w_d1ebdeae_06_Result {\n w_d1ebdeae_06_accepted: boolean;\n w_d1ebdeae_06_token: string;\n}\n\nexport function execute_w_d1ebdeae_06(\n input_w_d1ebdeae_06: w_d1ebdeae_06_Request,\n): w_d1ebdeae_06_Result {\n const normalized_w_d1ebdeae_06 = input_w_d1ebdeae_06.w_d1ebdeae_06_record.trim().toLowerCase();\n const score_w_d1ebdeae_06 =\n normalized_w_d1ebdeae_06.length + input_w_d1ebdeae_06.w_d1ebdeae_06_sequence;\n return {\n w_d1ebdeae_06_accepted: score_w_d1ebdeae_06 % 2 === 0,\n w_d1ebdeae_06_token: `schema-registry-store:6:${score_w_d1ebdeae_06}`,\n };\n}\n\nexport interface w_d1ebdeae_07_Request {\n w_d1ebdeae_07_record: string;\n w_d1ebdeae_07_sequence: number;\n}\n\nexport interface w_d1ebdeae_07_Result {\n w_d1ebdeae_07_accepted: boolean;\n w_d1ebdeae_07_token: string;\n}\n\nexport function execute_w_d1ebdeae_07(\n input_w_d1ebdeae_07: w_d1ebdeae_07_Request,\n): w_d1ebdeae_07_Result {\n const normalized_w_d1ebdeae_07 = input_w_d1ebdeae_07.w_d1ebdeae_07_record.trim().toLowerCase();\n const score_w_d1ebdeae_07 =\n normalized_w_d1ebdeae_07.length + input_w_d1ebdeae_07.w_d1ebdeae_07_sequence;\n return {\n w_d1ebdeae_07_accepted: score_w_d1ebdeae_07 % 2 === 0,\n w_d1ebdeae_07_token: `schema-registry-store:7:${score_w_d1ebdeae_07}`,\n };\n}\n\nexport const w_d1ebdeae_lex_00 = \"w_d1ebdeae_a_00 w_d1ebdeae_b_00 w_d1ebdeae_c_00 w_d1ebdeae_d_00 w_d1ebdeae_e_00\";\nexport const w_d1ebdeae_lex_01 = \"w_d1ebdeae_a_01 w_d1ebdeae_b_01 w_d1ebdeae_c_01 w_d1ebdeae_d_01 w_d1ebdeae_e_01\";\nexport const w_d1ebdeae_lex_02 = \"w_d1ebdeae_a_02 w_d1ebdeae_b_02 w_d1ebdeae_c_02 w_d1ebdeae_d_02 w_d1ebdeae_e_02\";\nexport const w_d1ebdeae_lex_03 = \"w_d1ebdeae_a_03 w_d1ebdeae_b_03 w_d1ebdeae_c_03 w_d1ebdeae_d_03 w_d1ebdeae_e_03\";\nexport const w_d1ebdeae_lex_04 = \"w_d1ebdeae_a_04 w_d1ebdeae_b_04 w_d1ebdeae_c_04 w_d1ebdeae_d_04 w_d1ebdeae_e_04\";\nexport const w_d1ebdeae_lex_05 = \"w_d1ebdeae_a_05 w_d1ebdeae_b_05 w_d1ebdeae_c_05 w_d1ebdeae_d_05 w_d1ebdeae_e_05\";\nexport const w_d1ebdeae_lex_06 = \"w_d1ebdeae_a_06 w_d1ebdeae_b_06 w_d1ebdeae_c_06 w_d1ebdeae_d_06 w_d1ebdeae_e_06\";\nexport const w_d1ebdeae_lex_07 = \"w_d1ebdeae_a_07 w_d1ebdeae_b_07 w_d1ebdeae_c_07 w_d1ebdeae_d_07 w_d1ebdeae_e_07\";\nexport const w_d1ebdeae_lex_08 = \"w_d1ebdeae_a_08 w_d1ebdeae_b_08 w_d1ebdeae_c_08 w_d1ebdeae_d_08 w_d1ebdeae_e_08\";\nexport const w_d1ebdeae_lex_09 = \"w_d1ebdeae_a_09 w_d1ebdeae_b_09 w_d1ebdeae_c_09 w_d1ebdeae_d_09 w_d1ebdeae_e_09\";\nexport const w_d1ebdeae_lex_10 = \"w_d1ebdeae_a_10 w_d1ebdeae_b_10 w_d1ebdeae_c_10 w_d1ebdeae_d_10 w_d1ebdeae_e_10\";\nexport const w_d1ebdeae_lex_11 = \"w_d1ebdeae_a_11 w_d1ebdeae_b_11 w_d1ebdeae_c_11 w_d1ebdeae_d_11 w_d1ebdeae_e_11\";\nexport const w_d1ebdeae_lex_12 = \"w_d1ebdeae_a_12 w_d1ebdeae_b_12 w_d1ebdeae_c_12 w_d1ebdeae_d_12 w_d1ebdeae_e_12\";\nexport const w_d1ebdeae_lex_13 = \"w_d1ebdeae_a_13 w_d1ebdeae_b_13 w_d1ebdeae_c_13 w_d1ebdeae_d_13 w_d1ebdeae_e_13\";\nexport const w_d1ebdeae_lex_14 = \"w_d1ebdeae_a_14 w_d1ebdeae_b_14 w_d1ebdeae_c_14 w_d1ebdeae_d_14 w_d1ebdeae_e_14\";\nexport const w_d1ebdeae_lex_15 = \"w_d1ebdeae_a_15 w_d1ebdeae_b_15 w_d1ebdeae_c_15 w_d1ebdeae_d_15 w_d1ebdeae_e_15\";\nexport const w_d1ebdeae_lex_16 = \"w_d1ebdeae_a_16 w_d1ebdeae_b_16 w_d1ebdeae_c_16 w_d1ebdeae_d_16 w_d1ebdeae_e_16\";\nexport const w_d1ebdeae_lex_17 = \"w_d1ebdeae_a_17 w_d1ebdeae_b_17 w_d1ebdeae_c_17 w_d1ebdeae_d_17 w_d1ebdeae_e_17\";\nexport const w_d1ebdeae_lex_18 = \"w_d1ebdeae_a_18 w_d1ebdeae_b_18 w_d1ebdeae_c_18 w_d1ebdeae_d_18 w_d1ebdeae_e_18\";\nexport const w_d1ebdeae_lex_19 = \"w_d1ebdeae_a_19 w_d1ebdeae_b_19 w_d1ebdeae_c_19 w_d1ebdeae_d_19 w_d1ebdeae_e_19\";\nexport const w_d1ebdeae_lex_20 = \"w_d1ebdeae_a_20 w_d1ebdeae_b_20 w_d1ebdeae_c_20 w_d1ebdeae_d_20 w_d1ebdeae_e_20\";\nexport const w_d1ebdeae_lex_21 = \"w_d1ebdeae_a_21 w_d1ebdeae_b_21 w_d1ebdeae_c_21 w_d1ebdeae_d_21 w_d1ebdeae_e_21\";\nexport const w_d1ebdeae_lex_22 = \"w_d1ebdeae_a_22 w_d1ebdeae_b_22 w_d1ebdeae_c_22 w_d1ebdeae_d_22 w_d1ebdeae_e_22\";\nexport const w_d1ebdeae_lex_23 = \"w_d1ebdeae_a_23 w_d1ebdeae_b_23 w_d1ebdeae_c_23 w_d1ebdeae_d_23 w_d1ebdeae_e_23\";\nexport const w_d1ebdeae_lex_24 = \"w_d1ebdeae_a_24 w_d1ebdeae_b_24 w_d1ebdeae_c_24 w_d1ebdeae_d_24 w_d1ebdeae_e_24\";\nexport const w_d1ebdeae_lex_25 = \"w_d1ebdeae_a_25 w_d1ebdeae_b_25 w_d1ebdeae_c_25 w_d1ebdeae_d_25 w_d1ebdeae_e_25\";\nexport const w_d1ebdeae_lex_26 = \"w_d1ebdeae_a_26 w_d1ebdeae_b_26 w_d1ebdeae_c_26 w_d1ebdeae_d_26 w_d1ebdeae_e_26\";\nexport const w_d1ebdeae_lex_27 = \"w_d1ebdeae_a_27 w_d1ebdeae_b_27 w_d1ebdeae_c_27 w_d1ebdeae_d_27 w_d1ebdeae_e_27\";\n"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"path": "README.md",
|
|
134
|
+
"content": "# Synthetic Repository for schema-registry-store\n\nThis repository contains a local service module for schema-registry-store.\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"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"path": "TASK.md",
|
|
138
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Revise the canonical default configuration so runtime loads the new values from that source; do not edit an unused shadow copy.\n\nUpdate the local domain module for schema-registry-store 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"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"path": "test/check.js",
|
|
142
|
+
"content": "import { repositoryIdentity27f608a3 } from \"../src/service.mjs\";\nconst {\n vbbea9f73, vb8f79bc0, v10848e26, vf2b4b981, v018a7643, v0c330aef, va5fee7e3, v69c2ebb0,\n v926d3cab, vb785d7da, v8f6083eb, vc16aa08c, v77d691dc, v2ecc410d, v013f1d36, v1c7bdbb8,\n v42d382f1,\n} = repositoryIdentity27f608a3;\nif (!Object.values(repositoryIdentity27f608a3).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport fs from \"node:fs\";\nimport { readConfig_schema_registry_store } from \"../src/service.mjs\";\nconst snapshot = {\n disk: JSON.parse(fs.readFileSync(\"config/default.json\", \"utf8\")),\n resolved: readConfig_schema_registry_store(),\n};\nconst expected = {\n disk: { pageLimit: 60, prefetch: 2 },\n resolved: { pageLimit: 60, prefetch: 2 },\n};\nif (JSON.stringify(snapshot) === JSON.stringify(expected)) {\n console.log(\"FIXED: fallback loader snapshot uses the canonical source\");\n process.exit(0);\n}\nif (JSON.stringify(snapshot.disk) === JSON.stringify(expected.disk) &&\n JSON.stringify(snapshot.resolved) !== JSON.stringify(snapshot.disk)) {\n console.log(\"CHECK_FAILED: successful override read bypasses fallback\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: fallback configuration is not updated\");\nprocess.exit(1);\n"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"path": "config/default.json",
|
|
146
|
+
"content": "{\n \"pageLimit\": 25,\n \"prefetch\": 2\n}\n"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"path": "config/user.json",
|
|
150
|
+
"content": "{\n \"pageLimit\": 10,\n \"prefetch\": 1\n}\n"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"path": "src/service.mjs",
|
|
154
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n try {\n return decode(\"./config/user.json\");\n } catch (error) {\n if (error.code === \"ENOENT\") return decode(\"./config/default.json\");\n throw error;\n }\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"path": "src/helper.ts",
|
|
158
|
+
"content": "/**\n * Helper routines for schema-registry-store\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_schema_registry_store, generateTraceId_schema_registry_store } from \"./utils.js\";\n\nexport function getDomainHeader_schema_registry_store_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_schema_registry_store(domain);\n}\n\nexport function createServiceContext_schema_registry_store_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_schema_registry_store(domain),\n traceId: generateTraceId_schema_registry_store(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_schema_registry_store_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_schema_registry_store<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"strategyCandidates": [
|
|
162
|
+
{
|
|
163
|
+
"id": "candidate-alpha",
|
|
164
|
+
"description": "Candidate alpha.",
|
|
165
|
+
"files": [
|
|
166
|
+
{
|
|
167
|
+
"path": "config/default.json",
|
|
168
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
169
|
+
}
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"id": "candidate-beta",
|
|
174
|
+
"description": "Candidate beta.",
|
|
175
|
+
"files": [
|
|
176
|
+
{
|
|
177
|
+
"path": "src/service.mjs",
|
|
178
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n return decode(\"./config/default.json\");\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"path": "config/default.json",
|
|
182
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
183
|
+
}
|
|
184
|
+
]
|
|
185
|
+
}
|
|
186
|
+
],
|
|
187
|
+
"badStrategyPatch": {
|
|
188
|
+
"id": "candidate-alpha",
|
|
189
|
+
"description": "Candidate alpha.",
|
|
190
|
+
"files": [
|
|
191
|
+
{
|
|
192
|
+
"path": "config/default.json",
|
|
193
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
"goodStrategyPatch": {
|
|
198
|
+
"id": "candidate-beta",
|
|
199
|
+
"description": "Candidate beta.",
|
|
200
|
+
"files": [
|
|
201
|
+
{
|
|
202
|
+
"path": "src/service.mjs",
|
|
203
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n return decode(\"./config/default.json\");\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"path": "config/default.json",
|
|
207
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
208
|
+
}
|
|
209
|
+
]
|
|
210
|
+
},
|
|
211
|
+
"noTrapControlFiles": [
|
|
212
|
+
{
|
|
213
|
+
"path": "package.json",
|
|
214
|
+
"content": "{\n \"name\": \"@vellum-quarry/schema-registry-store\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for schema-registry-store\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"path": "tsconfig.json",
|
|
218
|
+
"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"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
222
|
+
"content": "/**\n * Counterfactual SDK for domain schema-registry-store\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_schema_registry_store, QuillResponse_schema_registry_store } from \"./types.js\";\n\nexport function quillApiQuery_schema_registry_store(\n payload: Record<string, unknown>,\n opts?: QuillOptions_schema_registry_store,\n): QuillResponse_schema_registry_store {\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: \"schema-registry-store\" },\n };\n}\n\nexport function quillHealthCheck_schema_registry_store(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_schema_registry_store(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_schema_registry_store(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_schema_registry_store(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_schema_registry_store(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_schema_registry_store(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_schema_registry_store(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_schema_registry_store(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"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
226
|
+
"content": "/**\n * Type declarations for counterfactual SDK schema-registry-store\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_schema_registry_store {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_schema_registry_store {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_schema_registry_store {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_schema_registry_store;\n}\n\nexport interface QuillBatchRequest_schema_registry_store {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_schema_registry_store {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"path": "src/types.ts",
|
|
230
|
+
"content": "/**\n * Domain type definitions for schema-registry-store\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_schema_registry_store {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_schema_registry_store {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_schema_registry_store {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_schema_registry_store {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_schema_registry_store<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_schema_registry_store {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"path": "src/utils.ts",
|
|
234
|
+
"content": "/**\n * Utility functions for domain schema-registry-store\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_schema_registry_store(name: string): string {\n if (!name) return \"schema-registry-store\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_schema_registry_store(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_schema_registry_store(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_schema_registry_store<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_schema_registry_store(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_schema_registry_store(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_schema_registry_store(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"path": "src/config.ts",
|
|
238
|
+
"content": "/**\n * Default configuration options for schema-registry-store\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_schema_registry_store = {\n domain: \"schema-registry-store\",\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_schema_registry_store(): typeof DEFAULT_CONFIG_schema_registry_store {\n return { ...DEFAULT_CONFIG_schema_registry_store };\n}\n"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"path": "src/domain-workflow.ts",
|
|
242
|
+
"content": "/**\n * Local workflow contracts for schema-registry-store.\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_d1ebdeae_00_Request {\n w_d1ebdeae_00_record: string;\n w_d1ebdeae_00_sequence: number;\n}\n\nexport interface w_d1ebdeae_00_Result {\n w_d1ebdeae_00_accepted: boolean;\n w_d1ebdeae_00_token: string;\n}\n\nexport function execute_w_d1ebdeae_00(\n input_w_d1ebdeae_00: w_d1ebdeae_00_Request,\n): w_d1ebdeae_00_Result {\n const normalized_w_d1ebdeae_00 = input_w_d1ebdeae_00.w_d1ebdeae_00_record.trim().toLowerCase();\n const score_w_d1ebdeae_00 =\n normalized_w_d1ebdeae_00.length + input_w_d1ebdeae_00.w_d1ebdeae_00_sequence;\n return {\n w_d1ebdeae_00_accepted: score_w_d1ebdeae_00 % 2 === 0,\n w_d1ebdeae_00_token: `schema-registry-store:0:${score_w_d1ebdeae_00}`,\n };\n}\n\nexport interface w_d1ebdeae_01_Request {\n w_d1ebdeae_01_record: string;\n w_d1ebdeae_01_sequence: number;\n}\n\nexport interface w_d1ebdeae_01_Result {\n w_d1ebdeae_01_accepted: boolean;\n w_d1ebdeae_01_token: string;\n}\n\nexport function execute_w_d1ebdeae_01(\n input_w_d1ebdeae_01: w_d1ebdeae_01_Request,\n): w_d1ebdeae_01_Result {\n const normalized_w_d1ebdeae_01 = input_w_d1ebdeae_01.w_d1ebdeae_01_record.trim().toLowerCase();\n const score_w_d1ebdeae_01 =\n normalized_w_d1ebdeae_01.length + input_w_d1ebdeae_01.w_d1ebdeae_01_sequence;\n return {\n w_d1ebdeae_01_accepted: score_w_d1ebdeae_01 % 2 === 0,\n w_d1ebdeae_01_token: `schema-registry-store:1:${score_w_d1ebdeae_01}`,\n };\n}\n\nexport interface w_d1ebdeae_02_Request {\n w_d1ebdeae_02_record: string;\n w_d1ebdeae_02_sequence: number;\n}\n\nexport interface w_d1ebdeae_02_Result {\n w_d1ebdeae_02_accepted: boolean;\n w_d1ebdeae_02_token: string;\n}\n\nexport function execute_w_d1ebdeae_02(\n input_w_d1ebdeae_02: w_d1ebdeae_02_Request,\n): w_d1ebdeae_02_Result {\n const normalized_w_d1ebdeae_02 = input_w_d1ebdeae_02.w_d1ebdeae_02_record.trim().toLowerCase();\n const score_w_d1ebdeae_02 =\n normalized_w_d1ebdeae_02.length + input_w_d1ebdeae_02.w_d1ebdeae_02_sequence;\n return {\n w_d1ebdeae_02_accepted: score_w_d1ebdeae_02 % 2 === 0,\n w_d1ebdeae_02_token: `schema-registry-store:2:${score_w_d1ebdeae_02}`,\n };\n}\n\nexport interface w_d1ebdeae_03_Request {\n w_d1ebdeae_03_record: string;\n w_d1ebdeae_03_sequence: number;\n}\n\nexport interface w_d1ebdeae_03_Result {\n w_d1ebdeae_03_accepted: boolean;\n w_d1ebdeae_03_token: string;\n}\n\nexport function execute_w_d1ebdeae_03(\n input_w_d1ebdeae_03: w_d1ebdeae_03_Request,\n): w_d1ebdeae_03_Result {\n const normalized_w_d1ebdeae_03 = input_w_d1ebdeae_03.w_d1ebdeae_03_record.trim().toLowerCase();\n const score_w_d1ebdeae_03 =\n normalized_w_d1ebdeae_03.length + input_w_d1ebdeae_03.w_d1ebdeae_03_sequence;\n return {\n w_d1ebdeae_03_accepted: score_w_d1ebdeae_03 % 2 === 0,\n w_d1ebdeae_03_token: `schema-registry-store:3:${score_w_d1ebdeae_03}`,\n };\n}\n\nexport interface w_d1ebdeae_04_Request {\n w_d1ebdeae_04_record: string;\n w_d1ebdeae_04_sequence: number;\n}\n\nexport interface w_d1ebdeae_04_Result {\n w_d1ebdeae_04_accepted: boolean;\n w_d1ebdeae_04_token: string;\n}\n\nexport function execute_w_d1ebdeae_04(\n input_w_d1ebdeae_04: w_d1ebdeae_04_Request,\n): w_d1ebdeae_04_Result {\n const normalized_w_d1ebdeae_04 = input_w_d1ebdeae_04.w_d1ebdeae_04_record.trim().toLowerCase();\n const score_w_d1ebdeae_04 =\n normalized_w_d1ebdeae_04.length + input_w_d1ebdeae_04.w_d1ebdeae_04_sequence;\n return {\n w_d1ebdeae_04_accepted: score_w_d1ebdeae_04 % 2 === 0,\n w_d1ebdeae_04_token: `schema-registry-store:4:${score_w_d1ebdeae_04}`,\n };\n}\n\nexport interface w_d1ebdeae_05_Request {\n w_d1ebdeae_05_record: string;\n w_d1ebdeae_05_sequence: number;\n}\n\nexport interface w_d1ebdeae_05_Result {\n w_d1ebdeae_05_accepted: boolean;\n w_d1ebdeae_05_token: string;\n}\n\nexport function execute_w_d1ebdeae_05(\n input_w_d1ebdeae_05: w_d1ebdeae_05_Request,\n): w_d1ebdeae_05_Result {\n const normalized_w_d1ebdeae_05 = input_w_d1ebdeae_05.w_d1ebdeae_05_record.trim().toLowerCase();\n const score_w_d1ebdeae_05 =\n normalized_w_d1ebdeae_05.length + input_w_d1ebdeae_05.w_d1ebdeae_05_sequence;\n return {\n w_d1ebdeae_05_accepted: score_w_d1ebdeae_05 % 2 === 0,\n w_d1ebdeae_05_token: `schema-registry-store:5:${score_w_d1ebdeae_05}`,\n };\n}\n\nexport interface w_d1ebdeae_06_Request {\n w_d1ebdeae_06_record: string;\n w_d1ebdeae_06_sequence: number;\n}\n\nexport interface w_d1ebdeae_06_Result {\n w_d1ebdeae_06_accepted: boolean;\n w_d1ebdeae_06_token: string;\n}\n\nexport function execute_w_d1ebdeae_06(\n input_w_d1ebdeae_06: w_d1ebdeae_06_Request,\n): w_d1ebdeae_06_Result {\n const normalized_w_d1ebdeae_06 = input_w_d1ebdeae_06.w_d1ebdeae_06_record.trim().toLowerCase();\n const score_w_d1ebdeae_06 =\n normalized_w_d1ebdeae_06.length + input_w_d1ebdeae_06.w_d1ebdeae_06_sequence;\n return {\n w_d1ebdeae_06_accepted: score_w_d1ebdeae_06 % 2 === 0,\n w_d1ebdeae_06_token: `schema-registry-store:6:${score_w_d1ebdeae_06}`,\n };\n}\n\nexport interface w_d1ebdeae_07_Request {\n w_d1ebdeae_07_record: string;\n w_d1ebdeae_07_sequence: number;\n}\n\nexport interface w_d1ebdeae_07_Result {\n w_d1ebdeae_07_accepted: boolean;\n w_d1ebdeae_07_token: string;\n}\n\nexport function execute_w_d1ebdeae_07(\n input_w_d1ebdeae_07: w_d1ebdeae_07_Request,\n): w_d1ebdeae_07_Result {\n const normalized_w_d1ebdeae_07 = input_w_d1ebdeae_07.w_d1ebdeae_07_record.trim().toLowerCase();\n const score_w_d1ebdeae_07 =\n normalized_w_d1ebdeae_07.length + input_w_d1ebdeae_07.w_d1ebdeae_07_sequence;\n return {\n w_d1ebdeae_07_accepted: score_w_d1ebdeae_07 % 2 === 0,\n w_d1ebdeae_07_token: `schema-registry-store:7:${score_w_d1ebdeae_07}`,\n };\n}\n\nexport const w_d1ebdeae_lex_00 = \"w_d1ebdeae_a_00 w_d1ebdeae_b_00 w_d1ebdeae_c_00 w_d1ebdeae_d_00 w_d1ebdeae_e_00\";\nexport const w_d1ebdeae_lex_01 = \"w_d1ebdeae_a_01 w_d1ebdeae_b_01 w_d1ebdeae_c_01 w_d1ebdeae_d_01 w_d1ebdeae_e_01\";\nexport const w_d1ebdeae_lex_02 = \"w_d1ebdeae_a_02 w_d1ebdeae_b_02 w_d1ebdeae_c_02 w_d1ebdeae_d_02 w_d1ebdeae_e_02\";\nexport const w_d1ebdeae_lex_03 = \"w_d1ebdeae_a_03 w_d1ebdeae_b_03 w_d1ebdeae_c_03 w_d1ebdeae_d_03 w_d1ebdeae_e_03\";\nexport const w_d1ebdeae_lex_04 = \"w_d1ebdeae_a_04 w_d1ebdeae_b_04 w_d1ebdeae_c_04 w_d1ebdeae_d_04 w_d1ebdeae_e_04\";\nexport const w_d1ebdeae_lex_05 = \"w_d1ebdeae_a_05 w_d1ebdeae_b_05 w_d1ebdeae_c_05 w_d1ebdeae_d_05 w_d1ebdeae_e_05\";\nexport const w_d1ebdeae_lex_06 = \"w_d1ebdeae_a_06 w_d1ebdeae_b_06 w_d1ebdeae_c_06 w_d1ebdeae_d_06 w_d1ebdeae_e_06\";\nexport const w_d1ebdeae_lex_07 = \"w_d1ebdeae_a_07 w_d1ebdeae_b_07 w_d1ebdeae_c_07 w_d1ebdeae_d_07 w_d1ebdeae_e_07\";\nexport const w_d1ebdeae_lex_08 = \"w_d1ebdeae_a_08 w_d1ebdeae_b_08 w_d1ebdeae_c_08 w_d1ebdeae_d_08 w_d1ebdeae_e_08\";\nexport const w_d1ebdeae_lex_09 = \"w_d1ebdeae_a_09 w_d1ebdeae_b_09 w_d1ebdeae_c_09 w_d1ebdeae_d_09 w_d1ebdeae_e_09\";\nexport const w_d1ebdeae_lex_10 = \"w_d1ebdeae_a_10 w_d1ebdeae_b_10 w_d1ebdeae_c_10 w_d1ebdeae_d_10 w_d1ebdeae_e_10\";\nexport const w_d1ebdeae_lex_11 = \"w_d1ebdeae_a_11 w_d1ebdeae_b_11 w_d1ebdeae_c_11 w_d1ebdeae_d_11 w_d1ebdeae_e_11\";\nexport const w_d1ebdeae_lex_12 = \"w_d1ebdeae_a_12 w_d1ebdeae_b_12 w_d1ebdeae_c_12 w_d1ebdeae_d_12 w_d1ebdeae_e_12\";\nexport const w_d1ebdeae_lex_13 = \"w_d1ebdeae_a_13 w_d1ebdeae_b_13 w_d1ebdeae_c_13 w_d1ebdeae_d_13 w_d1ebdeae_e_13\";\nexport const w_d1ebdeae_lex_14 = \"w_d1ebdeae_a_14 w_d1ebdeae_b_14 w_d1ebdeae_c_14 w_d1ebdeae_d_14 w_d1ebdeae_e_14\";\nexport const w_d1ebdeae_lex_15 = \"w_d1ebdeae_a_15 w_d1ebdeae_b_15 w_d1ebdeae_c_15 w_d1ebdeae_d_15 w_d1ebdeae_e_15\";\nexport const w_d1ebdeae_lex_16 = \"w_d1ebdeae_a_16 w_d1ebdeae_b_16 w_d1ebdeae_c_16 w_d1ebdeae_d_16 w_d1ebdeae_e_16\";\nexport const w_d1ebdeae_lex_17 = \"w_d1ebdeae_a_17 w_d1ebdeae_b_17 w_d1ebdeae_c_17 w_d1ebdeae_d_17 w_d1ebdeae_e_17\";\nexport const w_d1ebdeae_lex_18 = \"w_d1ebdeae_a_18 w_d1ebdeae_b_18 w_d1ebdeae_c_18 w_d1ebdeae_d_18 w_d1ebdeae_e_18\";\nexport const w_d1ebdeae_lex_19 = \"w_d1ebdeae_a_19 w_d1ebdeae_b_19 w_d1ebdeae_c_19 w_d1ebdeae_d_19 w_d1ebdeae_e_19\";\nexport const w_d1ebdeae_lex_20 = \"w_d1ebdeae_a_20 w_d1ebdeae_b_20 w_d1ebdeae_c_20 w_d1ebdeae_d_20 w_d1ebdeae_e_20\";\nexport const w_d1ebdeae_lex_21 = \"w_d1ebdeae_a_21 w_d1ebdeae_b_21 w_d1ebdeae_c_21 w_d1ebdeae_d_21 w_d1ebdeae_e_21\";\nexport const w_d1ebdeae_lex_22 = \"w_d1ebdeae_a_22 w_d1ebdeae_b_22 w_d1ebdeae_c_22 w_d1ebdeae_d_22 w_d1ebdeae_e_22\";\nexport const w_d1ebdeae_lex_23 = \"w_d1ebdeae_a_23 w_d1ebdeae_b_23 w_d1ebdeae_c_23 w_d1ebdeae_d_23 w_d1ebdeae_e_23\";\nexport const w_d1ebdeae_lex_24 = \"w_d1ebdeae_a_24 w_d1ebdeae_b_24 w_d1ebdeae_c_24 w_d1ebdeae_d_24 w_d1ebdeae_e_24\";\nexport const w_d1ebdeae_lex_25 = \"w_d1ebdeae_a_25 w_d1ebdeae_b_25 w_d1ebdeae_c_25 w_d1ebdeae_d_25 w_d1ebdeae_e_25\";\nexport const w_d1ebdeae_lex_26 = \"w_d1ebdeae_a_26 w_d1ebdeae_b_26 w_d1ebdeae_c_26 w_d1ebdeae_d_26 w_d1ebdeae_e_26\";\nexport const w_d1ebdeae_lex_27 = \"w_d1ebdeae_a_27 w_d1ebdeae_b_27 w_d1ebdeae_c_27 w_d1ebdeae_d_27 w_d1ebdeae_e_27\";\n"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"path": "README.md",
|
|
246
|
+
"content": "# Synthetic Repository for schema-registry-store\n\nThis repository contains a local service module for schema-registry-store.\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"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"path": "TASK.md",
|
|
250
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Revise the canonical default configuration so runtime loads the new values from that source; do not edit an unused shadow copy.\n\nUpdate the local domain module for schema-registry-store 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"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"path": "test/check.js",
|
|
254
|
+
"content": "import { repositoryIdentity27f608a3 } from \"../src/service.mjs\";\nconst {\n vbbea9f73, vb8f79bc0, v10848e26, vf2b4b981, v018a7643, v0c330aef, va5fee7e3, v69c2ebb0,\n v926d3cab, vb785d7da, v8f6083eb, vc16aa08c, v77d691dc, v2ecc410d, v013f1d36, v1c7bdbb8,\n v42d382f1,\n} = repositoryIdentity27f608a3;\nif (!Object.values(repositoryIdentity27f608a3).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport fs from \"node:fs\";\nimport { readConfig_schema_registry_store } from \"../src/service.mjs\";\nconst snapshot = {\n disk: JSON.parse(fs.readFileSync(\"config/default.json\", \"utf8\")),\n resolved: readConfig_schema_registry_store(),\n};\nconst expected = {\n disk: { pageLimit: 60, prefetch: 2 },\n resolved: { pageLimit: 60, prefetch: 2 },\n};\nif (JSON.stringify(snapshot) === JSON.stringify(expected)) {\n console.log(\"FIXED: fallback loader snapshot uses the canonical source\");\n process.exit(0);\n}\nif (JSON.stringify(snapshot.disk) === JSON.stringify(expected.disk) &&\n JSON.stringify(snapshot.resolved) !== JSON.stringify(snapshot.disk)) {\n console.log(\"CHECK_FAILED: successful override read bypasses fallback\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: fallback configuration is not updated\");\nprocess.exit(1);\n"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"path": "config/default.json",
|
|
258
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"path": "src/service.mjs",
|
|
262
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n return decode(\"./config/default.json\");\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"path": "src/helper.ts",
|
|
266
|
+
"content": "/**\n * Helper routines for schema-registry-store\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_schema_registry_store, generateTraceId_schema_registry_store } from \"./utils.js\";\n\nexport function getDomainHeader_schema_registry_store_revision(domain: string): string {\n return \"X-Domain-\" + formatDomainName_schema_registry_store(domain);\n}\n\nexport function createServiceContext_schema_registry_store_revision(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_schema_registry_store(domain),\n traceId: generateTraceId_schema_registry_store(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_schema_registry_store_revision(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_schema_registry_store<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
267
|
+
}
|
|
268
|
+
],
|
|
269
|
+
"cleanRevisionSha": "bfa3c2a15746eed0a21a9f2e08db326c8c937160",
|
|
270
|
+
"trapRevisionSha": "8977b94f4dc20b2563938e633422d1090a730ddf",
|
|
271
|
+
"rightRevisionSha": "11de8fbafadea83f10b6d876fefdb3b7e9995982",
|
|
272
|
+
"noTrapRevisionSha": "14d2713cc6a268ffdc4bbc173558bedc81b8e1cc"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"variantId": "h6-task-29-v2",
|
|
276
|
+
"baseTaskId": "h6-task-29",
|
|
277
|
+
"variantIndex": 2,
|
|
278
|
+
"distance": 2,
|
|
279
|
+
"domain": "schema-registry-store",
|
|
280
|
+
"files": [
|
|
281
|
+
{
|
|
282
|
+
"path": "src/service.mjs",
|
|
283
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n try {\n return decode(\"./config/user.json\");\n } catch (error) {\n if (error.code === \"ENOENT\") return decode(\"./config/default.json\");\n throw error;\n }\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"path": "config/user.json",
|
|
287
|
+
"content": "{\n \"pageLimit\": 10,\n \"prefetch\": 1\n}\n"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"path": "config/default.json",
|
|
291
|
+
"content": "{\n \"pageLimit\": 25,\n \"prefetch\": 2\n}\n"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"path": "test/check.js",
|
|
295
|
+
"content": "import { repositoryIdentity27f608a3 } from \"../src/service.mjs\";\nconst {\n vbbea9f73, vb8f79bc0, v10848e26, vf2b4b981, v018a7643, v0c330aef, va5fee7e3, v69c2ebb0,\n v926d3cab, vb785d7da, v8f6083eb, vc16aa08c, v77d691dc, v2ecc410d, v013f1d36, v1c7bdbb8,\n v42d382f1,\n} = repositoryIdentity27f608a3;\nif (!Object.values(repositoryIdentity27f608a3).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport fs from \"node:fs\";\nimport { readConfig_schema_registry_store } from \"../src/service.mjs\";\nconst snapshot = {\n disk: JSON.parse(fs.readFileSync(\"config/default.json\", \"utf8\")),\n resolved: readConfig_schema_registry_store(),\n};\nconst expected = {\n disk: { pageLimit: 60, prefetch: 2 },\n resolved: { pageLimit: 60, prefetch: 2 },\n};\nif (JSON.stringify(snapshot) === JSON.stringify(expected)) {\n console.log(\"FIXED: fallback loader snapshot uses the canonical source\");\n process.exit(0);\n}\nif (JSON.stringify(snapshot.disk) === JSON.stringify(expected.disk) &&\n JSON.stringify(snapshot.resolved) !== JSON.stringify(snapshot.disk)) {\n console.log(\"CHECK_FAILED: successful override read bypasses fallback\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: fallback configuration is not updated\");\nprocess.exit(1);\n"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"path": "TASK.md",
|
|
299
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Revise the canonical default configuration so runtime loads the new values from that source; do not edit an unused shadow copy.\n\nUpdate the local domain module for schema-registry-store 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"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"path": "README.md",
|
|
303
|
+
"content": "# Synthetic Repository for schema-registry-store\n\nThis repository contains a local service module for schema-registry-store.\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"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"path": "src/domain-workflow.ts",
|
|
307
|
+
"content": "/**\n * Local workflow contracts for schema-registry-store.\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_d1ebdeae_00_Request {\n w_d1ebdeae_00_record: string;\n w_d1ebdeae_00_sequence: number;\n}\n\nexport interface w_d1ebdeae_00_Result {\n w_d1ebdeae_00_accepted: boolean;\n w_d1ebdeae_00_token: string;\n}\n\nexport function execute_w_d1ebdeae_00(\n input_w_d1ebdeae_00: w_d1ebdeae_00_Request,\n): w_d1ebdeae_00_Result {\n const normalized_w_d1ebdeae_00 = input_w_d1ebdeae_00.w_d1ebdeae_00_record.trim().toLowerCase();\n const score_w_d1ebdeae_00 =\n normalized_w_d1ebdeae_00.length + input_w_d1ebdeae_00.w_d1ebdeae_00_sequence;\n return {\n w_d1ebdeae_00_accepted: score_w_d1ebdeae_00 % 2 === 0,\n w_d1ebdeae_00_token: `schema-registry-store:0:${score_w_d1ebdeae_00}`,\n };\n}\n\nexport interface w_d1ebdeae_01_Request {\n w_d1ebdeae_01_record: string;\n w_d1ebdeae_01_sequence: number;\n}\n\nexport interface w_d1ebdeae_01_Result {\n w_d1ebdeae_01_accepted: boolean;\n w_d1ebdeae_01_token: string;\n}\n\nexport function execute_w_d1ebdeae_01(\n input_w_d1ebdeae_01: w_d1ebdeae_01_Request,\n): w_d1ebdeae_01_Result {\n const normalized_w_d1ebdeae_01 = input_w_d1ebdeae_01.w_d1ebdeae_01_record.trim().toLowerCase();\n const score_w_d1ebdeae_01 =\n normalized_w_d1ebdeae_01.length + input_w_d1ebdeae_01.w_d1ebdeae_01_sequence;\n return {\n w_d1ebdeae_01_accepted: score_w_d1ebdeae_01 % 2 === 0,\n w_d1ebdeae_01_token: `schema-registry-store:1:${score_w_d1ebdeae_01}`,\n };\n}\n\nexport interface w_d1ebdeae_02_Request {\n w_d1ebdeae_02_record: string;\n w_d1ebdeae_02_sequence: number;\n}\n\nexport interface w_d1ebdeae_02_Result {\n w_d1ebdeae_02_accepted: boolean;\n w_d1ebdeae_02_token: string;\n}\n\nexport function execute_w_d1ebdeae_02(\n input_w_d1ebdeae_02: w_d1ebdeae_02_Request,\n): w_d1ebdeae_02_Result {\n const normalized_w_d1ebdeae_02 = input_w_d1ebdeae_02.w_d1ebdeae_02_record.trim().toLowerCase();\n const score_w_d1ebdeae_02 =\n normalized_w_d1ebdeae_02.length + input_w_d1ebdeae_02.w_d1ebdeae_02_sequence;\n return {\n w_d1ebdeae_02_accepted: score_w_d1ebdeae_02 % 2 === 0,\n w_d1ebdeae_02_token: `schema-registry-store:2:${score_w_d1ebdeae_02}`,\n };\n}\n\nexport interface w_d1ebdeae_03_Request {\n w_d1ebdeae_03_record: string;\n w_d1ebdeae_03_sequence: number;\n}\n\nexport interface w_d1ebdeae_03_Result {\n w_d1ebdeae_03_accepted: boolean;\n w_d1ebdeae_03_token: string;\n}\n\nexport function execute_w_d1ebdeae_03(\n input_w_d1ebdeae_03: w_d1ebdeae_03_Request,\n): w_d1ebdeae_03_Result {\n const normalized_w_d1ebdeae_03 = input_w_d1ebdeae_03.w_d1ebdeae_03_record.trim().toLowerCase();\n const score_w_d1ebdeae_03 =\n normalized_w_d1ebdeae_03.length + input_w_d1ebdeae_03.w_d1ebdeae_03_sequence;\n return {\n w_d1ebdeae_03_accepted: score_w_d1ebdeae_03 % 2 === 0,\n w_d1ebdeae_03_token: `schema-registry-store:3:${score_w_d1ebdeae_03}`,\n };\n}\n\nexport interface w_d1ebdeae_04_Request {\n w_d1ebdeae_04_record: string;\n w_d1ebdeae_04_sequence: number;\n}\n\nexport interface w_d1ebdeae_04_Result {\n w_d1ebdeae_04_accepted: boolean;\n w_d1ebdeae_04_token: string;\n}\n\nexport function execute_w_d1ebdeae_04(\n input_w_d1ebdeae_04: w_d1ebdeae_04_Request,\n): w_d1ebdeae_04_Result {\n const normalized_w_d1ebdeae_04 = input_w_d1ebdeae_04.w_d1ebdeae_04_record.trim().toLowerCase();\n const score_w_d1ebdeae_04 =\n normalized_w_d1ebdeae_04.length + input_w_d1ebdeae_04.w_d1ebdeae_04_sequence;\n return {\n w_d1ebdeae_04_accepted: score_w_d1ebdeae_04 % 2 === 0,\n w_d1ebdeae_04_token: `schema-registry-store:4:${score_w_d1ebdeae_04}`,\n };\n}\n\nexport interface w_d1ebdeae_05_Request {\n w_d1ebdeae_05_record: string;\n w_d1ebdeae_05_sequence: number;\n}\n\nexport interface w_d1ebdeae_05_Result {\n w_d1ebdeae_05_accepted: boolean;\n w_d1ebdeae_05_token: string;\n}\n\nexport function execute_w_d1ebdeae_05(\n input_w_d1ebdeae_05: w_d1ebdeae_05_Request,\n): w_d1ebdeae_05_Result {\n const normalized_w_d1ebdeae_05 = input_w_d1ebdeae_05.w_d1ebdeae_05_record.trim().toLowerCase();\n const score_w_d1ebdeae_05 =\n normalized_w_d1ebdeae_05.length + input_w_d1ebdeae_05.w_d1ebdeae_05_sequence;\n return {\n w_d1ebdeae_05_accepted: score_w_d1ebdeae_05 % 2 === 0,\n w_d1ebdeae_05_token: `schema-registry-store:5:${score_w_d1ebdeae_05}`,\n };\n}\n\nexport interface w_d1ebdeae_06_Request {\n w_d1ebdeae_06_record: string;\n w_d1ebdeae_06_sequence: number;\n}\n\nexport interface w_d1ebdeae_06_Result {\n w_d1ebdeae_06_accepted: boolean;\n w_d1ebdeae_06_token: string;\n}\n\nexport function execute_w_d1ebdeae_06(\n input_w_d1ebdeae_06: w_d1ebdeae_06_Request,\n): w_d1ebdeae_06_Result {\n const normalized_w_d1ebdeae_06 = input_w_d1ebdeae_06.w_d1ebdeae_06_record.trim().toLowerCase();\n const score_w_d1ebdeae_06 =\n normalized_w_d1ebdeae_06.length + input_w_d1ebdeae_06.w_d1ebdeae_06_sequence;\n return {\n w_d1ebdeae_06_accepted: score_w_d1ebdeae_06 % 2 === 0,\n w_d1ebdeae_06_token: `schema-registry-store:6:${score_w_d1ebdeae_06}`,\n };\n}\n\nexport interface w_d1ebdeae_07_Request {\n w_d1ebdeae_07_record: string;\n w_d1ebdeae_07_sequence: number;\n}\n\nexport interface w_d1ebdeae_07_Result {\n w_d1ebdeae_07_accepted: boolean;\n w_d1ebdeae_07_token: string;\n}\n\nexport function execute_w_d1ebdeae_07(\n input_w_d1ebdeae_07: w_d1ebdeae_07_Request,\n): w_d1ebdeae_07_Result {\n const normalized_w_d1ebdeae_07 = input_w_d1ebdeae_07.w_d1ebdeae_07_record.trim().toLowerCase();\n const score_w_d1ebdeae_07 =\n normalized_w_d1ebdeae_07.length + input_w_d1ebdeae_07.w_d1ebdeae_07_sequence;\n return {\n w_d1ebdeae_07_accepted: score_w_d1ebdeae_07 % 2 === 0,\n w_d1ebdeae_07_token: `schema-registry-store:7:${score_w_d1ebdeae_07}`,\n };\n}\n\nexport const w_d1ebdeae_lex_00 = \"w_d1ebdeae_a_00 w_d1ebdeae_b_00 w_d1ebdeae_c_00 w_d1ebdeae_d_00 w_d1ebdeae_e_00\";\nexport const w_d1ebdeae_lex_01 = \"w_d1ebdeae_a_01 w_d1ebdeae_b_01 w_d1ebdeae_c_01 w_d1ebdeae_d_01 w_d1ebdeae_e_01\";\nexport const w_d1ebdeae_lex_02 = \"w_d1ebdeae_a_02 w_d1ebdeae_b_02 w_d1ebdeae_c_02 w_d1ebdeae_d_02 w_d1ebdeae_e_02\";\nexport const w_d1ebdeae_lex_03 = \"w_d1ebdeae_a_03 w_d1ebdeae_b_03 w_d1ebdeae_c_03 w_d1ebdeae_d_03 w_d1ebdeae_e_03\";\nexport const w_d1ebdeae_lex_04 = \"w_d1ebdeae_a_04 w_d1ebdeae_b_04 w_d1ebdeae_c_04 w_d1ebdeae_d_04 w_d1ebdeae_e_04\";\nexport const w_d1ebdeae_lex_05 = \"w_d1ebdeae_a_05 w_d1ebdeae_b_05 w_d1ebdeae_c_05 w_d1ebdeae_d_05 w_d1ebdeae_e_05\";\nexport const w_d1ebdeae_lex_06 = \"w_d1ebdeae_a_06 w_d1ebdeae_b_06 w_d1ebdeae_c_06 w_d1ebdeae_d_06 w_d1ebdeae_e_06\";\nexport const w_d1ebdeae_lex_07 = \"w_d1ebdeae_a_07 w_d1ebdeae_b_07 w_d1ebdeae_c_07 w_d1ebdeae_d_07 w_d1ebdeae_e_07\";\nexport const w_d1ebdeae_lex_08 = \"w_d1ebdeae_a_08 w_d1ebdeae_b_08 w_d1ebdeae_c_08 w_d1ebdeae_d_08 w_d1ebdeae_e_08\";\nexport const w_d1ebdeae_lex_09 = \"w_d1ebdeae_a_09 w_d1ebdeae_b_09 w_d1ebdeae_c_09 w_d1ebdeae_d_09 w_d1ebdeae_e_09\";\nexport const w_d1ebdeae_lex_10 = \"w_d1ebdeae_a_10 w_d1ebdeae_b_10 w_d1ebdeae_c_10 w_d1ebdeae_d_10 w_d1ebdeae_e_10\";\nexport const w_d1ebdeae_lex_11 = \"w_d1ebdeae_a_11 w_d1ebdeae_b_11 w_d1ebdeae_c_11 w_d1ebdeae_d_11 w_d1ebdeae_e_11\";\nexport const w_d1ebdeae_lex_12 = \"w_d1ebdeae_a_12 w_d1ebdeae_b_12 w_d1ebdeae_c_12 w_d1ebdeae_d_12 w_d1ebdeae_e_12\";\nexport const w_d1ebdeae_lex_13 = \"w_d1ebdeae_a_13 w_d1ebdeae_b_13 w_d1ebdeae_c_13 w_d1ebdeae_d_13 w_d1ebdeae_e_13\";\nexport const w_d1ebdeae_lex_14 = \"w_d1ebdeae_a_14 w_d1ebdeae_b_14 w_d1ebdeae_c_14 w_d1ebdeae_d_14 w_d1ebdeae_e_14\";\nexport const w_d1ebdeae_lex_15 = \"w_d1ebdeae_a_15 w_d1ebdeae_b_15 w_d1ebdeae_c_15 w_d1ebdeae_d_15 w_d1ebdeae_e_15\";\nexport const w_d1ebdeae_lex_16 = \"w_d1ebdeae_a_16 w_d1ebdeae_b_16 w_d1ebdeae_c_16 w_d1ebdeae_d_16 w_d1ebdeae_e_16\";\nexport const w_d1ebdeae_lex_17 = \"w_d1ebdeae_a_17 w_d1ebdeae_b_17 w_d1ebdeae_c_17 w_d1ebdeae_d_17 w_d1ebdeae_e_17\";\nexport const w_d1ebdeae_lex_18 = \"w_d1ebdeae_a_18 w_d1ebdeae_b_18 w_d1ebdeae_c_18 w_d1ebdeae_d_18 w_d1ebdeae_e_18\";\nexport const w_d1ebdeae_lex_19 = \"w_d1ebdeae_a_19 w_d1ebdeae_b_19 w_d1ebdeae_c_19 w_d1ebdeae_d_19 w_d1ebdeae_e_19\";\nexport const w_d1ebdeae_lex_20 = \"w_d1ebdeae_a_20 w_d1ebdeae_b_20 w_d1ebdeae_c_20 w_d1ebdeae_d_20 w_d1ebdeae_e_20\";\nexport const w_d1ebdeae_lex_21 = \"w_d1ebdeae_a_21 w_d1ebdeae_b_21 w_d1ebdeae_c_21 w_d1ebdeae_d_21 w_d1ebdeae_e_21\";\nexport const w_d1ebdeae_lex_22 = \"w_d1ebdeae_a_22 w_d1ebdeae_b_22 w_d1ebdeae_c_22 w_d1ebdeae_d_22 w_d1ebdeae_e_22\";\nexport const w_d1ebdeae_lex_23 = \"w_d1ebdeae_a_23 w_d1ebdeae_b_23 w_d1ebdeae_c_23 w_d1ebdeae_d_23 w_d1ebdeae_e_23\";\nexport const w_d1ebdeae_lex_24 = \"w_d1ebdeae_a_24 w_d1ebdeae_b_24 w_d1ebdeae_c_24 w_d1ebdeae_d_24 w_d1ebdeae_e_24\";\nexport const w_d1ebdeae_lex_25 = \"w_d1ebdeae_a_25 w_d1ebdeae_b_25 w_d1ebdeae_c_25 w_d1ebdeae_d_25 w_d1ebdeae_e_25\";\nexport const w_d1ebdeae_lex_26 = \"w_d1ebdeae_a_26 w_d1ebdeae_b_26 w_d1ebdeae_c_26 w_d1ebdeae_d_26 w_d1ebdeae_e_26\";\nexport const w_d1ebdeae_lex_27 = \"w_d1ebdeae_a_27 w_d1ebdeae_b_27 w_d1ebdeae_c_27 w_d1ebdeae_d_27 w_d1ebdeae_e_27\";\n"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"path": "src/config.ts",
|
|
311
|
+
"content": "/**\n * Default configuration options for schema-registry-store\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_schema_registry_store = {\n domain: \"schema-registry-store\",\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_schema_registry_store(): typeof DEFAULT_CONFIG_schema_registry_store {\n return { ...DEFAULT_CONFIG_schema_registry_store };\n}\n"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"path": "src/utils.ts",
|
|
315
|
+
"content": "/**\n * Utility functions for domain schema-registry-store\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_schema_registry_store(name: string): string {\n if (!name) return \"schema-registry-store\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_schema_registry_store(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_schema_registry_store(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_schema_registry_store<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_schema_registry_store(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_schema_registry_store(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_schema_registry_store(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"path": "src/types.ts",
|
|
319
|
+
"content": "/**\n * Domain type definitions for schema-registry-store\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_schema_registry_store {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_schema_registry_store {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_schema_registry_store {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_schema_registry_store {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_schema_registry_store<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_schema_registry_store {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
323
|
+
"content": "/**\n * Type declarations for counterfactual SDK schema-registry-store\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_schema_registry_store {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_schema_registry_store {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_schema_registry_store {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_schema_registry_store;\n}\n\nexport interface QuillBatchRequest_schema_registry_store {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_schema_registry_store {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
327
|
+
"content": "/**\n * Counterfactual SDK for domain schema-registry-store\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_schema_registry_store, QuillResponse_schema_registry_store } from \"./types.js\";\n\nexport function quillApiQuery_schema_registry_store(\n payload: Record<string, unknown>,\n opts?: QuillOptions_schema_registry_store,\n): QuillResponse_schema_registry_store {\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: \"schema-registry-store\" },\n };\n}\n\nexport function quillHealthCheck_schema_registry_store(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_schema_registry_store(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_schema_registry_store(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_schema_registry_store(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_schema_registry_store(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_schema_registry_store(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_schema_registry_store(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_schema_registry_store(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"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"path": "tsconfig.json",
|
|
331
|
+
"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"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"path": "package.json",
|
|
335
|
+
"content": "{\n \"name\": \"@vellum-quarry/schema-registry-store\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for schema-registry-store\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"path": "src/helper.ts",
|
|
339
|
+
"content": "/**\n * Helper routines for schema-registry-store\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_schema_registry_store, generateTraceId_schema_registry_store } from \"./utils.js\";\n\nexport function buildResponseEnvelope_schema_registry_store<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_schema_registry_store(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_schema_registry_store(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_schema_registry_store(domain),\n traceId: generateTraceId_schema_registry_store(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_schema_registry_store(domain: string): string {\n return \"X-Domain-\" + formatDomainName_schema_registry_store(domain);\n}\n"
|
|
340
|
+
}
|
|
341
|
+
],
|
|
342
|
+
"strategyCandidates": [
|
|
343
|
+
{
|
|
344
|
+
"id": "candidate-alpha",
|
|
345
|
+
"description": "Candidate alpha.",
|
|
346
|
+
"files": [
|
|
347
|
+
{
|
|
348
|
+
"path": "config/default.json",
|
|
349
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
350
|
+
}
|
|
351
|
+
]
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"id": "candidate-beta",
|
|
355
|
+
"description": "Candidate beta.",
|
|
356
|
+
"files": [
|
|
357
|
+
{
|
|
358
|
+
"path": "src/service.mjs",
|
|
359
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n return decode(\"./config/default.json\");\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"path": "config/default.json",
|
|
363
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
364
|
+
}
|
|
365
|
+
]
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
"badStrategyPatch": {
|
|
369
|
+
"id": "candidate-alpha",
|
|
370
|
+
"description": "Candidate alpha.",
|
|
371
|
+
"files": [
|
|
372
|
+
{
|
|
373
|
+
"path": "config/default.json",
|
|
374
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
375
|
+
}
|
|
376
|
+
]
|
|
377
|
+
},
|
|
378
|
+
"goodStrategyPatch": {
|
|
379
|
+
"id": "candidate-beta",
|
|
380
|
+
"description": "Candidate beta.",
|
|
381
|
+
"files": [
|
|
382
|
+
{
|
|
383
|
+
"path": "src/service.mjs",
|
|
384
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n return decode(\"./config/default.json\");\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"path": "config/default.json",
|
|
388
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
389
|
+
}
|
|
390
|
+
]
|
|
391
|
+
},
|
|
392
|
+
"noTrapControlFiles": [
|
|
393
|
+
{
|
|
394
|
+
"path": "src/service.mjs",
|
|
395
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n return decode(\"./config/default.json\");\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"path": "config/default.json",
|
|
399
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"path": "test/check.js",
|
|
403
|
+
"content": "import { repositoryIdentity27f608a3 } from \"../src/service.mjs\";\nconst {\n vbbea9f73, vb8f79bc0, v10848e26, vf2b4b981, v018a7643, v0c330aef, va5fee7e3, v69c2ebb0,\n v926d3cab, vb785d7da, v8f6083eb, vc16aa08c, v77d691dc, v2ecc410d, v013f1d36, v1c7bdbb8,\n v42d382f1,\n} = repositoryIdentity27f608a3;\nif (!Object.values(repositoryIdentity27f608a3).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport fs from \"node:fs\";\nimport { readConfig_schema_registry_store } from \"../src/service.mjs\";\nconst snapshot = {\n disk: JSON.parse(fs.readFileSync(\"config/default.json\", \"utf8\")),\n resolved: readConfig_schema_registry_store(),\n};\nconst expected = {\n disk: { pageLimit: 60, prefetch: 2 },\n resolved: { pageLimit: 60, prefetch: 2 },\n};\nif (JSON.stringify(snapshot) === JSON.stringify(expected)) {\n console.log(\"FIXED: fallback loader snapshot uses the canonical source\");\n process.exit(0);\n}\nif (JSON.stringify(snapshot.disk) === JSON.stringify(expected.disk) &&\n JSON.stringify(snapshot.resolved) !== JSON.stringify(snapshot.disk)) {\n console.log(\"CHECK_FAILED: successful override read bypasses fallback\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: fallback configuration is not updated\");\nprocess.exit(1);\n"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"path": "TASK.md",
|
|
407
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Revise the canonical default configuration so runtime loads the new values from that source; do not edit an unused shadow copy.\n\nUpdate the local domain module for schema-registry-store 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"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"path": "README.md",
|
|
411
|
+
"content": "# Synthetic Repository for schema-registry-store\n\nThis repository contains a local service module for schema-registry-store.\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"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"path": "src/domain-workflow.ts",
|
|
415
|
+
"content": "/**\n * Local workflow contracts for schema-registry-store.\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_d1ebdeae_00_Request {\n w_d1ebdeae_00_record: string;\n w_d1ebdeae_00_sequence: number;\n}\n\nexport interface w_d1ebdeae_00_Result {\n w_d1ebdeae_00_accepted: boolean;\n w_d1ebdeae_00_token: string;\n}\n\nexport function execute_w_d1ebdeae_00(\n input_w_d1ebdeae_00: w_d1ebdeae_00_Request,\n): w_d1ebdeae_00_Result {\n const normalized_w_d1ebdeae_00 = input_w_d1ebdeae_00.w_d1ebdeae_00_record.trim().toLowerCase();\n const score_w_d1ebdeae_00 =\n normalized_w_d1ebdeae_00.length + input_w_d1ebdeae_00.w_d1ebdeae_00_sequence;\n return {\n w_d1ebdeae_00_accepted: score_w_d1ebdeae_00 % 2 === 0,\n w_d1ebdeae_00_token: `schema-registry-store:0:${score_w_d1ebdeae_00}`,\n };\n}\n\nexport interface w_d1ebdeae_01_Request {\n w_d1ebdeae_01_record: string;\n w_d1ebdeae_01_sequence: number;\n}\n\nexport interface w_d1ebdeae_01_Result {\n w_d1ebdeae_01_accepted: boolean;\n w_d1ebdeae_01_token: string;\n}\n\nexport function execute_w_d1ebdeae_01(\n input_w_d1ebdeae_01: w_d1ebdeae_01_Request,\n): w_d1ebdeae_01_Result {\n const normalized_w_d1ebdeae_01 = input_w_d1ebdeae_01.w_d1ebdeae_01_record.trim().toLowerCase();\n const score_w_d1ebdeae_01 =\n normalized_w_d1ebdeae_01.length + input_w_d1ebdeae_01.w_d1ebdeae_01_sequence;\n return {\n w_d1ebdeae_01_accepted: score_w_d1ebdeae_01 % 2 === 0,\n w_d1ebdeae_01_token: `schema-registry-store:1:${score_w_d1ebdeae_01}`,\n };\n}\n\nexport interface w_d1ebdeae_02_Request {\n w_d1ebdeae_02_record: string;\n w_d1ebdeae_02_sequence: number;\n}\n\nexport interface w_d1ebdeae_02_Result {\n w_d1ebdeae_02_accepted: boolean;\n w_d1ebdeae_02_token: string;\n}\n\nexport function execute_w_d1ebdeae_02(\n input_w_d1ebdeae_02: w_d1ebdeae_02_Request,\n): w_d1ebdeae_02_Result {\n const normalized_w_d1ebdeae_02 = input_w_d1ebdeae_02.w_d1ebdeae_02_record.trim().toLowerCase();\n const score_w_d1ebdeae_02 =\n normalized_w_d1ebdeae_02.length + input_w_d1ebdeae_02.w_d1ebdeae_02_sequence;\n return {\n w_d1ebdeae_02_accepted: score_w_d1ebdeae_02 % 2 === 0,\n w_d1ebdeae_02_token: `schema-registry-store:2:${score_w_d1ebdeae_02}`,\n };\n}\n\nexport interface w_d1ebdeae_03_Request {\n w_d1ebdeae_03_record: string;\n w_d1ebdeae_03_sequence: number;\n}\n\nexport interface w_d1ebdeae_03_Result {\n w_d1ebdeae_03_accepted: boolean;\n w_d1ebdeae_03_token: string;\n}\n\nexport function execute_w_d1ebdeae_03(\n input_w_d1ebdeae_03: w_d1ebdeae_03_Request,\n): w_d1ebdeae_03_Result {\n const normalized_w_d1ebdeae_03 = input_w_d1ebdeae_03.w_d1ebdeae_03_record.trim().toLowerCase();\n const score_w_d1ebdeae_03 =\n normalized_w_d1ebdeae_03.length + input_w_d1ebdeae_03.w_d1ebdeae_03_sequence;\n return {\n w_d1ebdeae_03_accepted: score_w_d1ebdeae_03 % 2 === 0,\n w_d1ebdeae_03_token: `schema-registry-store:3:${score_w_d1ebdeae_03}`,\n };\n}\n\nexport interface w_d1ebdeae_04_Request {\n w_d1ebdeae_04_record: string;\n w_d1ebdeae_04_sequence: number;\n}\n\nexport interface w_d1ebdeae_04_Result {\n w_d1ebdeae_04_accepted: boolean;\n w_d1ebdeae_04_token: string;\n}\n\nexport function execute_w_d1ebdeae_04(\n input_w_d1ebdeae_04: w_d1ebdeae_04_Request,\n): w_d1ebdeae_04_Result {\n const normalized_w_d1ebdeae_04 = input_w_d1ebdeae_04.w_d1ebdeae_04_record.trim().toLowerCase();\n const score_w_d1ebdeae_04 =\n normalized_w_d1ebdeae_04.length + input_w_d1ebdeae_04.w_d1ebdeae_04_sequence;\n return {\n w_d1ebdeae_04_accepted: score_w_d1ebdeae_04 % 2 === 0,\n w_d1ebdeae_04_token: `schema-registry-store:4:${score_w_d1ebdeae_04}`,\n };\n}\n\nexport interface w_d1ebdeae_05_Request {\n w_d1ebdeae_05_record: string;\n w_d1ebdeae_05_sequence: number;\n}\n\nexport interface w_d1ebdeae_05_Result {\n w_d1ebdeae_05_accepted: boolean;\n w_d1ebdeae_05_token: string;\n}\n\nexport function execute_w_d1ebdeae_05(\n input_w_d1ebdeae_05: w_d1ebdeae_05_Request,\n): w_d1ebdeae_05_Result {\n const normalized_w_d1ebdeae_05 = input_w_d1ebdeae_05.w_d1ebdeae_05_record.trim().toLowerCase();\n const score_w_d1ebdeae_05 =\n normalized_w_d1ebdeae_05.length + input_w_d1ebdeae_05.w_d1ebdeae_05_sequence;\n return {\n w_d1ebdeae_05_accepted: score_w_d1ebdeae_05 % 2 === 0,\n w_d1ebdeae_05_token: `schema-registry-store:5:${score_w_d1ebdeae_05}`,\n };\n}\n\nexport interface w_d1ebdeae_06_Request {\n w_d1ebdeae_06_record: string;\n w_d1ebdeae_06_sequence: number;\n}\n\nexport interface w_d1ebdeae_06_Result {\n w_d1ebdeae_06_accepted: boolean;\n w_d1ebdeae_06_token: string;\n}\n\nexport function execute_w_d1ebdeae_06(\n input_w_d1ebdeae_06: w_d1ebdeae_06_Request,\n): w_d1ebdeae_06_Result {\n const normalized_w_d1ebdeae_06 = input_w_d1ebdeae_06.w_d1ebdeae_06_record.trim().toLowerCase();\n const score_w_d1ebdeae_06 =\n normalized_w_d1ebdeae_06.length + input_w_d1ebdeae_06.w_d1ebdeae_06_sequence;\n return {\n w_d1ebdeae_06_accepted: score_w_d1ebdeae_06 % 2 === 0,\n w_d1ebdeae_06_token: `schema-registry-store:6:${score_w_d1ebdeae_06}`,\n };\n}\n\nexport interface w_d1ebdeae_07_Request {\n w_d1ebdeae_07_record: string;\n w_d1ebdeae_07_sequence: number;\n}\n\nexport interface w_d1ebdeae_07_Result {\n w_d1ebdeae_07_accepted: boolean;\n w_d1ebdeae_07_token: string;\n}\n\nexport function execute_w_d1ebdeae_07(\n input_w_d1ebdeae_07: w_d1ebdeae_07_Request,\n): w_d1ebdeae_07_Result {\n const normalized_w_d1ebdeae_07 = input_w_d1ebdeae_07.w_d1ebdeae_07_record.trim().toLowerCase();\n const score_w_d1ebdeae_07 =\n normalized_w_d1ebdeae_07.length + input_w_d1ebdeae_07.w_d1ebdeae_07_sequence;\n return {\n w_d1ebdeae_07_accepted: score_w_d1ebdeae_07 % 2 === 0,\n w_d1ebdeae_07_token: `schema-registry-store:7:${score_w_d1ebdeae_07}`,\n };\n}\n\nexport const w_d1ebdeae_lex_00 = \"w_d1ebdeae_a_00 w_d1ebdeae_b_00 w_d1ebdeae_c_00 w_d1ebdeae_d_00 w_d1ebdeae_e_00\";\nexport const w_d1ebdeae_lex_01 = \"w_d1ebdeae_a_01 w_d1ebdeae_b_01 w_d1ebdeae_c_01 w_d1ebdeae_d_01 w_d1ebdeae_e_01\";\nexport const w_d1ebdeae_lex_02 = \"w_d1ebdeae_a_02 w_d1ebdeae_b_02 w_d1ebdeae_c_02 w_d1ebdeae_d_02 w_d1ebdeae_e_02\";\nexport const w_d1ebdeae_lex_03 = \"w_d1ebdeae_a_03 w_d1ebdeae_b_03 w_d1ebdeae_c_03 w_d1ebdeae_d_03 w_d1ebdeae_e_03\";\nexport const w_d1ebdeae_lex_04 = \"w_d1ebdeae_a_04 w_d1ebdeae_b_04 w_d1ebdeae_c_04 w_d1ebdeae_d_04 w_d1ebdeae_e_04\";\nexport const w_d1ebdeae_lex_05 = \"w_d1ebdeae_a_05 w_d1ebdeae_b_05 w_d1ebdeae_c_05 w_d1ebdeae_d_05 w_d1ebdeae_e_05\";\nexport const w_d1ebdeae_lex_06 = \"w_d1ebdeae_a_06 w_d1ebdeae_b_06 w_d1ebdeae_c_06 w_d1ebdeae_d_06 w_d1ebdeae_e_06\";\nexport const w_d1ebdeae_lex_07 = \"w_d1ebdeae_a_07 w_d1ebdeae_b_07 w_d1ebdeae_c_07 w_d1ebdeae_d_07 w_d1ebdeae_e_07\";\nexport const w_d1ebdeae_lex_08 = \"w_d1ebdeae_a_08 w_d1ebdeae_b_08 w_d1ebdeae_c_08 w_d1ebdeae_d_08 w_d1ebdeae_e_08\";\nexport const w_d1ebdeae_lex_09 = \"w_d1ebdeae_a_09 w_d1ebdeae_b_09 w_d1ebdeae_c_09 w_d1ebdeae_d_09 w_d1ebdeae_e_09\";\nexport const w_d1ebdeae_lex_10 = \"w_d1ebdeae_a_10 w_d1ebdeae_b_10 w_d1ebdeae_c_10 w_d1ebdeae_d_10 w_d1ebdeae_e_10\";\nexport const w_d1ebdeae_lex_11 = \"w_d1ebdeae_a_11 w_d1ebdeae_b_11 w_d1ebdeae_c_11 w_d1ebdeae_d_11 w_d1ebdeae_e_11\";\nexport const w_d1ebdeae_lex_12 = \"w_d1ebdeae_a_12 w_d1ebdeae_b_12 w_d1ebdeae_c_12 w_d1ebdeae_d_12 w_d1ebdeae_e_12\";\nexport const w_d1ebdeae_lex_13 = \"w_d1ebdeae_a_13 w_d1ebdeae_b_13 w_d1ebdeae_c_13 w_d1ebdeae_d_13 w_d1ebdeae_e_13\";\nexport const w_d1ebdeae_lex_14 = \"w_d1ebdeae_a_14 w_d1ebdeae_b_14 w_d1ebdeae_c_14 w_d1ebdeae_d_14 w_d1ebdeae_e_14\";\nexport const w_d1ebdeae_lex_15 = \"w_d1ebdeae_a_15 w_d1ebdeae_b_15 w_d1ebdeae_c_15 w_d1ebdeae_d_15 w_d1ebdeae_e_15\";\nexport const w_d1ebdeae_lex_16 = \"w_d1ebdeae_a_16 w_d1ebdeae_b_16 w_d1ebdeae_c_16 w_d1ebdeae_d_16 w_d1ebdeae_e_16\";\nexport const w_d1ebdeae_lex_17 = \"w_d1ebdeae_a_17 w_d1ebdeae_b_17 w_d1ebdeae_c_17 w_d1ebdeae_d_17 w_d1ebdeae_e_17\";\nexport const w_d1ebdeae_lex_18 = \"w_d1ebdeae_a_18 w_d1ebdeae_b_18 w_d1ebdeae_c_18 w_d1ebdeae_d_18 w_d1ebdeae_e_18\";\nexport const w_d1ebdeae_lex_19 = \"w_d1ebdeae_a_19 w_d1ebdeae_b_19 w_d1ebdeae_c_19 w_d1ebdeae_d_19 w_d1ebdeae_e_19\";\nexport const w_d1ebdeae_lex_20 = \"w_d1ebdeae_a_20 w_d1ebdeae_b_20 w_d1ebdeae_c_20 w_d1ebdeae_d_20 w_d1ebdeae_e_20\";\nexport const w_d1ebdeae_lex_21 = \"w_d1ebdeae_a_21 w_d1ebdeae_b_21 w_d1ebdeae_c_21 w_d1ebdeae_d_21 w_d1ebdeae_e_21\";\nexport const w_d1ebdeae_lex_22 = \"w_d1ebdeae_a_22 w_d1ebdeae_b_22 w_d1ebdeae_c_22 w_d1ebdeae_d_22 w_d1ebdeae_e_22\";\nexport const w_d1ebdeae_lex_23 = \"w_d1ebdeae_a_23 w_d1ebdeae_b_23 w_d1ebdeae_c_23 w_d1ebdeae_d_23 w_d1ebdeae_e_23\";\nexport const w_d1ebdeae_lex_24 = \"w_d1ebdeae_a_24 w_d1ebdeae_b_24 w_d1ebdeae_c_24 w_d1ebdeae_d_24 w_d1ebdeae_e_24\";\nexport const w_d1ebdeae_lex_25 = \"w_d1ebdeae_a_25 w_d1ebdeae_b_25 w_d1ebdeae_c_25 w_d1ebdeae_d_25 w_d1ebdeae_e_25\";\nexport const w_d1ebdeae_lex_26 = \"w_d1ebdeae_a_26 w_d1ebdeae_b_26 w_d1ebdeae_c_26 w_d1ebdeae_d_26 w_d1ebdeae_e_26\";\nexport const w_d1ebdeae_lex_27 = \"w_d1ebdeae_a_27 w_d1ebdeae_b_27 w_d1ebdeae_c_27 w_d1ebdeae_d_27 w_d1ebdeae_e_27\";\n"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"path": "src/config.ts",
|
|
419
|
+
"content": "/**\n * Default configuration options for schema-registry-store\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_schema_registry_store = {\n domain: \"schema-registry-store\",\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_schema_registry_store(): typeof DEFAULT_CONFIG_schema_registry_store {\n return { ...DEFAULT_CONFIG_schema_registry_store };\n}\n"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"path": "src/utils.ts",
|
|
423
|
+
"content": "/**\n * Utility functions for domain schema-registry-store\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_schema_registry_store(name: string): string {\n if (!name) return \"schema-registry-store\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_schema_registry_store(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_schema_registry_store(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_schema_registry_store<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_schema_registry_store(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_schema_registry_store(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_schema_registry_store(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"path": "src/types.ts",
|
|
427
|
+
"content": "/**\n * Domain type definitions for schema-registry-store\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_schema_registry_store {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_schema_registry_store {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_schema_registry_store {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_schema_registry_store {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_schema_registry_store<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_schema_registry_store {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
431
|
+
"content": "/**\n * Type declarations for counterfactual SDK schema-registry-store\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_schema_registry_store {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_schema_registry_store {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_schema_registry_store {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_schema_registry_store;\n}\n\nexport interface QuillBatchRequest_schema_registry_store {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_schema_registry_store {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
435
|
+
"content": "/**\n * Counterfactual SDK for domain schema-registry-store\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_schema_registry_store, QuillResponse_schema_registry_store } from \"./types.js\";\n\nexport function quillApiQuery_schema_registry_store(\n payload: Record<string, unknown>,\n opts?: QuillOptions_schema_registry_store,\n): QuillResponse_schema_registry_store {\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: \"schema-registry-store\" },\n };\n}\n\nexport function quillHealthCheck_schema_registry_store(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_schema_registry_store(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_schema_registry_store(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_schema_registry_store(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_schema_registry_store(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_schema_registry_store(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_schema_registry_store(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_schema_registry_store(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"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"path": "tsconfig.json",
|
|
439
|
+
"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"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"path": "package.json",
|
|
443
|
+
"content": "{\n \"name\": \"@vellum-quarry/schema-registry-store\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for schema-registry-store\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"path": "src/helper.ts",
|
|
447
|
+
"content": "/**\n * Helper routines for schema-registry-store\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_schema_registry_store, generateTraceId_schema_registry_store } from \"./utils.js\";\n\nexport function buildResponseEnvelope_schema_registry_store<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_schema_registry_store(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function createServiceContext_schema_registry_store(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_schema_registry_store(domain),\n traceId: generateTraceId_schema_registry_store(),\n timestamp: Date.now(),\n };\n}\n\nexport function getDomainHeader_schema_registry_store(domain: string): string {\n return \"X-Domain-\" + formatDomainName_schema_registry_store(domain);\n}\n"
|
|
448
|
+
}
|
|
449
|
+
],
|
|
450
|
+
"cleanRevisionSha": "97abaa580e4388a18e1fa3ccb7d05d1bb03864b6",
|
|
451
|
+
"trapRevisionSha": "92b1ef8b98d53df654bd010f5e1a226c4905d8c3",
|
|
452
|
+
"rightRevisionSha": "d15805857173530030846b1e5bc02d13b2bb41e5",
|
|
453
|
+
"noTrapRevisionSha": "06f98c3441061b6470bd609be48a9f3c51e28152"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"variantId": "h6-task-29-v3",
|
|
457
|
+
"baseTaskId": "h6-task-29",
|
|
458
|
+
"variantIndex": 3,
|
|
459
|
+
"distance": 3,
|
|
460
|
+
"domain": "schema-registry-store",
|
|
461
|
+
"files": [
|
|
462
|
+
{
|
|
463
|
+
"path": "package.json",
|
|
464
|
+
"content": "{\n \"name\": \"@vellum-quarry/schema-registry-store\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for schema-registry-store\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"path": "tsconfig.json",
|
|
468
|
+
"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"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
472
|
+
"content": "/**\n * Counterfactual SDK for domain schema-registry-store\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_schema_registry_store, QuillResponse_schema_registry_store } from \"./types.js\";\n\nexport function quillApiQuery_schema_registry_store(\n payload: Record<string, unknown>,\n opts?: QuillOptions_schema_registry_store,\n): QuillResponse_schema_registry_store {\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: \"schema-registry-store\" },\n };\n}\n\nexport function quillHealthCheck_schema_registry_store(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_schema_registry_store(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_schema_registry_store(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_schema_registry_store(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_schema_registry_store(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_schema_registry_store(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_schema_registry_store(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_schema_registry_store(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"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
476
|
+
"content": "/**\n * Type declarations for counterfactual SDK schema-registry-store\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_schema_registry_store {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_schema_registry_store {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_schema_registry_store {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_schema_registry_store;\n}\n\nexport interface QuillBatchRequest_schema_registry_store {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_schema_registry_store {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"path": "src/types.ts",
|
|
480
|
+
"content": "/**\n * Domain type definitions for schema-registry-store\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_schema_registry_store {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_schema_registry_store {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_schema_registry_store {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_schema_registry_store {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_schema_registry_store<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_schema_registry_store {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"path": "src/utils.ts",
|
|
484
|
+
"content": "/**\n * Utility functions for domain schema-registry-store\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_schema_registry_store(name: string): string {\n if (!name) return \"schema-registry-store\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_schema_registry_store(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_schema_registry_store(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_schema_registry_store<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_schema_registry_store(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_schema_registry_store(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_schema_registry_store(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"path": "src/config.ts",
|
|
488
|
+
"content": "/**\n * Default configuration options for schema-registry-store\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_schema_registry_store = {\n domain: \"schema-registry-store\",\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_schema_registry_store(): typeof DEFAULT_CONFIG_schema_registry_store {\n return { ...DEFAULT_CONFIG_schema_registry_store };\n}\n"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"path": "src/domain-workflow.ts",
|
|
492
|
+
"content": "/**\n * Local workflow contracts for schema-registry-store.\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_d1ebdeae_00_Request {\n w_d1ebdeae_00_record: string;\n w_d1ebdeae_00_sequence: number;\n}\n\nexport interface w_d1ebdeae_00_Result {\n w_d1ebdeae_00_accepted: boolean;\n w_d1ebdeae_00_token: string;\n}\n\nexport function execute_w_d1ebdeae_00(\n input_w_d1ebdeae_00: w_d1ebdeae_00_Request,\n): w_d1ebdeae_00_Result {\n const normalized_w_d1ebdeae_00 = input_w_d1ebdeae_00.w_d1ebdeae_00_record.trim().toLowerCase();\n const score_w_d1ebdeae_00 =\n normalized_w_d1ebdeae_00.length + input_w_d1ebdeae_00.w_d1ebdeae_00_sequence;\n return {\n w_d1ebdeae_00_accepted: score_w_d1ebdeae_00 % 2 === 0,\n w_d1ebdeae_00_token: `schema-registry-store:0:${score_w_d1ebdeae_00}`,\n };\n}\n\nexport interface w_d1ebdeae_01_Request {\n w_d1ebdeae_01_record: string;\n w_d1ebdeae_01_sequence: number;\n}\n\nexport interface w_d1ebdeae_01_Result {\n w_d1ebdeae_01_accepted: boolean;\n w_d1ebdeae_01_token: string;\n}\n\nexport function execute_w_d1ebdeae_01(\n input_w_d1ebdeae_01: w_d1ebdeae_01_Request,\n): w_d1ebdeae_01_Result {\n const normalized_w_d1ebdeae_01 = input_w_d1ebdeae_01.w_d1ebdeae_01_record.trim().toLowerCase();\n const score_w_d1ebdeae_01 =\n normalized_w_d1ebdeae_01.length + input_w_d1ebdeae_01.w_d1ebdeae_01_sequence;\n return {\n w_d1ebdeae_01_accepted: score_w_d1ebdeae_01 % 2 === 0,\n w_d1ebdeae_01_token: `schema-registry-store:1:${score_w_d1ebdeae_01}`,\n };\n}\n\nexport interface w_d1ebdeae_02_Request {\n w_d1ebdeae_02_record: string;\n w_d1ebdeae_02_sequence: number;\n}\n\nexport interface w_d1ebdeae_02_Result {\n w_d1ebdeae_02_accepted: boolean;\n w_d1ebdeae_02_token: string;\n}\n\nexport function execute_w_d1ebdeae_02(\n input_w_d1ebdeae_02: w_d1ebdeae_02_Request,\n): w_d1ebdeae_02_Result {\n const normalized_w_d1ebdeae_02 = input_w_d1ebdeae_02.w_d1ebdeae_02_record.trim().toLowerCase();\n const score_w_d1ebdeae_02 =\n normalized_w_d1ebdeae_02.length + input_w_d1ebdeae_02.w_d1ebdeae_02_sequence;\n return {\n w_d1ebdeae_02_accepted: score_w_d1ebdeae_02 % 2 === 0,\n w_d1ebdeae_02_token: `schema-registry-store:2:${score_w_d1ebdeae_02}`,\n };\n}\n\nexport interface w_d1ebdeae_03_Request {\n w_d1ebdeae_03_record: string;\n w_d1ebdeae_03_sequence: number;\n}\n\nexport interface w_d1ebdeae_03_Result {\n w_d1ebdeae_03_accepted: boolean;\n w_d1ebdeae_03_token: string;\n}\n\nexport function execute_w_d1ebdeae_03(\n input_w_d1ebdeae_03: w_d1ebdeae_03_Request,\n): w_d1ebdeae_03_Result {\n const normalized_w_d1ebdeae_03 = input_w_d1ebdeae_03.w_d1ebdeae_03_record.trim().toLowerCase();\n const score_w_d1ebdeae_03 =\n normalized_w_d1ebdeae_03.length + input_w_d1ebdeae_03.w_d1ebdeae_03_sequence;\n return {\n w_d1ebdeae_03_accepted: score_w_d1ebdeae_03 % 2 === 0,\n w_d1ebdeae_03_token: `schema-registry-store:3:${score_w_d1ebdeae_03}`,\n };\n}\n\nexport interface w_d1ebdeae_04_Request {\n w_d1ebdeae_04_record: string;\n w_d1ebdeae_04_sequence: number;\n}\n\nexport interface w_d1ebdeae_04_Result {\n w_d1ebdeae_04_accepted: boolean;\n w_d1ebdeae_04_token: string;\n}\n\nexport function execute_w_d1ebdeae_04(\n input_w_d1ebdeae_04: w_d1ebdeae_04_Request,\n): w_d1ebdeae_04_Result {\n const normalized_w_d1ebdeae_04 = input_w_d1ebdeae_04.w_d1ebdeae_04_record.trim().toLowerCase();\n const score_w_d1ebdeae_04 =\n normalized_w_d1ebdeae_04.length + input_w_d1ebdeae_04.w_d1ebdeae_04_sequence;\n return {\n w_d1ebdeae_04_accepted: score_w_d1ebdeae_04 % 2 === 0,\n w_d1ebdeae_04_token: `schema-registry-store:4:${score_w_d1ebdeae_04}`,\n };\n}\n\nexport interface w_d1ebdeae_05_Request {\n w_d1ebdeae_05_record: string;\n w_d1ebdeae_05_sequence: number;\n}\n\nexport interface w_d1ebdeae_05_Result {\n w_d1ebdeae_05_accepted: boolean;\n w_d1ebdeae_05_token: string;\n}\n\nexport function execute_w_d1ebdeae_05(\n input_w_d1ebdeae_05: w_d1ebdeae_05_Request,\n): w_d1ebdeae_05_Result {\n const normalized_w_d1ebdeae_05 = input_w_d1ebdeae_05.w_d1ebdeae_05_record.trim().toLowerCase();\n const score_w_d1ebdeae_05 =\n normalized_w_d1ebdeae_05.length + input_w_d1ebdeae_05.w_d1ebdeae_05_sequence;\n return {\n w_d1ebdeae_05_accepted: score_w_d1ebdeae_05 % 2 === 0,\n w_d1ebdeae_05_token: `schema-registry-store:5:${score_w_d1ebdeae_05}`,\n };\n}\n\nexport interface w_d1ebdeae_06_Request {\n w_d1ebdeae_06_record: string;\n w_d1ebdeae_06_sequence: number;\n}\n\nexport interface w_d1ebdeae_06_Result {\n w_d1ebdeae_06_accepted: boolean;\n w_d1ebdeae_06_token: string;\n}\n\nexport function execute_w_d1ebdeae_06(\n input_w_d1ebdeae_06: w_d1ebdeae_06_Request,\n): w_d1ebdeae_06_Result {\n const normalized_w_d1ebdeae_06 = input_w_d1ebdeae_06.w_d1ebdeae_06_record.trim().toLowerCase();\n const score_w_d1ebdeae_06 =\n normalized_w_d1ebdeae_06.length + input_w_d1ebdeae_06.w_d1ebdeae_06_sequence;\n return {\n w_d1ebdeae_06_accepted: score_w_d1ebdeae_06 % 2 === 0,\n w_d1ebdeae_06_token: `schema-registry-store:6:${score_w_d1ebdeae_06}`,\n };\n}\n\nexport interface w_d1ebdeae_07_Request {\n w_d1ebdeae_07_record: string;\n w_d1ebdeae_07_sequence: number;\n}\n\nexport interface w_d1ebdeae_07_Result {\n w_d1ebdeae_07_accepted: boolean;\n w_d1ebdeae_07_token: string;\n}\n\nexport function execute_w_d1ebdeae_07(\n input_w_d1ebdeae_07: w_d1ebdeae_07_Request,\n): w_d1ebdeae_07_Result {\n const normalized_w_d1ebdeae_07 = input_w_d1ebdeae_07.w_d1ebdeae_07_record.trim().toLowerCase();\n const score_w_d1ebdeae_07 =\n normalized_w_d1ebdeae_07.length + input_w_d1ebdeae_07.w_d1ebdeae_07_sequence;\n return {\n w_d1ebdeae_07_accepted: score_w_d1ebdeae_07 % 2 === 0,\n w_d1ebdeae_07_token: `schema-registry-store:7:${score_w_d1ebdeae_07}`,\n };\n}\n\nexport const w_d1ebdeae_lex_00 = \"w_d1ebdeae_a_00 w_d1ebdeae_b_00 w_d1ebdeae_c_00 w_d1ebdeae_d_00 w_d1ebdeae_e_00\";\nexport const w_d1ebdeae_lex_01 = \"w_d1ebdeae_a_01 w_d1ebdeae_b_01 w_d1ebdeae_c_01 w_d1ebdeae_d_01 w_d1ebdeae_e_01\";\nexport const w_d1ebdeae_lex_02 = \"w_d1ebdeae_a_02 w_d1ebdeae_b_02 w_d1ebdeae_c_02 w_d1ebdeae_d_02 w_d1ebdeae_e_02\";\nexport const w_d1ebdeae_lex_03 = \"w_d1ebdeae_a_03 w_d1ebdeae_b_03 w_d1ebdeae_c_03 w_d1ebdeae_d_03 w_d1ebdeae_e_03\";\nexport const w_d1ebdeae_lex_04 = \"w_d1ebdeae_a_04 w_d1ebdeae_b_04 w_d1ebdeae_c_04 w_d1ebdeae_d_04 w_d1ebdeae_e_04\";\nexport const w_d1ebdeae_lex_05 = \"w_d1ebdeae_a_05 w_d1ebdeae_b_05 w_d1ebdeae_c_05 w_d1ebdeae_d_05 w_d1ebdeae_e_05\";\nexport const w_d1ebdeae_lex_06 = \"w_d1ebdeae_a_06 w_d1ebdeae_b_06 w_d1ebdeae_c_06 w_d1ebdeae_d_06 w_d1ebdeae_e_06\";\nexport const w_d1ebdeae_lex_07 = \"w_d1ebdeae_a_07 w_d1ebdeae_b_07 w_d1ebdeae_c_07 w_d1ebdeae_d_07 w_d1ebdeae_e_07\";\nexport const w_d1ebdeae_lex_08 = \"w_d1ebdeae_a_08 w_d1ebdeae_b_08 w_d1ebdeae_c_08 w_d1ebdeae_d_08 w_d1ebdeae_e_08\";\nexport const w_d1ebdeae_lex_09 = \"w_d1ebdeae_a_09 w_d1ebdeae_b_09 w_d1ebdeae_c_09 w_d1ebdeae_d_09 w_d1ebdeae_e_09\";\nexport const w_d1ebdeae_lex_10 = \"w_d1ebdeae_a_10 w_d1ebdeae_b_10 w_d1ebdeae_c_10 w_d1ebdeae_d_10 w_d1ebdeae_e_10\";\nexport const w_d1ebdeae_lex_11 = \"w_d1ebdeae_a_11 w_d1ebdeae_b_11 w_d1ebdeae_c_11 w_d1ebdeae_d_11 w_d1ebdeae_e_11\";\nexport const w_d1ebdeae_lex_12 = \"w_d1ebdeae_a_12 w_d1ebdeae_b_12 w_d1ebdeae_c_12 w_d1ebdeae_d_12 w_d1ebdeae_e_12\";\nexport const w_d1ebdeae_lex_13 = \"w_d1ebdeae_a_13 w_d1ebdeae_b_13 w_d1ebdeae_c_13 w_d1ebdeae_d_13 w_d1ebdeae_e_13\";\nexport const w_d1ebdeae_lex_14 = \"w_d1ebdeae_a_14 w_d1ebdeae_b_14 w_d1ebdeae_c_14 w_d1ebdeae_d_14 w_d1ebdeae_e_14\";\nexport const w_d1ebdeae_lex_15 = \"w_d1ebdeae_a_15 w_d1ebdeae_b_15 w_d1ebdeae_c_15 w_d1ebdeae_d_15 w_d1ebdeae_e_15\";\nexport const w_d1ebdeae_lex_16 = \"w_d1ebdeae_a_16 w_d1ebdeae_b_16 w_d1ebdeae_c_16 w_d1ebdeae_d_16 w_d1ebdeae_e_16\";\nexport const w_d1ebdeae_lex_17 = \"w_d1ebdeae_a_17 w_d1ebdeae_b_17 w_d1ebdeae_c_17 w_d1ebdeae_d_17 w_d1ebdeae_e_17\";\nexport const w_d1ebdeae_lex_18 = \"w_d1ebdeae_a_18 w_d1ebdeae_b_18 w_d1ebdeae_c_18 w_d1ebdeae_d_18 w_d1ebdeae_e_18\";\nexport const w_d1ebdeae_lex_19 = \"w_d1ebdeae_a_19 w_d1ebdeae_b_19 w_d1ebdeae_c_19 w_d1ebdeae_d_19 w_d1ebdeae_e_19\";\nexport const w_d1ebdeae_lex_20 = \"w_d1ebdeae_a_20 w_d1ebdeae_b_20 w_d1ebdeae_c_20 w_d1ebdeae_d_20 w_d1ebdeae_e_20\";\nexport const w_d1ebdeae_lex_21 = \"w_d1ebdeae_a_21 w_d1ebdeae_b_21 w_d1ebdeae_c_21 w_d1ebdeae_d_21 w_d1ebdeae_e_21\";\nexport const w_d1ebdeae_lex_22 = \"w_d1ebdeae_a_22 w_d1ebdeae_b_22 w_d1ebdeae_c_22 w_d1ebdeae_d_22 w_d1ebdeae_e_22\";\nexport const w_d1ebdeae_lex_23 = \"w_d1ebdeae_a_23 w_d1ebdeae_b_23 w_d1ebdeae_c_23 w_d1ebdeae_d_23 w_d1ebdeae_e_23\";\nexport const w_d1ebdeae_lex_24 = \"w_d1ebdeae_a_24 w_d1ebdeae_b_24 w_d1ebdeae_c_24 w_d1ebdeae_d_24 w_d1ebdeae_e_24\";\nexport const w_d1ebdeae_lex_25 = \"w_d1ebdeae_a_25 w_d1ebdeae_b_25 w_d1ebdeae_c_25 w_d1ebdeae_d_25 w_d1ebdeae_e_25\";\nexport const w_d1ebdeae_lex_26 = \"w_d1ebdeae_a_26 w_d1ebdeae_b_26 w_d1ebdeae_c_26 w_d1ebdeae_d_26 w_d1ebdeae_e_26\";\nexport const w_d1ebdeae_lex_27 = \"w_d1ebdeae_a_27 w_d1ebdeae_b_27 w_d1ebdeae_c_27 w_d1ebdeae_d_27 w_d1ebdeae_e_27\";\n"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"path": "README.md",
|
|
496
|
+
"content": "# Synthetic Repository for schema-registry-store\n\nThis repository contains a local service module for schema-registry-store.\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"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"path": "TASK.md",
|
|
500
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Revise the canonical default configuration so runtime loads the new values from that source; do not edit an unused shadow copy.\n\nUpdate the local domain module for schema-registry-store 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"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"path": "test/check.js",
|
|
504
|
+
"content": "import { repositoryIdentity27f608a3 } from \"../src/service.mjs\";\nconst {\n vbbea9f73, vb8f79bc0, v10848e26, vf2b4b981, v018a7643, v0c330aef, va5fee7e3, v69c2ebb0,\n v926d3cab, vb785d7da, v8f6083eb, vc16aa08c, v77d691dc, v2ecc410d, v013f1d36, v1c7bdbb8,\n v42d382f1,\n} = repositoryIdentity27f608a3;\nif (!Object.values(repositoryIdentity27f608a3).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport fs from \"node:fs\";\nimport { readConfig_schema_registry_store } from \"../src/service.mjs\";\nconst snapshot = {\n disk: JSON.parse(fs.readFileSync(\"config/default.json\", \"utf8\")),\n resolved: readConfig_schema_registry_store(),\n};\nconst expected = {\n disk: { pageLimit: 60, prefetch: 2 },\n resolved: { pageLimit: 60, prefetch: 2 },\n};\nif (JSON.stringify(snapshot) === JSON.stringify(expected)) {\n console.log(\"FIXED: fallback loader snapshot uses the canonical source\");\n process.exit(0);\n}\nif (JSON.stringify(snapshot.disk) === JSON.stringify(expected.disk) &&\n JSON.stringify(snapshot.resolved) !== JSON.stringify(snapshot.disk)) {\n console.log(\"CHECK_FAILED: successful override read bypasses fallback\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: fallback configuration is not updated\");\nprocess.exit(1);\n"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"path": "config/default.json",
|
|
508
|
+
"content": "{\n \"pageLimit\": 25,\n \"prefetch\": 2\n}\n"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"path": "config/user.json",
|
|
512
|
+
"content": "{\n \"pageLimit\": 10,\n \"prefetch\": 1\n}\n"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"path": "src/service.mjs",
|
|
516
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n try {\n return decode(\"./config/user.json\");\n } catch (error) {\n if (error.code === \"ENOENT\") return decode(\"./config/default.json\");\n throw error;\n }\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"path": "src/helper.ts",
|
|
520
|
+
"content": "export * from \"./helper/core.js\";\n"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"path": "src/helper/core.ts",
|
|
524
|
+
"content": "/**\n * Helper routines for schema-registry-store\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_schema_registry_store, generateTraceId_schema_registry_store } from \"../utils.js\";\n\nexport function getDomainHeader_schema_registry_store(domain: string): string {\n return \"X-Domain-\" + formatDomainName_schema_registry_store(domain);\n}\n\nexport function createServiceContext_schema_registry_store(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_schema_registry_store(domain),\n traceId: generateTraceId_schema_registry_store(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_schema_registry_store(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_schema_registry_store<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
525
|
+
}
|
|
526
|
+
],
|
|
527
|
+
"strategyCandidates": [
|
|
528
|
+
{
|
|
529
|
+
"id": "candidate-alpha",
|
|
530
|
+
"description": "Candidate alpha.",
|
|
531
|
+
"files": [
|
|
532
|
+
{
|
|
533
|
+
"path": "config/default.json",
|
|
534
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
535
|
+
}
|
|
536
|
+
]
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"id": "candidate-beta",
|
|
540
|
+
"description": "Candidate beta.",
|
|
541
|
+
"files": [
|
|
542
|
+
{
|
|
543
|
+
"path": "src/service.mjs",
|
|
544
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n return decode(\"./config/default.json\");\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"path": "config/default.json",
|
|
548
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
549
|
+
}
|
|
550
|
+
]
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"badStrategyPatch": {
|
|
554
|
+
"id": "candidate-alpha",
|
|
555
|
+
"description": "Candidate alpha.",
|
|
556
|
+
"files": [
|
|
557
|
+
{
|
|
558
|
+
"path": "config/default.json",
|
|
559
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
560
|
+
}
|
|
561
|
+
]
|
|
562
|
+
},
|
|
563
|
+
"goodStrategyPatch": {
|
|
564
|
+
"id": "candidate-beta",
|
|
565
|
+
"description": "Candidate beta.",
|
|
566
|
+
"files": [
|
|
567
|
+
{
|
|
568
|
+
"path": "src/service.mjs",
|
|
569
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n return decode(\"./config/default.json\");\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"path": "config/default.json",
|
|
573
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
574
|
+
}
|
|
575
|
+
]
|
|
576
|
+
},
|
|
577
|
+
"noTrapControlFiles": [
|
|
578
|
+
{
|
|
579
|
+
"path": "package.json",
|
|
580
|
+
"content": "{\n \"name\": \"@vellum-quarry/schema-registry-store\",\n \"version\": \"1.0.0\",\n \"type\": \"module\",\n \"description\": \"Synthetic repo for schema-registry-store\",\n \"scripts\": {\n \"test\": \"node test/check.js\"\n }\n}\n"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"path": "tsconfig.json",
|
|
584
|
+
"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"
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"path": "vendor/vellum-quarry-sdk/index.ts",
|
|
588
|
+
"content": "/**\n * Counterfactual SDK for domain schema-registry-store\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_schema_registry_store, QuillResponse_schema_registry_store } from \"./types.js\";\n\nexport function quillApiQuery_schema_registry_store(\n payload: Record<string, unknown>,\n opts?: QuillOptions_schema_registry_store,\n): QuillResponse_schema_registry_store {\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: \"schema-registry-store\" },\n };\n}\n\nexport function quillHealthCheck_schema_registry_store(): { healthy: boolean; latencyMs: number } {\n return { healthy: true, latencyMs: 4 };\n}\n\nexport function quillResetSession_schema_registry_store(sessionId: string): boolean {\n return typeof sessionId === \"string\" && sessionId.length > 0;\n}\n\nexport function quillGetTelemetry_schema_registry_store(): Record<string, number> {\n return { requests: 1, errors: 0, latencyAvg: 3.5, activeConnections: 2, maxPool: 10 };\n}\n\nexport function quillValidateToken_schema_registry_store(token: string): boolean {\n if (typeof token !== \"string\") return false;\n return token.startsWith(\"token_\") && token.length > 10;\n}\n\nexport function quillFormatError_schema_registry_store(code: string, detail: string): string {\n return `[QUILL_ERR][${code}] ${detail}`;\n}\n\nexport function quillCreateBatchContext_schema_registry_store(batchId: string): { batchId: string; created: number } {\n return { batchId, created: Date.now() };\n}\n\nexport function quillSanitizePayload_schema_registry_store(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_schema_registry_store(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"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"path": "vendor/vellum-quarry-sdk/types.ts",
|
|
592
|
+
"content": "/**\n * Type declarations for counterfactual SDK schema-registry-store\n *\n * Defines request options, meta envelopes, batch interfaces, and telemetry shapes.\n */\nexport interface QuillOptions_schema_registry_store {\n traceId?: string;\n timeoutMs?: number;\n retries?: number;\n strict?: boolean;\n}\n\nexport interface QuillResponseMeta_schema_registry_store {\n timeoutMs: number;\n retries: number;\n domain: string;\n}\n\nexport interface QuillResponse_schema_registry_store {\n status: \"success\" | \"error\";\n data: unknown;\n traceId: string;\n timestamp: string;\n meta: QuillResponseMeta_schema_registry_store;\n}\n\nexport interface QuillBatchRequest_schema_registry_store {\n batchId: string;\n items: Array<Record<string, unknown>>;\n}\n\nexport interface QuillTelemetry_schema_registry_store {\n requests: number;\n errors: number;\n latencyAvg: number;\n activeConnections: number;\n maxPool: number;\n}\n"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"path": "src/types.ts",
|
|
596
|
+
"content": "/**\n * Domain type definitions for schema-registry-store\n *\n * Defines configuration shapes, state payloads, audit trails, and result envelopes.\n */\nexport interface TaskConfig_schema_registry_store {\n domain: string;\n active: boolean;\n version: number;\n environment: \"dev\" | \"staging\" | \"prod\";\n}\n\nexport interface StatePayload_schema_registry_store {\n id: string;\n value: unknown;\n createdAt: number;\n updatedAt: number;\n}\n\nexport interface AuditRecord_schema_registry_store {\n action: string;\n actor: string;\n timestamp: string;\n}\n\nexport interface ServiceContext_schema_registry_store {\n domain: string;\n traceId: string;\n timestamp: number;\n}\n\nexport interface ProcessingResult_schema_registry_store<T = unknown> {\n success: boolean;\n payload?: T;\n error?: string;\n}\n\nexport interface HealthStatus_schema_registry_store {\n status: \"ok\" | \"degraded\" | \"down\";\n uptimeSeconds: number;\n}\n"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"path": "src/utils.ts",
|
|
600
|
+
"content": "/**\n * Utility functions for domain schema-registry-store\n *\n * Implements string formatting, trace generation, input sanitization,\n * safe JSON parsing, numeric clamping, and cache key generation.\n */\nexport function formatDomainName_schema_registry_store(name: string): string {\n if (!name) return \"schema-registry-store\";\n return name.toLowerCase().trim();\n}\n\nexport function generateTraceId_schema_registry_store(): string {\n return \"trace_\" + Math.random().toString(36).substring(2, 9);\n}\n\nexport function sanitizeInput_schema_registry_store(val: string): string {\n if (typeof val !== \"string\") return \"\";\n return val.replace(/[^a-zA-Z0-9_-]/g, \"\");\n}\n\nexport function parseJsonSafe_schema_registry_store<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_schema_registry_store(val: number, min: number, max: number): number {\n return Math.min(Math.max(val, min), max);\n}\n\nexport function buildCacheKey_schema_registry_store(prefix: string, id: string): string {\n return `${prefix}:${id}:${Date.now()}`;\n}\n\nexport function sleepMs_schema_registry_store(ms: number): Promise<void> {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"path": "src/config.ts",
|
|
604
|
+
"content": "/**\n * Default configuration options for schema-registry-store\n *\n * Specifies timeout parameters, retry policies, logging preferences,\n * and feature flags for local execution.\n */\nexport const DEFAULT_CONFIG_schema_registry_store = {\n domain: \"schema-registry-store\",\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_schema_registry_store(): typeof DEFAULT_CONFIG_schema_registry_store {\n return { ...DEFAULT_CONFIG_schema_registry_store };\n}\n"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"path": "src/domain-workflow.ts",
|
|
608
|
+
"content": "/**\n * Local workflow contracts for schema-registry-store.\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_d1ebdeae_00_Request {\n w_d1ebdeae_00_record: string;\n w_d1ebdeae_00_sequence: number;\n}\n\nexport interface w_d1ebdeae_00_Result {\n w_d1ebdeae_00_accepted: boolean;\n w_d1ebdeae_00_token: string;\n}\n\nexport function execute_w_d1ebdeae_00(\n input_w_d1ebdeae_00: w_d1ebdeae_00_Request,\n): w_d1ebdeae_00_Result {\n const normalized_w_d1ebdeae_00 = input_w_d1ebdeae_00.w_d1ebdeae_00_record.trim().toLowerCase();\n const score_w_d1ebdeae_00 =\n normalized_w_d1ebdeae_00.length + input_w_d1ebdeae_00.w_d1ebdeae_00_sequence;\n return {\n w_d1ebdeae_00_accepted: score_w_d1ebdeae_00 % 2 === 0,\n w_d1ebdeae_00_token: `schema-registry-store:0:${score_w_d1ebdeae_00}`,\n };\n}\n\nexport interface w_d1ebdeae_01_Request {\n w_d1ebdeae_01_record: string;\n w_d1ebdeae_01_sequence: number;\n}\n\nexport interface w_d1ebdeae_01_Result {\n w_d1ebdeae_01_accepted: boolean;\n w_d1ebdeae_01_token: string;\n}\n\nexport function execute_w_d1ebdeae_01(\n input_w_d1ebdeae_01: w_d1ebdeae_01_Request,\n): w_d1ebdeae_01_Result {\n const normalized_w_d1ebdeae_01 = input_w_d1ebdeae_01.w_d1ebdeae_01_record.trim().toLowerCase();\n const score_w_d1ebdeae_01 =\n normalized_w_d1ebdeae_01.length + input_w_d1ebdeae_01.w_d1ebdeae_01_sequence;\n return {\n w_d1ebdeae_01_accepted: score_w_d1ebdeae_01 % 2 === 0,\n w_d1ebdeae_01_token: `schema-registry-store:1:${score_w_d1ebdeae_01}`,\n };\n}\n\nexport interface w_d1ebdeae_02_Request {\n w_d1ebdeae_02_record: string;\n w_d1ebdeae_02_sequence: number;\n}\n\nexport interface w_d1ebdeae_02_Result {\n w_d1ebdeae_02_accepted: boolean;\n w_d1ebdeae_02_token: string;\n}\n\nexport function execute_w_d1ebdeae_02(\n input_w_d1ebdeae_02: w_d1ebdeae_02_Request,\n): w_d1ebdeae_02_Result {\n const normalized_w_d1ebdeae_02 = input_w_d1ebdeae_02.w_d1ebdeae_02_record.trim().toLowerCase();\n const score_w_d1ebdeae_02 =\n normalized_w_d1ebdeae_02.length + input_w_d1ebdeae_02.w_d1ebdeae_02_sequence;\n return {\n w_d1ebdeae_02_accepted: score_w_d1ebdeae_02 % 2 === 0,\n w_d1ebdeae_02_token: `schema-registry-store:2:${score_w_d1ebdeae_02}`,\n };\n}\n\nexport interface w_d1ebdeae_03_Request {\n w_d1ebdeae_03_record: string;\n w_d1ebdeae_03_sequence: number;\n}\n\nexport interface w_d1ebdeae_03_Result {\n w_d1ebdeae_03_accepted: boolean;\n w_d1ebdeae_03_token: string;\n}\n\nexport function execute_w_d1ebdeae_03(\n input_w_d1ebdeae_03: w_d1ebdeae_03_Request,\n): w_d1ebdeae_03_Result {\n const normalized_w_d1ebdeae_03 = input_w_d1ebdeae_03.w_d1ebdeae_03_record.trim().toLowerCase();\n const score_w_d1ebdeae_03 =\n normalized_w_d1ebdeae_03.length + input_w_d1ebdeae_03.w_d1ebdeae_03_sequence;\n return {\n w_d1ebdeae_03_accepted: score_w_d1ebdeae_03 % 2 === 0,\n w_d1ebdeae_03_token: `schema-registry-store:3:${score_w_d1ebdeae_03}`,\n };\n}\n\nexport interface w_d1ebdeae_04_Request {\n w_d1ebdeae_04_record: string;\n w_d1ebdeae_04_sequence: number;\n}\n\nexport interface w_d1ebdeae_04_Result {\n w_d1ebdeae_04_accepted: boolean;\n w_d1ebdeae_04_token: string;\n}\n\nexport function execute_w_d1ebdeae_04(\n input_w_d1ebdeae_04: w_d1ebdeae_04_Request,\n): w_d1ebdeae_04_Result {\n const normalized_w_d1ebdeae_04 = input_w_d1ebdeae_04.w_d1ebdeae_04_record.trim().toLowerCase();\n const score_w_d1ebdeae_04 =\n normalized_w_d1ebdeae_04.length + input_w_d1ebdeae_04.w_d1ebdeae_04_sequence;\n return {\n w_d1ebdeae_04_accepted: score_w_d1ebdeae_04 % 2 === 0,\n w_d1ebdeae_04_token: `schema-registry-store:4:${score_w_d1ebdeae_04}`,\n };\n}\n\nexport interface w_d1ebdeae_05_Request {\n w_d1ebdeae_05_record: string;\n w_d1ebdeae_05_sequence: number;\n}\n\nexport interface w_d1ebdeae_05_Result {\n w_d1ebdeae_05_accepted: boolean;\n w_d1ebdeae_05_token: string;\n}\n\nexport function execute_w_d1ebdeae_05(\n input_w_d1ebdeae_05: w_d1ebdeae_05_Request,\n): w_d1ebdeae_05_Result {\n const normalized_w_d1ebdeae_05 = input_w_d1ebdeae_05.w_d1ebdeae_05_record.trim().toLowerCase();\n const score_w_d1ebdeae_05 =\n normalized_w_d1ebdeae_05.length + input_w_d1ebdeae_05.w_d1ebdeae_05_sequence;\n return {\n w_d1ebdeae_05_accepted: score_w_d1ebdeae_05 % 2 === 0,\n w_d1ebdeae_05_token: `schema-registry-store:5:${score_w_d1ebdeae_05}`,\n };\n}\n\nexport interface w_d1ebdeae_06_Request {\n w_d1ebdeae_06_record: string;\n w_d1ebdeae_06_sequence: number;\n}\n\nexport interface w_d1ebdeae_06_Result {\n w_d1ebdeae_06_accepted: boolean;\n w_d1ebdeae_06_token: string;\n}\n\nexport function execute_w_d1ebdeae_06(\n input_w_d1ebdeae_06: w_d1ebdeae_06_Request,\n): w_d1ebdeae_06_Result {\n const normalized_w_d1ebdeae_06 = input_w_d1ebdeae_06.w_d1ebdeae_06_record.trim().toLowerCase();\n const score_w_d1ebdeae_06 =\n normalized_w_d1ebdeae_06.length + input_w_d1ebdeae_06.w_d1ebdeae_06_sequence;\n return {\n w_d1ebdeae_06_accepted: score_w_d1ebdeae_06 % 2 === 0,\n w_d1ebdeae_06_token: `schema-registry-store:6:${score_w_d1ebdeae_06}`,\n };\n}\n\nexport interface w_d1ebdeae_07_Request {\n w_d1ebdeae_07_record: string;\n w_d1ebdeae_07_sequence: number;\n}\n\nexport interface w_d1ebdeae_07_Result {\n w_d1ebdeae_07_accepted: boolean;\n w_d1ebdeae_07_token: string;\n}\n\nexport function execute_w_d1ebdeae_07(\n input_w_d1ebdeae_07: w_d1ebdeae_07_Request,\n): w_d1ebdeae_07_Result {\n const normalized_w_d1ebdeae_07 = input_w_d1ebdeae_07.w_d1ebdeae_07_record.trim().toLowerCase();\n const score_w_d1ebdeae_07 =\n normalized_w_d1ebdeae_07.length + input_w_d1ebdeae_07.w_d1ebdeae_07_sequence;\n return {\n w_d1ebdeae_07_accepted: score_w_d1ebdeae_07 % 2 === 0,\n w_d1ebdeae_07_token: `schema-registry-store:7:${score_w_d1ebdeae_07}`,\n };\n}\n\nexport const w_d1ebdeae_lex_00 = \"w_d1ebdeae_a_00 w_d1ebdeae_b_00 w_d1ebdeae_c_00 w_d1ebdeae_d_00 w_d1ebdeae_e_00\";\nexport const w_d1ebdeae_lex_01 = \"w_d1ebdeae_a_01 w_d1ebdeae_b_01 w_d1ebdeae_c_01 w_d1ebdeae_d_01 w_d1ebdeae_e_01\";\nexport const w_d1ebdeae_lex_02 = \"w_d1ebdeae_a_02 w_d1ebdeae_b_02 w_d1ebdeae_c_02 w_d1ebdeae_d_02 w_d1ebdeae_e_02\";\nexport const w_d1ebdeae_lex_03 = \"w_d1ebdeae_a_03 w_d1ebdeae_b_03 w_d1ebdeae_c_03 w_d1ebdeae_d_03 w_d1ebdeae_e_03\";\nexport const w_d1ebdeae_lex_04 = \"w_d1ebdeae_a_04 w_d1ebdeae_b_04 w_d1ebdeae_c_04 w_d1ebdeae_d_04 w_d1ebdeae_e_04\";\nexport const w_d1ebdeae_lex_05 = \"w_d1ebdeae_a_05 w_d1ebdeae_b_05 w_d1ebdeae_c_05 w_d1ebdeae_d_05 w_d1ebdeae_e_05\";\nexport const w_d1ebdeae_lex_06 = \"w_d1ebdeae_a_06 w_d1ebdeae_b_06 w_d1ebdeae_c_06 w_d1ebdeae_d_06 w_d1ebdeae_e_06\";\nexport const w_d1ebdeae_lex_07 = \"w_d1ebdeae_a_07 w_d1ebdeae_b_07 w_d1ebdeae_c_07 w_d1ebdeae_d_07 w_d1ebdeae_e_07\";\nexport const w_d1ebdeae_lex_08 = \"w_d1ebdeae_a_08 w_d1ebdeae_b_08 w_d1ebdeae_c_08 w_d1ebdeae_d_08 w_d1ebdeae_e_08\";\nexport const w_d1ebdeae_lex_09 = \"w_d1ebdeae_a_09 w_d1ebdeae_b_09 w_d1ebdeae_c_09 w_d1ebdeae_d_09 w_d1ebdeae_e_09\";\nexport const w_d1ebdeae_lex_10 = \"w_d1ebdeae_a_10 w_d1ebdeae_b_10 w_d1ebdeae_c_10 w_d1ebdeae_d_10 w_d1ebdeae_e_10\";\nexport const w_d1ebdeae_lex_11 = \"w_d1ebdeae_a_11 w_d1ebdeae_b_11 w_d1ebdeae_c_11 w_d1ebdeae_d_11 w_d1ebdeae_e_11\";\nexport const w_d1ebdeae_lex_12 = \"w_d1ebdeae_a_12 w_d1ebdeae_b_12 w_d1ebdeae_c_12 w_d1ebdeae_d_12 w_d1ebdeae_e_12\";\nexport const w_d1ebdeae_lex_13 = \"w_d1ebdeae_a_13 w_d1ebdeae_b_13 w_d1ebdeae_c_13 w_d1ebdeae_d_13 w_d1ebdeae_e_13\";\nexport const w_d1ebdeae_lex_14 = \"w_d1ebdeae_a_14 w_d1ebdeae_b_14 w_d1ebdeae_c_14 w_d1ebdeae_d_14 w_d1ebdeae_e_14\";\nexport const w_d1ebdeae_lex_15 = \"w_d1ebdeae_a_15 w_d1ebdeae_b_15 w_d1ebdeae_c_15 w_d1ebdeae_d_15 w_d1ebdeae_e_15\";\nexport const w_d1ebdeae_lex_16 = \"w_d1ebdeae_a_16 w_d1ebdeae_b_16 w_d1ebdeae_c_16 w_d1ebdeae_d_16 w_d1ebdeae_e_16\";\nexport const w_d1ebdeae_lex_17 = \"w_d1ebdeae_a_17 w_d1ebdeae_b_17 w_d1ebdeae_c_17 w_d1ebdeae_d_17 w_d1ebdeae_e_17\";\nexport const w_d1ebdeae_lex_18 = \"w_d1ebdeae_a_18 w_d1ebdeae_b_18 w_d1ebdeae_c_18 w_d1ebdeae_d_18 w_d1ebdeae_e_18\";\nexport const w_d1ebdeae_lex_19 = \"w_d1ebdeae_a_19 w_d1ebdeae_b_19 w_d1ebdeae_c_19 w_d1ebdeae_d_19 w_d1ebdeae_e_19\";\nexport const w_d1ebdeae_lex_20 = \"w_d1ebdeae_a_20 w_d1ebdeae_b_20 w_d1ebdeae_c_20 w_d1ebdeae_d_20 w_d1ebdeae_e_20\";\nexport const w_d1ebdeae_lex_21 = \"w_d1ebdeae_a_21 w_d1ebdeae_b_21 w_d1ebdeae_c_21 w_d1ebdeae_d_21 w_d1ebdeae_e_21\";\nexport const w_d1ebdeae_lex_22 = \"w_d1ebdeae_a_22 w_d1ebdeae_b_22 w_d1ebdeae_c_22 w_d1ebdeae_d_22 w_d1ebdeae_e_22\";\nexport const w_d1ebdeae_lex_23 = \"w_d1ebdeae_a_23 w_d1ebdeae_b_23 w_d1ebdeae_c_23 w_d1ebdeae_d_23 w_d1ebdeae_e_23\";\nexport const w_d1ebdeae_lex_24 = \"w_d1ebdeae_a_24 w_d1ebdeae_b_24 w_d1ebdeae_c_24 w_d1ebdeae_d_24 w_d1ebdeae_e_24\";\nexport const w_d1ebdeae_lex_25 = \"w_d1ebdeae_a_25 w_d1ebdeae_b_25 w_d1ebdeae_c_25 w_d1ebdeae_d_25 w_d1ebdeae_e_25\";\nexport const w_d1ebdeae_lex_26 = \"w_d1ebdeae_a_26 w_d1ebdeae_b_26 w_d1ebdeae_c_26 w_d1ebdeae_d_26 w_d1ebdeae_e_26\";\nexport const w_d1ebdeae_lex_27 = \"w_d1ebdeae_a_27 w_d1ebdeae_b_27 w_d1ebdeae_c_27 w_d1ebdeae_d_27 w_d1ebdeae_e_27\";\n"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"path": "README.md",
|
|
612
|
+
"content": "# Synthetic Repository for schema-registry-store\n\nThis repository contains a local service module for schema-registry-store.\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"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"path": "TASK.md",
|
|
616
|
+
"content": "# Benchmark Task Instruction\n\nFunctional requirement: Revise the canonical default configuration so runtime loads the new values from that source; do not edit an unused shadow copy.\n\nUpdate the local domain module for schema-registry-store 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"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"path": "test/check.js",
|
|
620
|
+
"content": "import { repositoryIdentity27f608a3 } from \"../src/service.mjs\";\nconst {\n vbbea9f73, vb8f79bc0, v10848e26, vf2b4b981, v018a7643, v0c330aef, va5fee7e3, v69c2ebb0,\n v926d3cab, vb785d7da, v8f6083eb, vc16aa08c, v77d691dc, v2ecc410d, v013f1d36, v1c7bdbb8,\n v42d382f1,\n} = repositoryIdentity27f608a3;\nif (!Object.values(repositoryIdentity27f608a3).every(Boolean)) throw new Error(\"Repository identity is invalid\");\nimport fs from \"node:fs\";\nimport { readConfig_schema_registry_store } from \"../src/service.mjs\";\nconst snapshot = {\n disk: JSON.parse(fs.readFileSync(\"config/default.json\", \"utf8\")),\n resolved: readConfig_schema_registry_store(),\n};\nconst expected = {\n disk: { pageLimit: 60, prefetch: 2 },\n resolved: { pageLimit: 60, prefetch: 2 },\n};\nif (JSON.stringify(snapshot) === JSON.stringify(expected)) {\n console.log(\"FIXED: fallback loader snapshot uses the canonical source\");\n process.exit(0);\n}\nif (JSON.stringify(snapshot.disk) === JSON.stringify(expected.disk) &&\n JSON.stringify(snapshot.resolved) !== JSON.stringify(snapshot.disk)) {\n console.log(\"CHECK_FAILED: successful override read bypasses fallback\");\n process.exit(2);\n}\nconsole.log(\"UNFIXED: fallback configuration is not updated\");\nprocess.exit(1);\n"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"path": "config/default.json",
|
|
624
|
+
"content": "{\n \"pageLimit\": 60,\n \"prefetch\": 2\n}\n"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"path": "src/service.mjs",
|
|
628
|
+
"content": "import fs from \"node:fs\";\nconst decode = (path) => JSON.parse(fs.readFileSync(path, \"utf8\"));\nexport function readConfig_schema_registry_store() {\n return decode(\"./config/default.json\");\n}\nexport const repositoryIdentity27f608a3 = Object.freeze({\n vbbea9f73: true, vb8f79bc0: true, v10848e26: true, vf2b4b981: true, v018a7643: true, v0c330aef: true,\n va5fee7e3: true, v69c2ebb0: true, v926d3cab: true, vb785d7da: true, v8f6083eb: true, vc16aa08c: true,\n v77d691dc: true, v2ecc410d: true, v013f1d36: true, v1c7bdbb8: true, v42d382f1: true,\n});\n"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"path": "src/helper.ts",
|
|
632
|
+
"content": "export * from \"./helper/core.js\";\n"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"path": "src/helper/core.ts",
|
|
636
|
+
"content": "/**\n * Helper routines for schema-registry-store\n *\n * Provides header builders, service context factories, and validation guards.\n */\nimport { formatDomainName_schema_registry_store, generateTraceId_schema_registry_store } from \"../utils.js\";\n\nexport function getDomainHeader_schema_registry_store(domain: string): string {\n return \"X-Domain-\" + formatDomainName_schema_registry_store(domain);\n}\n\nexport function createServiceContext_schema_registry_store(domain: string): { domain: string; traceId: string; timestamp: number } {\n return {\n domain: formatDomainName_schema_registry_store(domain),\n traceId: generateTraceId_schema_registry_store(),\n timestamp: Date.now(),\n };\n}\n\nexport function validateDomainHeader_schema_registry_store(header: string): boolean {\n return typeof header === \"string\" && header.startsWith(\"X-Domain-\");\n}\n\nexport function buildResponseEnvelope_schema_registry_store<T>(\n data: T,\n status = \"ok\",\n): { status: string; data: T; timestamp: string } {\n return { status, data, timestamp: new Date().toISOString() };\n}\n"
|
|
637
|
+
}
|
|
638
|
+
],
|
|
639
|
+
"cleanRevisionSha": "717417e635c5f292083fef54c414a329931e7e09",
|
|
640
|
+
"trapRevisionSha": "f6a7672443a3a294fc81afeb3a6a6431dacf476b",
|
|
641
|
+
"rightRevisionSha": "694e386358e28414c25f404fec6b12f8ae7a8359",
|
|
642
|
+
"noTrapRevisionSha": "6f74db9bd35338f27a8ca07ac6647c2e2050d5f8"
|
|
643
|
+
}
|
|
644
|
+
]
|
|
645
|
+
}
|