shoal-web-sdk 1.0.82 → 1.0.83

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.
@@ -348,6 +348,10 @@ export type EnvironmentOverview = {
348
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
349
  */
350
350
  parent?: string;
351
+ /**
352
+ * The GCP project this environment is provisioned into. Absent when no GCP project has been assigned yet.
353
+ */
354
+ gcpProjectId?: string;
351
355
  };
352
356
  export type AccountIdentity = {
353
357
  id: string;
@@ -386,6 +386,7 @@ export declare const zEnvironmentOverview: z.ZodObject<{
386
386
  softDelete: z.ZodOptional<z.ZodBoolean>;
387
387
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
388
388
  parent: z.ZodOptional<z.ZodUUID>;
389
+ gcpProjectId: z.ZodOptional<z.ZodString>;
389
390
  }, z.core.$strip>;
390
391
  export declare const zPaginatedEnvironments: z.ZodIntersection<z.ZodObject<{
391
392
  page: z.ZodInt;
@@ -404,6 +405,7 @@ export declare const zPaginatedEnvironments: z.ZodIntersection<z.ZodObject<{
404
405
  softDelete: z.ZodOptional<z.ZodBoolean>;
405
406
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
406
407
  parent: z.ZodOptional<z.ZodUUID>;
408
+ gcpProjectId: z.ZodOptional<z.ZodString>;
407
409
  }, z.core.$strip>>;
408
410
  }, z.core.$strip>>;
409
411
  export declare const zAccountIdentity: z.ZodObject<{
@@ -2601,6 +2603,7 @@ export declare const zGetEnvironmentsM2mResponse: z.ZodIntersection<z.ZodObject<
2601
2603
  softDelete: z.ZodOptional<z.ZodBoolean>;
2602
2604
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
2603
2605
  parent: z.ZodOptional<z.ZodUUID>;
2606
+ gcpProjectId: z.ZodOptional<z.ZodString>;
2604
2607
  }, z.core.$strip>>;
2605
2608
  }, z.core.$strip>>;
2606
2609
  export declare const zDeleteEnvironmentM2mData: z.ZodObject<{
@@ -5411,6 +5414,7 @@ export declare const zGetProjectEnvironmentsResponse: z.ZodIntersection<z.ZodObj
5411
5414
  softDelete: z.ZodOptional<z.ZodBoolean>;
5412
5415
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
5413
5416
  parent: z.ZodOptional<z.ZodUUID>;
5417
+ gcpProjectId: z.ZodOptional<z.ZodString>;
5414
5418
  }, z.core.$strip>>;
5415
5419
  }, z.core.$strip>>;
5416
5420
  export declare const zCreateEnvironmentData: z.ZodObject<{
@@ -5441,6 +5445,7 @@ export declare const zCreateEnvironmentResponse: z.ZodObject<{
5441
5445
  softDelete: z.ZodOptional<z.ZodBoolean>;
5442
5446
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
5443
5447
  parent: z.ZodOptional<z.ZodUUID>;
5448
+ gcpProjectId: z.ZodOptional<z.ZodString>;
5444
5449
  }, z.core.$strip>;
5445
5450
  export declare const zCreateSecretData: z.ZodObject<{
5446
5451
  body: z.ZodObject<{
@@ -5517,6 +5522,7 @@ export declare const zGetEnvironmentOverviewResponse: z.ZodObject<{
5517
5522
  softDelete: z.ZodOptional<z.ZodBoolean>;
5518
5523
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
5519
5524
  parent: z.ZodOptional<z.ZodUUID>;
5525
+ gcpProjectId: z.ZodOptional<z.ZodString>;
5520
5526
  }, z.core.$strip>;
5521
5527
  export declare const zGetEnvironmentVersionsData: z.ZodObject<{
5522
5528
  body: z.ZodOptional<z.ZodNever>;
@@ -5815,6 +5821,7 @@ export declare const zCloneEnvironmentResponse: z.ZodObject<{
5815
5821
  softDelete: z.ZodOptional<z.ZodBoolean>;
5816
5822
  scheduleDeleteAt: z.ZodOptional<z.ZodISODateTime>;
5817
5823
  parent: z.ZodOptional<z.ZodUUID>;
5824
+ gcpProjectId: z.ZodOptional<z.ZodString>;
5818
5825
  }, z.core.$strip>;
5819
5826
  export declare const zGetGraphOverviewData: z.ZodObject<{
5820
5827
  body: z.ZodOptional<z.ZodNever>;
@@ -287,7 +287,8 @@ export const zEnvironmentOverview = z.object({
287
287
  blueprintId: z.optional(z.uuid()),
288
288
  softDelete: z.optional(z.boolean()),
289
289
  scheduleDeleteAt: z.optional(z.iso.datetime()),
290
- parent: z.optional(z.uuid())
290
+ parent: z.optional(z.uuid()),
291
+ gcpProjectId: z.optional(z.string())
291
292
  });
292
293
  export const zPaginatedEnvironments = zPagination.and(z.object({
293
294
  environments: z.array(zEnvironmentOverview)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",