shoal-web-sdk 0.0.149 → 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,
@@ -395,7 +395,7 @@ export const zContainerNodeProps = z.object({
395
395
  minInstances: z.optional(z.int()),
396
396
  concurrency: z.optional(z.int()),
397
397
  allowUnauthenticated: z.optional(z.boolean()),
398
- uri: z.optional(z.string().regex(/^(file:[\/][\/]github[.]com[\/][^\/]+[\/][^\/]+[\/][^\/]+|file:[\/][\/]sourcecode[\/][^\/]+[.]zip|docker:[\/][\/][^\/]+[\/][^\/]+)$/)),
398
+ uri: z.optional(z.string()),
399
399
  installationId: z.optional(z.string()),
400
400
  env: z.optional(z.record(z.string(), z.string()))
401
401
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.149",
3
+ "version": "0.0.151",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",