shoal-web-sdk 0.0.176 → 0.0.178

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.
@@ -318,6 +318,7 @@ export type Version = {
318
318
  };
319
319
  export type Graph = {
320
320
  versionUUID: string;
321
+ version: number;
321
322
  nodes: Array<Node>;
322
323
  };
323
324
  export type Edge = {
@@ -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>;
@@ -1,6 +1,6 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
  import { z } from 'zod';
3
- export const zPlainString = z.string().regex(/^[a-zA-Z0-9 -]+$/);
3
+ export const zPlainString = z.string().regex(/^[a-zA-Z0-9 -']+$/);
4
4
  export const zEnvironmentVariable = z.object({
5
5
  key: z.string(),
6
6
  value: z.string()
@@ -446,6 +446,7 @@ export const zNodes = z.object({
446
446
  });
447
447
  export const zGraph = z.object({
448
448
  versionUUID: z.uuid(),
449
+ version: z.int(),
449
450
  nodes: z.array(zNode)
450
451
  });
451
452
  export const zSignedUrlUploadResponse = z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.176",
3
+ "version": "0.0.178",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",