shoal-web-sdk 1.0.76 → 1.0.77

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.
@@ -344,6 +344,10 @@ export type EnvironmentOverview = {
344
344
  * When this environment is due to be purged. Only present while softDelete is true.
345
345
  */
346
346
  scheduleDeleteAt?: string;
347
+ /**
348
+ * The environment this one was cloned from. Absent when the environment was not created by cloning or when the parent has since been deleted.
349
+ */
350
+ parent?: string;
347
351
  };
348
352
  export type AccountIdentity = {
349
353
  id: string;
@@ -385,6 +385,7 @@ export declare const zEnvironmentOverview: z.ZodObject<{
385
385
  blueprintId: z.ZodOptional<z.ZodUUID>;
386
386
  softDelete: z.ZodOptional<z.ZodBoolean>;
387
387
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
388
+ parent: z.ZodOptional<z.ZodUUID>;
388
389
  }, z.core.$strip>;
389
390
  export declare const zPaginatedEnvironments: z.ZodIntersection<z.ZodObject<{
390
391
  page: z.ZodInt;
@@ -402,6 +403,7 @@ export declare const zPaginatedEnvironments: z.ZodIntersection<z.ZodObject<{
402
403
  blueprintId: z.ZodOptional<z.ZodUUID>;
403
404
  softDelete: z.ZodOptional<z.ZodBoolean>;
404
405
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
406
+ parent: z.ZodOptional<z.ZodUUID>;
405
407
  }, z.core.$strip>>;
406
408
  }, z.core.$strip>>;
407
409
  export declare const zAccountIdentity: z.ZodObject<{
@@ -5325,6 +5327,7 @@ export declare const zGetProjectEnvironmentsResponse: z.ZodIntersection<z.ZodObj
5325
5327
  blueprintId: z.ZodOptional<z.ZodUUID>;
5326
5328
  softDelete: z.ZodOptional<z.ZodBoolean>;
5327
5329
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
5330
+ parent: z.ZodOptional<z.ZodUUID>;
5328
5331
  }, z.core.$strip>>;
5329
5332
  }, z.core.$strip>>;
5330
5333
  export declare const zCreateEnvironmentData: z.ZodObject<{
@@ -5354,6 +5357,7 @@ export declare const zCreateEnvironmentResponse: z.ZodObject<{
5354
5357
  blueprintId: z.ZodOptional<z.ZodUUID>;
5355
5358
  softDelete: z.ZodOptional<z.ZodBoolean>;
5356
5359
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
5360
+ parent: z.ZodOptional<z.ZodUUID>;
5357
5361
  }, z.core.$strip>;
5358
5362
  export declare const zCreateSecretData: z.ZodObject<{
5359
5363
  body: z.ZodObject<{
@@ -5429,6 +5433,7 @@ export declare const zGetEnvironmentOverviewResponse: z.ZodObject<{
5429
5433
  blueprintId: z.ZodOptional<z.ZodUUID>;
5430
5434
  softDelete: z.ZodOptional<z.ZodBoolean>;
5431
5435
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
5436
+ parent: z.ZodOptional<z.ZodUUID>;
5432
5437
  }, z.core.$strip>;
5433
5438
  export declare const zGetEnvironmentVersionsData: z.ZodObject<{
5434
5439
  body: z.ZodOptional<z.ZodNever>;
@@ -5726,6 +5731,7 @@ export declare const zCloneEnvironmentResponse: z.ZodObject<{
5726
5731
  blueprintId: z.ZodOptional<z.ZodUUID>;
5727
5732
  softDelete: z.ZodOptional<z.ZodBoolean>;
5728
5733
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
5734
+ parent: z.ZodOptional<z.ZodUUID>;
5729
5735
  }, z.core.$strip>;
5730
5736
  export declare const zGetGraphOverviewData: z.ZodObject<{
5731
5737
  body: z.ZodOptional<z.ZodNever>;
@@ -286,7 +286,8 @@ export const zEnvironmentOverview = z.object({
286
286
  versions: z.int(),
287
287
  blueprintId: z.optional(z.uuid()),
288
288
  softDelete: z.optional(z.boolean()),
289
- scheduleDeleteAt: z.optional(z.iso.datetime())
289
+ scheduleDeleteAt: z.optional(z.iso.datetime()),
290
+ parent: z.optional(z.uuid())
290
291
  });
291
292
  export const zPaginatedEnvironments = zPagination.and(z.object({
292
293
  environments: z.array(zEnvironmentOverview)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.76",
3
+ "version": "1.0.77",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",