shoal-web-sdk 0.0.97 → 0.0.98

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.
@@ -317,6 +317,10 @@ export type ContainerNodeProps = {
317
317
  concurrency?: number;
318
318
  allowUnauthenticated?: boolean;
319
319
  uri: string;
320
+ serviceName: string;
321
+ env?: {
322
+ [key: string]: string;
323
+ };
320
324
  };
321
325
  export type Region = 'africa-south1' | 'asia-east1' | 'asia-east2' | 'asia-northeast1' | 'asia-northeast2' | 'asia-northeast3' | 'asia-south1' | 'asia-southeast1' | 'asia-southeast2' | 'australia-southeast1' | 'europe-north1' | 'europe-west1' | 'europe-west2' | 'europe-west3' | 'europe-west4' | 'europe-west6' | 'northamerica-northeast1' | 'northamerica-northeast2' | 'southamerica-east1' | 'southamerica-west1' | 'us-central1' | 'us-east1' | 'us-east4' | 'us-west1' | 'us-west2' | 'us-west3' | 'us-west4';
322
326
  export type Cpu = '1' | '2' | '4' | '6' | '8' | '16' | '32';
@@ -551,6 +551,8 @@ export declare const zContainerNodeProps: z.ZodObject<{
551
551
  concurrency: z.ZodOptional<z.ZodInt>;
552
552
  allowUnauthenticated: z.ZodOptional<z.ZodBoolean>;
553
553
  uri: z.ZodString;
554
+ serviceName: z.ZodString;
555
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
554
556
  }, z.core.$strip>;
555
557
  export declare const zCronJobNodeProps: z.ZodObject<{
556
558
  cronTab: z.ZodOptional<z.ZodString>;
@@ -680,6 +682,8 @@ export declare const zNode: z.ZodObject<{
680
682
  concurrency: z.ZodOptional<z.ZodInt>;
681
683
  allowUnauthenticated: z.ZodOptional<z.ZodBoolean>;
682
684
  uri: z.ZodString;
685
+ serviceName: z.ZodString;
686
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
683
687
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
684
688
  typ: z.ZodLiteral<"cronjob">;
685
689
  }, z.core.$strip>, z.ZodObject<{
@@ -822,6 +826,8 @@ export declare const zNodes: z.ZodObject<{
822
826
  concurrency: z.ZodOptional<z.ZodInt>;
823
827
  allowUnauthenticated: z.ZodOptional<z.ZodBoolean>;
824
828
  uri: z.ZodString;
829
+ serviceName: z.ZodString;
830
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
825
831
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
826
832
  typ: z.ZodLiteral<"cronjob">;
827
833
  }, z.core.$strip>, z.ZodObject<{
@@ -966,6 +972,8 @@ export declare const zGraph: z.ZodObject<{
966
972
  concurrency: z.ZodOptional<z.ZodInt>;
967
973
  allowUnauthenticated: z.ZodOptional<z.ZodBoolean>;
968
974
  uri: z.ZodString;
975
+ serviceName: z.ZodString;
976
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
969
977
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
970
978
  typ: z.ZodLiteral<"cronjob">;
971
979
  }, z.core.$strip>, z.ZodObject<{
@@ -1211,6 +1219,8 @@ export declare const zFetchGraphM2mResponse: z.ZodObject<{
1211
1219
  concurrency: z.ZodOptional<z.ZodInt>;
1212
1220
  allowUnauthenticated: z.ZodOptional<z.ZodBoolean>;
1213
1221
  uri: z.ZodString;
1222
+ serviceName: z.ZodString;
1223
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1214
1224
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1215
1225
  typ: z.ZodLiteral<"cronjob">;
1216
1226
  }, z.core.$strip>, z.ZodObject<{
@@ -1931,6 +1941,8 @@ export declare const zGetGraphOverviewResponse: z.ZodObject<{
1931
1941
  concurrency: z.ZodOptional<z.ZodInt>;
1932
1942
  allowUnauthenticated: z.ZodOptional<z.ZodBoolean>;
1933
1943
  uri: z.ZodString;
1944
+ serviceName: z.ZodString;
1945
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1934
1946
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1935
1947
  typ: z.ZodLiteral<"cronjob">;
1936
1948
  }, z.core.$strip>, z.ZodObject<{
@@ -2075,6 +2087,8 @@ export declare const zUpdateGraphStateData: z.ZodObject<{
2075
2087
  concurrency: z.ZodOptional<z.ZodInt>;
2076
2088
  allowUnauthenticated: z.ZodOptional<z.ZodBoolean>;
2077
2089
  uri: z.ZodString;
2090
+ serviceName: z.ZodString;
2091
+ env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2078
2092
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
2079
2093
  typ: z.ZodLiteral<"cronjob">;
2080
2094
  }, z.core.$strip>, z.ZodObject<{
@@ -351,7 +351,9 @@ export const zContainerNodeProps = z.object({
351
351
  minInstances: z.optional(z.int()),
352
352
  concurrency: z.optional(z.int()),
353
353
  allowUnauthenticated: z.optional(z.boolean()),
354
- uri: z.string()
354
+ uri: z.string(),
355
+ serviceName: z.string(),
356
+ env: z.optional(z.record(z.string(), z.string()))
355
357
  });
356
358
  export const zCronJobNodeProps = z.object({
357
359
  cronTab: z.optional(z.string())
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.97",
3
+ "version": "0.0.98",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",