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.
- package/dist/sdk/types.gen.d.ts +6 -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
|
@@ -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;
|
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -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<{
|
package/dist/sdk/zod.gen.js
CHANGED
|
@@ -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,
|