shoal-web-sdk 0.0.161 → 0.0.162
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.
- package/dist/sdk/types.gen.d.ts +3 -22
- package/dist/sdk/zod.gen.d.ts +3 -13
- package/dist/sdk/zod.gen.js +3 -13
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
|
@@ -578,10 +578,6 @@ export type PlanPriceResponse = {
|
|
|
578
578
|
*/
|
|
579
579
|
interval: string;
|
|
580
580
|
};
|
|
581
|
-
/**
|
|
582
|
-
* Determine whether space code should be read by space handle
|
|
583
|
-
*/
|
|
584
|
-
export type SpaceByHandle = string;
|
|
585
581
|
/**
|
|
586
582
|
* Environment variable name.
|
|
587
583
|
*/
|
|
@@ -1994,12 +1990,7 @@ export type CreateProjectData = {
|
|
|
1994
1990
|
*/
|
|
1995
1991
|
spaceHandle: string;
|
|
1996
1992
|
};
|
|
1997
|
-
query?:
|
|
1998
|
-
/**
|
|
1999
|
-
* Determine whether space code should be read by space handle
|
|
2000
|
-
*/
|
|
2001
|
-
spaceByHandle?: string;
|
|
2002
|
-
};
|
|
1993
|
+
query?: never;
|
|
2003
1994
|
url: '/auth/{spaceHandle}/projects/create';
|
|
2004
1995
|
};
|
|
2005
1996
|
export type CreateProjectErrors = {
|
|
@@ -2081,12 +2072,7 @@ export type CreateEnvironmentData = {
|
|
|
2081
2072
|
*/
|
|
2082
2073
|
projectHandle: string;
|
|
2083
2074
|
};
|
|
2084
|
-
query?:
|
|
2085
|
-
/**
|
|
2086
|
-
* Determine whether space code should be read by space handle
|
|
2087
|
-
*/
|
|
2088
|
-
spaceByHandle?: string;
|
|
2089
|
-
};
|
|
2075
|
+
query?: never;
|
|
2090
2076
|
url: '/auth/{spaceHandle}/{projectHandle}/environments/create';
|
|
2091
2077
|
};
|
|
2092
2078
|
export type CreateEnvironmentErrors = {
|
|
@@ -2467,12 +2453,7 @@ export type UpdateGraphStateData = {
|
|
|
2467
2453
|
*/
|
|
2468
2454
|
version: string;
|
|
2469
2455
|
};
|
|
2470
|
-
query?:
|
|
2471
|
-
/**
|
|
2472
|
-
* Determine whether space code should be read by space handle
|
|
2473
|
-
*/
|
|
2474
|
-
spaceByHandle?: string;
|
|
2475
|
-
};
|
|
2456
|
+
query?: never;
|
|
2476
2457
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/graph';
|
|
2477
2458
|
};
|
|
2478
2459
|
export type UpdateGraphStateErrors = {
|
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -1184,10 +1184,6 @@ export declare const zPlanPriceResponse: z.ZodObject<{
|
|
|
1184
1184
|
currency: z.ZodString;
|
|
1185
1185
|
interval: z.ZodString;
|
|
1186
1186
|
}, z.core.$strip>;
|
|
1187
|
-
/**
|
|
1188
|
-
* Determine whether space code should be read by space handle
|
|
1189
|
-
*/
|
|
1190
|
-
export declare const zSpaceByHandle: z.ZodString;
|
|
1191
1187
|
/**
|
|
1192
1188
|
* Environment variable name.
|
|
1193
1189
|
*/
|
|
@@ -2348,9 +2344,7 @@ export declare const zCreateProjectData: z.ZodObject<{
|
|
|
2348
2344
|
path: z.ZodObject<{
|
|
2349
2345
|
spaceHandle: z.ZodString;
|
|
2350
2346
|
}, z.core.$strip>;
|
|
2351
|
-
query: z.ZodOptional<z.
|
|
2352
|
-
spaceByHandle: z.ZodOptional<z.ZodString>;
|
|
2353
|
-
}, z.core.$strip>>;
|
|
2347
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2354
2348
|
}, z.core.$strip>;
|
|
2355
2349
|
/**
|
|
2356
2350
|
* Successfully created project inside a space.
|
|
@@ -2412,9 +2406,7 @@ export declare const zCreateEnvironmentData: z.ZodObject<{
|
|
|
2412
2406
|
spaceHandle: z.ZodString;
|
|
2413
2407
|
projectHandle: z.ZodString;
|
|
2414
2408
|
}, z.core.$strip>;
|
|
2415
|
-
query: z.ZodOptional<z.
|
|
2416
|
-
spaceByHandle: z.ZodOptional<z.ZodString>;
|
|
2417
|
-
}, z.core.$strip>>;
|
|
2409
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2418
2410
|
}, z.core.$strip>;
|
|
2419
2411
|
/**
|
|
2420
2412
|
* Successfully created an environment inside a project.
|
|
@@ -2819,9 +2811,7 @@ export declare const zUpdateGraphStateData: z.ZodObject<{
|
|
|
2819
2811
|
environmentHandle: z.ZodString;
|
|
2820
2812
|
version: z.ZodString;
|
|
2821
2813
|
}, z.core.$strip>;
|
|
2822
|
-
query: z.ZodOptional<z.
|
|
2823
|
-
spaceByHandle: z.ZodOptional<z.ZodString>;
|
|
2824
|
-
}, z.core.$strip>>;
|
|
2814
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2825
2815
|
}, z.core.$strip>;
|
|
2826
2816
|
export declare const zDeployVersionData: z.ZodObject<{
|
|
2827
2817
|
body: z.ZodOptional<z.ZodNever>;
|
package/dist/sdk/zod.gen.js
CHANGED
|
@@ -575,10 +575,6 @@ export const zPlanPriceResponse = z.object({
|
|
|
575
575
|
currency: z.string(),
|
|
576
576
|
interval: z.string()
|
|
577
577
|
});
|
|
578
|
-
/**
|
|
579
|
-
* Determine whether space code should be read by space handle
|
|
580
|
-
*/
|
|
581
|
-
export const zSpaceByHandle = z.string();
|
|
582
578
|
/**
|
|
583
579
|
* Environment variable name.
|
|
584
580
|
*/
|
|
@@ -1030,9 +1026,7 @@ export const zCreateProjectData = z.object({
|
|
|
1030
1026
|
path: z.object({
|
|
1031
1027
|
spaceHandle: z.string()
|
|
1032
1028
|
}),
|
|
1033
|
-
query: z.optional(z.
|
|
1034
|
-
spaceByHandle: z.optional(z.string())
|
|
1035
|
-
}))
|
|
1029
|
+
query: z.optional(z.never())
|
|
1036
1030
|
});
|
|
1037
1031
|
/**
|
|
1038
1032
|
* Successfully created project inside a space.
|
|
@@ -1056,9 +1050,7 @@ export const zCreateEnvironmentData = z.object({
|
|
|
1056
1050
|
spaceHandle: z.string(),
|
|
1057
1051
|
projectHandle: z.string()
|
|
1058
1052
|
}),
|
|
1059
|
-
query: z.optional(z.
|
|
1060
|
-
spaceByHandle: z.optional(z.string())
|
|
1061
|
-
}))
|
|
1053
|
+
query: z.optional(z.never())
|
|
1062
1054
|
});
|
|
1063
1055
|
/**
|
|
1064
1056
|
* Successfully created an environment inside a project.
|
|
@@ -1166,9 +1158,7 @@ export const zUpdateGraphStateData = z.object({
|
|
|
1166
1158
|
environmentHandle: z.string(),
|
|
1167
1159
|
version: z.string()
|
|
1168
1160
|
}),
|
|
1169
|
-
query: z.optional(z.
|
|
1170
|
-
spaceByHandle: z.optional(z.string())
|
|
1171
|
-
}))
|
|
1161
|
+
query: z.optional(z.never())
|
|
1172
1162
|
});
|
|
1173
1163
|
export const zDeployVersionData = z.object({
|
|
1174
1164
|
body: z.optional(z.never()),
|