shoal-web-sdk 0.0.160 → 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 +1 -10
- package/dist/sdk/zod.gen.d.ts +1 -7
- package/dist/sdk/zod.gen.js +1 -7
- 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 = {
|
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.
|
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.
|