shoal-web-sdk 0.0.150 → 0.0.152

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.
@@ -297,7 +297,6 @@ export type EnvironmentVersion = {
297
297
  created_at?: string;
298
298
  last_updated_at: string;
299
299
  deployment_id?: string;
300
- deployment_name?: string;
301
300
  status: string;
302
301
  deployment_started_at?: string;
303
302
  deployment_completed_at?: string;
@@ -459,7 +459,6 @@ export declare const zEnvironmentVersion: z.ZodObject<{
459
459
  created_at: z.ZodOptional<z.ZodISODateTime>;
460
460
  last_updated_at: z.ZodISODateTime;
461
461
  deployment_id: z.ZodOptional<z.ZodUUID>;
462
- deployment_name: z.ZodOptional<z.ZodString>;
463
462
  status: z.ZodString;
464
463
  deployment_started_at: z.ZodOptional<z.ZodISODateTime>;
465
464
  deployment_completed_at: z.ZodOptional<z.ZodISODateTime>;
@@ -477,7 +476,6 @@ export declare const zPaginatedEnvironmentVersions: z.ZodIntersection<z.ZodObjec
477
476
  created_at: z.ZodOptional<z.ZodISODateTime>;
478
477
  last_updated_at: z.ZodISODateTime;
479
478
  deployment_id: z.ZodOptional<z.ZodUUID>;
480
- deployment_name: z.ZodOptional<z.ZodString>;
481
479
  status: z.ZodString;
482
480
  deployment_started_at: z.ZodOptional<z.ZodISODateTime>;
483
481
  deployment_completed_at: z.ZodOptional<z.ZodISODateTime>;
@@ -2332,7 +2330,6 @@ export declare const zGetEnvironmentVersionsResponse: z.ZodIntersection<z.ZodObj
2332
2330
  created_at: z.ZodOptional<z.ZodISODateTime>;
2333
2331
  last_updated_at: z.ZodISODateTime;
2334
2332
  deployment_id: z.ZodOptional<z.ZodUUID>;
2335
- deployment_name: z.ZodOptional<z.ZodString>;
2336
2333
  status: z.ZodString;
2337
2334
  deployment_started_at: z.ZodOptional<z.ZodISODateTime>;
2338
2335
  deployment_completed_at: z.ZodOptional<z.ZodISODateTime>;
@@ -297,7 +297,6 @@ export const zEnvironmentVersion = z.object({
297
297
  created_at: z.optional(z.iso.datetime()),
298
298
  last_updated_at: z.iso.datetime(),
299
299
  deployment_id: z.optional(z.uuid()),
300
- deployment_name: z.optional(z.string()),
301
300
  status: z.string(),
302
301
  deployment_started_at: z.optional(z.iso.datetime()),
303
302
  deployment_completed_at: z.optional(z.iso.datetime()),
@@ -386,7 +385,7 @@ export const zIngress = z.enum([
386
385
  ]);
387
386
  export const zContainerNodeProps = z.object({
388
387
  region: zRegion,
389
- port: z.int(),
388
+ port: z.int().gte(1).lte(65535),
390
389
  cpu: zCpu,
391
390
  memory: zMemory,
392
391
  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.152",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",