shoal-web-sdk 0.0.172 → 0.0.173

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.
@@ -547,7 +547,7 @@ export type PlanPriceResponse = {
547
547
  };
548
548
  export type DeploymentStatus = 'pending' | 'prebuilding' | 'building' | 'deploying' | 'configuring' | 'succeeded' | 'failed';
549
549
  export type DeploymentStatusInformation = {
550
- status: DeploymentStatus;
550
+ status?: DeploymentStatus;
551
551
  message?: string;
552
552
  };
553
553
  /**
@@ -1095,7 +1095,7 @@ export declare const zPaginatedEnvironmentVersions: z.ZodIntersection<z.ZodObjec
1095
1095
  }, z.core.$strip>>;
1096
1096
  }, z.core.$strip>>;
1097
1097
  export declare const zDeploymentStatusInformation: z.ZodObject<{
1098
- status: z.ZodEnum<{
1098
+ status: z.ZodOptional<z.ZodEnum<{
1099
1099
  pending: "pending";
1100
1100
  prebuilding: "prebuilding";
1101
1101
  building: "building";
@@ -1103,7 +1103,7 @@ export declare const zDeploymentStatusInformation: z.ZodObject<{
1103
1103
  configuring: "configuring";
1104
1104
  succeeded: "succeeded";
1105
1105
  failed: "failed";
1106
- }>;
1106
+ }>>;
1107
1107
  message: z.ZodOptional<z.ZodString>;
1108
1108
  }, z.core.$strip>;
1109
1109
  /**
@@ -1266,7 +1266,7 @@ export declare const zGetVersionM2mResponse: z.ZodObject<{
1266
1266
  }, z.core.$strip>;
1267
1267
  export declare const zUpdateDeploymentStatusM2mData: z.ZodObject<{
1268
1268
  body: z.ZodObject<{
1269
- status: z.ZodEnum<{
1269
+ status: z.ZodOptional<z.ZodEnum<{
1270
1270
  pending: "pending";
1271
1271
  prebuilding: "prebuilding";
1272
1272
  building: "building";
@@ -1274,7 +1274,7 @@ export declare const zUpdateDeploymentStatusM2mData: z.ZodObject<{
1274
1274
  configuring: "configuring";
1275
1275
  succeeded: "succeeded";
1276
1276
  failed: "failed";
1277
- }>;
1277
+ }>>;
1278
1278
  message: z.ZodOptional<z.ZodString>;
1279
1279
  }, z.core.$strip>;
1280
1280
  path: z.ZodObject<{
@@ -532,7 +532,7 @@ export const zPaginatedEnvironmentVersions = zPagination.and(z.object({
532
532
  versions: z.array(zVersion)
533
533
  }));
534
534
  export const zDeploymentStatusInformation = z.object({
535
- status: zDeploymentStatus,
535
+ status: z.optional(zDeploymentStatus),
536
536
  message: z.optional(z.string())
537
537
  });
538
538
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.172",
3
+ "version": "0.0.173",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",