shoal-web-sdk 1.0.7 → 1.0.9

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.
@@ -2809,12 +2809,7 @@ export type RequestSignedUploadUrlData = {
2809
2809
  */
2810
2810
  version: string;
2811
2811
  };
2812
- query?: {
2813
- /**
2814
- * The uuid file name of an exisiting source code upload
2815
- */
2816
- existing?: string;
2817
- };
2812
+ query?: never;
2818
2813
  url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/graph/signed-upload-url';
2819
2814
  };
2820
2815
  export type RequestSignedUploadUrlErrors = {
@@ -3174,9 +3174,7 @@ export declare const zRequestSignedUploadUrlData: z.ZodObject<{
3174
3174
  environmentHandle: z.ZodString;
3175
3175
  version: z.ZodString;
3176
3176
  }, z.core.$strip>;
3177
- query: z.ZodOptional<z.ZodObject<{
3178
- existing: z.ZodOptional<z.ZodUUID>;
3179
- }, z.core.$strip>>;
3177
+ query: z.ZodOptional<z.ZodNever>;
3180
3178
  }, z.core.$strip>;
3181
3179
  /**
3182
3180
  * A successfully generated signed url.
@@ -1,6 +1,6 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
  import { z } from 'zod';
3
- export const zPlainString = z.string().regex(/^[a-zA-Z0-9 -']+$/);
3
+ export const zPlainString = z.string().regex(/^[-a-zA-Z0-9 ']+$/);
4
4
  export const zEnvironmentVariable = z.object({
5
5
  key: z.string(),
6
6
  value: z.string()
@@ -1241,9 +1241,7 @@ export const zRequestSignedUploadUrlData = z.object({
1241
1241
  environmentHandle: z.string(),
1242
1242
  version: z.string()
1243
1243
  }),
1244
- query: z.optional(z.object({
1245
- existing: z.optional(z.uuid())
1246
- }))
1244
+ query: z.optional(z.never())
1247
1245
  });
1248
1246
  /**
1249
1247
  * A successfully generated signed url.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",