@shotstack/schemas 1.8.5 → 1.8.6
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/zod/zod.gen.cjs +5 -3
- package/dist/zod/zod.gen.d.ts +434 -2
- package/dist/zod/zod.gen.js +5 -3
- package/dist/zod/zod.gen.ts +5 -3
- package/package.json +1 -1
package/dist/zod/zod.gen.cjs
CHANGED
|
@@ -824,7 +824,7 @@ exports.akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOptionsSche
|
|
|
824
824
|
* Send videos and assets to [Akamai NetStorage](https://techdocs.akamai.com/netstorage-usage/docs). Send files to your NetStorage upload directory with a custom path and filename. Akamai credentials are required and added via the [dashboard](https://dashboard.shotstack.io/integrations/akamai-netstorage), not in the request.
|
|
825
825
|
*/
|
|
826
826
|
exports.akamaiNetStorageDestinationAkamaiNetStorageDestinationSchema = zod_1.z.object({
|
|
827
|
-
provider: zod_1.z.
|
|
827
|
+
provider: zod_1.z.literal("akamai-netstorage"),
|
|
828
828
|
options: zod_1.z.optional(exports.akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOptionsSchema),
|
|
829
829
|
}).strict();
|
|
830
830
|
/**
|
|
@@ -840,7 +840,7 @@ exports.azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOptionsSche
|
|
|
840
840
|
* Send videos and assets to [Azure Blob Storage](https://learn.microsoft.com/en-us/azure/storage/blobs/). Send files to any container with a custom prefix and filename. Azure credentials are required and added via the [dashboard](https://dashboard.shotstack.io/integrations/azure-blob-storage), not in the request.
|
|
841
841
|
*/
|
|
842
842
|
exports.azureBlobStorageDestinationAzureBlobStorageDestinationSchema = zod_1.z.object({
|
|
843
|
-
provider: zod_1.z.
|
|
843
|
+
provider: zod_1.z.literal("azure-blob-storage"),
|
|
844
844
|
options: zod_1.z.optional(exports.azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOptionsSchema),
|
|
845
845
|
}).strict();
|
|
846
846
|
/**
|
|
@@ -977,7 +977,9 @@ exports.destinationsDestinationsSchema = zod_1.z.discriminatedUnion("provider",
|
|
|
977
977
|
exports.googleCloudStorageDestinationGoogleCloudStorageDestinationSchema,
|
|
978
978
|
exports.googleDriveDestinationGoogleDriveDestinationSchema,
|
|
979
979
|
exports.vimeoDestinationVimeoDestinationSchema,
|
|
980
|
-
exports.tiktokDestinationTiktokDestinationSchema
|
|
980
|
+
exports.tiktokDestinationTiktokDestinationSchema,
|
|
981
|
+
exports.akamaiNetStorageDestinationAkamaiNetStorageDestinationSchema,
|
|
982
|
+
exports.azureBlobStorageDestinationAzureBlobStorageDestinationSchema
|
|
981
983
|
]);
|
|
982
984
|
exports.destinationsSchema = exports.destinationsDestinationsSchema;
|
|
983
985
|
/**
|
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -3288,7 +3288,7 @@ export declare const akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinati
|
|
|
3288
3288
|
* Send videos and assets to [Akamai NetStorage](https://techdocs.akamai.com/netstorage-usage/docs). Send files to your NetStorage upload directory with a custom path and filename. Akamai credentials are required and added via the [dashboard](https://dashboard.shotstack.io/integrations/akamai-netstorage), not in the request.
|
|
3289
3289
|
*/
|
|
3290
3290
|
export declare const akamaiNetStorageDestinationAkamaiNetStorageDestinationSchema: z.ZodObject<{
|
|
3291
|
-
provider: z.
|
|
3291
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
3292
3292
|
options: z.ZodOptional<z.ZodObject<{
|
|
3293
3293
|
host: z.ZodString;
|
|
3294
3294
|
cpCode: z.ZodString;
|
|
@@ -3309,7 +3309,7 @@ export declare const azureBlobStorageDestinationOptionsAzureBlobStorageDestinati
|
|
|
3309
3309
|
* Send videos and assets to [Azure Blob Storage](https://learn.microsoft.com/en-us/azure/storage/blobs/). Send files to any container with a custom prefix and filename. Azure credentials are required and added via the [dashboard](https://dashboard.shotstack.io/integrations/azure-blob-storage), not in the request.
|
|
3310
3310
|
*/
|
|
3311
3311
|
export declare const azureBlobStorageDestinationAzureBlobStorageDestinationSchema: z.ZodObject<{
|
|
3312
|
-
provider: z.
|
|
3312
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
3313
3313
|
options: z.ZodOptional<z.ZodObject<{
|
|
3314
3314
|
accountName: z.ZodString;
|
|
3315
3315
|
container: z.ZodString;
|
|
@@ -3740,6 +3740,22 @@ export declare const destinationsDestinationsSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
3740
3740
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3741
3741
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3742
3742
|
}, z.core.$strict>>;
|
|
3743
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3744
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
3745
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
3746
|
+
host: z.ZodString;
|
|
3747
|
+
cpCode: z.ZodString;
|
|
3748
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
3749
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
3750
|
+
}, z.core.$strict>>;
|
|
3751
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3752
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
3753
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
3754
|
+
accountName: z.ZodString;
|
|
3755
|
+
container: z.ZodString;
|
|
3756
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
3757
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
3758
|
+
}, z.core.$strict>>;
|
|
3743
3759
|
}, z.core.$strict>], "provider">;
|
|
3744
3760
|
export declare const destinationsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3745
3761
|
provider: z.ZodLiteral<"shotstack">;
|
|
@@ -3816,6 +3832,22 @@ export declare const destinationsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3816
3832
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3817
3833
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3818
3834
|
}, z.core.$strict>>;
|
|
3835
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3836
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
3837
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
3838
|
+
host: z.ZodString;
|
|
3839
|
+
cpCode: z.ZodString;
|
|
3840
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
3841
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
3842
|
+
}, z.core.$strict>>;
|
|
3843
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3844
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
3845
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
3846
|
+
accountName: z.ZodString;
|
|
3847
|
+
container: z.ZodString;
|
|
3848
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
3849
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
3850
|
+
}, z.core.$strict>>;
|
|
3819
3851
|
}, z.core.$strict>], "provider">;
|
|
3820
3852
|
/**
|
|
3821
3853
|
* Flip a clip vertically or horizontally. Acts as a mirror effect of the clip along the selected plane.
|
|
@@ -5596,6 +5628,22 @@ export declare const transferTransferSchema: z.ZodObject<{
|
|
|
5596
5628
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5597
5629
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5598
5630
|
}, z.core.$strict>>;
|
|
5631
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5632
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
5633
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
5634
|
+
host: z.ZodString;
|
|
5635
|
+
cpCode: z.ZodString;
|
|
5636
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
5637
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
5638
|
+
}, z.core.$strict>>;
|
|
5639
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5640
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
5641
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
5642
|
+
accountName: z.ZodString;
|
|
5643
|
+
container: z.ZodString;
|
|
5644
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
5645
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
5646
|
+
}, z.core.$strict>>;
|
|
5599
5647
|
}, z.core.$strict>], "provider">>;
|
|
5600
5648
|
}, z.core.$strict>;
|
|
5601
5649
|
export declare const transferSchema: z.ZodObject<{
|
|
@@ -5676,6 +5724,22 @@ export declare const transferSchema: z.ZodObject<{
|
|
|
5676
5724
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5677
5725
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5678
5726
|
}, z.core.$strict>>;
|
|
5727
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5728
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
5729
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
5730
|
+
host: z.ZodString;
|
|
5731
|
+
cpCode: z.ZodString;
|
|
5732
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
5733
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
5734
|
+
}, z.core.$strict>>;
|
|
5735
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5736
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
5737
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
5738
|
+
accountName: z.ZodString;
|
|
5739
|
+
container: z.ZodString;
|
|
5740
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
5741
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
5742
|
+
}, z.core.$strict>>;
|
|
5679
5743
|
}, z.core.$strict>], "provider">>;
|
|
5680
5744
|
}, z.core.$strict>;
|
|
5681
5745
|
/**
|
|
@@ -7408,6 +7472,22 @@ export declare const sourceSourceSchema: z.ZodObject<{
|
|
|
7408
7472
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7409
7473
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7410
7474
|
}, z.core.$strict>>;
|
|
7475
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7476
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
7477
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
7478
|
+
host: z.ZodString;
|
|
7479
|
+
cpCode: z.ZodString;
|
|
7480
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
7481
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
7482
|
+
}, z.core.$strict>>;
|
|
7483
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7484
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
7485
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
7486
|
+
accountName: z.ZodString;
|
|
7487
|
+
container: z.ZodString;
|
|
7488
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
7489
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
7490
|
+
}, z.core.$strict>>;
|
|
7411
7491
|
}, z.core.$strict>], "provider">>;
|
|
7412
7492
|
callback: z.ZodOptional<z.ZodString>;
|
|
7413
7493
|
}, z.core.$strict>;
|
|
@@ -7561,6 +7641,22 @@ export declare const sourceSchema: z.ZodObject<{
|
|
|
7561
7641
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7562
7642
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7563
7643
|
}, z.core.$strict>>;
|
|
7644
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7645
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
7646
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
7647
|
+
host: z.ZodString;
|
|
7648
|
+
cpCode: z.ZodString;
|
|
7649
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
7650
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
7651
|
+
}, z.core.$strict>>;
|
|
7652
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7653
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
7654
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
7655
|
+
accountName: z.ZodString;
|
|
7656
|
+
container: z.ZodString;
|
|
7657
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
7658
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
7659
|
+
}, z.core.$strict>>;
|
|
7564
7660
|
}, z.core.$strict>], "provider">>;
|
|
7565
7661
|
callback: z.ZodOptional<z.ZodString>;
|
|
7566
7662
|
}, z.core.$strict>;
|
|
@@ -8853,6 +8949,22 @@ export declare const outputOutputSchema: z.ZodObject<{
|
|
|
8853
8949
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8854
8950
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8855
8951
|
}, z.core.$strict>>;
|
|
8952
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8953
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
8954
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
8955
|
+
host: z.ZodString;
|
|
8956
|
+
cpCode: z.ZodString;
|
|
8957
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
8958
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
8959
|
+
}, z.core.$strict>>;
|
|
8960
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8961
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
8962
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
8963
|
+
accountName: z.ZodString;
|
|
8964
|
+
container: z.ZodString;
|
|
8965
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
8966
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
8967
|
+
}, z.core.$strict>>;
|
|
8856
8968
|
}, z.core.$strict>], "provider">>>;
|
|
8857
8969
|
}, z.core.$strict>;
|
|
8858
8970
|
export declare const outputSchema: z.ZodObject<{
|
|
@@ -8987,6 +9099,22 @@ export declare const outputSchema: z.ZodObject<{
|
|
|
8987
9099
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8988
9100
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8989
9101
|
}, z.core.$strict>>;
|
|
9102
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9103
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
9104
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
9105
|
+
host: z.ZodString;
|
|
9106
|
+
cpCode: z.ZodString;
|
|
9107
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
9108
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
9109
|
+
}, z.core.$strict>>;
|
|
9110
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9111
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
9112
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
9113
|
+
accountName: z.ZodString;
|
|
9114
|
+
container: z.ZodString;
|
|
9115
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
9116
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
9117
|
+
}, z.core.$strict>>;
|
|
8990
9118
|
}, z.core.$strict>], "provider">>>;
|
|
8991
9119
|
}, z.core.$strict>;
|
|
8992
9120
|
/**
|
|
@@ -27276,6 +27404,22 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27276
27404
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
27277
27405
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
27278
27406
|
}, z.core.$strict>>;
|
|
27407
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
27408
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
27409
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
27410
|
+
host: z.ZodString;
|
|
27411
|
+
cpCode: z.ZodString;
|
|
27412
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
27413
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
27414
|
+
}, z.core.$strict>>;
|
|
27415
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
27416
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
27417
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
27418
|
+
accountName: z.ZodString;
|
|
27419
|
+
container: z.ZodString;
|
|
27420
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
27421
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
27422
|
+
}, z.core.$strict>>;
|
|
27279
27423
|
}, z.core.$strict>], "provider">>>;
|
|
27280
27424
|
}, z.core.$strict>;
|
|
27281
27425
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -29857,6 +30001,22 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29857
30001
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
29858
30002
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
29859
30003
|
}, z.core.$strict>>;
|
|
30004
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
30005
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
30006
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
30007
|
+
host: z.ZodString;
|
|
30008
|
+
cpCode: z.ZodString;
|
|
30009
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
30010
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
30011
|
+
}, z.core.$strict>>;
|
|
30012
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
30013
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
30014
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
30015
|
+
accountName: z.ZodString;
|
|
30016
|
+
container: z.ZodString;
|
|
30017
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
30018
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
30019
|
+
}, z.core.$strict>>;
|
|
29860
30020
|
}, z.core.$strict>], "provider">>>;
|
|
29861
30021
|
}, z.core.$strict>;
|
|
29862
30022
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -32460,6 +32620,22 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32460
32620
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
32461
32621
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
32462
32622
|
}, z.core.$strict>>;
|
|
32623
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
32624
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
32625
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
32626
|
+
host: z.ZodString;
|
|
32627
|
+
cpCode: z.ZodString;
|
|
32628
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
32629
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
32630
|
+
}, z.core.$strict>>;
|
|
32631
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
32632
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
32633
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
32634
|
+
accountName: z.ZodString;
|
|
32635
|
+
container: z.ZodString;
|
|
32636
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
32637
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
32638
|
+
}, z.core.$strict>>;
|
|
32463
32639
|
}, z.core.$strict>], "provider">>>;
|
|
32464
32640
|
}, z.core.$strict>;
|
|
32465
32641
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -35063,6 +35239,22 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
35063
35239
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
35064
35240
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
35065
35241
|
}, z.core.$strict>>;
|
|
35242
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
35243
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
35244
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
35245
|
+
host: z.ZodString;
|
|
35246
|
+
cpCode: z.ZodString;
|
|
35247
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
35248
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
35249
|
+
}, z.core.$strict>>;
|
|
35250
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
35251
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
35252
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
35253
|
+
accountName: z.ZodString;
|
|
35254
|
+
container: z.ZodString;
|
|
35255
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
35256
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
35257
|
+
}, z.core.$strict>>;
|
|
35066
35258
|
}, z.core.$strict>], "provider">>>;
|
|
35067
35259
|
}, z.core.$strict>;
|
|
35068
35260
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -37672,6 +37864,22 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37672
37864
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
37673
37865
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
37674
37866
|
}, z.core.$strict>>;
|
|
37867
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
37868
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
37869
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
37870
|
+
host: z.ZodString;
|
|
37871
|
+
cpCode: z.ZodString;
|
|
37872
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
37873
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
37874
|
+
}, z.core.$strict>>;
|
|
37875
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
37876
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
37877
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
37878
|
+
accountName: z.ZodString;
|
|
37879
|
+
container: z.ZodString;
|
|
37880
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
37881
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
37882
|
+
}, z.core.$strict>>;
|
|
37675
37883
|
}, z.core.$strict>], "provider">>>;
|
|
37676
37884
|
}, z.core.$strict>;
|
|
37677
37885
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -40279,6 +40487,22 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40279
40487
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
40280
40488
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
40281
40489
|
}, z.core.$strict>>;
|
|
40490
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
40491
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
40492
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
40493
|
+
host: z.ZodString;
|
|
40494
|
+
cpCode: z.ZodString;
|
|
40495
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
40496
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
40497
|
+
}, z.core.$strict>>;
|
|
40498
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
40499
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
40500
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
40501
|
+
accountName: z.ZodString;
|
|
40502
|
+
container: z.ZodString;
|
|
40503
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
40504
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
40505
|
+
}, z.core.$strict>>;
|
|
40282
40506
|
}, z.core.$strict>], "provider">>>;
|
|
40283
40507
|
}, z.core.$strict>;
|
|
40284
40508
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -42871,6 +43095,22 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42871
43095
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
42872
43096
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
42873
43097
|
}, z.core.$strict>>;
|
|
43098
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
43099
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
43100
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
43101
|
+
host: z.ZodString;
|
|
43102
|
+
cpCode: z.ZodString;
|
|
43103
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
43104
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
43105
|
+
}, z.core.$strict>>;
|
|
43106
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
43107
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
43108
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
43109
|
+
accountName: z.ZodString;
|
|
43110
|
+
container: z.ZodString;
|
|
43111
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
43112
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
43113
|
+
}, z.core.$strict>>;
|
|
42874
43114
|
}, z.core.$strict>], "provider">>>;
|
|
42875
43115
|
}, z.core.$strict>;
|
|
42876
43116
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -45457,6 +45697,22 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45457
45697
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
45458
45698
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
45459
45699
|
}, z.core.$strict>>;
|
|
45700
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
45701
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
45702
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
45703
|
+
host: z.ZodString;
|
|
45704
|
+
cpCode: z.ZodString;
|
|
45705
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
45706
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
45707
|
+
}, z.core.$strict>>;
|
|
45708
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
45709
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
45710
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
45711
|
+
accountName: z.ZodString;
|
|
45712
|
+
container: z.ZodString;
|
|
45713
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
45714
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
45715
|
+
}, z.core.$strict>>;
|
|
45460
45716
|
}, z.core.$strict>], "provider">>>;
|
|
45461
45717
|
}, z.core.$strict>;
|
|
45462
45718
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -48049,6 +48305,22 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48049
48305
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
48050
48306
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
48051
48307
|
}, z.core.$strict>>;
|
|
48308
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
48309
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
48310
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
48311
|
+
host: z.ZodString;
|
|
48312
|
+
cpCode: z.ZodString;
|
|
48313
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
48314
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
48315
|
+
}, z.core.$strict>>;
|
|
48316
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
48317
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
48318
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
48319
|
+
accountName: z.ZodString;
|
|
48320
|
+
container: z.ZodString;
|
|
48321
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
48322
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
48323
|
+
}, z.core.$strict>>;
|
|
48052
48324
|
}, z.core.$strict>], "provider">>>;
|
|
48053
48325
|
}, z.core.$strict>;
|
|
48054
48326
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -50639,6 +50911,22 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50639
50911
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
50640
50912
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
50641
50913
|
}, z.core.$strict>>;
|
|
50914
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
50915
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
50916
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
50917
|
+
host: z.ZodString;
|
|
50918
|
+
cpCode: z.ZodString;
|
|
50919
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
50920
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
50921
|
+
}, z.core.$strict>>;
|
|
50922
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
50923
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
50924
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
50925
|
+
accountName: z.ZodString;
|
|
50926
|
+
container: z.ZodString;
|
|
50927
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
50928
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
50929
|
+
}, z.core.$strict>>;
|
|
50642
50930
|
}, z.core.$strict>], "provider">>>;
|
|
50643
50931
|
}, z.core.$strict>;
|
|
50644
50932
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -53227,6 +53515,22 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53227
53515
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
53228
53516
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
53229
53517
|
}, z.core.$strict>>;
|
|
53518
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
53519
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
53520
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
53521
|
+
host: z.ZodString;
|
|
53522
|
+
cpCode: z.ZodString;
|
|
53523
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
53524
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
53525
|
+
}, z.core.$strict>>;
|
|
53526
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
53527
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
53528
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
53529
|
+
accountName: z.ZodString;
|
|
53530
|
+
container: z.ZodString;
|
|
53531
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
53532
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
53533
|
+
}, z.core.$strict>>;
|
|
53230
53534
|
}, z.core.$strict>], "provider">>>;
|
|
53231
53535
|
}, z.core.$strict>;
|
|
53232
53536
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -55811,6 +56115,22 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55811
56115
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
55812
56116
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
55813
56117
|
}, z.core.$strict>>;
|
|
56118
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
56119
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
56120
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
56121
|
+
host: z.ZodString;
|
|
56122
|
+
cpCode: z.ZodString;
|
|
56123
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
56124
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
56125
|
+
}, z.core.$strict>>;
|
|
56126
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
56127
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
56128
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
56129
|
+
accountName: z.ZodString;
|
|
56130
|
+
container: z.ZodString;
|
|
56131
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
56132
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
56133
|
+
}, z.core.$strict>>;
|
|
55814
56134
|
}, z.core.$strict>], "provider">>>;
|
|
55815
56135
|
}, z.core.$strict>;
|
|
55816
56136
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -58394,6 +58714,22 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58394
58714
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
58395
58715
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
58396
58716
|
}, z.core.$strict>>;
|
|
58717
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
58718
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
58719
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
58720
|
+
host: z.ZodString;
|
|
58721
|
+
cpCode: z.ZodString;
|
|
58722
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
58723
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
58724
|
+
}, z.core.$strict>>;
|
|
58725
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
58726
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
58727
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
58728
|
+
accountName: z.ZodString;
|
|
58729
|
+
container: z.ZodString;
|
|
58730
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
58731
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
58732
|
+
}, z.core.$strict>>;
|
|
58397
58733
|
}, z.core.$strict>], "provider">>>;
|
|
58398
58734
|
}, z.core.$strict>;
|
|
58399
58735
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -61024,6 +61360,22 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61024
61360
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
61025
61361
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
61026
61362
|
}, z.core.$strict>>;
|
|
61363
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
61364
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
61365
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
61366
|
+
host: z.ZodString;
|
|
61367
|
+
cpCode: z.ZodString;
|
|
61368
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
61369
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
61370
|
+
}, z.core.$strict>>;
|
|
61371
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
61372
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
61373
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
61374
|
+
accountName: z.ZodString;
|
|
61375
|
+
container: z.ZodString;
|
|
61376
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
61377
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
61378
|
+
}, z.core.$strict>>;
|
|
61027
61379
|
}, z.core.$strict>], "provider">>>;
|
|
61028
61380
|
}, z.core.$strict>;
|
|
61029
61381
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -63633,6 +63985,22 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63633
63985
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
63634
63986
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
63635
63987
|
}, z.core.$strict>>;
|
|
63988
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
63989
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
63990
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
63991
|
+
host: z.ZodString;
|
|
63992
|
+
cpCode: z.ZodString;
|
|
63993
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
63994
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
63995
|
+
}, z.core.$strict>>;
|
|
63996
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
63997
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
63998
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
63999
|
+
accountName: z.ZodString;
|
|
64000
|
+
container: z.ZodString;
|
|
64001
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
64002
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
64003
|
+
}, z.core.$strict>>;
|
|
63636
64004
|
}, z.core.$strict>], "provider">>>;
|
|
63637
64005
|
}, z.core.$strict>;
|
|
63638
64006
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -66257,6 +66625,22 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66257
66625
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
66258
66626
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
66259
66627
|
}, z.core.$strict>>;
|
|
66628
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
66629
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
66630
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
66631
|
+
host: z.ZodString;
|
|
66632
|
+
cpCode: z.ZodString;
|
|
66633
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
66634
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
66635
|
+
}, z.core.$strict>>;
|
|
66636
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
66637
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
66638
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
66639
|
+
accountName: z.ZodString;
|
|
66640
|
+
container: z.ZodString;
|
|
66641
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
66642
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
66643
|
+
}, z.core.$strict>>;
|
|
66260
66644
|
}, z.core.$strict>], "provider">>>;
|
|
66261
66645
|
}, z.core.$strict>;
|
|
66262
66646
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -68843,6 +69227,22 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68843
69227
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
68844
69228
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
68845
69229
|
}, z.core.$strict>>;
|
|
69230
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
69231
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
69232
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
69233
|
+
host: z.ZodString;
|
|
69234
|
+
cpCode: z.ZodString;
|
|
69235
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
69236
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
69237
|
+
}, z.core.$strict>>;
|
|
69238
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
69239
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
69240
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
69241
|
+
accountName: z.ZodString;
|
|
69242
|
+
container: z.ZodString;
|
|
69243
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
69244
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
69245
|
+
}, z.core.$strict>>;
|
|
68846
69246
|
}, z.core.$strict>], "provider">>>;
|
|
68847
69247
|
}, z.core.$strict>;
|
|
68848
69248
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -69068,6 +69468,22 @@ export declare const postServeAssetRequest: z.ZodObject<{
|
|
|
69068
69468
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
69069
69469
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
69070
69470
|
}, z.core.$strict>>;
|
|
69471
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
69472
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
69473
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
69474
|
+
host: z.ZodString;
|
|
69475
|
+
cpCode: z.ZodString;
|
|
69476
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
69477
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
69478
|
+
}, z.core.$strict>>;
|
|
69479
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
69480
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
69481
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
69482
|
+
accountName: z.ZodString;
|
|
69483
|
+
container: z.ZodString;
|
|
69484
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
69485
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
69486
|
+
}, z.core.$strict>>;
|
|
69071
69487
|
}, z.core.$strict>], "provider">>;
|
|
69072
69488
|
}, z.core.$strict>;
|
|
69073
69489
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -69359,6 +69775,22 @@ export declare const postSourceRequest: z.ZodObject<{
|
|
|
69359
69775
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
69360
69776
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
69361
69777
|
}, z.core.$strict>>;
|
|
69778
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
69779
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
69780
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
69781
|
+
host: z.ZodString;
|
|
69782
|
+
cpCode: z.ZodString;
|
|
69783
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
69784
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
69785
|
+
}, z.core.$strict>>;
|
|
69786
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
69787
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
69788
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
69789
|
+
accountName: z.ZodString;
|
|
69790
|
+
container: z.ZodString;
|
|
69791
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
69792
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
69793
|
+
}, z.core.$strict>>;
|
|
69362
69794
|
}, z.core.$strict>], "provider">>;
|
|
69363
69795
|
callback: z.ZodOptional<z.ZodString>;
|
|
69364
69796
|
}, z.core.$strict>;
|
package/dist/zod/zod.gen.js
CHANGED
|
@@ -814,7 +814,7 @@ export const akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOption
|
|
|
814
814
|
* Send videos and assets to [Akamai NetStorage](https://techdocs.akamai.com/netstorage-usage/docs). Send files to your NetStorage upload directory with a custom path and filename. Akamai credentials are required and added via the [dashboard](https://dashboard.shotstack.io/integrations/akamai-netstorage), not in the request.
|
|
815
815
|
*/
|
|
816
816
|
export const akamaiNetStorageDestinationAkamaiNetStorageDestinationSchema = z.object({
|
|
817
|
-
provider: z.
|
|
817
|
+
provider: z.literal("akamai-netstorage"),
|
|
818
818
|
options: z.optional(akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOptionsSchema),
|
|
819
819
|
}).strict();
|
|
820
820
|
/**
|
|
@@ -830,7 +830,7 @@ export const azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOption
|
|
|
830
830
|
* Send videos and assets to [Azure Blob Storage](https://learn.microsoft.com/en-us/azure/storage/blobs/). Send files to any container with a custom prefix and filename. Azure credentials are required and added via the [dashboard](https://dashboard.shotstack.io/integrations/azure-blob-storage), not in the request.
|
|
831
831
|
*/
|
|
832
832
|
export const azureBlobStorageDestinationAzureBlobStorageDestinationSchema = z.object({
|
|
833
|
-
provider: z.
|
|
833
|
+
provider: z.literal("azure-blob-storage"),
|
|
834
834
|
options: z.optional(azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOptionsSchema),
|
|
835
835
|
}).strict();
|
|
836
836
|
/**
|
|
@@ -967,7 +967,9 @@ export const destinationsDestinationsSchema = z.discriminatedUnion("provider", [
|
|
|
967
967
|
googleCloudStorageDestinationGoogleCloudStorageDestinationSchema,
|
|
968
968
|
googleDriveDestinationGoogleDriveDestinationSchema,
|
|
969
969
|
vimeoDestinationVimeoDestinationSchema,
|
|
970
|
-
tiktokDestinationTiktokDestinationSchema
|
|
970
|
+
tiktokDestinationTiktokDestinationSchema,
|
|
971
|
+
akamaiNetStorageDestinationAkamaiNetStorageDestinationSchema,
|
|
972
|
+
azureBlobStorageDestinationAzureBlobStorageDestinationSchema
|
|
971
973
|
]);
|
|
972
974
|
export const destinationsSchema = destinationsDestinationsSchema;
|
|
973
975
|
/**
|
package/dist/zod/zod.gen.ts
CHANGED
|
@@ -804,7 +804,7 @@ export const akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOption
|
|
|
804
804
|
*/
|
|
805
805
|
export const akamaiNetStorageDestinationAkamaiNetStorageDestinationSchema =
|
|
806
806
|
z.object({
|
|
807
|
-
provider: z.
|
|
807
|
+
provider: z.literal("akamai-netstorage"),
|
|
808
808
|
options: z.optional(
|
|
809
809
|
akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOptionsSchema,
|
|
810
810
|
),
|
|
@@ -826,7 +826,7 @@ export const azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOption
|
|
|
826
826
|
*/
|
|
827
827
|
export const azureBlobStorageDestinationAzureBlobStorageDestinationSchema =
|
|
828
828
|
z.object({
|
|
829
|
-
provider: z.
|
|
829
|
+
provider: z.literal("azure-blob-storage"),
|
|
830
830
|
options: z.optional(
|
|
831
831
|
azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOptionsSchema,
|
|
832
832
|
),
|
|
@@ -1011,7 +1011,9 @@ export const destinationsDestinationsSchema = z.discriminatedUnion("provider", [
|
|
|
1011
1011
|
googleCloudStorageDestinationGoogleCloudStorageDestinationSchema,
|
|
1012
1012
|
googleDriveDestinationGoogleDriveDestinationSchema,
|
|
1013
1013
|
vimeoDestinationVimeoDestinationSchema,
|
|
1014
|
-
tiktokDestinationTiktokDestinationSchema
|
|
1014
|
+
tiktokDestinationTiktokDestinationSchema,
|
|
1015
|
+
akamaiNetStorageDestinationAkamaiNetStorageDestinationSchema,
|
|
1016
|
+
azureBlobStorageDestinationAzureBlobStorageDestinationSchema
|
|
1015
1017
|
]);
|
|
1016
1018
|
|
|
1017
1019
|
export const destinationsSchema = destinationsDestinationsSchema;
|