shoal-web-sdk 0.0.150 → 0.0.151

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.
@@ -386,7 +386,7 @@ export const zIngress = z.enum([
386
386
  ]);
387
387
  export const zContainerNodeProps = z.object({
388
388
  region: zRegion,
389
- port: z.int(),
389
+ port: z.int().gte(1).lte(65535),
390
390
  cpu: zCpu,
391
391
  memory: zMemory,
392
392
  ingress: zIngress,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.150",
3
+ "version": "0.0.151",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",