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.
@@ -7,6 +7,7 @@ export type EnvironmentVariables = {
7
7
  };
8
8
  export type UpdateGcpEnvironment = {
9
9
  gcpProjectID: string;
10
+ gcpSourceBucket: string;
10
11
  };
11
12
  export type EnvironmentVariable = {
12
13
  key: string;
@@ -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;
@@ -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(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",