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