shoal-web-sdk 1.0.15 → 1.0.17

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.
@@ -463,7 +463,7 @@ export type NeonDbNodeProps = {
463
463
  pgVersion: number;
464
464
  autoscalingLimitMinCu?: number;
465
465
  autoscalingLimitMaxCu?: number;
466
- suspendTimeoutSeconds: number;
466
+ suspendTimeoutSeconds?: number;
467
467
  };
468
468
  export type FunctionNodeProps = {
469
469
  region: Region;
@@ -631,7 +631,7 @@ export declare const zNeonDbNodeProps: z.ZodObject<{
631
631
  pgVersion: z.ZodInt;
632
632
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
633
633
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
634
- suspendTimeoutSeconds: z.ZodInt;
634
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
635
635
  }, z.core.$strip>;
636
636
  export declare const zFunctionNodeProps: z.ZodObject<{
637
637
  region: z.ZodEnum<{
@@ -796,7 +796,7 @@ export declare const zNode: z.ZodObject<{
796
796
  pgVersion: z.ZodInt;
797
797
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
798
798
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
799
- suspendTimeoutSeconds: z.ZodInt;
799
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
800
800
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
801
801
  typ: z.ZodLiteral<"queue">;
802
802
  }, z.core.$strip>, z.ZodObject<{
@@ -958,7 +958,7 @@ export declare const zNodes: z.ZodObject<{
958
958
  pgVersion: z.ZodInt;
959
959
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
960
960
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
961
- suspendTimeoutSeconds: z.ZodInt;
961
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
962
962
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
963
963
  typ: z.ZodLiteral<"queue">;
964
964
  }, z.core.$strip>, z.ZodObject<{
@@ -1123,7 +1123,7 @@ export declare const zGraph: z.ZodObject<{
1123
1123
  pgVersion: z.ZodInt;
1124
1124
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
1125
1125
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
1126
- suspendTimeoutSeconds: z.ZodInt;
1126
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
1127
1127
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1128
1128
  typ: z.ZodLiteral<"queue">;
1129
1129
  }, z.core.$strip>, z.ZodObject<{
@@ -1709,7 +1709,7 @@ export declare const zFetchGraphM2mResponse: z.ZodObject<{
1709
1709
  pgVersion: z.ZodInt;
1710
1710
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
1711
1711
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
1712
- suspendTimeoutSeconds: z.ZodInt;
1712
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
1713
1713
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1714
1714
  typ: z.ZodLiteral<"queue">;
1715
1715
  }, z.core.$strip>, z.ZodObject<{
@@ -1873,7 +1873,7 @@ export declare const zUpdateGraphM2mData: z.ZodObject<{
1873
1873
  pgVersion: z.ZodInt;
1874
1874
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
1875
1875
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
1876
- suspendTimeoutSeconds: z.ZodInt;
1876
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
1877
1877
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1878
1878
  typ: z.ZodLiteral<"queue">;
1879
1879
  }, z.core.$strip>, z.ZodObject<{
@@ -2054,7 +2054,7 @@ export declare const zFetchNodeM2mResponse: z.ZodObject<{
2054
2054
  pgVersion: z.ZodInt;
2055
2055
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
2056
2056
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
2057
- suspendTimeoutSeconds: z.ZodInt;
2057
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
2058
2058
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
2059
2059
  typ: z.ZodLiteral<"queue">;
2060
2060
  }, z.core.$strip>, z.ZodObject<{
@@ -2216,7 +2216,7 @@ export declare const zUpdateNodeM2mData: z.ZodObject<{
2216
2216
  pgVersion: z.ZodInt;
2217
2217
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
2218
2218
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
2219
- suspendTimeoutSeconds: z.ZodInt;
2219
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
2220
2220
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
2221
2221
  typ: z.ZodLiteral<"queue">;
2222
2222
  }, z.core.$strip>, z.ZodObject<{
@@ -2632,7 +2632,7 @@ export declare const zPreviewBlueprintResponse: z.ZodObject<{
2632
2632
  pgVersion: z.ZodInt;
2633
2633
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
2634
2634
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
2635
- suspendTimeoutSeconds: z.ZodInt;
2635
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
2636
2636
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
2637
2637
  typ: z.ZodLiteral<"queue">;
2638
2638
  }, z.core.$strip>, z.ZodObject<{
@@ -3510,7 +3510,7 @@ export declare const zGetGraphOverviewResponse: z.ZodObject<{
3510
3510
  pgVersion: z.ZodInt;
3511
3511
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
3512
3512
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
3513
- suspendTimeoutSeconds: z.ZodInt;
3513
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
3514
3514
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
3515
3515
  typ: z.ZodLiteral<"queue">;
3516
3516
  }, z.core.$strip>, z.ZodObject<{
@@ -3674,7 +3674,7 @@ export declare const zUpdateGraphStateData: z.ZodObject<{
3674
3674
  pgVersion: z.ZodInt;
3675
3675
  autoscalingLimitMinCu: z.ZodOptional<z.ZodNumber>;
3676
3676
  autoscalingLimitMaxCu: z.ZodOptional<z.ZodNumber>;
3677
- suspendTimeoutSeconds: z.ZodInt;
3677
+ suspendTimeoutSeconds: z.ZodOptional<z.ZodInt>;
3678
3678
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
3679
3679
  typ: z.ZodLiteral<"queue">;
3680
3680
  }, z.core.$strip>, z.ZodObject<{
@@ -431,7 +431,7 @@ export const zNeonDbNodeProps = z.object({
431
431
  pgVersion: z.int().gte(14).lte(18),
432
432
  autoscalingLimitMinCu: z.optional(z.number().gte(0.25)),
433
433
  autoscalingLimitMaxCu: z.optional(z.number().gte(0.25)),
434
- suspendTimeoutSeconds: z.int().gte(-1).lte(604800)
434
+ suspendTimeoutSeconds: z.optional(z.int().gte(-1).lte(604800))
435
435
  });
436
436
  export const zFunctionNodeProps = z.object({
437
437
  region: zRegion,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",