@u-krupaveho-kraba/form-schemas 0.1.1 → 0.1.2

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/README.md +3 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -47,10 +47,9 @@ const campaignSchema = getCampaignJsonSchema();
47
47
  ```
48
48
 
49
49
  The generated Campaign JSON Schema also ships pre-built in the package at
50
- `schema/campaign.schema.json` this is the artifact `ecomailapp` (the PHP
51
- backend that publishes campaign JSON) validates its output against, so its
52
- publish job can't silently drift from this schema the way it did before
53
- (see ticket 115 / ADR 0017 in the source repo).
50
+ `schema/campaign.schema.json`, so non-TypeScript consumers (e.g. a backend
51
+ service in another language) can validate against the exact same contract
52
+ without needing to run TypeScript or zod themselves.
54
53
 
55
54
  ## Versioning
56
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@u-krupaveho-kraba/form-schemas",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Zod schemas for Topol form JSON (validation gate + AI generation)",
5
5
  "author": "Topol.io",
6
6
  "license": "ISC",