@peac/schema 0.12.0-preview.1 → 0.12.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -5
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1,12 +1,12 @@
1
1
  /**
2
2
  * PEAC Protocol Schema Package
3
3
  *
4
- * Dual-stack: Wire 0.1 (peac-receipt/0.1, stable) + Wire 0.2 preview
5
- * (interaction-record+jwt, v0.12.0-preview.1+, next tag).
4
+ * Dual-stack: Wire 0.1 (peac-receipt/0.1, frozen legacy) + Interaction Record
5
+ * format (interaction-record+jwt, current stable on `latest`).
6
6
  *
7
- * Wire 0.1 remains fully supported and stable. All existing Wire 0.1 schemas,
8
- * validators, and helpers are unchanged. Wire 0.2 types are additive exports
9
- * and do not affect Wire 0.1 parsing or validation.
7
+ * Wire 0.1 schemas, validators, and helpers are preserved for backward
8
+ * compatibility. The Interaction Record format types are the current stable
9
+ * public surface.
10
10
  */
11
11
  export * from './envelope';
12
12
  export * from './control';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peac/schema",
3
- "version": "0.12.0-preview.1",
3
+ "version": "0.12.0",
4
4
  "description": "PEAC Protocol JSON schemas, OpenAPI specs, and TypeScript types",
5
5
  "main": "dist/index.cjs",
6
6
  "types": "dist/index.d.ts",
@@ -63,7 +63,7 @@
63
63
  },
64
64
  "dependencies": {
65
65
  "zod": "^4.3.6",
66
- "@peac/kernel": "0.12.0-preview.1"
66
+ "@peac/kernel": "0.12.0"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@types/node": "^22.19.11",