shoal-web-sdk 0.0.101 → 0.0.102

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.
@@ -259,7 +259,7 @@ export type NetworkEdgeProps = {
259
259
  a?: string;
260
260
  };
261
261
  export type RouteEdgeProps = {
262
- b?: string;
262
+ subdomain?: string;
263
263
  };
264
264
  export type Node = {
265
265
  id: string;
@@ -391,7 +391,7 @@ export declare const zNetworkEdgeProps: z.ZodObject<{
391
391
  a: z.ZodOptional<z.ZodString>;
392
392
  }, z.core.$strip>;
393
393
  export declare const zRouteEdgeProps: z.ZodObject<{
394
- b: z.ZodOptional<z.ZodString>;
394
+ subdomain: z.ZodOptional<z.ZodString>;
395
395
  }, z.core.$strip>;
396
396
  export declare const zEdgeType: z.ZodEnum<{
397
397
  network: "network";
@@ -412,7 +412,7 @@ export declare const zEdge: z.ZodObject<{
412
412
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
413
413
  typ: z.ZodLiteral<"cache">;
414
414
  }, z.core.$strip>, z.ZodObject<{
415
- b: z.ZodOptional<z.ZodString>;
415
+ subdomain: z.ZodOptional<z.ZodString>;
416
416
  }, z.core.$strip>>]>>;
417
417
  }, z.core.$strip>;
418
418
  export declare const zNodeType: z.ZodEnum<{
@@ -596,7 +596,7 @@ export declare const zNode: z.ZodObject<{
596
596
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
597
597
  typ: z.ZodLiteral<"cache">;
598
598
  }, z.core.$strip>, z.ZodObject<{
599
- b: z.ZodOptional<z.ZodString>;
599
+ subdomain: z.ZodOptional<z.ZodString>;
600
600
  }, z.core.$strip>>]>>;
601
601
  }, z.core.$strip>>>;
602
602
  typ: z.ZodEnum<{
@@ -739,7 +739,7 @@ export declare const zNodes: z.ZodObject<{
739
739
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
740
740
  typ: z.ZodLiteral<"cache">;
741
741
  }, z.core.$strip>, z.ZodObject<{
742
- b: z.ZodOptional<z.ZodString>;
742
+ subdomain: z.ZodOptional<z.ZodString>;
743
743
  }, z.core.$strip>>]>>;
744
744
  }, z.core.$strip>>>;
745
745
  typ: z.ZodEnum<{
@@ -884,7 +884,7 @@ export declare const zGraph: z.ZodObject<{
884
884
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
885
885
  typ: z.ZodLiteral<"cache">;
886
886
  }, z.core.$strip>, z.ZodObject<{
887
- b: z.ZodOptional<z.ZodString>;
887
+ subdomain: z.ZodOptional<z.ZodString>;
888
888
  }, z.core.$strip>>]>>;
889
889
  }, z.core.$strip>>>;
890
890
  typ: z.ZodEnum<{
@@ -1166,7 +1166,7 @@ export declare const zFetchGraphM2mResponse: z.ZodObject<{
1166
1166
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1167
1167
  typ: z.ZodLiteral<"cache">;
1168
1168
  }, z.core.$strip>, z.ZodObject<{
1169
- b: z.ZodOptional<z.ZodString>;
1169
+ subdomain: z.ZodOptional<z.ZodString>;
1170
1170
  }, z.core.$strip>>]>>;
1171
1171
  }, z.core.$strip>>>;
1172
1172
  typ: z.ZodEnum<{
@@ -1887,7 +1887,7 @@ export declare const zGetGraphOverviewResponse: z.ZodObject<{
1887
1887
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1888
1888
  typ: z.ZodLiteral<"cache">;
1889
1889
  }, z.core.$strip>, z.ZodObject<{
1890
- b: z.ZodOptional<z.ZodString>;
1890
+ subdomain: z.ZodOptional<z.ZodString>;
1891
1891
  }, z.core.$strip>>]>>;
1892
1892
  }, z.core.$strip>>>;
1893
1893
  typ: z.ZodEnum<{
@@ -2032,7 +2032,7 @@ export declare const zUpdateGraphStateData: z.ZodObject<{
2032
2032
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
2033
2033
  typ: z.ZodLiteral<"cache">;
2034
2034
  }, z.core.$strip>, z.ZodObject<{
2035
- b: z.ZodOptional<z.ZodString>;
2035
+ subdomain: z.ZodOptional<z.ZodString>;
2036
2036
  }, z.core.$strip>>]>>;
2037
2037
  }, z.core.$strip>>>;
2038
2038
  typ: z.ZodEnum<{
@@ -245,7 +245,7 @@ export const zNetworkEdgeProps = z.object({
245
245
  a: z.optional(z.string())
246
246
  });
247
247
  export const zRouteEdgeProps = z.object({
248
- b: z.optional(z.string())
248
+ subdomain: z.optional(z.string())
249
249
  });
250
250
  export const zEdgeType = z.enum([
251
251
  'network',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.101",
3
+ "version": "0.0.102",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",