From 6f06afd25fbb8fdecbde64ab97204ec438c60b1e Mon Sep 17 00:00:00 2001 From: Daniel Gazineu Date: Sun, 28 Jun 2026 15:01:25 -0400 Subject: [PATCH] chore(release): types 0.10.13 (version collision with a parallel 0.10.12) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @codespar/types@0.10.12 was published in parallel by unrelated work (it does not contain the payment-failure-triage scenarios), so the scenarios added in #103 — which also landed as 0.10.12 — cannot publish at that number. Bump to 0.10.13 so the scenarios + DEMO_SCENARIO_MANIFEST publish at a free version. The manifest version is bumped in lockstep (its self-test enforces equality with the package version), and the example + the managed parity test pin 0.10.13. --- packages/types/package.json | 2 +- packages/types/src/testing/scenario-manifest.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/types/package.json b/packages/types/package.json index bdcb1bb..9c6d93e 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@codespar/types", - "version": "0.10.12", + "version": "0.10.13", "description": "Shared session interface contract for codespar runtimes", "type": "module", "main": "./dist/index.js", diff --git a/packages/types/src/testing/scenario-manifest.ts b/packages/types/src/testing/scenario-manifest.ts index 9ae3e80..48231d5 100644 --- a/packages/types/src/testing/scenario-manifest.ts +++ b/packages/types/src/testing/scenario-manifest.ts @@ -22,7 +22,7 @@ * names a consumer of these scenarios must drive completely. */ export const DEMO_SCENARIO_MANIFEST = { /** Must equal this package's published version (see the lockstep test). */ - version: "0.10.12", + version: "0.10.13", /** Scenario `name`s a consumer must drive, exactly. */ scenarios: ["customer-data-rejection", "merchant-blocked"], } as const;