shoal-web-sdk 1.0.39 → 1.0.40
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 -0
- package/dist/sdk/zod.gen.d.ts +2 -0
- package/dist/sdk/zod.gen.js +2 -1
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ 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;
|
|
5
6
|
}, z.core.$strip>;
|
|
6
7
|
export declare const zEnvironmentVariable: z.ZodObject<{
|
|
7
8
|
key: z.ZodString;
|
|
@@ -1940,6 +1941,7 @@ export declare const zGetEnvironmentVariablesM2mResponse: z.ZodObject<{
|
|
|
1940
1941
|
export declare const zSetEnvironmentGcpProjectIdData: z.ZodObject<{
|
|
1941
1942
|
body: z.ZodObject<{
|
|
1942
1943
|
gcpProjectID: z.ZodString;
|
|
1944
|
+
gcpSourceBucket: z.ZodString;
|
|
1943
1945
|
}, z.core.$strip>;
|
|
1944
1946
|
path: z.ZodObject<{
|
|
1945
1947
|
environmentUUID: z.ZodUUID;
|
package/dist/sdk/zod.gen.js
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
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()
|
|
5
|
+
gcpProjectID: z.string(),
|
|
6
|
+
gcpSourceBucket: z.string()
|
|
6
7
|
});
|
|
7
8
|
export const zEnvironmentVariable = z.object({
|
|
8
9
|
key: z.string(),
|