shoal-web-sdk 0.0.139 → 0.0.141

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.
@@ -778,7 +778,7 @@ export declare const getEnvironmentVersionsQueryKey: (options: Options<GetEnviro
778
778
  tags?: ReadonlyArray<string>;
779
779
  }];
780
780
  /**
781
- * Get paginated environment versions ordered by latest version first, optionally filtered by version UUID or status.
781
+ * Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
782
782
  */
783
783
  export declare const getEnvironmentVersionsOptions: (options: Options<GetEnvironmentVersionsData>) => import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<import("../types.gen").PaginatedEnvironmentVersions, Error, import("../types.gen").PaginatedEnvironmentVersions, [Pick<Options<GetEnvironmentVersionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
784
784
  _id: string;
@@ -802,7 +802,7 @@ export declare const getEnvironmentVersionsOptions: (options: Options<GetEnviron
802
802
  };
803
803
  export declare const getEnvironmentVersionsInfiniteQueryKey: (options: Options<GetEnvironmentVersionsData>) => QueryKey<Options<GetEnvironmentVersionsData>>;
804
804
  /**
805
- * Get paginated environment versions ordered by latest version first, optionally filtered by version UUID or status.
805
+ * Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
806
806
  */
807
807
  export declare const getEnvironmentVersionsInfiniteOptions: (options: Options<GetEnvironmentVersionsData>) => import("@tanstack/react-query").UseInfiniteQueryOptions<import("../types.gen").PaginatedEnvironmentVersions, Error, InfiniteData<import("../types.gen").PaginatedEnvironmentVersions, unknown>, QueryKey<Options<GetEnvironmentVersionsData>>, number | Pick<Pick<Options<GetEnvironmentVersionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
808
808
  _id: string;
@@ -845,7 +845,7 @@ export const getEnvironmentOverviewOptions = (options) => {
845
845
  };
846
846
  export const getEnvironmentVersionsQueryKey = (options) => createQueryKey('getEnvironmentVersions', options);
847
847
  /**
848
- * Get paginated environment versions ordered by latest version first, optionally filtered by version UUID or status.
848
+ * Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
849
849
  */
850
850
  export const getEnvironmentVersionsOptions = (options) => {
851
851
  return queryOptions({
@@ -863,7 +863,7 @@ export const getEnvironmentVersionsOptions = (options) => {
863
863
  };
864
864
  export const getEnvironmentVersionsInfiniteQueryKey = (options) => createQueryKey('getEnvironmentVersions', options, true);
865
865
  /**
866
- * Get paginated environment versions ordered by latest version first, optionally filtered by version UUID or status.
866
+ * Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
867
867
  */
868
868
  export const getEnvironmentVersionsInfiniteOptions = (options) => {
869
869
  return infiniteQueryOptions(
@@ -154,7 +154,7 @@ export declare const createEnvironment: <ThrowOnError extends boolean = false>(o
154
154
  */
155
155
  export declare const getEnvironmentOverview: <ThrowOnError extends boolean = false>(options: Options<GetEnvironmentOverviewData, ThrowOnError>) => import("./client").RequestResult<GetEnvironmentOverviewResponses, GetEnvironmentOverviewErrors, ThrowOnError, "fields">;
156
156
  /**
157
- * Get paginated environment versions ordered by latest version first, optionally filtered by version UUID or status.
157
+ * Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
158
158
  */
159
159
  export declare const getEnvironmentVersions: <ThrowOnError extends boolean = false>(options: Options<GetEnvironmentVersionsData, ThrowOnError>) => import("./client").RequestResult<GetEnvironmentVersionsResponses, unknown, ThrowOnError, "fields">;
160
160
  /**
@@ -562,7 +562,7 @@ export const getEnvironmentOverview = (options) => {
562
562
  });
563
563
  };
564
564
  /**
565
- * Get paginated environment versions ordered by latest version first, optionally filtered by version UUID or status.
565
+ * Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
566
566
  */
567
567
  export const getEnvironmentVersions = (options) => {
568
568
  return (options.client ?? client).get({
@@ -380,9 +380,9 @@ export type ContainerNodeProps = {
380
380
  [key: string]: string;
381
381
  };
382
382
  };
383
- 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';
384
- export type Cpu = '1' | '2' | '4' | '6' | '8' | '16' | '32';
385
- export type Memory = '512Mi' | '1Gi' | '2Gi' | '4Gi' | '8Gi' | '16Gi' | '32Gi';
383
+ export type Region = 'europe-west2';
384
+ export type Cpu = '1' | '2';
385
+ export type Memory = '512Mi' | '1Gi' | '2Gi';
386
386
  export type Ingress = 'INGRESS_TRAFFIC_ALL' | 'INGRESS_TRAFFIC_INTERNAL_ONLY' | 'INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER';
387
387
  export type CronJobNodeProps = {
388
388
  cronTab?: string;
@@ -554,9 +554,9 @@ export type NodeId = string;
554
554
  */
555
555
  export type VersionUuid = string;
556
556
  /**
557
- * Optional version UUID to filter the environment versions response to a single version.
557
+ * Optional version UUID to exclude from the environment versions response.
558
558
  */
559
- export type VersionUuidQuery = string;
559
+ export type ExcludeVersionUuidQuery = string;
560
560
  /**
561
561
  * Optional version status to filter the environment versions response.
562
562
  */
@@ -2005,9 +2005,9 @@ export type GetEnvironmentVersionsData = {
2005
2005
  */
2006
2006
  limit?: number;
2007
2007
  /**
2008
- * Optional version UUID to filter the environment versions response to a single version.
2008
+ * Optional version UUID to exclude from the environment versions response.
2009
2009
  */
2010
- versionUUID?: string;
2010
+ excludeVersionUUID?: string;
2011
2011
  /**
2012
2012
  * Optional version status to filter the environment versions response.
2013
2013
  */
@@ -553,51 +553,16 @@ export declare const zSchedulerNodeProps: z.ZodObject<{
553
553
  paused: z.ZodBoolean;
554
554
  }, z.core.$strip>;
555
555
  export declare const zRegion: z.ZodEnum<{
556
- "africa-south1": "africa-south1";
557
- "asia-east1": "asia-east1";
558
- "asia-east2": "asia-east2";
559
- "asia-northeast1": "asia-northeast1";
560
- "asia-northeast2": "asia-northeast2";
561
- "asia-northeast3": "asia-northeast3";
562
- "asia-south1": "asia-south1";
563
- "asia-southeast1": "asia-southeast1";
564
- "asia-southeast2": "asia-southeast2";
565
- "australia-southeast1": "australia-southeast1";
566
- "europe-north1": "europe-north1";
567
- "europe-west1": "europe-west1";
568
556
  "europe-west2": "europe-west2";
569
- "europe-west3": "europe-west3";
570
- "europe-west4": "europe-west4";
571
- "europe-west6": "europe-west6";
572
- "northamerica-northeast1": "northamerica-northeast1";
573
- "northamerica-northeast2": "northamerica-northeast2";
574
- "southamerica-east1": "southamerica-east1";
575
- "southamerica-west1": "southamerica-west1";
576
- "us-central1": "us-central1";
577
- "us-east1": "us-east1";
578
- "us-east4": "us-east4";
579
- "us-west1": "us-west1";
580
- "us-west2": "us-west2";
581
- "us-west3": "us-west3";
582
- "us-west4": "us-west4";
583
557
  }>;
584
558
  export declare const zCpu: z.ZodEnum<{
585
559
  1: "1";
586
560
  2: "2";
587
- 4: "4";
588
- 6: "6";
589
- 8: "8";
590
- 16: "16";
591
- 32: "32";
592
561
  }>;
593
562
  export declare const zMemory: z.ZodEnum<{
594
563
  "512Mi": "512Mi";
595
564
  "1Gi": "1Gi";
596
565
  "2Gi": "2Gi";
597
- "4Gi": "4Gi";
598
- "8Gi": "8Gi";
599
- "16Gi": "16Gi";
600
- "32Gi": "32Gi";
601
566
  }>;
602
567
  export declare const zIngress: z.ZodEnum<{
603
568
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -606,52 +571,17 @@ export declare const zIngress: z.ZodEnum<{
606
571
  }>;
607
572
  export declare const zContainerNodeProps: z.ZodObject<{
608
573
  region: z.ZodEnum<{
609
- "africa-south1": "africa-south1";
610
- "asia-east1": "asia-east1";
611
- "asia-east2": "asia-east2";
612
- "asia-northeast1": "asia-northeast1";
613
- "asia-northeast2": "asia-northeast2";
614
- "asia-northeast3": "asia-northeast3";
615
- "asia-south1": "asia-south1";
616
- "asia-southeast1": "asia-southeast1";
617
- "asia-southeast2": "asia-southeast2";
618
- "australia-southeast1": "australia-southeast1";
619
- "europe-north1": "europe-north1";
620
- "europe-west1": "europe-west1";
621
574
  "europe-west2": "europe-west2";
622
- "europe-west3": "europe-west3";
623
- "europe-west4": "europe-west4";
624
- "europe-west6": "europe-west6";
625
- "northamerica-northeast1": "northamerica-northeast1";
626
- "northamerica-northeast2": "northamerica-northeast2";
627
- "southamerica-east1": "southamerica-east1";
628
- "southamerica-west1": "southamerica-west1";
629
- "us-central1": "us-central1";
630
- "us-east1": "us-east1";
631
- "us-east4": "us-east4";
632
- "us-west1": "us-west1";
633
- "us-west2": "us-west2";
634
- "us-west3": "us-west3";
635
- "us-west4": "us-west4";
636
575
  }>;
637
576
  port: z.ZodInt;
638
577
  cpu: z.ZodEnum<{
639
578
  1: "1";
640
579
  2: "2";
641
- 4: "4";
642
- 6: "6";
643
- 8: "8";
644
- 16: "16";
645
- 32: "32";
646
580
  }>;
647
581
  memory: z.ZodEnum<{
648
582
  "512Mi": "512Mi";
649
583
  "1Gi": "1Gi";
650
584
  "2Gi": "2Gi";
651
- "4Gi": "4Gi";
652
- "8Gi": "8Gi";
653
- "16Gi": "16Gi";
654
- "32Gi": "32Gi";
655
585
  }>;
656
586
  ingress: z.ZodEnum<{
657
587
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -735,52 +665,17 @@ export declare const zNode: z.ZodObject<{
735
665
  typ: z.ZodLiteral<"container">;
736
666
  }, z.core.$strip>, z.ZodObject<{
737
667
  region: z.ZodEnum<{
738
- "africa-south1": "africa-south1";
739
- "asia-east1": "asia-east1";
740
- "asia-east2": "asia-east2";
741
- "asia-northeast1": "asia-northeast1";
742
- "asia-northeast2": "asia-northeast2";
743
- "asia-northeast3": "asia-northeast3";
744
- "asia-south1": "asia-south1";
745
- "asia-southeast1": "asia-southeast1";
746
- "asia-southeast2": "asia-southeast2";
747
- "australia-southeast1": "australia-southeast1";
748
- "europe-north1": "europe-north1";
749
- "europe-west1": "europe-west1";
750
668
  "europe-west2": "europe-west2";
751
- "europe-west3": "europe-west3";
752
- "europe-west4": "europe-west4";
753
- "europe-west6": "europe-west6";
754
- "northamerica-northeast1": "northamerica-northeast1";
755
- "northamerica-northeast2": "northamerica-northeast2";
756
- "southamerica-east1": "southamerica-east1";
757
- "southamerica-west1": "southamerica-west1";
758
- "us-central1": "us-central1";
759
- "us-east1": "us-east1";
760
- "us-east4": "us-east4";
761
- "us-west1": "us-west1";
762
- "us-west2": "us-west2";
763
- "us-west3": "us-west3";
764
- "us-west4": "us-west4";
765
669
  }>;
766
670
  port: z.ZodInt;
767
671
  cpu: z.ZodEnum<{
768
672
  1: "1";
769
673
  2: "2";
770
- 4: "4";
771
- 6: "6";
772
- 8: "8";
773
- 16: "16";
774
- 32: "32";
775
674
  }>;
776
675
  memory: z.ZodEnum<{
777
676
  "512Mi": "512Mi";
778
677
  "1Gi": "1Gi";
779
678
  "2Gi": "2Gi";
780
- "4Gi": "4Gi";
781
- "8Gi": "8Gi";
782
- "16Gi": "16Gi";
783
- "32Gi": "32Gi";
784
679
  }>;
785
680
  ingress: z.ZodEnum<{
786
681
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -889,52 +784,17 @@ export declare const zNodes: z.ZodObject<{
889
784
  typ: z.ZodLiteral<"container">;
890
785
  }, z.core.$strip>, z.ZodObject<{
891
786
  region: z.ZodEnum<{
892
- "africa-south1": "africa-south1";
893
- "asia-east1": "asia-east1";
894
- "asia-east2": "asia-east2";
895
- "asia-northeast1": "asia-northeast1";
896
- "asia-northeast2": "asia-northeast2";
897
- "asia-northeast3": "asia-northeast3";
898
- "asia-south1": "asia-south1";
899
- "asia-southeast1": "asia-southeast1";
900
- "asia-southeast2": "asia-southeast2";
901
- "australia-southeast1": "australia-southeast1";
902
- "europe-north1": "europe-north1";
903
- "europe-west1": "europe-west1";
904
787
  "europe-west2": "europe-west2";
905
- "europe-west3": "europe-west3";
906
- "europe-west4": "europe-west4";
907
- "europe-west6": "europe-west6";
908
- "northamerica-northeast1": "northamerica-northeast1";
909
- "northamerica-northeast2": "northamerica-northeast2";
910
- "southamerica-east1": "southamerica-east1";
911
- "southamerica-west1": "southamerica-west1";
912
- "us-central1": "us-central1";
913
- "us-east1": "us-east1";
914
- "us-east4": "us-east4";
915
- "us-west1": "us-west1";
916
- "us-west2": "us-west2";
917
- "us-west3": "us-west3";
918
- "us-west4": "us-west4";
919
788
  }>;
920
789
  port: z.ZodInt;
921
790
  cpu: z.ZodEnum<{
922
791
  1: "1";
923
792
  2: "2";
924
- 4: "4";
925
- 6: "6";
926
- 8: "8";
927
- 16: "16";
928
- 32: "32";
929
793
  }>;
930
794
  memory: z.ZodEnum<{
931
795
  "512Mi": "512Mi";
932
796
  "1Gi": "1Gi";
933
797
  "2Gi": "2Gi";
934
- "4Gi": "4Gi";
935
- "8Gi": "8Gi";
936
- "16Gi": "16Gi";
937
- "32Gi": "32Gi";
938
798
  }>;
939
799
  ingress: z.ZodEnum<{
940
800
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -1045,52 +905,17 @@ export declare const zGraph: z.ZodObject<{
1045
905
  typ: z.ZodLiteral<"container">;
1046
906
  }, z.core.$strip>, z.ZodObject<{
1047
907
  region: z.ZodEnum<{
1048
- "africa-south1": "africa-south1";
1049
- "asia-east1": "asia-east1";
1050
- "asia-east2": "asia-east2";
1051
- "asia-northeast1": "asia-northeast1";
1052
- "asia-northeast2": "asia-northeast2";
1053
- "asia-northeast3": "asia-northeast3";
1054
- "asia-south1": "asia-south1";
1055
- "asia-southeast1": "asia-southeast1";
1056
- "asia-southeast2": "asia-southeast2";
1057
- "australia-southeast1": "australia-southeast1";
1058
- "europe-north1": "europe-north1";
1059
- "europe-west1": "europe-west1";
1060
908
  "europe-west2": "europe-west2";
1061
- "europe-west3": "europe-west3";
1062
- "europe-west4": "europe-west4";
1063
- "europe-west6": "europe-west6";
1064
- "northamerica-northeast1": "northamerica-northeast1";
1065
- "northamerica-northeast2": "northamerica-northeast2";
1066
- "southamerica-east1": "southamerica-east1";
1067
- "southamerica-west1": "southamerica-west1";
1068
- "us-central1": "us-central1";
1069
- "us-east1": "us-east1";
1070
- "us-east4": "us-east4";
1071
- "us-west1": "us-west1";
1072
- "us-west2": "us-west2";
1073
- "us-west3": "us-west3";
1074
- "us-west4": "us-west4";
1075
909
  }>;
1076
910
  port: z.ZodInt;
1077
911
  cpu: z.ZodEnum<{
1078
912
  1: "1";
1079
913
  2: "2";
1080
- 4: "4";
1081
- 6: "6";
1082
- 8: "8";
1083
- 16: "16";
1084
- 32: "32";
1085
914
  }>;
1086
915
  memory: z.ZodEnum<{
1087
916
  "512Mi": "512Mi";
1088
917
  "1Gi": "1Gi";
1089
918
  "2Gi": "2Gi";
1090
- "4Gi": "4Gi";
1091
- "8Gi": "8Gi";
1092
- "16Gi": "16Gi";
1093
- "32Gi": "32Gi";
1094
919
  }>;
1095
920
  ingress: z.ZodEnum<{
1096
921
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -1259,9 +1084,9 @@ export declare const zNodeId: z.ZodUUID;
1259
1084
  */
1260
1085
  export declare const zVersionUuid: z.ZodUUID;
1261
1086
  /**
1262
- * Optional version UUID to filter the environment versions response to a single version.
1087
+ * Optional version UUID to exclude from the environment versions response.
1263
1088
  */
1264
- export declare const zVersionUuidQuery: z.ZodUUID;
1089
+ export declare const zExcludeVersionUuidQuery: z.ZodUUID;
1265
1090
  /**
1266
1091
  * Optional version status to filter the environment versions response.
1267
1092
  */
@@ -1414,52 +1239,17 @@ export declare const zFetchGraphM2mResponse: z.ZodObject<{
1414
1239
  typ: z.ZodLiteral<"container">;
1415
1240
  }, z.core.$strip>, z.ZodObject<{
1416
1241
  region: z.ZodEnum<{
1417
- "africa-south1": "africa-south1";
1418
- "asia-east1": "asia-east1";
1419
- "asia-east2": "asia-east2";
1420
- "asia-northeast1": "asia-northeast1";
1421
- "asia-northeast2": "asia-northeast2";
1422
- "asia-northeast3": "asia-northeast3";
1423
- "asia-south1": "asia-south1";
1424
- "asia-southeast1": "asia-southeast1";
1425
- "asia-southeast2": "asia-southeast2";
1426
- "australia-southeast1": "australia-southeast1";
1427
- "europe-north1": "europe-north1";
1428
- "europe-west1": "europe-west1";
1429
1242
  "europe-west2": "europe-west2";
1430
- "europe-west3": "europe-west3";
1431
- "europe-west4": "europe-west4";
1432
- "europe-west6": "europe-west6";
1433
- "northamerica-northeast1": "northamerica-northeast1";
1434
- "northamerica-northeast2": "northamerica-northeast2";
1435
- "southamerica-east1": "southamerica-east1";
1436
- "southamerica-west1": "southamerica-west1";
1437
- "us-central1": "us-central1";
1438
- "us-east1": "us-east1";
1439
- "us-east4": "us-east4";
1440
- "us-west1": "us-west1";
1441
- "us-west2": "us-west2";
1442
- "us-west3": "us-west3";
1443
- "us-west4": "us-west4";
1444
1243
  }>;
1445
1244
  port: z.ZodInt;
1446
1245
  cpu: z.ZodEnum<{
1447
1246
  1: "1";
1448
1247
  2: "2";
1449
- 4: "4";
1450
- 6: "6";
1451
- 8: "8";
1452
- 16: "16";
1453
- 32: "32";
1454
1248
  }>;
1455
1249
  memory: z.ZodEnum<{
1456
1250
  "512Mi": "512Mi";
1457
1251
  "1Gi": "1Gi";
1458
1252
  "2Gi": "2Gi";
1459
- "4Gi": "4Gi";
1460
- "8Gi": "8Gi";
1461
- "16Gi": "16Gi";
1462
- "32Gi": "32Gi";
1463
1253
  }>;
1464
1254
  ingress: z.ZodEnum<{
1465
1255
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -1570,52 +1360,17 @@ export declare const zUpdateGraphM2mData: z.ZodObject<{
1570
1360
  typ: z.ZodLiteral<"container">;
1571
1361
  }, z.core.$strip>, z.ZodObject<{
1572
1362
  region: z.ZodEnum<{
1573
- "africa-south1": "africa-south1";
1574
- "asia-east1": "asia-east1";
1575
- "asia-east2": "asia-east2";
1576
- "asia-northeast1": "asia-northeast1";
1577
- "asia-northeast2": "asia-northeast2";
1578
- "asia-northeast3": "asia-northeast3";
1579
- "asia-south1": "asia-south1";
1580
- "asia-southeast1": "asia-southeast1";
1581
- "asia-southeast2": "asia-southeast2";
1582
- "australia-southeast1": "australia-southeast1";
1583
- "europe-north1": "europe-north1";
1584
- "europe-west1": "europe-west1";
1585
1363
  "europe-west2": "europe-west2";
1586
- "europe-west3": "europe-west3";
1587
- "europe-west4": "europe-west4";
1588
- "europe-west6": "europe-west6";
1589
- "northamerica-northeast1": "northamerica-northeast1";
1590
- "northamerica-northeast2": "northamerica-northeast2";
1591
- "southamerica-east1": "southamerica-east1";
1592
- "southamerica-west1": "southamerica-west1";
1593
- "us-central1": "us-central1";
1594
- "us-east1": "us-east1";
1595
- "us-east4": "us-east4";
1596
- "us-west1": "us-west1";
1597
- "us-west2": "us-west2";
1598
- "us-west3": "us-west3";
1599
- "us-west4": "us-west4";
1600
1364
  }>;
1601
1365
  port: z.ZodInt;
1602
1366
  cpu: z.ZodEnum<{
1603
1367
  1: "1";
1604
1368
  2: "2";
1605
- 4: "4";
1606
- 6: "6";
1607
- 8: "8";
1608
- 16: "16";
1609
- 32: "32";
1610
1369
  }>;
1611
1370
  memory: z.ZodEnum<{
1612
1371
  "512Mi": "512Mi";
1613
1372
  "1Gi": "1Gi";
1614
1373
  "2Gi": "2Gi";
1615
- "4Gi": "4Gi";
1616
- "8Gi": "8Gi";
1617
- "16Gi": "16Gi";
1618
- "32Gi": "32Gi";
1619
1374
  }>;
1620
1375
  ingress: z.ZodEnum<{
1621
1376
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -1740,52 +1495,17 @@ export declare const zFetchNodeM2mResponse: z.ZodObject<{
1740
1495
  typ: z.ZodLiteral<"container">;
1741
1496
  }, z.core.$strip>, z.ZodObject<{
1742
1497
  region: z.ZodEnum<{
1743
- "africa-south1": "africa-south1";
1744
- "asia-east1": "asia-east1";
1745
- "asia-east2": "asia-east2";
1746
- "asia-northeast1": "asia-northeast1";
1747
- "asia-northeast2": "asia-northeast2";
1748
- "asia-northeast3": "asia-northeast3";
1749
- "asia-south1": "asia-south1";
1750
- "asia-southeast1": "asia-southeast1";
1751
- "asia-southeast2": "asia-southeast2";
1752
- "australia-southeast1": "australia-southeast1";
1753
- "europe-north1": "europe-north1";
1754
- "europe-west1": "europe-west1";
1755
1498
  "europe-west2": "europe-west2";
1756
- "europe-west3": "europe-west3";
1757
- "europe-west4": "europe-west4";
1758
- "europe-west6": "europe-west6";
1759
- "northamerica-northeast1": "northamerica-northeast1";
1760
- "northamerica-northeast2": "northamerica-northeast2";
1761
- "southamerica-east1": "southamerica-east1";
1762
- "southamerica-west1": "southamerica-west1";
1763
- "us-central1": "us-central1";
1764
- "us-east1": "us-east1";
1765
- "us-east4": "us-east4";
1766
- "us-west1": "us-west1";
1767
- "us-west2": "us-west2";
1768
- "us-west3": "us-west3";
1769
- "us-west4": "us-west4";
1770
1499
  }>;
1771
1500
  port: z.ZodInt;
1772
1501
  cpu: z.ZodEnum<{
1773
1502
  1: "1";
1774
1503
  2: "2";
1775
- 4: "4";
1776
- 6: "6";
1777
- 8: "8";
1778
- 16: "16";
1779
- 32: "32";
1780
1504
  }>;
1781
1505
  memory: z.ZodEnum<{
1782
1506
  "512Mi": "512Mi";
1783
1507
  "1Gi": "1Gi";
1784
1508
  "2Gi": "2Gi";
1785
- "4Gi": "4Gi";
1786
- "8Gi": "8Gi";
1787
- "16Gi": "16Gi";
1788
- "32Gi": "32Gi";
1789
1509
  }>;
1790
1510
  ingress: z.ZodEnum<{
1791
1511
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -2441,7 +2161,7 @@ export declare const zGetEnvironmentVersionsData: z.ZodObject<{
2441
2161
  query: z.ZodOptional<z.ZodObject<{
2442
2162
  page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
2443
2163
  limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
2444
- versionUUID: z.ZodOptional<z.ZodUUID>;
2164
+ excludeVersionUUID: z.ZodOptional<z.ZodUUID>;
2445
2165
  status: z.ZodOptional<z.ZodEnum<{
2446
2166
  pending: "pending";
2447
2167
  queued: "queued";
@@ -2606,52 +2326,17 @@ export declare const zGetGraphOverviewResponse: z.ZodObject<{
2606
2326
  typ: z.ZodLiteral<"container">;
2607
2327
  }, z.core.$strip>, z.ZodObject<{
2608
2328
  region: z.ZodEnum<{
2609
- "africa-south1": "africa-south1";
2610
- "asia-east1": "asia-east1";
2611
- "asia-east2": "asia-east2";
2612
- "asia-northeast1": "asia-northeast1";
2613
- "asia-northeast2": "asia-northeast2";
2614
- "asia-northeast3": "asia-northeast3";
2615
- "asia-south1": "asia-south1";
2616
- "asia-southeast1": "asia-southeast1";
2617
- "asia-southeast2": "asia-southeast2";
2618
- "australia-southeast1": "australia-southeast1";
2619
- "europe-north1": "europe-north1";
2620
- "europe-west1": "europe-west1";
2621
2329
  "europe-west2": "europe-west2";
2622
- "europe-west3": "europe-west3";
2623
- "europe-west4": "europe-west4";
2624
- "europe-west6": "europe-west6";
2625
- "northamerica-northeast1": "northamerica-northeast1";
2626
- "northamerica-northeast2": "northamerica-northeast2";
2627
- "southamerica-east1": "southamerica-east1";
2628
- "southamerica-west1": "southamerica-west1";
2629
- "us-central1": "us-central1";
2630
- "us-east1": "us-east1";
2631
- "us-east4": "us-east4";
2632
- "us-west1": "us-west1";
2633
- "us-west2": "us-west2";
2634
- "us-west3": "us-west3";
2635
- "us-west4": "us-west4";
2636
2330
  }>;
2637
2331
  port: z.ZodInt;
2638
2332
  cpu: z.ZodEnum<{
2639
2333
  1: "1";
2640
2334
  2: "2";
2641
- 4: "4";
2642
- 6: "6";
2643
- 8: "8";
2644
- 16: "16";
2645
- 32: "32";
2646
2335
  }>;
2647
2336
  memory: z.ZodEnum<{
2648
2337
  "512Mi": "512Mi";
2649
2338
  "1Gi": "1Gi";
2650
2339
  "2Gi": "2Gi";
2651
- "4Gi": "4Gi";
2652
- "8Gi": "8Gi";
2653
- "16Gi": "16Gi";
2654
- "32Gi": "32Gi";
2655
2340
  }>;
2656
2341
  ingress: z.ZodEnum<{
2657
2342
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -2762,52 +2447,17 @@ export declare const zUpdateGraphStateData: z.ZodObject<{
2762
2447
  typ: z.ZodLiteral<"container">;
2763
2448
  }, z.core.$strip>, z.ZodObject<{
2764
2449
  region: z.ZodEnum<{
2765
- "africa-south1": "africa-south1";
2766
- "asia-east1": "asia-east1";
2767
- "asia-east2": "asia-east2";
2768
- "asia-northeast1": "asia-northeast1";
2769
- "asia-northeast2": "asia-northeast2";
2770
- "asia-northeast3": "asia-northeast3";
2771
- "asia-south1": "asia-south1";
2772
- "asia-southeast1": "asia-southeast1";
2773
- "asia-southeast2": "asia-southeast2";
2774
- "australia-southeast1": "australia-southeast1";
2775
- "europe-north1": "europe-north1";
2776
- "europe-west1": "europe-west1";
2777
2450
  "europe-west2": "europe-west2";
2778
- "europe-west3": "europe-west3";
2779
- "europe-west4": "europe-west4";
2780
- "europe-west6": "europe-west6";
2781
- "northamerica-northeast1": "northamerica-northeast1";
2782
- "northamerica-northeast2": "northamerica-northeast2";
2783
- "southamerica-east1": "southamerica-east1";
2784
- "southamerica-west1": "southamerica-west1";
2785
- "us-central1": "us-central1";
2786
- "us-east1": "us-east1";
2787
- "us-east4": "us-east4";
2788
- "us-west1": "us-west1";
2789
- "us-west2": "us-west2";
2790
- "us-west3": "us-west3";
2791
- "us-west4": "us-west4";
2792
2451
  }>;
2793
2452
  port: z.ZodInt;
2794
2453
  cpu: z.ZodEnum<{
2795
2454
  1: "1";
2796
2455
  2: "2";
2797
- 4: "4";
2798
- 6: "6";
2799
- 8: "8";
2800
- 16: "16";
2801
- 32: "32";
2802
2456
  }>;
2803
2457
  memory: z.ZodEnum<{
2804
2458
  "512Mi": "512Mi";
2805
2459
  "1Gi": "1Gi";
2806
2460
  "2Gi": "2Gi";
2807
- "4Gi": "4Gi";
2808
- "8Gi": "8Gi";
2809
- "16Gi": "16Gi";
2810
- "32Gi": "32Gi";
2811
2461
  }>;
2812
2462
  ingress: z.ZodEnum<{
2813
2463
  INGRESS_TRAFFIC_ALL: "INGRESS_TRAFFIC_ALL";
@@ -363,51 +363,16 @@ export const zSchedulerNodeProps = z.object({
363
363
  paused: z.boolean()
364
364
  });
365
365
  export const zRegion = z.enum([
366
- 'africa-south1',
367
- 'asia-east1',
368
- 'asia-east2',
369
- 'asia-northeast1',
370
- 'asia-northeast2',
371
- 'asia-northeast3',
372
- 'asia-south1',
373
- 'asia-southeast1',
374
- 'asia-southeast2',
375
- 'australia-southeast1',
376
- 'europe-north1',
377
- 'europe-west1',
378
- 'europe-west2',
379
- 'europe-west3',
380
- 'europe-west4',
381
- 'europe-west6',
382
- 'northamerica-northeast1',
383
- 'northamerica-northeast2',
384
- 'southamerica-east1',
385
- 'southamerica-west1',
386
- 'us-central1',
387
- 'us-east1',
388
- 'us-east4',
389
- 'us-west1',
390
- 'us-west2',
391
- 'us-west3',
392
- 'us-west4'
366
+ 'europe-west2'
393
367
  ]);
394
368
  export const zCpu = z.enum([
395
369
  '1',
396
- '2',
397
- '4',
398
- '6',
399
- '8',
400
- '16',
401
- '32'
370
+ '2'
402
371
  ]);
403
372
  export const zMemory = z.enum([
404
373
  '512Mi',
405
374
  '1Gi',
406
- '2Gi',
407
- '4Gi',
408
- '8Gi',
409
- '16Gi',
410
- '32Gi'
375
+ '2Gi'
411
376
  ]);
412
377
  export const zIngress = z.enum([
413
378
  'INGRESS_TRAFFIC_ALL',
@@ -584,9 +549,9 @@ export const zNodeId = z.uuid();
584
549
  */
585
550
  export const zVersionUuid = z.uuid();
586
551
  /**
587
- * Optional version UUID to filter the environment versions response to a single version.
552
+ * Optional version UUID to exclude from the environment versions response.
588
553
  */
589
- export const zVersionUuidQuery = z.uuid();
554
+ export const zExcludeVersionUuidQuery = z.uuid();
590
555
  /**
591
556
  * Optional version status to filter the environment versions response.
592
557
  */
@@ -1025,7 +990,7 @@ export const zGetEnvironmentVersionsData = z.object({
1025
990
  query: z.optional(z.object({
1026
991
  page: z.optional(z.int().gte(1)).default(1),
1027
992
  limit: z.optional(z.int().gte(1).lte(100)).default(10),
1028
- versionUUID: z.optional(z.uuid()),
993
+ excludeVersionUUID: z.optional(z.uuid()),
1029
994
  status: z.optional(zVersionStatus)
1030
995
  }))
1031
996
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.139",
3
+ "version": "0.0.141",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",