shoal-web-sdk 0.0.176 → 0.0.177
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.
- package/dist/sdk/types.gen.d.ts +1 -0
- package/dist/sdk/zod.gen.d.ts +3 -0
- package/dist/sdk/zod.gen.js +1 -0
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -818,6 +818,7 @@ export declare const zNodes: z.ZodObject<{
|
|
|
818
818
|
}, z.core.$strip>;
|
|
819
819
|
export declare const zGraph: z.ZodObject<{
|
|
820
820
|
versionUUID: z.ZodUUID;
|
|
821
|
+
version: z.ZodInt;
|
|
821
822
|
nodes: z.ZodArray<z.ZodObject<{
|
|
822
823
|
id: z.ZodUUID;
|
|
823
824
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1309,6 +1310,7 @@ export declare const zFetchGraphM2mData: z.ZodObject<{
|
|
|
1309
1310
|
*/
|
|
1310
1311
|
export declare const zFetchGraphM2mResponse: z.ZodObject<{
|
|
1311
1312
|
versionUUID: z.ZodUUID;
|
|
1313
|
+
version: z.ZodInt;
|
|
1312
1314
|
nodes: z.ZodArray<z.ZodObject<{
|
|
1313
1315
|
id: z.ZodUUID;
|
|
1314
1316
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2608,6 +2610,7 @@ export declare const zGetGraphOverviewData: z.ZodObject<{
|
|
|
2608
2610
|
*/
|
|
2609
2611
|
export declare const zGetGraphOverviewResponse: z.ZodObject<{
|
|
2610
2612
|
versionUUID: z.ZodUUID;
|
|
2613
|
+
version: z.ZodInt;
|
|
2611
2614
|
nodes: z.ZodArray<z.ZodObject<{
|
|
2612
2615
|
id: z.ZodUUID;
|
|
2613
2616
|
name: z.ZodOptional<z.ZodString>;
|
package/dist/sdk/zod.gen.js
CHANGED