shoal-web-sdk 1.0.19 → 1.0.20

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.
@@ -156,6 +156,7 @@ export type EnvironmentOverview = {
156
156
  createdAt: string;
157
157
  updatedAt: string;
158
158
  versions: number;
159
+ blueprintId?: string;
159
160
  };
160
161
  export type AccountIdentity = {
161
162
  id: string;
@@ -189,6 +189,7 @@ export declare const zEnvironmentOverview: z.ZodObject<{
189
189
  createdAt: z.ZodISODateTime;
190
190
  updatedAt: z.ZodISODateTime;
191
191
  versions: z.ZodInt;
192
+ blueprintId: z.ZodOptional<z.ZodUUID>;
192
193
  }, z.core.$strip>;
193
194
  export declare const zProjectOverview: z.ZodObject<{
194
195
  id: z.ZodUUID;
@@ -206,6 +207,7 @@ export declare const zProjectOverview: z.ZodObject<{
206
207
  createdAt: z.ZodISODateTime;
207
208
  updatedAt: z.ZodISODateTime;
208
209
  versions: z.ZodInt;
210
+ blueprintId: z.ZodOptional<z.ZodUUID>;
209
211
  }, z.core.$strip>>;
210
212
  }, z.core.$strip>;
211
213
  export declare const zSpaceOverview: z.ZodObject<{
@@ -228,6 +230,7 @@ export declare const zSpaceOverview: z.ZodObject<{
228
230
  createdAt: z.ZodISODateTime;
229
231
  updatedAt: z.ZodISODateTime;
230
232
  versions: z.ZodInt;
233
+ blueprintId: z.ZodOptional<z.ZodUUID>;
231
234
  }, z.core.$strip>>;
232
235
  }, z.core.$strip>>;
233
236
  }, z.core.$strip>;
@@ -442,6 +445,7 @@ export declare const zUserSpacesResponse: z.ZodObject<{
442
445
  createdAt: z.ZodISODateTime;
443
446
  updatedAt: z.ZodISODateTime;
444
447
  versions: z.ZodInt;
448
+ blueprintId: z.ZodOptional<z.ZodUUID>;
445
449
  }, z.core.$strip>>;
446
450
  }, z.core.$strip>>;
447
451
  }, z.core.$strip>>;
@@ -2470,6 +2474,7 @@ export declare const zListUserSpacesResponse: z.ZodObject<{
2470
2474
  createdAt: z.ZodISODateTime;
2471
2475
  updatedAt: z.ZodISODateTime;
2472
2476
  versions: z.ZodInt;
2477
+ blueprintId: z.ZodOptional<z.ZodUUID>;
2473
2478
  }, z.core.$strip>>;
2474
2479
  }, z.core.$strip>>;
2475
2480
  }, z.core.$strip>>;
@@ -2761,6 +2766,7 @@ export declare const zCreateSpaceResponse: z.ZodObject<{
2761
2766
  createdAt: z.ZodISODateTime;
2762
2767
  updatedAt: z.ZodISODateTime;
2763
2768
  versions: z.ZodInt;
2769
+ blueprintId: z.ZodOptional<z.ZodUUID>;
2764
2770
  }, z.core.$strip>>;
2765
2771
  }, z.core.$strip>>;
2766
2772
  }, z.core.$strip>;
@@ -2857,6 +2863,7 @@ export declare const zGetSpaceOverviewResponse: z.ZodObject<{
2857
2863
  createdAt: z.ZodISODateTime;
2858
2864
  updatedAt: z.ZodISODateTime;
2859
2865
  versions: z.ZodInt;
2866
+ blueprintId: z.ZodOptional<z.ZodUUID>;
2860
2867
  }, z.core.$strip>>;
2861
2868
  }, z.core.$strip>>;
2862
2869
  }, z.core.$strip>;
@@ -3042,6 +3049,7 @@ export declare const zCreateProjectResponse: z.ZodObject<{
3042
3049
  createdAt: z.ZodISODateTime;
3043
3050
  updatedAt: z.ZodISODateTime;
3044
3051
  versions: z.ZodInt;
3052
+ blueprintId: z.ZodOptional<z.ZodUUID>;
3045
3053
  }, z.core.$strip>>;
3046
3054
  }, z.core.$strip>;
3047
3055
  export declare const zGetProjectOverviewData: z.ZodObject<{
@@ -3071,6 +3079,7 @@ export declare const zGetProjectOverviewResponse: z.ZodObject<{
3071
3079
  createdAt: z.ZodISODateTime;
3072
3080
  updatedAt: z.ZodISODateTime;
3073
3081
  versions: z.ZodInt;
3082
+ blueprintId: z.ZodOptional<z.ZodUUID>;
3074
3083
  }, z.core.$strip>>;
3075
3084
  }, z.core.$strip>;
3076
3085
  export declare const zCreateEnvironmentData: z.ZodObject<{
@@ -3096,6 +3105,7 @@ export declare const zCreateEnvironmentResponse: z.ZodObject<{
3096
3105
  createdAt: z.ZodISODateTime;
3097
3106
  updatedAt: z.ZodISODateTime;
3098
3107
  versions: z.ZodInt;
3108
+ blueprintId: z.ZodOptional<z.ZodUUID>;
3099
3109
  }, z.core.$strip>;
3100
3110
  export declare const zGetEnvironmentOverviewData: z.ZodObject<{
3101
3111
  body: z.ZodOptional<z.ZodNever>;
@@ -3117,6 +3127,7 @@ export declare const zGetEnvironmentOverviewResponse: z.ZodObject<{
3117
3127
  createdAt: z.ZodISODateTime;
3118
3128
  updatedAt: z.ZodISODateTime;
3119
3129
  versions: z.ZodInt;
3130
+ blueprintId: z.ZodOptional<z.ZodUUID>;
3120
3131
  }, z.core.$strip>;
3121
3132
  export declare const zGetEnvironmentVersionsData: z.ZodObject<{
3122
3133
  body: z.ZodOptional<z.ZodNever>;
@@ -138,7 +138,8 @@ export const zEnvironmentOverview = z.object({
138
138
  description: z.string(),
139
139
  createdAt: z.iso.datetime(),
140
140
  updatedAt: z.iso.datetime(),
141
- versions: z.int()
141
+ versions: z.int(),
142
+ blueprintId: z.optional(z.uuid())
142
143
  });
143
144
  export const zProjectOverview = z.object({
144
145
  id: z.uuid(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",