shoal-web-sdk 0.0.115 → 0.0.116

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.
@@ -352,6 +352,12 @@ export type VmNodeProps = {
352
352
  export type SignedUrlUploadResponse = {
353
353
  signedUrl: string;
354
354
  expiration: string;
355
+ /**
356
+ * Form fields required for the multipart POST upload
357
+ */
358
+ fields: {
359
+ [key: string]: string;
360
+ };
355
361
  };
356
362
  export type BillingPlan = {
357
363
  tier: PlatformTier;
@@ -1026,6 +1026,7 @@ export declare const zGraph: z.ZodObject<{
1026
1026
  export declare const zSignedUrlUploadResponse: z.ZodObject<{
1027
1027
  signedUrl: z.ZodString;
1028
1028
  expiration: z.ZodISODateTime;
1029
+ fields: z.ZodRecord<z.ZodString, z.ZodString>;
1029
1030
  }, z.core.$strip>;
1030
1031
  export declare const zBillingPlan: z.ZodObject<{
1031
1032
  tier: z.ZodEnum<{
@@ -2382,6 +2383,7 @@ export declare const zRequestSignedUploadUrlData: z.ZodObject<{
2382
2383
  export declare const zRequestSignedUploadUrlResponse: z.ZodObject<{
2383
2384
  signedUrl: z.ZodString;
2384
2385
  expiration: z.ZodISODateTime;
2386
+ fields: z.ZodRecord<z.ZodString, z.ZodString>;
2385
2387
  }, z.core.$strip>;
2386
2388
  export declare const zRecordCloudUsageData: z.ZodObject<{
2387
2389
  body: z.ZodObject<{
@@ -444,7 +444,8 @@ export const zGraph = z.object({
444
444
  });
445
445
  export const zSignedUrlUploadResponse = z.object({
446
446
  signedUrl: z.string(),
447
- expiration: z.iso.datetime()
447
+ expiration: z.iso.datetime(),
448
+ fields: z.record(z.string(), z.string())
448
449
  });
449
450
  export const zBillingPlan = z.object({
450
451
  tier: zPlatformTier,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.115",
3
+ "version": "0.0.116",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",