shoal-web-sdk 1.0.43 → 1.0.44
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 +0 -1
- package/dist/sdk/zod.gen.d.ts +0 -2
- package/dist/sdk/zod.gen.js +1 -2
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const zPlainString: z.ZodString;
|
|
3
3
|
export declare const zUpdateGcpEnvironment: z.ZodObject<{
|
|
4
4
|
gcpProjectID: z.ZodString;
|
|
5
|
-
gcpSourceBucket: z.ZodString;
|
|
6
5
|
}, z.core.$strip>;
|
|
7
6
|
export declare const zEnvironmentVariable: z.ZodObject<{
|
|
8
7
|
key: z.ZodString;
|
|
@@ -2070,7 +2069,6 @@ export declare const zGetEnvironmentVariablesM2mResponse: z.ZodObject<{
|
|
|
2070
2069
|
export declare const zSetEnvironmentGcpProjectIdData: z.ZodObject<{
|
|
2071
2070
|
body: z.ZodObject<{
|
|
2072
2071
|
gcpProjectID: z.ZodString;
|
|
2073
|
-
gcpSourceBucket: z.ZodString;
|
|
2074
2072
|
}, z.core.$strip>;
|
|
2075
2073
|
path: z.ZodObject<{
|
|
2076
2074
|
environmentUUID: z.ZodUUID;
|
package/dist/sdk/zod.gen.js
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
export const zPlainString = z.string().regex(/^[-a-zA-Z0-9 ']+$/);
|
|
4
4
|
export const zUpdateGcpEnvironment = z.object({
|
|
5
|
-
gcpProjectID: z.string()
|
|
6
|
-
gcpSourceBucket: z.string()
|
|
5
|
+
gcpProjectID: z.string()
|
|
7
6
|
});
|
|
8
7
|
export const zEnvironmentVariable = z.object({
|
|
9
8
|
key: z.string(),
|