@taqueria/protocol 0.62.3 → 0.63.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.
Files changed (1) hide show
  1. package/package.json +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taqueria/protocol",
3
- "version": "0.62.3",
3
+ "version": "0.63.1",
4
4
  "description": "A TypeScript package which contains types that are to be shared between @taqueria/node-sdk and @taqueria/taqueria.",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -334,6 +334,9 @@
334
334
  "clean": "rm -f tsconfig.tsbuildinfo *.js *.d.ts *.map out/*.js out/*.d.ts out/*.map out/types/*.js out/types/*.d.ts out/types/*.map",
335
335
  "typecheck": "pnpm exec tsc --emitDeclarationOnly -p ./tsconfig.json",
336
336
  "build": "pnpm run clean && pnpm run typecheck && pnpm exec tsup",
337
- "build-types": "pnpm exec ts-to-zod types.ts out/types-zod.ts && pnpm exec ts-node scripts/post-ts-to-zod.ts && pnpm exec ts-node scripts/build-types.ts"
337
+ "build-zod": "pnpm exec ts-to-zod types.ts out/types-zod.ts",
338
+ "postbuild-zod": "pnpm exec ts-node scripts/post-ts-to-zod.ts",
339
+ "build-type-models": "pnpm exec ts-node scripts/build-types.ts",
340
+ "build-types": "pnpm run build-zod && pnpm run build-type-models"
338
341
  }
339
342
  }