@shotstack/schemas 1.8.5 → 1.8.7
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/api.bundled.json +50 -75
- package/dist/json-schema/asset.json +95 -101
- package/dist/json-schema/clip.json +95 -101
- package/dist/json-schema/edit.json +95 -101
- package/dist/json-schema/rich-caption-asset.json +234 -240
- package/dist/json-schema/schemas.json +103 -111
- package/dist/json-schema/timeline.json +95 -101
- package/dist/json-schema/track.json +95 -101
- package/dist/schema.d.ts +40 -47
- package/dist/zod/zod.gen.cjs +36 -54
- package/dist/zod/zod.gen.d.ts +1130 -1362
- package/dist/zod/zod.gen.js +31 -49
- package/dist/zod/zod.gen.ts +20 -21
- package/package.json +1 -1
- package/dist/json-schema/word-timing.json +0 -44
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.
|
|
@@ -4628,6 +4660,17 @@ export declare const richCaptionActiveFontSchema: z.ZodObject<{
|
|
|
4628
4660
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4629
4661
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4630
4662
|
}, z.core.$strict>;
|
|
4663
|
+
/**
|
|
4664
|
+
* Font properties for rich captions. Defaults to Roboto.
|
|
4665
|
+
*/
|
|
4666
|
+
export declare const richcaptionpropertiesRichCaptionFontSchema: z.ZodObject<{
|
|
4667
|
+
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4668
|
+
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4669
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
4670
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4671
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4672
|
+
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4673
|
+
}, z.core.$strict>;
|
|
4631
4674
|
/**
|
|
4632
4675
|
* Word-level animation properties for caption effects.
|
|
4633
4676
|
*/
|
|
@@ -4669,21 +4712,6 @@ export declare const richCaptionWordAnimationSchema: z.ZodObject<{
|
|
|
4669
4712
|
down: "down";
|
|
4670
4713
|
}>>;
|
|
4671
4714
|
}, z.core.$strict>;
|
|
4672
|
-
/**
|
|
4673
|
-
* Word-level timing information for caption animation.
|
|
4674
|
-
*/
|
|
4675
|
-
export declare const richcaptionpropertiesWordTimingSchema: z.ZodObject<{
|
|
4676
|
-
text: z.ZodString;
|
|
4677
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4678
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4679
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4680
|
-
}, z.core.$strict>;
|
|
4681
|
-
export declare const wordTimingSchema: z.ZodObject<{
|
|
4682
|
-
text: z.ZodString;
|
|
4683
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4684
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4685
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4686
|
-
}, z.core.$strict>;
|
|
4687
4715
|
/**
|
|
4688
4716
|
* Text alignment properties (horizontal and vertical).
|
|
4689
4717
|
*/
|
|
@@ -4967,13 +4995,7 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
4967
4995
|
type: z.ZodEnum<{
|
|
4968
4996
|
"rich-caption": "rich-caption";
|
|
4969
4997
|
}>;
|
|
4970
|
-
src: z.
|
|
4971
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4972
|
-
text: z.ZodString;
|
|
4973
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4974
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4975
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4976
|
-
}, z.core.$strict>>>;
|
|
4998
|
+
src: z.ZodString;
|
|
4977
4999
|
font: z.ZodOptional<z.ZodObject<{
|
|
4978
5000
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4979
5001
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -4981,11 +5003,6 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
4981
5003
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4982
5004
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4983
5005
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4984
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
4985
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4986
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4987
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4988
|
-
}, z.core.$strict>>;
|
|
4989
5006
|
}, z.core.$strict>>;
|
|
4990
5007
|
style: z.ZodOptional<z.ZodObject<{
|
|
4991
5008
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5031,6 +5048,12 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5031
5048
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5032
5049
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5033
5050
|
}, z.core.$strict>>;
|
|
5051
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
5052
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5053
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5054
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5055
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5056
|
+
}, z.core.$strict>>;
|
|
5034
5057
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
5035
5058
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5036
5059
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5081,25 +5104,12 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5081
5104
|
down: "down";
|
|
5082
5105
|
}>>;
|
|
5083
5106
|
}, z.core.$strict>>;
|
|
5084
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
5085
|
-
top: "top";
|
|
5086
|
-
bottom: "bottom";
|
|
5087
|
-
center: "center";
|
|
5088
|
-
}>>;
|
|
5089
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5090
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5091
5107
|
}, z.core.$strict>;
|
|
5092
5108
|
export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
5093
5109
|
type: z.ZodEnum<{
|
|
5094
5110
|
"rich-caption": "rich-caption";
|
|
5095
5111
|
}>;
|
|
5096
|
-
src: z.
|
|
5097
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5098
|
-
text: z.ZodString;
|
|
5099
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5100
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5101
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
5102
|
-
}, z.core.$strict>>>;
|
|
5112
|
+
src: z.ZodString;
|
|
5103
5113
|
font: z.ZodOptional<z.ZodObject<{
|
|
5104
5114
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5105
5115
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5107,11 +5117,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5107
5117
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5108
5118
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5109
5119
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5110
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
5111
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5112
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5113
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5114
|
-
}, z.core.$strict>>;
|
|
5115
5120
|
}, z.core.$strict>>;
|
|
5116
5121
|
style: z.ZodOptional<z.ZodObject<{
|
|
5117
5122
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5157,6 +5162,12 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5157
5162
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5158
5163
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5159
5164
|
}, z.core.$strict>>;
|
|
5165
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
5166
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5167
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5168
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5169
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5170
|
+
}, z.core.$strict>>;
|
|
5160
5171
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
5161
5172
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5162
5173
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5207,13 +5218,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5207
5218
|
down: "down";
|
|
5208
5219
|
}>>;
|
|
5209
5220
|
}, z.core.$strict>>;
|
|
5210
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
5211
|
-
top: "top";
|
|
5212
|
-
bottom: "bottom";
|
|
5213
|
-
center: "center";
|
|
5214
|
-
}>>;
|
|
5215
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5216
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5217
5221
|
}, z.core.$strict>;
|
|
5218
5222
|
/**
|
|
5219
5223
|
* The RichTextAsset provides advanced text rendering with support for custom fonts, gradients, shadows, strokes,
|
|
@@ -5596,6 +5600,22 @@ export declare const transferTransferSchema: z.ZodObject<{
|
|
|
5596
5600
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5597
5601
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5598
5602
|
}, z.core.$strict>>;
|
|
5603
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5604
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
5605
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
5606
|
+
host: z.ZodString;
|
|
5607
|
+
cpCode: z.ZodString;
|
|
5608
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
5609
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
5610
|
+
}, z.core.$strict>>;
|
|
5611
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5612
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
5613
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
5614
|
+
accountName: z.ZodString;
|
|
5615
|
+
container: z.ZodString;
|
|
5616
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
5617
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
5618
|
+
}, z.core.$strict>>;
|
|
5599
5619
|
}, z.core.$strict>], "provider">>;
|
|
5600
5620
|
}, z.core.$strict>;
|
|
5601
5621
|
export declare const transferSchema: z.ZodObject<{
|
|
@@ -5676,6 +5696,22 @@ export declare const transferSchema: z.ZodObject<{
|
|
|
5676
5696
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5677
5697
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5678
5698
|
}, z.core.$strict>>;
|
|
5699
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5700
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
5701
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
5702
|
+
host: z.ZodString;
|
|
5703
|
+
cpCode: z.ZodString;
|
|
5704
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
5705
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
5706
|
+
}, z.core.$strict>>;
|
|
5707
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5708
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
5709
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
5710
|
+
accountName: z.ZodString;
|
|
5711
|
+
container: z.ZodString;
|
|
5712
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
5713
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
5714
|
+
}, z.core.$strict>>;
|
|
5679
5715
|
}, z.core.$strict>], "provider">>;
|
|
5680
5716
|
}, z.core.$strict>;
|
|
5681
5717
|
/**
|
|
@@ -7408,6 +7444,22 @@ export declare const sourceSourceSchema: z.ZodObject<{
|
|
|
7408
7444
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7409
7445
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7410
7446
|
}, z.core.$strict>>;
|
|
7447
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7448
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
7449
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
7450
|
+
host: z.ZodString;
|
|
7451
|
+
cpCode: z.ZodString;
|
|
7452
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
7453
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
7454
|
+
}, z.core.$strict>>;
|
|
7455
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7456
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
7457
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
7458
|
+
accountName: z.ZodString;
|
|
7459
|
+
container: z.ZodString;
|
|
7460
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
7461
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
7462
|
+
}, z.core.$strict>>;
|
|
7411
7463
|
}, z.core.$strict>], "provider">>;
|
|
7412
7464
|
callback: z.ZodOptional<z.ZodString>;
|
|
7413
7465
|
}, z.core.$strict>;
|
|
@@ -7561,6 +7613,22 @@ export declare const sourceSchema: z.ZodObject<{
|
|
|
7561
7613
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7562
7614
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7563
7615
|
}, z.core.$strict>>;
|
|
7616
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7617
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
7618
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
7619
|
+
host: z.ZodString;
|
|
7620
|
+
cpCode: z.ZodString;
|
|
7621
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
7622
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
7623
|
+
}, z.core.$strict>>;
|
|
7624
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7625
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
7626
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
7627
|
+
accountName: z.ZodString;
|
|
7628
|
+
container: z.ZodString;
|
|
7629
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
7630
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
7631
|
+
}, z.core.$strict>>;
|
|
7564
7632
|
}, z.core.$strict>], "provider">>;
|
|
7565
7633
|
callback: z.ZodOptional<z.ZodString>;
|
|
7566
7634
|
}, z.core.$strict>;
|
|
@@ -8853,6 +8921,22 @@ export declare const outputOutputSchema: z.ZodObject<{
|
|
|
8853
8921
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8854
8922
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8855
8923
|
}, z.core.$strict>>;
|
|
8924
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8925
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
8926
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
8927
|
+
host: z.ZodString;
|
|
8928
|
+
cpCode: z.ZodString;
|
|
8929
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
8930
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
8931
|
+
}, z.core.$strict>>;
|
|
8932
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8933
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
8934
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
8935
|
+
accountName: z.ZodString;
|
|
8936
|
+
container: z.ZodString;
|
|
8937
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
8938
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
8939
|
+
}, z.core.$strict>>;
|
|
8856
8940
|
}, z.core.$strict>], "provider">>>;
|
|
8857
8941
|
}, z.core.$strict>;
|
|
8858
8942
|
export declare const outputSchema: z.ZodObject<{
|
|
@@ -8987,6 +9071,22 @@ export declare const outputSchema: z.ZodObject<{
|
|
|
8987
9071
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8988
9072
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8989
9073
|
}, z.core.$strict>>;
|
|
9074
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9075
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
9076
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
9077
|
+
host: z.ZodString;
|
|
9078
|
+
cpCode: z.ZodString;
|
|
9079
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
9080
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
9081
|
+
}, z.core.$strict>>;
|
|
9082
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9083
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
9084
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
9085
|
+
accountName: z.ZodString;
|
|
9086
|
+
container: z.ZodString;
|
|
9087
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
9088
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
9089
|
+
}, z.core.$strict>>;
|
|
8990
9090
|
}, z.core.$strict>], "provider">>>;
|
|
8991
9091
|
}, z.core.$strict>;
|
|
8992
9092
|
/**
|
|
@@ -10991,13 +11091,7 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10991
11091
|
type: z.ZodEnum<{
|
|
10992
11092
|
"rich-caption": "rich-caption";
|
|
10993
11093
|
}>;
|
|
10994
|
-
src: z.
|
|
10995
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10996
|
-
text: z.ZodString;
|
|
10997
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
10998
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
10999
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
11000
|
-
}, z.core.$strict>>>;
|
|
11094
|
+
src: z.ZodString;
|
|
11001
11095
|
font: z.ZodOptional<z.ZodObject<{
|
|
11002
11096
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11003
11097
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11005,11 +11099,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11005
11099
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11006
11100
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11007
11101
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11008
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
11009
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11010
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11011
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11012
|
-
}, z.core.$strict>>;
|
|
11013
11102
|
}, z.core.$strict>>;
|
|
11014
11103
|
style: z.ZodOptional<z.ZodObject<{
|
|
11015
11104
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11055,6 +11144,12 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11055
11144
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11056
11145
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11057
11146
|
}, z.core.$strict>>;
|
|
11147
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
11148
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11149
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11150
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11151
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11152
|
+
}, z.core.$strict>>;
|
|
11058
11153
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
11059
11154
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11060
11155
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11105,13 +11200,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11105
11200
|
down: "down";
|
|
11106
11201
|
}>>;
|
|
11107
11202
|
}, z.core.$strict>>;
|
|
11108
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
11109
|
-
top: "top";
|
|
11110
|
-
bottom: "bottom";
|
|
11111
|
-
center: "center";
|
|
11112
|
-
}>>;
|
|
11113
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11114
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11115
11203
|
}, z.core.$strict>, z.ZodObject<{
|
|
11116
11204
|
type: z.ZodEnum<{
|
|
11117
11205
|
html: "html";
|
|
@@ -11833,13 +11921,7 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11833
11921
|
type: z.ZodEnum<{
|
|
11834
11922
|
"rich-caption": "rich-caption";
|
|
11835
11923
|
}>;
|
|
11836
|
-
src: z.
|
|
11837
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11838
|
-
text: z.ZodString;
|
|
11839
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
11840
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
11841
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
11842
|
-
}, z.core.$strict>>>;
|
|
11924
|
+
src: z.ZodString;
|
|
11843
11925
|
font: z.ZodOptional<z.ZodObject<{
|
|
11844
11926
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11845
11927
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11847,11 +11929,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11847
11929
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11848
11930
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11849
11931
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11850
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
11851
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11852
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11853
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11854
|
-
}, z.core.$strict>>;
|
|
11855
11932
|
}, z.core.$strict>>;
|
|
11856
11933
|
style: z.ZodOptional<z.ZodObject<{
|
|
11857
11934
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11897,6 +11974,12 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11897
11974
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11898
11975
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11899
11976
|
}, z.core.$strict>>;
|
|
11977
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
11978
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11979
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11980
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11981
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11982
|
+
}, z.core.$strict>>;
|
|
11900
11983
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
11901
11984
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11902
11985
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11947,13 +12030,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11947
12030
|
down: "down";
|
|
11948
12031
|
}>>;
|
|
11949
12032
|
}, z.core.$strict>>;
|
|
11950
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
11951
|
-
top: "top";
|
|
11952
|
-
bottom: "bottom";
|
|
11953
|
-
center: "center";
|
|
11954
|
-
}>>;
|
|
11955
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11956
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11957
12033
|
}, z.core.$strict>, z.ZodObject<{
|
|
11958
12034
|
type: z.ZodEnum<{
|
|
11959
12035
|
html: "html";
|
|
@@ -12679,13 +12755,7 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12679
12755
|
type: z.ZodEnum<{
|
|
12680
12756
|
"rich-caption": "rich-caption";
|
|
12681
12757
|
}>;
|
|
12682
|
-
src: z.
|
|
12683
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12684
|
-
text: z.ZodString;
|
|
12685
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
12686
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
12687
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
12688
|
-
}, z.core.$strict>>>;
|
|
12758
|
+
src: z.ZodString;
|
|
12689
12759
|
font: z.ZodOptional<z.ZodObject<{
|
|
12690
12760
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12691
12761
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12693,11 +12763,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12693
12763
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12694
12764
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12695
12765
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12696
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
12697
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12698
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12699
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12700
|
-
}, z.core.$strict>>;
|
|
12701
12766
|
}, z.core.$strict>>;
|
|
12702
12767
|
style: z.ZodOptional<z.ZodObject<{
|
|
12703
12768
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12743,6 +12808,12 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12743
12808
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12744
12809
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12745
12810
|
}, z.core.$strict>>;
|
|
12811
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
12812
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12813
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12814
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12815
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12816
|
+
}, z.core.$strict>>;
|
|
12746
12817
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
12747
12818
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12748
12819
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12793,13 +12864,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12793
12864
|
down: "down";
|
|
12794
12865
|
}>>;
|
|
12795
12866
|
}, z.core.$strict>>;
|
|
12796
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
12797
|
-
top: "top";
|
|
12798
|
-
bottom: "bottom";
|
|
12799
|
-
center: "center";
|
|
12800
|
-
}>>;
|
|
12801
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12802
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12803
12867
|
}, z.core.$strict>, z.ZodObject<{
|
|
12804
12868
|
type: z.ZodEnum<{
|
|
12805
12869
|
html: "html";
|
|
@@ -14005,13 +14069,7 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14005
14069
|
type: z.ZodEnum<{
|
|
14006
14070
|
"rich-caption": "rich-caption";
|
|
14007
14071
|
}>;
|
|
14008
|
-
src: z.
|
|
14009
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14010
|
-
text: z.ZodString;
|
|
14011
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
14012
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
14013
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
14014
|
-
}, z.core.$strict>>>;
|
|
14072
|
+
src: z.ZodString;
|
|
14015
14073
|
font: z.ZodOptional<z.ZodObject<{
|
|
14016
14074
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
14017
14075
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -14019,11 +14077,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14019
14077
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14020
14078
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14021
14079
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
14022
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
14023
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14024
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14025
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14026
|
-
}, z.core.$strict>>;
|
|
14027
14080
|
}, z.core.$strict>>;
|
|
14028
14081
|
style: z.ZodOptional<z.ZodObject<{
|
|
14029
14082
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -14069,6 +14122,12 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14069
14122
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14070
14123
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14071
14124
|
}, z.core.$strict>>;
|
|
14125
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
14126
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14127
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14128
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14129
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14130
|
+
}, z.core.$strict>>;
|
|
14072
14131
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
14073
14132
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14074
14133
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -14119,13 +14178,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14119
14178
|
down: "down";
|
|
14120
14179
|
}>>;
|
|
14121
14180
|
}, z.core.$strict>>;
|
|
14122
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
14123
|
-
top: "top";
|
|
14124
|
-
bottom: "bottom";
|
|
14125
|
-
center: "center";
|
|
14126
|
-
}>>;
|
|
14127
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14128
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14129
14181
|
}, z.core.$strict>, z.ZodObject<{
|
|
14130
14182
|
type: z.ZodEnum<{
|
|
14131
14183
|
html: "html";
|
|
@@ -15335,13 +15387,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15335
15387
|
type: z.ZodEnum<{
|
|
15336
15388
|
"rich-caption": "rich-caption";
|
|
15337
15389
|
}>;
|
|
15338
|
-
src: z.
|
|
15339
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15340
|
-
text: z.ZodString;
|
|
15341
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
15342
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
15343
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
15344
|
-
}, z.core.$strict>>>;
|
|
15390
|
+
src: z.ZodString;
|
|
15345
15391
|
font: z.ZodOptional<z.ZodObject<{
|
|
15346
15392
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15347
15393
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -15349,11 +15395,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15349
15395
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15350
15396
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15351
15397
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15352
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
15353
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15354
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15355
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15356
|
-
}, z.core.$strict>>;
|
|
15357
15398
|
}, z.core.$strict>>;
|
|
15358
15399
|
style: z.ZodOptional<z.ZodObject<{
|
|
15359
15400
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -15399,6 +15440,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15399
15440
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15400
15441
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15401
15442
|
}, z.core.$strict>>;
|
|
15443
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
15444
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15445
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15446
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15447
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15448
|
+
}, z.core.$strict>>;
|
|
15402
15449
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
15403
15450
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15404
15451
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -15449,13 +15496,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15449
15496
|
down: "down";
|
|
15450
15497
|
}>>;
|
|
15451
15498
|
}, z.core.$strict>>;
|
|
15452
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
15453
|
-
top: "top";
|
|
15454
|
-
bottom: "bottom";
|
|
15455
|
-
center: "center";
|
|
15456
|
-
}>>;
|
|
15457
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15458
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15459
15499
|
}, z.core.$strict>, z.ZodObject<{
|
|
15460
15500
|
type: z.ZodEnum<{
|
|
15461
15501
|
html: "html";
|
|
@@ -16620,15 +16660,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16620
16660
|
speed?: string | number;
|
|
16621
16661
|
} | {
|
|
16622
16662
|
type: "rich-caption";
|
|
16623
|
-
|
|
16624
|
-
maxLines: string | number;
|
|
16625
|
-
src?: string;
|
|
16626
|
-
words?: {
|
|
16627
|
-
text: string;
|
|
16628
|
-
start?: string | number;
|
|
16629
|
-
end?: string | number;
|
|
16630
|
-
confidence?: string | number;
|
|
16631
|
-
}[];
|
|
16663
|
+
src: string;
|
|
16632
16664
|
font?: {
|
|
16633
16665
|
family: string;
|
|
16634
16666
|
size: string | number;
|
|
@@ -16636,11 +16668,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16636
16668
|
color: string;
|
|
16637
16669
|
opacity: string | number;
|
|
16638
16670
|
background?: string;
|
|
16639
|
-
stroke?: {
|
|
16640
|
-
width: string | number;
|
|
16641
|
-
color: string;
|
|
16642
|
-
opacity: string | number;
|
|
16643
|
-
};
|
|
16644
16671
|
};
|
|
16645
16672
|
style?: {
|
|
16646
16673
|
letterSpacing: string | number;
|
|
@@ -16674,6 +16701,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16674
16701
|
borderRadius: string | number;
|
|
16675
16702
|
color?: string;
|
|
16676
16703
|
};
|
|
16704
|
+
border?: {
|
|
16705
|
+
width: string | number;
|
|
16706
|
+
color: string;
|
|
16707
|
+
opacity: string | number;
|
|
16708
|
+
radius: string | number;
|
|
16709
|
+
};
|
|
16677
16710
|
padding?: string | number | {
|
|
16678
16711
|
top: string | number;
|
|
16679
16712
|
right: string | number;
|
|
@@ -16702,7 +16735,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16702
16735
|
speed: string | number;
|
|
16703
16736
|
direction?: "left" | "right" | "up" | "down";
|
|
16704
16737
|
};
|
|
16705
|
-
position?: "top" | "bottom" | "center";
|
|
16706
16738
|
} | {
|
|
16707
16739
|
type: "html";
|
|
16708
16740
|
html: string;
|
|
@@ -17163,15 +17195,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17163
17195
|
speed?: string | number;
|
|
17164
17196
|
} | {
|
|
17165
17197
|
type: "rich-caption";
|
|
17166
|
-
|
|
17167
|
-
maxLines: string | number;
|
|
17168
|
-
src?: string;
|
|
17169
|
-
words?: {
|
|
17170
|
-
text: string;
|
|
17171
|
-
start?: string | number;
|
|
17172
|
-
end?: string | number;
|
|
17173
|
-
confidence?: string | number;
|
|
17174
|
-
}[];
|
|
17198
|
+
src: string;
|
|
17175
17199
|
font?: {
|
|
17176
17200
|
family: string;
|
|
17177
17201
|
size: string | number;
|
|
@@ -17179,11 +17203,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17179
17203
|
color: string;
|
|
17180
17204
|
opacity: string | number;
|
|
17181
17205
|
background?: string;
|
|
17182
|
-
stroke?: {
|
|
17183
|
-
width: string | number;
|
|
17184
|
-
color: string;
|
|
17185
|
-
opacity: string | number;
|
|
17186
|
-
};
|
|
17187
17206
|
};
|
|
17188
17207
|
style?: {
|
|
17189
17208
|
letterSpacing: string | number;
|
|
@@ -17217,6 +17236,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17217
17236
|
borderRadius: string | number;
|
|
17218
17237
|
color?: string;
|
|
17219
17238
|
};
|
|
17239
|
+
border?: {
|
|
17240
|
+
width: string | number;
|
|
17241
|
+
color: string;
|
|
17242
|
+
opacity: string | number;
|
|
17243
|
+
radius: string | number;
|
|
17244
|
+
};
|
|
17220
17245
|
padding?: string | number | {
|
|
17221
17246
|
top: string | number;
|
|
17222
17247
|
right: string | number;
|
|
@@ -17245,7 +17270,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17245
17270
|
speed: string | number;
|
|
17246
17271
|
direction?: "left" | "right" | "up" | "down";
|
|
17247
17272
|
};
|
|
17248
|
-
position?: "top" | "bottom" | "center";
|
|
17249
17273
|
} | {
|
|
17250
17274
|
type: "html";
|
|
17251
17275
|
html: string;
|
|
@@ -17750,13 +17774,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17750
17774
|
type: z.ZodEnum<{
|
|
17751
17775
|
"rich-caption": "rich-caption";
|
|
17752
17776
|
}>;
|
|
17753
|
-
src: z.
|
|
17754
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17755
|
-
text: z.ZodString;
|
|
17756
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
17757
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
17758
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
17759
|
-
}, z.core.$strict>>>;
|
|
17777
|
+
src: z.ZodString;
|
|
17760
17778
|
font: z.ZodOptional<z.ZodObject<{
|
|
17761
17779
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17762
17780
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -17764,11 +17782,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17764
17782
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
17765
17783
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17766
17784
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
17767
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
17768
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17769
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
17770
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17771
|
-
}, z.core.$strict>>;
|
|
17772
17785
|
}, z.core.$strict>>;
|
|
17773
17786
|
style: z.ZodOptional<z.ZodObject<{
|
|
17774
17787
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -17814,6 +17827,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17814
17827
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17815
17828
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17816
17829
|
}, z.core.$strict>>;
|
|
17830
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
17831
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17832
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
17833
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17834
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17835
|
+
}, z.core.$strict>>;
|
|
17817
17836
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
17818
17837
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17819
17838
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -17864,13 +17883,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17864
17883
|
down: "down";
|
|
17865
17884
|
}>>;
|
|
17866
17885
|
}, z.core.$strict>>;
|
|
17867
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
17868
|
-
top: "top";
|
|
17869
|
-
bottom: "bottom";
|
|
17870
|
-
center: "center";
|
|
17871
|
-
}>>;
|
|
17872
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17873
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17874
17886
|
}, z.core.$strict>, z.ZodObject<{
|
|
17875
17887
|
type: z.ZodEnum<{
|
|
17876
17888
|
html: "html";
|
|
@@ -19035,15 +19047,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19035
19047
|
speed?: string | number;
|
|
19036
19048
|
} | {
|
|
19037
19049
|
type: "rich-caption";
|
|
19038
|
-
|
|
19039
|
-
maxLines: string | number;
|
|
19040
|
-
src?: string;
|
|
19041
|
-
words?: {
|
|
19042
|
-
text: string;
|
|
19043
|
-
start?: string | number;
|
|
19044
|
-
end?: string | number;
|
|
19045
|
-
confidence?: string | number;
|
|
19046
|
-
}[];
|
|
19050
|
+
src: string;
|
|
19047
19051
|
font?: {
|
|
19048
19052
|
family: string;
|
|
19049
19053
|
size: string | number;
|
|
@@ -19051,11 +19055,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19051
19055
|
color: string;
|
|
19052
19056
|
opacity: string | number;
|
|
19053
19057
|
background?: string;
|
|
19054
|
-
stroke?: {
|
|
19055
|
-
width: string | number;
|
|
19056
|
-
color: string;
|
|
19057
|
-
opacity: string | number;
|
|
19058
|
-
};
|
|
19059
19058
|
};
|
|
19060
19059
|
style?: {
|
|
19061
19060
|
letterSpacing: string | number;
|
|
@@ -19089,6 +19088,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19089
19088
|
borderRadius: string | number;
|
|
19090
19089
|
color?: string;
|
|
19091
19090
|
};
|
|
19091
|
+
border?: {
|
|
19092
|
+
width: string | number;
|
|
19093
|
+
color: string;
|
|
19094
|
+
opacity: string | number;
|
|
19095
|
+
radius: string | number;
|
|
19096
|
+
};
|
|
19092
19097
|
padding?: string | number | {
|
|
19093
19098
|
top: string | number;
|
|
19094
19099
|
right: string | number;
|
|
@@ -19117,7 +19122,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19117
19122
|
speed: string | number;
|
|
19118
19123
|
direction?: "left" | "right" | "up" | "down";
|
|
19119
19124
|
};
|
|
19120
|
-
position?: "top" | "bottom" | "center";
|
|
19121
19125
|
} | {
|
|
19122
19126
|
type: "html";
|
|
19123
19127
|
html: string;
|
|
@@ -19578,15 +19582,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19578
19582
|
speed?: string | number;
|
|
19579
19583
|
} | {
|
|
19580
19584
|
type: "rich-caption";
|
|
19581
|
-
|
|
19582
|
-
maxLines: string | number;
|
|
19583
|
-
src?: string;
|
|
19584
|
-
words?: {
|
|
19585
|
-
text: string;
|
|
19586
|
-
start?: string | number;
|
|
19587
|
-
end?: string | number;
|
|
19588
|
-
confidence?: string | number;
|
|
19589
|
-
}[];
|
|
19585
|
+
src: string;
|
|
19590
19586
|
font?: {
|
|
19591
19587
|
family: string;
|
|
19592
19588
|
size: string | number;
|
|
@@ -19594,11 +19590,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19594
19590
|
color: string;
|
|
19595
19591
|
opacity: string | number;
|
|
19596
19592
|
background?: string;
|
|
19597
|
-
stroke?: {
|
|
19598
|
-
width: string | number;
|
|
19599
|
-
color: string;
|
|
19600
|
-
opacity: string | number;
|
|
19601
|
-
};
|
|
19602
19593
|
};
|
|
19603
19594
|
style?: {
|
|
19604
19595
|
letterSpacing: string | number;
|
|
@@ -19632,6 +19623,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19632
19623
|
borderRadius: string | number;
|
|
19633
19624
|
color?: string;
|
|
19634
19625
|
};
|
|
19626
|
+
border?: {
|
|
19627
|
+
width: string | number;
|
|
19628
|
+
color: string;
|
|
19629
|
+
opacity: string | number;
|
|
19630
|
+
radius: string | number;
|
|
19631
|
+
};
|
|
19635
19632
|
padding?: string | number | {
|
|
19636
19633
|
top: string | number;
|
|
19637
19634
|
right: string | number;
|
|
@@ -19660,7 +19657,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19660
19657
|
speed: string | number;
|
|
19661
19658
|
direction?: "left" | "right" | "up" | "down";
|
|
19662
19659
|
};
|
|
19663
|
-
position?: "top" | "bottom" | "center";
|
|
19664
19660
|
} | {
|
|
19665
19661
|
type: "html";
|
|
19666
19662
|
html: string;
|
|
@@ -20182,13 +20178,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20182
20178
|
type: z.ZodEnum<{
|
|
20183
20179
|
"rich-caption": "rich-caption";
|
|
20184
20180
|
}>;
|
|
20185
|
-
src: z.
|
|
20186
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20187
|
-
text: z.ZodString;
|
|
20188
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
20189
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
20190
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
20191
|
-
}, z.core.$strict>>>;
|
|
20181
|
+
src: z.ZodString;
|
|
20192
20182
|
font: z.ZodOptional<z.ZodObject<{
|
|
20193
20183
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20194
20184
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -20196,11 +20186,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20196
20186
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20197
20187
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20198
20188
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20199
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
20200
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20201
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20202
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20203
|
-
}, z.core.$strict>>;
|
|
20204
20189
|
}, z.core.$strict>>;
|
|
20205
20190
|
style: z.ZodOptional<z.ZodObject<{
|
|
20206
20191
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -20246,6 +20231,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20246
20231
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20247
20232
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20248
20233
|
}, z.core.$strict>>;
|
|
20234
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
20235
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20236
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20237
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20238
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20239
|
+
}, z.core.$strict>>;
|
|
20249
20240
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
20250
20241
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20251
20242
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -20296,13 +20287,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20296
20287
|
down: "down";
|
|
20297
20288
|
}>>;
|
|
20298
20289
|
}, z.core.$strict>>;
|
|
20299
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
20300
|
-
top: "top";
|
|
20301
|
-
bottom: "bottom";
|
|
20302
|
-
center: "center";
|
|
20303
|
-
}>>;
|
|
20304
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20305
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20306
20290
|
}, z.core.$strict>, z.ZodObject<{
|
|
20307
20291
|
type: z.ZodEnum<{
|
|
20308
20292
|
html: "html";
|
|
@@ -21467,15 +21451,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21467
21451
|
speed?: string | number;
|
|
21468
21452
|
} | {
|
|
21469
21453
|
type: "rich-caption";
|
|
21470
|
-
|
|
21471
|
-
maxLines: string | number;
|
|
21472
|
-
src?: string;
|
|
21473
|
-
words?: {
|
|
21474
|
-
text: string;
|
|
21475
|
-
start?: string | number;
|
|
21476
|
-
end?: string | number;
|
|
21477
|
-
confidence?: string | number;
|
|
21478
|
-
}[];
|
|
21454
|
+
src: string;
|
|
21479
21455
|
font?: {
|
|
21480
21456
|
family: string;
|
|
21481
21457
|
size: string | number;
|
|
@@ -21483,11 +21459,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21483
21459
|
color: string;
|
|
21484
21460
|
opacity: string | number;
|
|
21485
21461
|
background?: string;
|
|
21486
|
-
stroke?: {
|
|
21487
|
-
width: string | number;
|
|
21488
|
-
color: string;
|
|
21489
|
-
opacity: string | number;
|
|
21490
|
-
};
|
|
21491
21462
|
};
|
|
21492
21463
|
style?: {
|
|
21493
21464
|
letterSpacing: string | number;
|
|
@@ -21521,6 +21492,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21521
21492
|
borderRadius: string | number;
|
|
21522
21493
|
color?: string;
|
|
21523
21494
|
};
|
|
21495
|
+
border?: {
|
|
21496
|
+
width: string | number;
|
|
21497
|
+
color: string;
|
|
21498
|
+
opacity: string | number;
|
|
21499
|
+
radius: string | number;
|
|
21500
|
+
};
|
|
21524
21501
|
padding?: string | number | {
|
|
21525
21502
|
top: string | number;
|
|
21526
21503
|
right: string | number;
|
|
@@ -21549,7 +21526,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21549
21526
|
speed: string | number;
|
|
21550
21527
|
direction?: "left" | "right" | "up" | "down";
|
|
21551
21528
|
};
|
|
21552
|
-
position?: "top" | "bottom" | "center";
|
|
21553
21529
|
} | {
|
|
21554
21530
|
type: "html";
|
|
21555
21531
|
html: string;
|
|
@@ -22010,15 +21986,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22010
21986
|
speed?: string | number;
|
|
22011
21987
|
} | {
|
|
22012
21988
|
type: "rich-caption";
|
|
22013
|
-
|
|
22014
|
-
maxLines: string | number;
|
|
22015
|
-
src?: string;
|
|
22016
|
-
words?: {
|
|
22017
|
-
text: string;
|
|
22018
|
-
start?: string | number;
|
|
22019
|
-
end?: string | number;
|
|
22020
|
-
confidence?: string | number;
|
|
22021
|
-
}[];
|
|
21989
|
+
src: string;
|
|
22022
21990
|
font?: {
|
|
22023
21991
|
family: string;
|
|
22024
21992
|
size: string | number;
|
|
@@ -22026,11 +21994,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22026
21994
|
color: string;
|
|
22027
21995
|
opacity: string | number;
|
|
22028
21996
|
background?: string;
|
|
22029
|
-
stroke?: {
|
|
22030
|
-
width: string | number;
|
|
22031
|
-
color: string;
|
|
22032
|
-
opacity: string | number;
|
|
22033
|
-
};
|
|
22034
21997
|
};
|
|
22035
21998
|
style?: {
|
|
22036
21999
|
letterSpacing: string | number;
|
|
@@ -22064,6 +22027,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22064
22027
|
borderRadius: string | number;
|
|
22065
22028
|
color?: string;
|
|
22066
22029
|
};
|
|
22030
|
+
border?: {
|
|
22031
|
+
width: string | number;
|
|
22032
|
+
color: string;
|
|
22033
|
+
opacity: string | number;
|
|
22034
|
+
radius: string | number;
|
|
22035
|
+
};
|
|
22067
22036
|
padding?: string | number | {
|
|
22068
22037
|
top: string | number;
|
|
22069
22038
|
right: string | number;
|
|
@@ -22092,7 +22061,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22092
22061
|
speed: string | number;
|
|
22093
22062
|
direction?: "left" | "right" | "up" | "down";
|
|
22094
22063
|
};
|
|
22095
|
-
position?: "top" | "bottom" | "center";
|
|
22096
22064
|
} | {
|
|
22097
22065
|
type: "html";
|
|
22098
22066
|
html: string;
|
|
@@ -22613,13 +22581,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22613
22581
|
type: z.ZodEnum<{
|
|
22614
22582
|
"rich-caption": "rich-caption";
|
|
22615
22583
|
}>;
|
|
22616
|
-
src: z.
|
|
22617
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22618
|
-
text: z.ZodString;
|
|
22619
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
22620
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
22621
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
22622
|
-
}, z.core.$strict>>>;
|
|
22584
|
+
src: z.ZodString;
|
|
22623
22585
|
font: z.ZodOptional<z.ZodObject<{
|
|
22624
22586
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22625
22587
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -22627,11 +22589,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22627
22589
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22628
22590
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22629
22591
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
22630
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
22631
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22632
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22633
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22634
|
-
}, z.core.$strict>>;
|
|
22635
22592
|
}, z.core.$strict>>;
|
|
22636
22593
|
style: z.ZodOptional<z.ZodObject<{
|
|
22637
22594
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -22677,6 +22634,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22677
22634
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22678
22635
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22679
22636
|
}, z.core.$strict>>;
|
|
22637
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
22638
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22639
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22640
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22641
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22642
|
+
}, z.core.$strict>>;
|
|
22680
22643
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
22681
22644
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22682
22645
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -22727,13 +22690,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22727
22690
|
down: "down";
|
|
22728
22691
|
}>>;
|
|
22729
22692
|
}, z.core.$strict>>;
|
|
22730
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
22731
|
-
top: "top";
|
|
22732
|
-
bottom: "bottom";
|
|
22733
|
-
center: "center";
|
|
22734
|
-
}>>;
|
|
22735
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22736
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22737
22693
|
}, z.core.$strict>, z.ZodObject<{
|
|
22738
22694
|
type: z.ZodEnum<{
|
|
22739
22695
|
html: "html";
|
|
@@ -23898,15 +23854,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
23898
23854
|
speed?: string | number;
|
|
23899
23855
|
} | {
|
|
23900
23856
|
type: "rich-caption";
|
|
23901
|
-
|
|
23902
|
-
maxLines: string | number;
|
|
23903
|
-
src?: string;
|
|
23904
|
-
words?: {
|
|
23905
|
-
text: string;
|
|
23906
|
-
start?: string | number;
|
|
23907
|
-
end?: string | number;
|
|
23908
|
-
confidence?: string | number;
|
|
23909
|
-
}[];
|
|
23857
|
+
src: string;
|
|
23910
23858
|
font?: {
|
|
23911
23859
|
family: string;
|
|
23912
23860
|
size: string | number;
|
|
@@ -23914,11 +23862,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
23914
23862
|
color: string;
|
|
23915
23863
|
opacity: string | number;
|
|
23916
23864
|
background?: string;
|
|
23917
|
-
stroke?: {
|
|
23918
|
-
width: string | number;
|
|
23919
|
-
color: string;
|
|
23920
|
-
opacity: string | number;
|
|
23921
|
-
};
|
|
23922
23865
|
};
|
|
23923
23866
|
style?: {
|
|
23924
23867
|
letterSpacing: string | number;
|
|
@@ -23952,6 +23895,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
23952
23895
|
borderRadius: string | number;
|
|
23953
23896
|
color?: string;
|
|
23954
23897
|
};
|
|
23898
|
+
border?: {
|
|
23899
|
+
width: string | number;
|
|
23900
|
+
color: string;
|
|
23901
|
+
opacity: string | number;
|
|
23902
|
+
radius: string | number;
|
|
23903
|
+
};
|
|
23955
23904
|
padding?: string | number | {
|
|
23956
23905
|
top: string | number;
|
|
23957
23906
|
right: string | number;
|
|
@@ -23980,7 +23929,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
23980
23929
|
speed: string | number;
|
|
23981
23930
|
direction?: "left" | "right" | "up" | "down";
|
|
23982
23931
|
};
|
|
23983
|
-
position?: "top" | "bottom" | "center";
|
|
23984
23932
|
} | {
|
|
23985
23933
|
type: "html";
|
|
23986
23934
|
html: string;
|
|
@@ -24441,15 +24389,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24441
24389
|
speed?: string | number;
|
|
24442
24390
|
} | {
|
|
24443
24391
|
type: "rich-caption";
|
|
24444
|
-
|
|
24445
|
-
maxLines: string | number;
|
|
24446
|
-
src?: string;
|
|
24447
|
-
words?: {
|
|
24448
|
-
text: string;
|
|
24449
|
-
start?: string | number;
|
|
24450
|
-
end?: string | number;
|
|
24451
|
-
confidence?: string | number;
|
|
24452
|
-
}[];
|
|
24392
|
+
src: string;
|
|
24453
24393
|
font?: {
|
|
24454
24394
|
family: string;
|
|
24455
24395
|
size: string | number;
|
|
@@ -24457,11 +24397,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24457
24397
|
color: string;
|
|
24458
24398
|
opacity: string | number;
|
|
24459
24399
|
background?: string;
|
|
24460
|
-
stroke?: {
|
|
24461
|
-
width: string | number;
|
|
24462
|
-
color: string;
|
|
24463
|
-
opacity: string | number;
|
|
24464
|
-
};
|
|
24465
24400
|
};
|
|
24466
24401
|
style?: {
|
|
24467
24402
|
letterSpacing: string | number;
|
|
@@ -24495,6 +24430,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24495
24430
|
borderRadius: string | number;
|
|
24496
24431
|
color?: string;
|
|
24497
24432
|
};
|
|
24433
|
+
border?: {
|
|
24434
|
+
width: string | number;
|
|
24435
|
+
color: string;
|
|
24436
|
+
opacity: string | number;
|
|
24437
|
+
radius: string | number;
|
|
24438
|
+
};
|
|
24498
24439
|
padding?: string | number | {
|
|
24499
24440
|
top: string | number;
|
|
24500
24441
|
right: string | number;
|
|
@@ -24523,7 +24464,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24523
24464
|
speed: string | number;
|
|
24524
24465
|
direction?: "left" | "right" | "up" | "down";
|
|
24525
24466
|
};
|
|
24526
|
-
position?: "top" | "bottom" | "center";
|
|
24527
24467
|
} | {
|
|
24528
24468
|
type: "html";
|
|
24529
24469
|
html: string;
|
|
@@ -25048,13 +24988,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25048
24988
|
type: z.ZodEnum<{
|
|
25049
24989
|
"rich-caption": "rich-caption";
|
|
25050
24990
|
}>;
|
|
25051
|
-
src: z.
|
|
25052
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25053
|
-
text: z.ZodString;
|
|
25054
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
25055
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
25056
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
25057
|
-
}, z.core.$strict>>>;
|
|
24991
|
+
src: z.ZodString;
|
|
25058
24992
|
font: z.ZodOptional<z.ZodObject<{
|
|
25059
24993
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25060
24994
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -25062,11 +24996,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25062
24996
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25063
24997
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25064
24998
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
25065
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
25066
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25067
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25068
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25069
|
-
}, z.core.$strict>>;
|
|
25070
24999
|
}, z.core.$strict>>;
|
|
25071
25000
|
style: z.ZodOptional<z.ZodObject<{
|
|
25072
25001
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -25112,6 +25041,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25112
25041
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25113
25042
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25114
25043
|
}, z.core.$strict>>;
|
|
25044
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
25045
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25046
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25047
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25048
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25049
|
+
}, z.core.$strict>>;
|
|
25115
25050
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
25116
25051
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25117
25052
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -25162,13 +25097,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25162
25097
|
down: "down";
|
|
25163
25098
|
}>>;
|
|
25164
25099
|
}, z.core.$strict>>;
|
|
25165
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
25166
|
-
top: "top";
|
|
25167
|
-
bottom: "bottom";
|
|
25168
|
-
center: "center";
|
|
25169
|
-
}>>;
|
|
25170
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25171
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25172
25100
|
}, z.core.$strict>, z.ZodObject<{
|
|
25173
25101
|
type: z.ZodEnum<{
|
|
25174
25102
|
html: "html";
|
|
@@ -26333,15 +26261,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26333
26261
|
speed?: string | number;
|
|
26334
26262
|
} | {
|
|
26335
26263
|
type: "rich-caption";
|
|
26336
|
-
|
|
26337
|
-
maxLines: string | number;
|
|
26338
|
-
src?: string;
|
|
26339
|
-
words?: {
|
|
26340
|
-
text: string;
|
|
26341
|
-
start?: string | number;
|
|
26342
|
-
end?: string | number;
|
|
26343
|
-
confidence?: string | number;
|
|
26344
|
-
}[];
|
|
26264
|
+
src: string;
|
|
26345
26265
|
font?: {
|
|
26346
26266
|
family: string;
|
|
26347
26267
|
size: string | number;
|
|
@@ -26349,11 +26269,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26349
26269
|
color: string;
|
|
26350
26270
|
opacity: string | number;
|
|
26351
26271
|
background?: string;
|
|
26352
|
-
stroke?: {
|
|
26353
|
-
width: string | number;
|
|
26354
|
-
color: string;
|
|
26355
|
-
opacity: string | number;
|
|
26356
|
-
};
|
|
26357
26272
|
};
|
|
26358
26273
|
style?: {
|
|
26359
26274
|
letterSpacing: string | number;
|
|
@@ -26387,6 +26302,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26387
26302
|
borderRadius: string | number;
|
|
26388
26303
|
color?: string;
|
|
26389
26304
|
};
|
|
26305
|
+
border?: {
|
|
26306
|
+
width: string | number;
|
|
26307
|
+
color: string;
|
|
26308
|
+
opacity: string | number;
|
|
26309
|
+
radius: string | number;
|
|
26310
|
+
};
|
|
26390
26311
|
padding?: string | number | {
|
|
26391
26312
|
top: string | number;
|
|
26392
26313
|
right: string | number;
|
|
@@ -26415,7 +26336,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26415
26336
|
speed: string | number;
|
|
26416
26337
|
direction?: "left" | "right" | "up" | "down";
|
|
26417
26338
|
};
|
|
26418
|
-
position?: "top" | "bottom" | "center";
|
|
26419
26339
|
} | {
|
|
26420
26340
|
type: "html";
|
|
26421
26341
|
html: string;
|
|
@@ -26876,15 +26796,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26876
26796
|
speed?: string | number;
|
|
26877
26797
|
} | {
|
|
26878
26798
|
type: "rich-caption";
|
|
26879
|
-
|
|
26880
|
-
maxLines: string | number;
|
|
26881
|
-
src?: string;
|
|
26882
|
-
words?: {
|
|
26883
|
-
text: string;
|
|
26884
|
-
start?: string | number;
|
|
26885
|
-
end?: string | number;
|
|
26886
|
-
confidence?: string | number;
|
|
26887
|
-
}[];
|
|
26799
|
+
src: string;
|
|
26888
26800
|
font?: {
|
|
26889
26801
|
family: string;
|
|
26890
26802
|
size: string | number;
|
|
@@ -26892,11 +26804,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26892
26804
|
color: string;
|
|
26893
26805
|
opacity: string | number;
|
|
26894
26806
|
background?: string;
|
|
26895
|
-
stroke?: {
|
|
26896
|
-
width: string | number;
|
|
26897
|
-
color: string;
|
|
26898
|
-
opacity: string | number;
|
|
26899
|
-
};
|
|
26900
26807
|
};
|
|
26901
26808
|
style?: {
|
|
26902
26809
|
letterSpacing: string | number;
|
|
@@ -26930,6 +26837,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26930
26837
|
borderRadius: string | number;
|
|
26931
26838
|
color?: string;
|
|
26932
26839
|
};
|
|
26840
|
+
border?: {
|
|
26841
|
+
width: string | number;
|
|
26842
|
+
color: string;
|
|
26843
|
+
opacity: string | number;
|
|
26844
|
+
radius: string | number;
|
|
26845
|
+
};
|
|
26933
26846
|
padding?: string | number | {
|
|
26934
26847
|
top: string | number;
|
|
26935
26848
|
right: string | number;
|
|
@@ -26958,7 +26871,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26958
26871
|
speed: string | number;
|
|
26959
26872
|
direction?: "left" | "right" | "up" | "down";
|
|
26960
26873
|
};
|
|
26961
|
-
position?: "top" | "bottom" | "center";
|
|
26962
26874
|
} | {
|
|
26963
26875
|
type: "html";
|
|
26964
26876
|
html: string;
|
|
@@ -27276,6 +27188,22 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27276
27188
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
27277
27189
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
27278
27190
|
}, z.core.$strict>>;
|
|
27191
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
27192
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
27193
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
27194
|
+
host: z.ZodString;
|
|
27195
|
+
cpCode: z.ZodString;
|
|
27196
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
27197
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
27198
|
+
}, z.core.$strict>>;
|
|
27199
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
27200
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
27201
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
27202
|
+
accountName: z.ZodString;
|
|
27203
|
+
container: z.ZodString;
|
|
27204
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
27205
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
27206
|
+
}, z.core.$strict>>;
|
|
27279
27207
|
}, z.core.$strict>], "provider">>>;
|
|
27280
27208
|
}, z.core.$strict>;
|
|
27281
27209
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -27629,13 +27557,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27629
27557
|
type: z.ZodEnum<{
|
|
27630
27558
|
"rich-caption": "rich-caption";
|
|
27631
27559
|
}>;
|
|
27632
|
-
src: z.
|
|
27633
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27634
|
-
text: z.ZodString;
|
|
27635
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
27636
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
27637
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
27638
|
-
}, z.core.$strict>>>;
|
|
27560
|
+
src: z.ZodString;
|
|
27639
27561
|
font: z.ZodOptional<z.ZodObject<{
|
|
27640
27562
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27641
27563
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -27643,11 +27565,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27643
27565
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27644
27566
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27645
27567
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27646
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
27647
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27648
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27649
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27650
|
-
}, z.core.$strict>>;
|
|
27651
27568
|
}, z.core.$strict>>;
|
|
27652
27569
|
style: z.ZodOptional<z.ZodObject<{
|
|
27653
27570
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -27693,6 +27610,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27693
27610
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27694
27611
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27695
27612
|
}, z.core.$strict>>;
|
|
27613
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
27614
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27615
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27616
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27617
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27618
|
+
}, z.core.$strict>>;
|
|
27696
27619
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
27697
27620
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27698
27621
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -27743,13 +27666,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27743
27666
|
down: "down";
|
|
27744
27667
|
}>>;
|
|
27745
27668
|
}, z.core.$strict>>;
|
|
27746
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
27747
|
-
top: "top";
|
|
27748
|
-
bottom: "bottom";
|
|
27749
|
-
center: "center";
|
|
27750
|
-
}>>;
|
|
27751
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27752
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27753
27669
|
}, z.core.$strict>, z.ZodObject<{
|
|
27754
27670
|
type: z.ZodEnum<{
|
|
27755
27671
|
html: "html";
|
|
@@ -28914,15 +28830,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
28914
28830
|
speed?: string | number;
|
|
28915
28831
|
} | {
|
|
28916
28832
|
type: "rich-caption";
|
|
28917
|
-
|
|
28918
|
-
maxLines: string | number;
|
|
28919
|
-
src?: string;
|
|
28920
|
-
words?: {
|
|
28921
|
-
text: string;
|
|
28922
|
-
start?: string | number;
|
|
28923
|
-
end?: string | number;
|
|
28924
|
-
confidence?: string | number;
|
|
28925
|
-
}[];
|
|
28833
|
+
src: string;
|
|
28926
28834
|
font?: {
|
|
28927
28835
|
family: string;
|
|
28928
28836
|
size: string | number;
|
|
@@ -28930,11 +28838,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
28930
28838
|
color: string;
|
|
28931
28839
|
opacity: string | number;
|
|
28932
28840
|
background?: string;
|
|
28933
|
-
stroke?: {
|
|
28934
|
-
width: string | number;
|
|
28935
|
-
color: string;
|
|
28936
|
-
opacity: string | number;
|
|
28937
|
-
};
|
|
28938
28841
|
};
|
|
28939
28842
|
style?: {
|
|
28940
28843
|
letterSpacing: string | number;
|
|
@@ -28968,6 +28871,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
28968
28871
|
borderRadius: string | number;
|
|
28969
28872
|
color?: string;
|
|
28970
28873
|
};
|
|
28874
|
+
border?: {
|
|
28875
|
+
width: string | number;
|
|
28876
|
+
color: string;
|
|
28877
|
+
opacity: string | number;
|
|
28878
|
+
radius: string | number;
|
|
28879
|
+
};
|
|
28971
28880
|
padding?: string | number | {
|
|
28972
28881
|
top: string | number;
|
|
28973
28882
|
right: string | number;
|
|
@@ -28996,7 +28905,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
28996
28905
|
speed: string | number;
|
|
28997
28906
|
direction?: "left" | "right" | "up" | "down";
|
|
28998
28907
|
};
|
|
28999
|
-
position?: "top" | "bottom" | "center";
|
|
29000
28908
|
} | {
|
|
29001
28909
|
type: "html";
|
|
29002
28910
|
html: string;
|
|
@@ -29457,15 +29365,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29457
29365
|
speed?: string | number;
|
|
29458
29366
|
} | {
|
|
29459
29367
|
type: "rich-caption";
|
|
29460
|
-
|
|
29461
|
-
maxLines: string | number;
|
|
29462
|
-
src?: string;
|
|
29463
|
-
words?: {
|
|
29464
|
-
text: string;
|
|
29465
|
-
start?: string | number;
|
|
29466
|
-
end?: string | number;
|
|
29467
|
-
confidence?: string | number;
|
|
29468
|
-
}[];
|
|
29368
|
+
src: string;
|
|
29469
29369
|
font?: {
|
|
29470
29370
|
family: string;
|
|
29471
29371
|
size: string | number;
|
|
@@ -29473,11 +29373,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29473
29373
|
color: string;
|
|
29474
29374
|
opacity: string | number;
|
|
29475
29375
|
background?: string;
|
|
29476
|
-
stroke?: {
|
|
29477
|
-
width: string | number;
|
|
29478
|
-
color: string;
|
|
29479
|
-
opacity: string | number;
|
|
29480
|
-
};
|
|
29481
29376
|
};
|
|
29482
29377
|
style?: {
|
|
29483
29378
|
letterSpacing: string | number;
|
|
@@ -29511,6 +29406,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29511
29406
|
borderRadius: string | number;
|
|
29512
29407
|
color?: string;
|
|
29513
29408
|
};
|
|
29409
|
+
border?: {
|
|
29410
|
+
width: string | number;
|
|
29411
|
+
color: string;
|
|
29412
|
+
opacity: string | number;
|
|
29413
|
+
radius: string | number;
|
|
29414
|
+
};
|
|
29514
29415
|
padding?: string | number | {
|
|
29515
29416
|
top: string | number;
|
|
29516
29417
|
right: string | number;
|
|
@@ -29539,7 +29440,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29539
29440
|
speed: string | number;
|
|
29540
29441
|
direction?: "left" | "right" | "up" | "down";
|
|
29541
29442
|
};
|
|
29542
|
-
position?: "top" | "bottom" | "center";
|
|
29543
29443
|
} | {
|
|
29544
29444
|
type: "html";
|
|
29545
29445
|
html: string;
|
|
@@ -29857,6 +29757,22 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29857
29757
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
29858
29758
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
29859
29759
|
}, z.core.$strict>>;
|
|
29760
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
29761
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
29762
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
29763
|
+
host: z.ZodString;
|
|
29764
|
+
cpCode: z.ZodString;
|
|
29765
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
29766
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
29767
|
+
}, z.core.$strict>>;
|
|
29768
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
29769
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
29770
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
29771
|
+
accountName: z.ZodString;
|
|
29772
|
+
container: z.ZodString;
|
|
29773
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
29774
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
29775
|
+
}, z.core.$strict>>;
|
|
29860
29776
|
}, z.core.$strict>], "provider">>>;
|
|
29861
29777
|
}, z.core.$strict>;
|
|
29862
29778
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -30232,13 +30148,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30232
30148
|
type: z.ZodEnum<{
|
|
30233
30149
|
"rich-caption": "rich-caption";
|
|
30234
30150
|
}>;
|
|
30235
|
-
src: z.
|
|
30236
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
30237
|
-
text: z.ZodString;
|
|
30238
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
30239
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
30240
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
30241
|
-
}, z.core.$strict>>>;
|
|
30151
|
+
src: z.ZodString;
|
|
30242
30152
|
font: z.ZodOptional<z.ZodObject<{
|
|
30243
30153
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
30244
30154
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -30246,11 +30156,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30246
30156
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30247
30157
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30248
30158
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
30249
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
30250
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30251
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30252
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30253
|
-
}, z.core.$strict>>;
|
|
30254
30159
|
}, z.core.$strict>>;
|
|
30255
30160
|
style: z.ZodOptional<z.ZodObject<{
|
|
30256
30161
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -30296,6 +30201,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30296
30201
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30297
30202
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30298
30203
|
}, z.core.$strict>>;
|
|
30204
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
30205
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30206
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30207
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30208
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30209
|
+
}, z.core.$strict>>;
|
|
30299
30210
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
30300
30211
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30301
30212
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -30346,13 +30257,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30346
30257
|
down: "down";
|
|
30347
30258
|
}>>;
|
|
30348
30259
|
}, z.core.$strict>>;
|
|
30349
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
30350
|
-
top: "top";
|
|
30351
|
-
bottom: "bottom";
|
|
30352
|
-
center: "center";
|
|
30353
|
-
}>>;
|
|
30354
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30355
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30356
30260
|
}, z.core.$strict>, z.ZodObject<{
|
|
30357
30261
|
type: z.ZodEnum<{
|
|
30358
30262
|
html: "html";
|
|
@@ -31517,15 +31421,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31517
31421
|
speed?: string | number;
|
|
31518
31422
|
} | {
|
|
31519
31423
|
type: "rich-caption";
|
|
31520
|
-
|
|
31521
|
-
maxLines: string | number;
|
|
31522
|
-
src?: string;
|
|
31523
|
-
words?: {
|
|
31524
|
-
text: string;
|
|
31525
|
-
start?: string | number;
|
|
31526
|
-
end?: string | number;
|
|
31527
|
-
confidence?: string | number;
|
|
31528
|
-
}[];
|
|
31424
|
+
src: string;
|
|
31529
31425
|
font?: {
|
|
31530
31426
|
family: string;
|
|
31531
31427
|
size: string | number;
|
|
@@ -31533,11 +31429,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31533
31429
|
color: string;
|
|
31534
31430
|
opacity: string | number;
|
|
31535
31431
|
background?: string;
|
|
31536
|
-
stroke?: {
|
|
31537
|
-
width: string | number;
|
|
31538
|
-
color: string;
|
|
31539
|
-
opacity: string | number;
|
|
31540
|
-
};
|
|
31541
31432
|
};
|
|
31542
31433
|
style?: {
|
|
31543
31434
|
letterSpacing: string | number;
|
|
@@ -31571,6 +31462,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31571
31462
|
borderRadius: string | number;
|
|
31572
31463
|
color?: string;
|
|
31573
31464
|
};
|
|
31465
|
+
border?: {
|
|
31466
|
+
width: string | number;
|
|
31467
|
+
color: string;
|
|
31468
|
+
opacity: string | number;
|
|
31469
|
+
radius: string | number;
|
|
31470
|
+
};
|
|
31574
31471
|
padding?: string | number | {
|
|
31575
31472
|
top: string | number;
|
|
31576
31473
|
right: string | number;
|
|
@@ -31599,7 +31496,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31599
31496
|
speed: string | number;
|
|
31600
31497
|
direction?: "left" | "right" | "up" | "down";
|
|
31601
31498
|
};
|
|
31602
|
-
position?: "top" | "bottom" | "center";
|
|
31603
31499
|
} | {
|
|
31604
31500
|
type: "html";
|
|
31605
31501
|
html: string;
|
|
@@ -32060,15 +31956,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32060
31956
|
speed?: string | number;
|
|
32061
31957
|
} | {
|
|
32062
31958
|
type: "rich-caption";
|
|
32063
|
-
|
|
32064
|
-
maxLines: string | number;
|
|
32065
|
-
src?: string;
|
|
32066
|
-
words?: {
|
|
32067
|
-
text: string;
|
|
32068
|
-
start?: string | number;
|
|
32069
|
-
end?: string | number;
|
|
32070
|
-
confidence?: string | number;
|
|
32071
|
-
}[];
|
|
31959
|
+
src: string;
|
|
32072
31960
|
font?: {
|
|
32073
31961
|
family: string;
|
|
32074
31962
|
size: string | number;
|
|
@@ -32076,11 +31964,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32076
31964
|
color: string;
|
|
32077
31965
|
opacity: string | number;
|
|
32078
31966
|
background?: string;
|
|
32079
|
-
stroke?: {
|
|
32080
|
-
width: string | number;
|
|
32081
|
-
color: string;
|
|
32082
|
-
opacity: string | number;
|
|
32083
|
-
};
|
|
32084
31967
|
};
|
|
32085
31968
|
style?: {
|
|
32086
31969
|
letterSpacing: string | number;
|
|
@@ -32114,6 +31997,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32114
31997
|
borderRadius: string | number;
|
|
32115
31998
|
color?: string;
|
|
32116
31999
|
};
|
|
32000
|
+
border?: {
|
|
32001
|
+
width: string | number;
|
|
32002
|
+
color: string;
|
|
32003
|
+
opacity: string | number;
|
|
32004
|
+
radius: string | number;
|
|
32005
|
+
};
|
|
32117
32006
|
padding?: string | number | {
|
|
32118
32007
|
top: string | number;
|
|
32119
32008
|
right: string | number;
|
|
@@ -32142,7 +32031,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32142
32031
|
speed: string | number;
|
|
32143
32032
|
direction?: "left" | "right" | "up" | "down";
|
|
32144
32033
|
};
|
|
32145
|
-
position?: "top" | "bottom" | "center";
|
|
32146
32034
|
} | {
|
|
32147
32035
|
type: "html";
|
|
32148
32036
|
html: string;
|
|
@@ -32460,6 +32348,22 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32460
32348
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
32461
32349
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
32462
32350
|
}, z.core.$strict>>;
|
|
32351
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
32352
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
32353
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
32354
|
+
host: z.ZodString;
|
|
32355
|
+
cpCode: z.ZodString;
|
|
32356
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
32357
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
32358
|
+
}, z.core.$strict>>;
|
|
32359
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
32360
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
32361
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
32362
|
+
accountName: z.ZodString;
|
|
32363
|
+
container: z.ZodString;
|
|
32364
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
32365
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
32366
|
+
}, z.core.$strict>>;
|
|
32463
32367
|
}, z.core.$strict>], "provider">>>;
|
|
32464
32368
|
}, z.core.$strict>;
|
|
32465
32369
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -32835,13 +32739,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
32835
32739
|
type: z.ZodEnum<{
|
|
32836
32740
|
"rich-caption": "rich-caption";
|
|
32837
32741
|
}>;
|
|
32838
|
-
src: z.
|
|
32839
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
32840
|
-
text: z.ZodString;
|
|
32841
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
32842
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
32843
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
32844
|
-
}, z.core.$strict>>>;
|
|
32742
|
+
src: z.ZodString;
|
|
32845
32743
|
font: z.ZodOptional<z.ZodObject<{
|
|
32846
32744
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
32847
32745
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -32849,11 +32747,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
32849
32747
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
32850
32748
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32851
32749
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
32852
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
32853
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32854
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
32855
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32856
|
-
}, z.core.$strict>>;
|
|
32857
32750
|
}, z.core.$strict>>;
|
|
32858
32751
|
style: z.ZodOptional<z.ZodObject<{
|
|
32859
32752
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -32899,6 +32792,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
32899
32792
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32900
32793
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32901
32794
|
}, z.core.$strict>>;
|
|
32795
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
32796
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32797
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
32798
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32799
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32800
|
+
}, z.core.$strict>>;
|
|
32902
32801
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
32903
32802
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32904
32803
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -32949,13 +32848,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
32949
32848
|
down: "down";
|
|
32950
32849
|
}>>;
|
|
32951
32850
|
}, z.core.$strict>>;
|
|
32952
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
32953
|
-
top: "top";
|
|
32954
|
-
bottom: "bottom";
|
|
32955
|
-
center: "center";
|
|
32956
|
-
}>>;
|
|
32957
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32958
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32959
32851
|
}, z.core.$strict>, z.ZodObject<{
|
|
32960
32852
|
type: z.ZodEnum<{
|
|
32961
32853
|
html: "html";
|
|
@@ -34120,15 +34012,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34120
34012
|
speed?: string | number;
|
|
34121
34013
|
} | {
|
|
34122
34014
|
type: "rich-caption";
|
|
34123
|
-
|
|
34124
|
-
maxLines: string | number;
|
|
34125
|
-
src?: string;
|
|
34126
|
-
words?: {
|
|
34127
|
-
text: string;
|
|
34128
|
-
start?: string | number;
|
|
34129
|
-
end?: string | number;
|
|
34130
|
-
confidence?: string | number;
|
|
34131
|
-
}[];
|
|
34015
|
+
src: string;
|
|
34132
34016
|
font?: {
|
|
34133
34017
|
family: string;
|
|
34134
34018
|
size: string | number;
|
|
@@ -34136,11 +34020,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34136
34020
|
color: string;
|
|
34137
34021
|
opacity: string | number;
|
|
34138
34022
|
background?: string;
|
|
34139
|
-
stroke?: {
|
|
34140
|
-
width: string | number;
|
|
34141
|
-
color: string;
|
|
34142
|
-
opacity: string | number;
|
|
34143
|
-
};
|
|
34144
34023
|
};
|
|
34145
34024
|
style?: {
|
|
34146
34025
|
letterSpacing: string | number;
|
|
@@ -34174,6 +34053,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34174
34053
|
borderRadius: string | number;
|
|
34175
34054
|
color?: string;
|
|
34176
34055
|
};
|
|
34056
|
+
border?: {
|
|
34057
|
+
width: string | number;
|
|
34058
|
+
color: string;
|
|
34059
|
+
opacity: string | number;
|
|
34060
|
+
radius: string | number;
|
|
34061
|
+
};
|
|
34177
34062
|
padding?: string | number | {
|
|
34178
34063
|
top: string | number;
|
|
34179
34064
|
right: string | number;
|
|
@@ -34202,7 +34087,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34202
34087
|
speed: string | number;
|
|
34203
34088
|
direction?: "left" | "right" | "up" | "down";
|
|
34204
34089
|
};
|
|
34205
|
-
position?: "top" | "bottom" | "center";
|
|
34206
34090
|
} | {
|
|
34207
34091
|
type: "html";
|
|
34208
34092
|
html: string;
|
|
@@ -34663,15 +34547,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34663
34547
|
speed?: string | number;
|
|
34664
34548
|
} | {
|
|
34665
34549
|
type: "rich-caption";
|
|
34666
|
-
|
|
34667
|
-
maxLines: string | number;
|
|
34668
|
-
src?: string;
|
|
34669
|
-
words?: {
|
|
34670
|
-
text: string;
|
|
34671
|
-
start?: string | number;
|
|
34672
|
-
end?: string | number;
|
|
34673
|
-
confidence?: string | number;
|
|
34674
|
-
}[];
|
|
34550
|
+
src: string;
|
|
34675
34551
|
font?: {
|
|
34676
34552
|
family: string;
|
|
34677
34553
|
size: string | number;
|
|
@@ -34679,11 +34555,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34679
34555
|
color: string;
|
|
34680
34556
|
opacity: string | number;
|
|
34681
34557
|
background?: string;
|
|
34682
|
-
stroke?: {
|
|
34683
|
-
width: string | number;
|
|
34684
|
-
color: string;
|
|
34685
|
-
opacity: string | number;
|
|
34686
|
-
};
|
|
34687
34558
|
};
|
|
34688
34559
|
style?: {
|
|
34689
34560
|
letterSpacing: string | number;
|
|
@@ -34717,6 +34588,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34717
34588
|
borderRadius: string | number;
|
|
34718
34589
|
color?: string;
|
|
34719
34590
|
};
|
|
34591
|
+
border?: {
|
|
34592
|
+
width: string | number;
|
|
34593
|
+
color: string;
|
|
34594
|
+
opacity: string | number;
|
|
34595
|
+
radius: string | number;
|
|
34596
|
+
};
|
|
34720
34597
|
padding?: string | number | {
|
|
34721
34598
|
top: string | number;
|
|
34722
34599
|
right: string | number;
|
|
@@ -34745,7 +34622,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34745
34622
|
speed: string | number;
|
|
34746
34623
|
direction?: "left" | "right" | "up" | "down";
|
|
34747
34624
|
};
|
|
34748
|
-
position?: "top" | "bottom" | "center";
|
|
34749
34625
|
} | {
|
|
34750
34626
|
type: "html";
|
|
34751
34627
|
html: string;
|
|
@@ -35063,6 +34939,22 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
35063
34939
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
35064
34940
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
35065
34941
|
}, z.core.$strict>>;
|
|
34942
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
34943
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
34944
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
34945
|
+
host: z.ZodString;
|
|
34946
|
+
cpCode: z.ZodString;
|
|
34947
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
34948
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
34949
|
+
}, z.core.$strict>>;
|
|
34950
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
34951
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
34952
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
34953
|
+
accountName: z.ZodString;
|
|
34954
|
+
container: z.ZodString;
|
|
34955
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
34956
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
34957
|
+
}, z.core.$strict>>;
|
|
35066
34958
|
}, z.core.$strict>], "provider">>>;
|
|
35067
34959
|
}, z.core.$strict>;
|
|
35068
34960
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -35444,13 +35336,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35444
35336
|
type: z.ZodEnum<{
|
|
35445
35337
|
"rich-caption": "rich-caption";
|
|
35446
35338
|
}>;
|
|
35447
|
-
src: z.
|
|
35448
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
35449
|
-
text: z.ZodString;
|
|
35450
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
35451
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
35452
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
35453
|
-
}, z.core.$strict>>>;
|
|
35339
|
+
src: z.ZodString;
|
|
35454
35340
|
font: z.ZodOptional<z.ZodObject<{
|
|
35455
35341
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
35456
35342
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -35458,11 +35344,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35458
35344
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35459
35345
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35460
35346
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
35461
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
35462
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35463
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35464
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35465
|
-
}, z.core.$strict>>;
|
|
35466
35347
|
}, z.core.$strict>>;
|
|
35467
35348
|
style: z.ZodOptional<z.ZodObject<{
|
|
35468
35349
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -35508,6 +35389,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35508
35389
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35509
35390
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35510
35391
|
}, z.core.$strict>>;
|
|
35392
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
35393
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35394
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35395
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35396
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35397
|
+
}, z.core.$strict>>;
|
|
35511
35398
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
35512
35399
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35513
35400
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -35558,13 +35445,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35558
35445
|
down: "down";
|
|
35559
35446
|
}>>;
|
|
35560
35447
|
}, z.core.$strict>>;
|
|
35561
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
35562
|
-
top: "top";
|
|
35563
|
-
bottom: "bottom";
|
|
35564
|
-
center: "center";
|
|
35565
|
-
}>>;
|
|
35566
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35567
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35568
35448
|
}, z.core.$strict>, z.ZodObject<{
|
|
35569
35449
|
type: z.ZodEnum<{
|
|
35570
35450
|
html: "html";
|
|
@@ -36729,15 +36609,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
36729
36609
|
speed?: string | number;
|
|
36730
36610
|
} | {
|
|
36731
36611
|
type: "rich-caption";
|
|
36732
|
-
|
|
36733
|
-
maxLines: string | number;
|
|
36734
|
-
src?: string;
|
|
36735
|
-
words?: {
|
|
36736
|
-
text: string;
|
|
36737
|
-
start?: string | number;
|
|
36738
|
-
end?: string | number;
|
|
36739
|
-
confidence?: string | number;
|
|
36740
|
-
}[];
|
|
36612
|
+
src: string;
|
|
36741
36613
|
font?: {
|
|
36742
36614
|
family: string;
|
|
36743
36615
|
size: string | number;
|
|
@@ -36745,11 +36617,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
36745
36617
|
color: string;
|
|
36746
36618
|
opacity: string | number;
|
|
36747
36619
|
background?: string;
|
|
36748
|
-
stroke?: {
|
|
36749
|
-
width: string | number;
|
|
36750
|
-
color: string;
|
|
36751
|
-
opacity: string | number;
|
|
36752
|
-
};
|
|
36753
36620
|
};
|
|
36754
36621
|
style?: {
|
|
36755
36622
|
letterSpacing: string | number;
|
|
@@ -36783,6 +36650,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
36783
36650
|
borderRadius: string | number;
|
|
36784
36651
|
color?: string;
|
|
36785
36652
|
};
|
|
36653
|
+
border?: {
|
|
36654
|
+
width: string | number;
|
|
36655
|
+
color: string;
|
|
36656
|
+
opacity: string | number;
|
|
36657
|
+
radius: string | number;
|
|
36658
|
+
};
|
|
36786
36659
|
padding?: string | number | {
|
|
36787
36660
|
top: string | number;
|
|
36788
36661
|
right: string | number;
|
|
@@ -36811,7 +36684,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
36811
36684
|
speed: string | number;
|
|
36812
36685
|
direction?: "left" | "right" | "up" | "down";
|
|
36813
36686
|
};
|
|
36814
|
-
position?: "top" | "bottom" | "center";
|
|
36815
36687
|
} | {
|
|
36816
36688
|
type: "html";
|
|
36817
36689
|
html: string;
|
|
@@ -37272,15 +37144,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37272
37144
|
speed?: string | number;
|
|
37273
37145
|
} | {
|
|
37274
37146
|
type: "rich-caption";
|
|
37275
|
-
|
|
37276
|
-
maxLines: string | number;
|
|
37277
|
-
src?: string;
|
|
37278
|
-
words?: {
|
|
37279
|
-
text: string;
|
|
37280
|
-
start?: string | number;
|
|
37281
|
-
end?: string | number;
|
|
37282
|
-
confidence?: string | number;
|
|
37283
|
-
}[];
|
|
37147
|
+
src: string;
|
|
37284
37148
|
font?: {
|
|
37285
37149
|
family: string;
|
|
37286
37150
|
size: string | number;
|
|
@@ -37288,11 +37152,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37288
37152
|
color: string;
|
|
37289
37153
|
opacity: string | number;
|
|
37290
37154
|
background?: string;
|
|
37291
|
-
stroke?: {
|
|
37292
|
-
width: string | number;
|
|
37293
|
-
color: string;
|
|
37294
|
-
opacity: string | number;
|
|
37295
|
-
};
|
|
37296
37155
|
};
|
|
37297
37156
|
style?: {
|
|
37298
37157
|
letterSpacing: string | number;
|
|
@@ -37326,6 +37185,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37326
37185
|
borderRadius: string | number;
|
|
37327
37186
|
color?: string;
|
|
37328
37187
|
};
|
|
37188
|
+
border?: {
|
|
37189
|
+
width: string | number;
|
|
37190
|
+
color: string;
|
|
37191
|
+
opacity: string | number;
|
|
37192
|
+
radius: string | number;
|
|
37193
|
+
};
|
|
37329
37194
|
padding?: string | number | {
|
|
37330
37195
|
top: string | number;
|
|
37331
37196
|
right: string | number;
|
|
@@ -37354,7 +37219,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37354
37219
|
speed: string | number;
|
|
37355
37220
|
direction?: "left" | "right" | "up" | "down";
|
|
37356
37221
|
};
|
|
37357
|
-
position?: "top" | "bottom" | "center";
|
|
37358
37222
|
} | {
|
|
37359
37223
|
type: "html";
|
|
37360
37224
|
html: string;
|
|
@@ -37672,6 +37536,22 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37672
37536
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
37673
37537
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
37674
37538
|
}, z.core.$strict>>;
|
|
37539
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
37540
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
37541
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
37542
|
+
host: z.ZodString;
|
|
37543
|
+
cpCode: z.ZodString;
|
|
37544
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
37545
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
37546
|
+
}, z.core.$strict>>;
|
|
37547
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
37548
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
37549
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
37550
|
+
accountName: z.ZodString;
|
|
37551
|
+
container: z.ZodString;
|
|
37552
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
37553
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
37554
|
+
}, z.core.$strict>>;
|
|
37675
37555
|
}, z.core.$strict>], "provider">>>;
|
|
37676
37556
|
}, z.core.$strict>;
|
|
37677
37557
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -38051,13 +37931,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38051
37931
|
type: z.ZodEnum<{
|
|
38052
37932
|
"rich-caption": "rich-caption";
|
|
38053
37933
|
}>;
|
|
38054
|
-
src: z.
|
|
38055
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38056
|
-
text: z.ZodString;
|
|
38057
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
38058
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
38059
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
38060
|
-
}, z.core.$strict>>>;
|
|
37934
|
+
src: z.ZodString;
|
|
38061
37935
|
font: z.ZodOptional<z.ZodObject<{
|
|
38062
37936
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38063
37937
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -38065,11 +37939,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38065
37939
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38066
37940
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38067
37941
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
38068
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
38069
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38070
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38071
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38072
|
-
}, z.core.$strict>>;
|
|
38073
37942
|
}, z.core.$strict>>;
|
|
38074
37943
|
style: z.ZodOptional<z.ZodObject<{
|
|
38075
37944
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -38115,6 +37984,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38115
37984
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38116
37985
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38117
37986
|
}, z.core.$strict>>;
|
|
37987
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
37988
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
37989
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
37990
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
37991
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
37992
|
+
}, z.core.$strict>>;
|
|
38118
37993
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
38119
37994
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38120
37995
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -38165,13 +38040,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38165
38040
|
down: "down";
|
|
38166
38041
|
}>>;
|
|
38167
38042
|
}, z.core.$strict>>;
|
|
38168
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
38169
|
-
top: "top";
|
|
38170
|
-
bottom: "bottom";
|
|
38171
|
-
center: "center";
|
|
38172
|
-
}>>;
|
|
38173
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38174
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38175
38043
|
}, z.core.$strict>, z.ZodObject<{
|
|
38176
38044
|
type: z.ZodEnum<{
|
|
38177
38045
|
html: "html";
|
|
@@ -39336,15 +39204,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39336
39204
|
speed?: string | number;
|
|
39337
39205
|
} | {
|
|
39338
39206
|
type: "rich-caption";
|
|
39339
|
-
|
|
39340
|
-
maxLines: string | number;
|
|
39341
|
-
src?: string;
|
|
39342
|
-
words?: {
|
|
39343
|
-
text: string;
|
|
39344
|
-
start?: string | number;
|
|
39345
|
-
end?: string | number;
|
|
39346
|
-
confidence?: string | number;
|
|
39347
|
-
}[];
|
|
39207
|
+
src: string;
|
|
39348
39208
|
font?: {
|
|
39349
39209
|
family: string;
|
|
39350
39210
|
size: string | number;
|
|
@@ -39352,11 +39212,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39352
39212
|
color: string;
|
|
39353
39213
|
opacity: string | number;
|
|
39354
39214
|
background?: string;
|
|
39355
|
-
stroke?: {
|
|
39356
|
-
width: string | number;
|
|
39357
|
-
color: string;
|
|
39358
|
-
opacity: string | number;
|
|
39359
|
-
};
|
|
39360
39215
|
};
|
|
39361
39216
|
style?: {
|
|
39362
39217
|
letterSpacing: string | number;
|
|
@@ -39390,6 +39245,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39390
39245
|
borderRadius: string | number;
|
|
39391
39246
|
color?: string;
|
|
39392
39247
|
};
|
|
39248
|
+
border?: {
|
|
39249
|
+
width: string | number;
|
|
39250
|
+
color: string;
|
|
39251
|
+
opacity: string | number;
|
|
39252
|
+
radius: string | number;
|
|
39253
|
+
};
|
|
39393
39254
|
padding?: string | number | {
|
|
39394
39255
|
top: string | number;
|
|
39395
39256
|
right: string | number;
|
|
@@ -39418,7 +39279,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39418
39279
|
speed: string | number;
|
|
39419
39280
|
direction?: "left" | "right" | "up" | "down";
|
|
39420
39281
|
};
|
|
39421
|
-
position?: "top" | "bottom" | "center";
|
|
39422
39282
|
} | {
|
|
39423
39283
|
type: "html";
|
|
39424
39284
|
html: string;
|
|
@@ -39879,15 +39739,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39879
39739
|
speed?: string | number;
|
|
39880
39740
|
} | {
|
|
39881
39741
|
type: "rich-caption";
|
|
39882
|
-
|
|
39883
|
-
maxLines: string | number;
|
|
39884
|
-
src?: string;
|
|
39885
|
-
words?: {
|
|
39886
|
-
text: string;
|
|
39887
|
-
start?: string | number;
|
|
39888
|
-
end?: string | number;
|
|
39889
|
-
confidence?: string | number;
|
|
39890
|
-
}[];
|
|
39742
|
+
src: string;
|
|
39891
39743
|
font?: {
|
|
39892
39744
|
family: string;
|
|
39893
39745
|
size: string | number;
|
|
@@ -39895,11 +39747,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39895
39747
|
color: string;
|
|
39896
39748
|
opacity: string | number;
|
|
39897
39749
|
background?: string;
|
|
39898
|
-
stroke?: {
|
|
39899
|
-
width: string | number;
|
|
39900
|
-
color: string;
|
|
39901
|
-
opacity: string | number;
|
|
39902
|
-
};
|
|
39903
39750
|
};
|
|
39904
39751
|
style?: {
|
|
39905
39752
|
letterSpacing: string | number;
|
|
@@ -39933,6 +39780,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39933
39780
|
borderRadius: string | number;
|
|
39934
39781
|
color?: string;
|
|
39935
39782
|
};
|
|
39783
|
+
border?: {
|
|
39784
|
+
width: string | number;
|
|
39785
|
+
color: string;
|
|
39786
|
+
opacity: string | number;
|
|
39787
|
+
radius: string | number;
|
|
39788
|
+
};
|
|
39936
39789
|
padding?: string | number | {
|
|
39937
39790
|
top: string | number;
|
|
39938
39791
|
right: string | number;
|
|
@@ -39961,7 +39814,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39961
39814
|
speed: string | number;
|
|
39962
39815
|
direction?: "left" | "right" | "up" | "down";
|
|
39963
39816
|
};
|
|
39964
|
-
position?: "top" | "bottom" | "center";
|
|
39965
39817
|
} | {
|
|
39966
39818
|
type: "html";
|
|
39967
39819
|
html: string;
|
|
@@ -40279,6 +40131,22 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40279
40131
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
40280
40132
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
40281
40133
|
}, z.core.$strict>>;
|
|
40134
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
40135
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
40136
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
40137
|
+
host: z.ZodString;
|
|
40138
|
+
cpCode: z.ZodString;
|
|
40139
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
40140
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
40141
|
+
}, z.core.$strict>>;
|
|
40142
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
40143
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
40144
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
40145
|
+
accountName: z.ZodString;
|
|
40146
|
+
container: z.ZodString;
|
|
40147
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
40148
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
40149
|
+
}, z.core.$strict>>;
|
|
40282
40150
|
}, z.core.$strict>], "provider">>>;
|
|
40283
40151
|
}, z.core.$strict>;
|
|
40284
40152
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -40643,13 +40511,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40643
40511
|
type: z.ZodEnum<{
|
|
40644
40512
|
"rich-caption": "rich-caption";
|
|
40645
40513
|
}>;
|
|
40646
|
-
src: z.
|
|
40647
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40648
|
-
text: z.ZodString;
|
|
40649
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
40650
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
40651
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
40652
|
-
}, z.core.$strict>>>;
|
|
40514
|
+
src: z.ZodString;
|
|
40653
40515
|
font: z.ZodOptional<z.ZodObject<{
|
|
40654
40516
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
40655
40517
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -40657,11 +40519,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40657
40519
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
40658
40520
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40659
40521
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40660
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
40661
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40662
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
40663
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40664
|
-
}, z.core.$strict>>;
|
|
40665
40522
|
}, z.core.$strict>>;
|
|
40666
40523
|
style: z.ZodOptional<z.ZodObject<{
|
|
40667
40524
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -40707,6 +40564,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40707
40564
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40708
40565
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40709
40566
|
}, z.core.$strict>>;
|
|
40567
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
40568
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40569
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
40570
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40571
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40572
|
+
}, z.core.$strict>>;
|
|
40710
40573
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
40711
40574
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40712
40575
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -40757,13 +40620,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40757
40620
|
down: "down";
|
|
40758
40621
|
}>>;
|
|
40759
40622
|
}, z.core.$strict>>;
|
|
40760
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
40761
|
-
top: "top";
|
|
40762
|
-
bottom: "bottom";
|
|
40763
|
-
center: "center";
|
|
40764
|
-
}>>;
|
|
40765
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40766
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40767
40623
|
}, z.core.$strict>, z.ZodObject<{
|
|
40768
40624
|
type: z.ZodEnum<{
|
|
40769
40625
|
html: "html";
|
|
@@ -41928,15 +41784,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41928
41784
|
speed?: string | number;
|
|
41929
41785
|
} | {
|
|
41930
41786
|
type: "rich-caption";
|
|
41931
|
-
|
|
41932
|
-
maxLines: string | number;
|
|
41933
|
-
src?: string;
|
|
41934
|
-
words?: {
|
|
41935
|
-
text: string;
|
|
41936
|
-
start?: string | number;
|
|
41937
|
-
end?: string | number;
|
|
41938
|
-
confidence?: string | number;
|
|
41939
|
-
}[];
|
|
41787
|
+
src: string;
|
|
41940
41788
|
font?: {
|
|
41941
41789
|
family: string;
|
|
41942
41790
|
size: string | number;
|
|
@@ -41944,11 +41792,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41944
41792
|
color: string;
|
|
41945
41793
|
opacity: string | number;
|
|
41946
41794
|
background?: string;
|
|
41947
|
-
stroke?: {
|
|
41948
|
-
width: string | number;
|
|
41949
|
-
color: string;
|
|
41950
|
-
opacity: string | number;
|
|
41951
|
-
};
|
|
41952
41795
|
};
|
|
41953
41796
|
style?: {
|
|
41954
41797
|
letterSpacing: string | number;
|
|
@@ -41982,6 +41825,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41982
41825
|
borderRadius: string | number;
|
|
41983
41826
|
color?: string;
|
|
41984
41827
|
};
|
|
41828
|
+
border?: {
|
|
41829
|
+
width: string | number;
|
|
41830
|
+
color: string;
|
|
41831
|
+
opacity: string | number;
|
|
41832
|
+
radius: string | number;
|
|
41833
|
+
};
|
|
41985
41834
|
padding?: string | number | {
|
|
41986
41835
|
top: string | number;
|
|
41987
41836
|
right: string | number;
|
|
@@ -42010,7 +41859,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42010
41859
|
speed: string | number;
|
|
42011
41860
|
direction?: "left" | "right" | "up" | "down";
|
|
42012
41861
|
};
|
|
42013
|
-
position?: "top" | "bottom" | "center";
|
|
42014
41862
|
} | {
|
|
42015
41863
|
type: "html";
|
|
42016
41864
|
html: string;
|
|
@@ -42471,15 +42319,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42471
42319
|
speed?: string | number;
|
|
42472
42320
|
} | {
|
|
42473
42321
|
type: "rich-caption";
|
|
42474
|
-
|
|
42475
|
-
maxLines: string | number;
|
|
42476
|
-
src?: string;
|
|
42477
|
-
words?: {
|
|
42478
|
-
text: string;
|
|
42479
|
-
start?: string | number;
|
|
42480
|
-
end?: string | number;
|
|
42481
|
-
confidence?: string | number;
|
|
42482
|
-
}[];
|
|
42322
|
+
src: string;
|
|
42483
42323
|
font?: {
|
|
42484
42324
|
family: string;
|
|
42485
42325
|
size: string | number;
|
|
@@ -42487,11 +42327,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42487
42327
|
color: string;
|
|
42488
42328
|
opacity: string | number;
|
|
42489
42329
|
background?: string;
|
|
42490
|
-
stroke?: {
|
|
42491
|
-
width: string | number;
|
|
42492
|
-
color: string;
|
|
42493
|
-
opacity: string | number;
|
|
42494
|
-
};
|
|
42495
42330
|
};
|
|
42496
42331
|
style?: {
|
|
42497
42332
|
letterSpacing: string | number;
|
|
@@ -42525,6 +42360,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42525
42360
|
borderRadius: string | number;
|
|
42526
42361
|
color?: string;
|
|
42527
42362
|
};
|
|
42363
|
+
border?: {
|
|
42364
|
+
width: string | number;
|
|
42365
|
+
color: string;
|
|
42366
|
+
opacity: string | number;
|
|
42367
|
+
radius: string | number;
|
|
42368
|
+
};
|
|
42528
42369
|
padding?: string | number | {
|
|
42529
42370
|
top: string | number;
|
|
42530
42371
|
right: string | number;
|
|
@@ -42553,7 +42394,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42553
42394
|
speed: string | number;
|
|
42554
42395
|
direction?: "left" | "right" | "up" | "down";
|
|
42555
42396
|
};
|
|
42556
|
-
position?: "top" | "bottom" | "center";
|
|
42557
42397
|
} | {
|
|
42558
42398
|
type: "html";
|
|
42559
42399
|
html: string;
|
|
@@ -42871,6 +42711,22 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42871
42711
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
42872
42712
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
42873
42713
|
}, z.core.$strict>>;
|
|
42714
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
42715
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
42716
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
42717
|
+
host: z.ZodString;
|
|
42718
|
+
cpCode: z.ZodString;
|
|
42719
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
42720
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
42721
|
+
}, z.core.$strict>>;
|
|
42722
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
42723
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
42724
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
42725
|
+
accountName: z.ZodString;
|
|
42726
|
+
container: z.ZodString;
|
|
42727
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
42728
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
42729
|
+
}, z.core.$strict>>;
|
|
42874
42730
|
}, z.core.$strict>], "provider">>>;
|
|
42875
42731
|
}, z.core.$strict>;
|
|
42876
42732
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -43229,13 +43085,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43229
43085
|
type: z.ZodEnum<{
|
|
43230
43086
|
"rich-caption": "rich-caption";
|
|
43231
43087
|
}>;
|
|
43232
|
-
src: z.
|
|
43233
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
43234
|
-
text: z.ZodString;
|
|
43235
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
43236
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
43237
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
43238
|
-
}, z.core.$strict>>>;
|
|
43088
|
+
src: z.ZodString;
|
|
43239
43089
|
font: z.ZodOptional<z.ZodObject<{
|
|
43240
43090
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
43241
43091
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -43243,11 +43093,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43243
43093
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43244
43094
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43245
43095
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
43246
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
43247
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43248
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43249
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43250
|
-
}, z.core.$strict>>;
|
|
43251
43096
|
}, z.core.$strict>>;
|
|
43252
43097
|
style: z.ZodOptional<z.ZodObject<{
|
|
43253
43098
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -43293,6 +43138,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43293
43138
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43294
43139
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43295
43140
|
}, z.core.$strict>>;
|
|
43141
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
43142
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43143
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43144
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43145
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43146
|
+
}, z.core.$strict>>;
|
|
43296
43147
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
43297
43148
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43298
43149
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -43343,13 +43194,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43343
43194
|
down: "down";
|
|
43344
43195
|
}>>;
|
|
43345
43196
|
}, z.core.$strict>>;
|
|
43346
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
43347
|
-
top: "top";
|
|
43348
|
-
bottom: "bottom";
|
|
43349
|
-
center: "center";
|
|
43350
|
-
}>>;
|
|
43351
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43352
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43353
43197
|
}, z.core.$strict>, z.ZodObject<{
|
|
43354
43198
|
type: z.ZodEnum<{
|
|
43355
43199
|
html: "html";
|
|
@@ -44514,15 +44358,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44514
44358
|
speed?: string | number;
|
|
44515
44359
|
} | {
|
|
44516
44360
|
type: "rich-caption";
|
|
44517
|
-
|
|
44518
|
-
maxLines: string | number;
|
|
44519
|
-
src?: string;
|
|
44520
|
-
words?: {
|
|
44521
|
-
text: string;
|
|
44522
|
-
start?: string | number;
|
|
44523
|
-
end?: string | number;
|
|
44524
|
-
confidence?: string | number;
|
|
44525
|
-
}[];
|
|
44361
|
+
src: string;
|
|
44526
44362
|
font?: {
|
|
44527
44363
|
family: string;
|
|
44528
44364
|
size: string | number;
|
|
@@ -44530,11 +44366,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44530
44366
|
color: string;
|
|
44531
44367
|
opacity: string | number;
|
|
44532
44368
|
background?: string;
|
|
44533
|
-
stroke?: {
|
|
44534
|
-
width: string | number;
|
|
44535
|
-
color: string;
|
|
44536
|
-
opacity: string | number;
|
|
44537
|
-
};
|
|
44538
44369
|
};
|
|
44539
44370
|
style?: {
|
|
44540
44371
|
letterSpacing: string | number;
|
|
@@ -44568,6 +44399,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44568
44399
|
borderRadius: string | number;
|
|
44569
44400
|
color?: string;
|
|
44570
44401
|
};
|
|
44402
|
+
border?: {
|
|
44403
|
+
width: string | number;
|
|
44404
|
+
color: string;
|
|
44405
|
+
opacity: string | number;
|
|
44406
|
+
radius: string | number;
|
|
44407
|
+
};
|
|
44571
44408
|
padding?: string | number | {
|
|
44572
44409
|
top: string | number;
|
|
44573
44410
|
right: string | number;
|
|
@@ -44596,7 +44433,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44596
44433
|
speed: string | number;
|
|
44597
44434
|
direction?: "left" | "right" | "up" | "down";
|
|
44598
44435
|
};
|
|
44599
|
-
position?: "top" | "bottom" | "center";
|
|
44600
44436
|
} | {
|
|
44601
44437
|
type: "html";
|
|
44602
44438
|
html: string;
|
|
@@ -45057,15 +44893,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45057
44893
|
speed?: string | number;
|
|
45058
44894
|
} | {
|
|
45059
44895
|
type: "rich-caption";
|
|
45060
|
-
|
|
45061
|
-
maxLines: string | number;
|
|
45062
|
-
src?: string;
|
|
45063
|
-
words?: {
|
|
45064
|
-
text: string;
|
|
45065
|
-
start?: string | number;
|
|
45066
|
-
end?: string | number;
|
|
45067
|
-
confidence?: string | number;
|
|
45068
|
-
}[];
|
|
44896
|
+
src: string;
|
|
45069
44897
|
font?: {
|
|
45070
44898
|
family: string;
|
|
45071
44899
|
size: string | number;
|
|
@@ -45073,11 +44901,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45073
44901
|
color: string;
|
|
45074
44902
|
opacity: string | number;
|
|
45075
44903
|
background?: string;
|
|
45076
|
-
stroke?: {
|
|
45077
|
-
width: string | number;
|
|
45078
|
-
color: string;
|
|
45079
|
-
opacity: string | number;
|
|
45080
|
-
};
|
|
45081
44904
|
};
|
|
45082
44905
|
style?: {
|
|
45083
44906
|
letterSpacing: string | number;
|
|
@@ -45111,6 +44934,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45111
44934
|
borderRadius: string | number;
|
|
45112
44935
|
color?: string;
|
|
45113
44936
|
};
|
|
44937
|
+
border?: {
|
|
44938
|
+
width: string | number;
|
|
44939
|
+
color: string;
|
|
44940
|
+
opacity: string | number;
|
|
44941
|
+
radius: string | number;
|
|
44942
|
+
};
|
|
45114
44943
|
padding?: string | number | {
|
|
45115
44944
|
top: string | number;
|
|
45116
44945
|
right: string | number;
|
|
@@ -45139,7 +44968,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45139
44968
|
speed: string | number;
|
|
45140
44969
|
direction?: "left" | "right" | "up" | "down";
|
|
45141
44970
|
};
|
|
45142
|
-
position?: "top" | "bottom" | "center";
|
|
45143
44971
|
} | {
|
|
45144
44972
|
type: "html";
|
|
45145
44973
|
html: string;
|
|
@@ -45457,6 +45285,22 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45457
45285
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
45458
45286
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
45459
45287
|
}, z.core.$strict>>;
|
|
45288
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
45289
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
45290
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
45291
|
+
host: z.ZodString;
|
|
45292
|
+
cpCode: z.ZodString;
|
|
45293
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
45294
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
45295
|
+
}, z.core.$strict>>;
|
|
45296
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
45297
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
45298
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
45299
|
+
accountName: z.ZodString;
|
|
45300
|
+
container: z.ZodString;
|
|
45301
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
45302
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
45303
|
+
}, z.core.$strict>>;
|
|
45460
45304
|
}, z.core.$strict>], "provider">>>;
|
|
45461
45305
|
}, z.core.$strict>;
|
|
45462
45306
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -45821,13 +45665,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
45821
45665
|
type: z.ZodEnum<{
|
|
45822
45666
|
"rich-caption": "rich-caption";
|
|
45823
45667
|
}>;
|
|
45824
|
-
src: z.
|
|
45825
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45826
|
-
text: z.ZodString;
|
|
45827
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
45828
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
45829
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
45830
|
-
}, z.core.$strict>>>;
|
|
45668
|
+
src: z.ZodString;
|
|
45831
45669
|
font: z.ZodOptional<z.ZodObject<{
|
|
45832
45670
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
45833
45671
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -45835,11 +45673,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
45835
45673
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
45836
45674
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45837
45675
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
45838
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
45839
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45840
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
45841
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45842
|
-
}, z.core.$strict>>;
|
|
45843
45676
|
}, z.core.$strict>>;
|
|
45844
45677
|
style: z.ZodOptional<z.ZodObject<{
|
|
45845
45678
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -45885,6 +45718,12 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
45885
45718
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45886
45719
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45887
45720
|
}, z.core.$strict>>;
|
|
45721
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
45722
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45723
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
45724
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45725
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45726
|
+
}, z.core.$strict>>;
|
|
45888
45727
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
45889
45728
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45890
45729
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -45935,13 +45774,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
45935
45774
|
down: "down";
|
|
45936
45775
|
}>>;
|
|
45937
45776
|
}, z.core.$strict>>;
|
|
45938
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
45939
|
-
top: "top";
|
|
45940
|
-
bottom: "bottom";
|
|
45941
|
-
center: "center";
|
|
45942
|
-
}>>;
|
|
45943
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45944
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45945
45777
|
}, z.core.$strict>, z.ZodObject<{
|
|
45946
45778
|
type: z.ZodEnum<{
|
|
45947
45779
|
html: "html";
|
|
@@ -47106,15 +46938,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47106
46938
|
speed?: string | number;
|
|
47107
46939
|
} | {
|
|
47108
46940
|
type: "rich-caption";
|
|
47109
|
-
|
|
47110
|
-
maxLines: string | number;
|
|
47111
|
-
src?: string;
|
|
47112
|
-
words?: {
|
|
47113
|
-
text: string;
|
|
47114
|
-
start?: string | number;
|
|
47115
|
-
end?: string | number;
|
|
47116
|
-
confidence?: string | number;
|
|
47117
|
-
}[];
|
|
46941
|
+
src: string;
|
|
47118
46942
|
font?: {
|
|
47119
46943
|
family: string;
|
|
47120
46944
|
size: string | number;
|
|
@@ -47122,11 +46946,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47122
46946
|
color: string;
|
|
47123
46947
|
opacity: string | number;
|
|
47124
46948
|
background?: string;
|
|
47125
|
-
stroke?: {
|
|
47126
|
-
width: string | number;
|
|
47127
|
-
color: string;
|
|
47128
|
-
opacity: string | number;
|
|
47129
|
-
};
|
|
47130
46949
|
};
|
|
47131
46950
|
style?: {
|
|
47132
46951
|
letterSpacing: string | number;
|
|
@@ -47160,6 +46979,12 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47160
46979
|
borderRadius: string | number;
|
|
47161
46980
|
color?: string;
|
|
47162
46981
|
};
|
|
46982
|
+
border?: {
|
|
46983
|
+
width: string | number;
|
|
46984
|
+
color: string;
|
|
46985
|
+
opacity: string | number;
|
|
46986
|
+
radius: string | number;
|
|
46987
|
+
};
|
|
47163
46988
|
padding?: string | number | {
|
|
47164
46989
|
top: string | number;
|
|
47165
46990
|
right: string | number;
|
|
@@ -47188,7 +47013,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47188
47013
|
speed: string | number;
|
|
47189
47014
|
direction?: "left" | "right" | "up" | "down";
|
|
47190
47015
|
};
|
|
47191
|
-
position?: "top" | "bottom" | "center";
|
|
47192
47016
|
} | {
|
|
47193
47017
|
type: "html";
|
|
47194
47018
|
html: string;
|
|
@@ -47598,121 +47422,114 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47598
47422
|
horizontal?: "left" | "right" | "center";
|
|
47599
47423
|
vertical?: "top" | "bottom" | "middle";
|
|
47600
47424
|
};
|
|
47601
|
-
animation?: {
|
|
47602
|
-
preset: "typewriter" | "fadeIn" | "slideIn" | "ascend" | "shift" | "movingLetters";
|
|
47603
|
-
duration?: string | number;
|
|
47604
|
-
style?: "character" | "word";
|
|
47605
|
-
direction?: "left" | "right" | "up" | "down";
|
|
47606
|
-
};
|
|
47607
|
-
} | {
|
|
47608
|
-
type: "audio";
|
|
47609
|
-
src: string;
|
|
47610
|
-
trim?: string | number;
|
|
47611
|
-
volume?: string | number | {
|
|
47612
|
-
from?: unknown;
|
|
47613
|
-
to?: unknown;
|
|
47614
|
-
start?: string | number;
|
|
47615
|
-
length?: string | number;
|
|
47616
|
-
interpolation?: "linear" | "bezier" | "constant";
|
|
47617
|
-
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack";
|
|
47618
|
-
}[];
|
|
47619
|
-
speed?: string | number;
|
|
47620
|
-
effect?: "none" | "fadeIn" | "fadeOut" | "fadeInFadeOut";
|
|
47621
|
-
} | {
|
|
47622
|
-
type: "luma";
|
|
47623
|
-
src: string;
|
|
47624
|
-
trim?: string | number;
|
|
47625
|
-
} | {
|
|
47626
|
-
type: "caption";
|
|
47627
|
-
src: string;
|
|
47628
|
-
font?: {
|
|
47629
|
-
family?: string;
|
|
47630
|
-
color?: string;
|
|
47631
|
-
opacity?: string | number;
|
|
47632
|
-
size?: string | number;
|
|
47633
|
-
lineHeight?: string | number;
|
|
47634
|
-
stroke?: string;
|
|
47635
|
-
strokeWidth?: string | number;
|
|
47636
|
-
};
|
|
47637
|
-
background?: {
|
|
47638
|
-
color?: string;
|
|
47639
|
-
opacity?: string | number;
|
|
47640
|
-
padding?: string | number;
|
|
47641
|
-
borderRadius?: string | number;
|
|
47642
|
-
};
|
|
47643
|
-
margin?: {
|
|
47644
|
-
top?: string | number;
|
|
47645
|
-
left?: string | number;
|
|
47646
|
-
right?: string | number;
|
|
47647
|
-
};
|
|
47648
|
-
trim?: string | number;
|
|
47649
|
-
speed?: string | number;
|
|
47650
|
-
} | {
|
|
47651
|
-
type: "rich-caption";
|
|
47652
|
-
|
|
47653
|
-
|
|
47654
|
-
|
|
47655
|
-
|
|
47656
|
-
|
|
47657
|
-
|
|
47658
|
-
|
|
47659
|
-
|
|
47660
|
-
}
|
|
47661
|
-
|
|
47662
|
-
|
|
47663
|
-
|
|
47664
|
-
|
|
47665
|
-
|
|
47666
|
-
|
|
47667
|
-
|
|
47668
|
-
|
|
47669
|
-
|
|
47670
|
-
|
|
47671
|
-
|
|
47672
|
-
|
|
47673
|
-
|
|
47674
|
-
|
|
47675
|
-
|
|
47676
|
-
|
|
47677
|
-
|
|
47678
|
-
|
|
47679
|
-
|
|
47680
|
-
|
|
47681
|
-
|
|
47682
|
-
|
|
47683
|
-
|
|
47684
|
-
|
|
47685
|
-
|
|
47686
|
-
|
|
47687
|
-
|
|
47688
|
-
|
|
47689
|
-
|
|
47690
|
-
|
|
47691
|
-
color
|
|
47692
|
-
|
|
47693
|
-
|
|
47694
|
-
|
|
47695
|
-
|
|
47696
|
-
|
|
47697
|
-
|
|
47698
|
-
|
|
47699
|
-
|
|
47700
|
-
|
|
47701
|
-
|
|
47702
|
-
|
|
47703
|
-
|
|
47704
|
-
|
|
47705
|
-
|
|
47706
|
-
|
|
47707
|
-
top
|
|
47708
|
-
|
|
47709
|
-
bottom: string | number;
|
|
47710
|
-
left: string | number;
|
|
47711
|
-
};
|
|
47712
|
-
align?: {
|
|
47713
|
-
horizontal?: "left" | "right" | "center";
|
|
47714
|
-
vertical?: "top" | "bottom" | "middle";
|
|
47715
|
-
};
|
|
47425
|
+
animation?: {
|
|
47426
|
+
preset: "typewriter" | "fadeIn" | "slideIn" | "ascend" | "shift" | "movingLetters";
|
|
47427
|
+
duration?: string | number;
|
|
47428
|
+
style?: "character" | "word";
|
|
47429
|
+
direction?: "left" | "right" | "up" | "down";
|
|
47430
|
+
};
|
|
47431
|
+
} | {
|
|
47432
|
+
type: "audio";
|
|
47433
|
+
src: string;
|
|
47434
|
+
trim?: string | number;
|
|
47435
|
+
volume?: string | number | {
|
|
47436
|
+
from?: unknown;
|
|
47437
|
+
to?: unknown;
|
|
47438
|
+
start?: string | number;
|
|
47439
|
+
length?: string | number;
|
|
47440
|
+
interpolation?: "linear" | "bezier" | "constant";
|
|
47441
|
+
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack";
|
|
47442
|
+
}[];
|
|
47443
|
+
speed?: string | number;
|
|
47444
|
+
effect?: "none" | "fadeIn" | "fadeOut" | "fadeInFadeOut";
|
|
47445
|
+
} | {
|
|
47446
|
+
type: "luma";
|
|
47447
|
+
src: string;
|
|
47448
|
+
trim?: string | number;
|
|
47449
|
+
} | {
|
|
47450
|
+
type: "caption";
|
|
47451
|
+
src: string;
|
|
47452
|
+
font?: {
|
|
47453
|
+
family?: string;
|
|
47454
|
+
color?: string;
|
|
47455
|
+
opacity?: string | number;
|
|
47456
|
+
size?: string | number;
|
|
47457
|
+
lineHeight?: string | number;
|
|
47458
|
+
stroke?: string;
|
|
47459
|
+
strokeWidth?: string | number;
|
|
47460
|
+
};
|
|
47461
|
+
background?: {
|
|
47462
|
+
color?: string;
|
|
47463
|
+
opacity?: string | number;
|
|
47464
|
+
padding?: string | number;
|
|
47465
|
+
borderRadius?: string | number;
|
|
47466
|
+
};
|
|
47467
|
+
margin?: {
|
|
47468
|
+
top?: string | number;
|
|
47469
|
+
left?: string | number;
|
|
47470
|
+
right?: string | number;
|
|
47471
|
+
};
|
|
47472
|
+
trim?: string | number;
|
|
47473
|
+
speed?: string | number;
|
|
47474
|
+
} | {
|
|
47475
|
+
type: "rich-caption";
|
|
47476
|
+
src: string;
|
|
47477
|
+
font?: {
|
|
47478
|
+
family: string;
|
|
47479
|
+
size: string | number;
|
|
47480
|
+
weight: unknown;
|
|
47481
|
+
color: string;
|
|
47482
|
+
opacity: string | number;
|
|
47483
|
+
background?: string;
|
|
47484
|
+
};
|
|
47485
|
+
style?: {
|
|
47486
|
+
letterSpacing: string | number;
|
|
47487
|
+
wordSpacing: string | number;
|
|
47488
|
+
lineHeight: string | number;
|
|
47489
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
47490
|
+
textDecoration?: "none" | "underline" | "line-through";
|
|
47491
|
+
gradient?: {
|
|
47492
|
+
angle: string | number;
|
|
47493
|
+
stops: {
|
|
47494
|
+
offset?: string | number;
|
|
47495
|
+
color?: string;
|
|
47496
|
+
}[];
|
|
47497
|
+
type?: "linear" | "radial";
|
|
47498
|
+
};
|
|
47499
|
+
};
|
|
47500
|
+
stroke?: {
|
|
47501
|
+
width: string | number;
|
|
47502
|
+
color: string;
|
|
47503
|
+
opacity: string | number;
|
|
47504
|
+
};
|
|
47505
|
+
shadow?: {
|
|
47506
|
+
offsetX: string | number;
|
|
47507
|
+
offsetY: string | number;
|
|
47508
|
+
blur: string | number;
|
|
47509
|
+
color: string;
|
|
47510
|
+
opacity: string | number;
|
|
47511
|
+
};
|
|
47512
|
+
background?: {
|
|
47513
|
+
opacity: string | number;
|
|
47514
|
+
borderRadius: string | number;
|
|
47515
|
+
color?: string;
|
|
47516
|
+
};
|
|
47517
|
+
border?: {
|
|
47518
|
+
width: string | number;
|
|
47519
|
+
color: string;
|
|
47520
|
+
opacity: string | number;
|
|
47521
|
+
radius: string | number;
|
|
47522
|
+
};
|
|
47523
|
+
padding?: string | number | {
|
|
47524
|
+
top: string | number;
|
|
47525
|
+
right: string | number;
|
|
47526
|
+
bottom: string | number;
|
|
47527
|
+
left: string | number;
|
|
47528
|
+
};
|
|
47529
|
+
align?: {
|
|
47530
|
+
horizontal?: "left" | "right" | "center";
|
|
47531
|
+
vertical?: "top" | "bottom" | "middle";
|
|
47532
|
+
};
|
|
47716
47533
|
active?: {
|
|
47717
47534
|
scale: string | number;
|
|
47718
47535
|
font?: {
|
|
@@ -47731,7 +47548,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47731
47548
|
speed: string | number;
|
|
47732
47549
|
direction?: "left" | "right" | "up" | "down";
|
|
47733
47550
|
};
|
|
47734
|
-
position?: "top" | "bottom" | "center";
|
|
47735
47551
|
} | {
|
|
47736
47552
|
type: "html";
|
|
47737
47553
|
html: string;
|
|
@@ -48049,6 +47865,22 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48049
47865
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
48050
47866
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
48051
47867
|
}, z.core.$strict>>;
|
|
47868
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
47869
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
47870
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
47871
|
+
host: z.ZodString;
|
|
47872
|
+
cpCode: z.ZodString;
|
|
47873
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
47874
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
47875
|
+
}, z.core.$strict>>;
|
|
47876
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
47877
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
47878
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
47879
|
+
accountName: z.ZodString;
|
|
47880
|
+
container: z.ZodString;
|
|
47881
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
47882
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
47883
|
+
}, z.core.$strict>>;
|
|
48052
47884
|
}, z.core.$strict>], "provider">>>;
|
|
48053
47885
|
}, z.core.$strict>;
|
|
48054
47886
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -48411,13 +48243,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48411
48243
|
type: z.ZodEnum<{
|
|
48412
48244
|
"rich-caption": "rich-caption";
|
|
48413
48245
|
}>;
|
|
48414
|
-
src: z.
|
|
48415
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
48416
|
-
text: z.ZodString;
|
|
48417
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
48418
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
48419
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
48420
|
-
}, z.core.$strict>>>;
|
|
48246
|
+
src: z.ZodString;
|
|
48421
48247
|
font: z.ZodOptional<z.ZodObject<{
|
|
48422
48248
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
48423
48249
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -48425,11 +48251,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48425
48251
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48426
48252
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48427
48253
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
48428
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
48429
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48430
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48431
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48432
|
-
}, z.core.$strict>>;
|
|
48433
48254
|
}, z.core.$strict>>;
|
|
48434
48255
|
style: z.ZodOptional<z.ZodObject<{
|
|
48435
48256
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -48475,6 +48296,12 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48475
48296
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48476
48297
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48477
48298
|
}, z.core.$strict>>;
|
|
48299
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
48300
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48301
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48302
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48303
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48304
|
+
}, z.core.$strict>>;
|
|
48478
48305
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
48479
48306
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48480
48307
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -48525,13 +48352,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48525
48352
|
down: "down";
|
|
48526
48353
|
}>>;
|
|
48527
48354
|
}, z.core.$strict>>;
|
|
48528
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
48529
|
-
top: "top";
|
|
48530
|
-
bottom: "bottom";
|
|
48531
|
-
center: "center";
|
|
48532
|
-
}>>;
|
|
48533
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48534
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48535
48355
|
}, z.core.$strict>, z.ZodObject<{
|
|
48536
48356
|
type: z.ZodEnum<{
|
|
48537
48357
|
html: "html";
|
|
@@ -49696,15 +49516,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
49696
49516
|
speed?: string | number;
|
|
49697
49517
|
} | {
|
|
49698
49518
|
type: "rich-caption";
|
|
49699
|
-
|
|
49700
|
-
maxLines: string | number;
|
|
49701
|
-
src?: string;
|
|
49702
|
-
words?: {
|
|
49703
|
-
text: string;
|
|
49704
|
-
start?: string | number;
|
|
49705
|
-
end?: string | number;
|
|
49706
|
-
confidence?: string | number;
|
|
49707
|
-
}[];
|
|
49519
|
+
src: string;
|
|
49708
49520
|
font?: {
|
|
49709
49521
|
family: string;
|
|
49710
49522
|
size: string | number;
|
|
@@ -49712,11 +49524,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
49712
49524
|
color: string;
|
|
49713
49525
|
opacity: string | number;
|
|
49714
49526
|
background?: string;
|
|
49715
|
-
stroke?: {
|
|
49716
|
-
width: string | number;
|
|
49717
|
-
color: string;
|
|
49718
|
-
opacity: string | number;
|
|
49719
|
-
};
|
|
49720
49527
|
};
|
|
49721
49528
|
style?: {
|
|
49722
49529
|
letterSpacing: string | number;
|
|
@@ -49750,6 +49557,12 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
49750
49557
|
borderRadius: string | number;
|
|
49751
49558
|
color?: string;
|
|
49752
49559
|
};
|
|
49560
|
+
border?: {
|
|
49561
|
+
width: string | number;
|
|
49562
|
+
color: string;
|
|
49563
|
+
opacity: string | number;
|
|
49564
|
+
radius: string | number;
|
|
49565
|
+
};
|
|
49753
49566
|
padding?: string | number | {
|
|
49754
49567
|
top: string | number;
|
|
49755
49568
|
right: string | number;
|
|
@@ -49778,7 +49591,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
49778
49591
|
speed: string | number;
|
|
49779
49592
|
direction?: "left" | "right" | "up" | "down";
|
|
49780
49593
|
};
|
|
49781
|
-
position?: "top" | "bottom" | "center";
|
|
49782
49594
|
} | {
|
|
49783
49595
|
type: "html";
|
|
49784
49596
|
html: string;
|
|
@@ -50188,121 +50000,114 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50188
50000
|
horizontal?: "left" | "right" | "center";
|
|
50189
50001
|
vertical?: "top" | "bottom" | "middle";
|
|
50190
50002
|
};
|
|
50191
|
-
animation?: {
|
|
50192
|
-
preset: "typewriter" | "fadeIn" | "slideIn" | "ascend" | "shift" | "movingLetters";
|
|
50193
|
-
duration?: string | number;
|
|
50194
|
-
style?: "character" | "word";
|
|
50195
|
-
direction?: "left" | "right" | "up" | "down";
|
|
50196
|
-
};
|
|
50197
|
-
} | {
|
|
50198
|
-
type: "audio";
|
|
50199
|
-
src: string;
|
|
50200
|
-
trim?: string | number;
|
|
50201
|
-
volume?: string | number | {
|
|
50202
|
-
from?: unknown;
|
|
50203
|
-
to?: unknown;
|
|
50204
|
-
start?: string | number;
|
|
50205
|
-
length?: string | number;
|
|
50206
|
-
interpolation?: "linear" | "bezier" | "constant";
|
|
50207
|
-
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack";
|
|
50208
|
-
}[];
|
|
50209
|
-
speed?: string | number;
|
|
50210
|
-
effect?: "none" | "fadeIn" | "fadeOut" | "fadeInFadeOut";
|
|
50211
|
-
} | {
|
|
50212
|
-
type: "luma";
|
|
50213
|
-
src: string;
|
|
50214
|
-
trim?: string | number;
|
|
50215
|
-
} | {
|
|
50216
|
-
type: "caption";
|
|
50217
|
-
src: string;
|
|
50218
|
-
font?: {
|
|
50219
|
-
family?: string;
|
|
50220
|
-
color?: string;
|
|
50221
|
-
opacity?: string | number;
|
|
50222
|
-
size?: string | number;
|
|
50223
|
-
lineHeight?: string | number;
|
|
50224
|
-
stroke?: string;
|
|
50225
|
-
strokeWidth?: string | number;
|
|
50226
|
-
};
|
|
50227
|
-
background?: {
|
|
50228
|
-
color?: string;
|
|
50229
|
-
opacity?: string | number;
|
|
50230
|
-
padding?: string | number;
|
|
50231
|
-
borderRadius?: string | number;
|
|
50232
|
-
};
|
|
50233
|
-
margin?: {
|
|
50234
|
-
top?: string | number;
|
|
50235
|
-
left?: string | number;
|
|
50236
|
-
right?: string | number;
|
|
50237
|
-
};
|
|
50238
|
-
trim?: string | number;
|
|
50239
|
-
speed?: string | number;
|
|
50240
|
-
} | {
|
|
50241
|
-
type: "rich-caption";
|
|
50242
|
-
|
|
50243
|
-
|
|
50244
|
-
|
|
50245
|
-
|
|
50246
|
-
|
|
50247
|
-
|
|
50248
|
-
|
|
50249
|
-
|
|
50250
|
-
}
|
|
50251
|
-
|
|
50252
|
-
|
|
50253
|
-
|
|
50254
|
-
|
|
50255
|
-
|
|
50256
|
-
|
|
50257
|
-
|
|
50258
|
-
|
|
50259
|
-
|
|
50260
|
-
|
|
50261
|
-
|
|
50262
|
-
|
|
50263
|
-
|
|
50264
|
-
|
|
50265
|
-
|
|
50266
|
-
|
|
50267
|
-
|
|
50268
|
-
|
|
50269
|
-
|
|
50270
|
-
|
|
50271
|
-
|
|
50272
|
-
|
|
50273
|
-
|
|
50274
|
-
|
|
50275
|
-
|
|
50276
|
-
|
|
50277
|
-
|
|
50278
|
-
|
|
50279
|
-
|
|
50280
|
-
|
|
50281
|
-
color
|
|
50282
|
-
|
|
50283
|
-
|
|
50284
|
-
|
|
50285
|
-
|
|
50286
|
-
|
|
50287
|
-
|
|
50288
|
-
|
|
50289
|
-
|
|
50290
|
-
|
|
50291
|
-
|
|
50292
|
-
|
|
50293
|
-
|
|
50294
|
-
|
|
50295
|
-
|
|
50296
|
-
|
|
50297
|
-
top
|
|
50298
|
-
|
|
50299
|
-
bottom: string | number;
|
|
50300
|
-
left: string | number;
|
|
50301
|
-
};
|
|
50302
|
-
align?: {
|
|
50303
|
-
horizontal?: "left" | "right" | "center";
|
|
50304
|
-
vertical?: "top" | "bottom" | "middle";
|
|
50305
|
-
};
|
|
50003
|
+
animation?: {
|
|
50004
|
+
preset: "typewriter" | "fadeIn" | "slideIn" | "ascend" | "shift" | "movingLetters";
|
|
50005
|
+
duration?: string | number;
|
|
50006
|
+
style?: "character" | "word";
|
|
50007
|
+
direction?: "left" | "right" | "up" | "down";
|
|
50008
|
+
};
|
|
50009
|
+
} | {
|
|
50010
|
+
type: "audio";
|
|
50011
|
+
src: string;
|
|
50012
|
+
trim?: string | number;
|
|
50013
|
+
volume?: string | number | {
|
|
50014
|
+
from?: unknown;
|
|
50015
|
+
to?: unknown;
|
|
50016
|
+
start?: string | number;
|
|
50017
|
+
length?: string | number;
|
|
50018
|
+
interpolation?: "linear" | "bezier" | "constant";
|
|
50019
|
+
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack";
|
|
50020
|
+
}[];
|
|
50021
|
+
speed?: string | number;
|
|
50022
|
+
effect?: "none" | "fadeIn" | "fadeOut" | "fadeInFadeOut";
|
|
50023
|
+
} | {
|
|
50024
|
+
type: "luma";
|
|
50025
|
+
src: string;
|
|
50026
|
+
trim?: string | number;
|
|
50027
|
+
} | {
|
|
50028
|
+
type: "caption";
|
|
50029
|
+
src: string;
|
|
50030
|
+
font?: {
|
|
50031
|
+
family?: string;
|
|
50032
|
+
color?: string;
|
|
50033
|
+
opacity?: string | number;
|
|
50034
|
+
size?: string | number;
|
|
50035
|
+
lineHeight?: string | number;
|
|
50036
|
+
stroke?: string;
|
|
50037
|
+
strokeWidth?: string | number;
|
|
50038
|
+
};
|
|
50039
|
+
background?: {
|
|
50040
|
+
color?: string;
|
|
50041
|
+
opacity?: string | number;
|
|
50042
|
+
padding?: string | number;
|
|
50043
|
+
borderRadius?: string | number;
|
|
50044
|
+
};
|
|
50045
|
+
margin?: {
|
|
50046
|
+
top?: string | number;
|
|
50047
|
+
left?: string | number;
|
|
50048
|
+
right?: string | number;
|
|
50049
|
+
};
|
|
50050
|
+
trim?: string | number;
|
|
50051
|
+
speed?: string | number;
|
|
50052
|
+
} | {
|
|
50053
|
+
type: "rich-caption";
|
|
50054
|
+
src: string;
|
|
50055
|
+
font?: {
|
|
50056
|
+
family: string;
|
|
50057
|
+
size: string | number;
|
|
50058
|
+
weight: unknown;
|
|
50059
|
+
color: string;
|
|
50060
|
+
opacity: string | number;
|
|
50061
|
+
background?: string;
|
|
50062
|
+
};
|
|
50063
|
+
style?: {
|
|
50064
|
+
letterSpacing: string | number;
|
|
50065
|
+
wordSpacing: string | number;
|
|
50066
|
+
lineHeight: string | number;
|
|
50067
|
+
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
50068
|
+
textDecoration?: "none" | "underline" | "line-through";
|
|
50069
|
+
gradient?: {
|
|
50070
|
+
angle: string | number;
|
|
50071
|
+
stops: {
|
|
50072
|
+
offset?: string | number;
|
|
50073
|
+
color?: string;
|
|
50074
|
+
}[];
|
|
50075
|
+
type?: "linear" | "radial";
|
|
50076
|
+
};
|
|
50077
|
+
};
|
|
50078
|
+
stroke?: {
|
|
50079
|
+
width: string | number;
|
|
50080
|
+
color: string;
|
|
50081
|
+
opacity: string | number;
|
|
50082
|
+
};
|
|
50083
|
+
shadow?: {
|
|
50084
|
+
offsetX: string | number;
|
|
50085
|
+
offsetY: string | number;
|
|
50086
|
+
blur: string | number;
|
|
50087
|
+
color: string;
|
|
50088
|
+
opacity: string | number;
|
|
50089
|
+
};
|
|
50090
|
+
background?: {
|
|
50091
|
+
opacity: string | number;
|
|
50092
|
+
borderRadius: string | number;
|
|
50093
|
+
color?: string;
|
|
50094
|
+
};
|
|
50095
|
+
border?: {
|
|
50096
|
+
width: string | number;
|
|
50097
|
+
color: string;
|
|
50098
|
+
opacity: string | number;
|
|
50099
|
+
radius: string | number;
|
|
50100
|
+
};
|
|
50101
|
+
padding?: string | number | {
|
|
50102
|
+
top: string | number;
|
|
50103
|
+
right: string | number;
|
|
50104
|
+
bottom: string | number;
|
|
50105
|
+
left: string | number;
|
|
50106
|
+
};
|
|
50107
|
+
align?: {
|
|
50108
|
+
horizontal?: "left" | "right" | "center";
|
|
50109
|
+
vertical?: "top" | "bottom" | "middle";
|
|
50110
|
+
};
|
|
50306
50111
|
active?: {
|
|
50307
50112
|
scale: string | number;
|
|
50308
50113
|
font?: {
|
|
@@ -50321,7 +50126,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50321
50126
|
speed: string | number;
|
|
50322
50127
|
direction?: "left" | "right" | "up" | "down";
|
|
50323
50128
|
};
|
|
50324
|
-
position?: "top" | "bottom" | "center";
|
|
50325
50129
|
} | {
|
|
50326
50130
|
type: "html";
|
|
50327
50131
|
html: string;
|
|
@@ -50639,6 +50443,22 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50639
50443
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
50640
50444
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
50641
50445
|
}, z.core.$strict>>;
|
|
50446
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
50447
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
50448
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
50449
|
+
host: z.ZodString;
|
|
50450
|
+
cpCode: z.ZodString;
|
|
50451
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
50452
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
50453
|
+
}, z.core.$strict>>;
|
|
50454
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
50455
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
50456
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
50457
|
+
accountName: z.ZodString;
|
|
50458
|
+
container: z.ZodString;
|
|
50459
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
50460
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
50461
|
+
}, z.core.$strict>>;
|
|
50642
50462
|
}, z.core.$strict>], "provider">>>;
|
|
50643
50463
|
}, z.core.$strict>;
|
|
50644
50464
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -50999,13 +50819,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
50999
50819
|
type: z.ZodEnum<{
|
|
51000
50820
|
"rich-caption": "rich-caption";
|
|
51001
50821
|
}>;
|
|
51002
|
-
src: z.
|
|
51003
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51004
|
-
text: z.ZodString;
|
|
51005
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
51006
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
51007
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
51008
|
-
}, z.core.$strict>>>;
|
|
50822
|
+
src: z.ZodString;
|
|
51009
50823
|
font: z.ZodOptional<z.ZodObject<{
|
|
51010
50824
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51011
50825
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -51013,11 +50827,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51013
50827
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51014
50828
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51015
50829
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
51016
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
51017
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51018
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51019
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51020
|
-
}, z.core.$strict>>;
|
|
51021
50830
|
}, z.core.$strict>>;
|
|
51022
50831
|
style: z.ZodOptional<z.ZodObject<{
|
|
51023
50832
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -51063,6 +50872,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51063
50872
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51064
50873
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51065
50874
|
}, z.core.$strict>>;
|
|
50875
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
50876
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
50877
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
50878
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
50879
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
50880
|
+
}, z.core.$strict>>;
|
|
51066
50881
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
51067
50882
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51068
50883
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -51113,13 +50928,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51113
50928
|
down: "down";
|
|
51114
50929
|
}>>;
|
|
51115
50930
|
}, z.core.$strict>>;
|
|
51116
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
51117
|
-
top: "top";
|
|
51118
|
-
bottom: "bottom";
|
|
51119
|
-
center: "center";
|
|
51120
|
-
}>>;
|
|
51121
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51122
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51123
50931
|
}, z.core.$strict>, z.ZodObject<{
|
|
51124
50932
|
type: z.ZodEnum<{
|
|
51125
50933
|
html: "html";
|
|
@@ -52284,15 +52092,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52284
52092
|
speed?: string | number;
|
|
52285
52093
|
} | {
|
|
52286
52094
|
type: "rich-caption";
|
|
52287
|
-
|
|
52288
|
-
maxLines: string | number;
|
|
52289
|
-
src?: string;
|
|
52290
|
-
words?: {
|
|
52291
|
-
text: string;
|
|
52292
|
-
start?: string | number;
|
|
52293
|
-
end?: string | number;
|
|
52294
|
-
confidence?: string | number;
|
|
52295
|
-
}[];
|
|
52095
|
+
src: string;
|
|
52296
52096
|
font?: {
|
|
52297
52097
|
family: string;
|
|
52298
52098
|
size: string | number;
|
|
@@ -52300,11 +52100,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52300
52100
|
color: string;
|
|
52301
52101
|
opacity: string | number;
|
|
52302
52102
|
background?: string;
|
|
52303
|
-
stroke?: {
|
|
52304
|
-
width: string | number;
|
|
52305
|
-
color: string;
|
|
52306
|
-
opacity: string | number;
|
|
52307
|
-
};
|
|
52308
52103
|
};
|
|
52309
52104
|
style?: {
|
|
52310
52105
|
letterSpacing: string | number;
|
|
@@ -52338,6 +52133,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52338
52133
|
borderRadius: string | number;
|
|
52339
52134
|
color?: string;
|
|
52340
52135
|
};
|
|
52136
|
+
border?: {
|
|
52137
|
+
width: string | number;
|
|
52138
|
+
color: string;
|
|
52139
|
+
opacity: string | number;
|
|
52140
|
+
radius: string | number;
|
|
52141
|
+
};
|
|
52341
52142
|
padding?: string | number | {
|
|
52342
52143
|
top: string | number;
|
|
52343
52144
|
right: string | number;
|
|
@@ -52366,7 +52167,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52366
52167
|
speed: string | number;
|
|
52367
52168
|
direction?: "left" | "right" | "up" | "down";
|
|
52368
52169
|
};
|
|
52369
|
-
position?: "top" | "bottom" | "center";
|
|
52370
52170
|
} | {
|
|
52371
52171
|
type: "html";
|
|
52372
52172
|
html: string;
|
|
@@ -52827,15 +52627,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52827
52627
|
speed?: string | number;
|
|
52828
52628
|
} | {
|
|
52829
52629
|
type: "rich-caption";
|
|
52830
|
-
|
|
52831
|
-
maxLines: string | number;
|
|
52832
|
-
src?: string;
|
|
52833
|
-
words?: {
|
|
52834
|
-
text: string;
|
|
52835
|
-
start?: string | number;
|
|
52836
|
-
end?: string | number;
|
|
52837
|
-
confidence?: string | number;
|
|
52838
|
-
}[];
|
|
52630
|
+
src: string;
|
|
52839
52631
|
font?: {
|
|
52840
52632
|
family: string;
|
|
52841
52633
|
size: string | number;
|
|
@@ -52843,11 +52635,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52843
52635
|
color: string;
|
|
52844
52636
|
opacity: string | number;
|
|
52845
52637
|
background?: string;
|
|
52846
|
-
stroke?: {
|
|
52847
|
-
width: string | number;
|
|
52848
|
-
color: string;
|
|
52849
|
-
opacity: string | number;
|
|
52850
|
-
};
|
|
52851
52638
|
};
|
|
52852
52639
|
style?: {
|
|
52853
52640
|
letterSpacing: string | number;
|
|
@@ -52881,6 +52668,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52881
52668
|
borderRadius: string | number;
|
|
52882
52669
|
color?: string;
|
|
52883
52670
|
};
|
|
52671
|
+
border?: {
|
|
52672
|
+
width: string | number;
|
|
52673
|
+
color: string;
|
|
52674
|
+
opacity: string | number;
|
|
52675
|
+
radius: string | number;
|
|
52676
|
+
};
|
|
52884
52677
|
padding?: string | number | {
|
|
52885
52678
|
top: string | number;
|
|
52886
52679
|
right: string | number;
|
|
@@ -52909,7 +52702,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52909
52702
|
speed: string | number;
|
|
52910
52703
|
direction?: "left" | "right" | "up" | "down";
|
|
52911
52704
|
};
|
|
52912
|
-
position?: "top" | "bottom" | "center";
|
|
52913
52705
|
} | {
|
|
52914
52706
|
type: "html";
|
|
52915
52707
|
html: string;
|
|
@@ -53227,6 +53019,22 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53227
53019
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
53228
53020
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
53229
53021
|
}, z.core.$strict>>;
|
|
53022
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
53023
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
53024
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
53025
|
+
host: z.ZodString;
|
|
53026
|
+
cpCode: z.ZodString;
|
|
53027
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
53028
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
53029
|
+
}, z.core.$strict>>;
|
|
53030
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
53031
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
53032
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
53033
|
+
accountName: z.ZodString;
|
|
53034
|
+
container: z.ZodString;
|
|
53035
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
53036
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
53037
|
+
}, z.core.$strict>>;
|
|
53230
53038
|
}, z.core.$strict>], "provider">>>;
|
|
53231
53039
|
}, z.core.$strict>;
|
|
53232
53040
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -53583,13 +53391,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
53583
53391
|
type: z.ZodEnum<{
|
|
53584
53392
|
"rich-caption": "rich-caption";
|
|
53585
53393
|
}>;
|
|
53586
|
-
src: z.
|
|
53587
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
53588
|
-
text: z.ZodString;
|
|
53589
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
53590
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
53591
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
53592
|
-
}, z.core.$strict>>>;
|
|
53394
|
+
src: z.ZodString;
|
|
53593
53395
|
font: z.ZodOptional<z.ZodObject<{
|
|
53594
53396
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
53595
53397
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -53597,11 +53399,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
53597
53399
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
53598
53400
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53599
53401
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
53600
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
53601
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53602
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
53603
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53604
|
-
}, z.core.$strict>>;
|
|
53605
53402
|
}, z.core.$strict>>;
|
|
53606
53403
|
style: z.ZodOptional<z.ZodObject<{
|
|
53607
53404
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -53647,6 +53444,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
53647
53444
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53648
53445
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53649
53446
|
}, z.core.$strict>>;
|
|
53447
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
53448
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53449
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
53450
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53451
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53452
|
+
}, z.core.$strict>>;
|
|
53650
53453
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
53651
53454
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53652
53455
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -53697,13 +53500,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
53697
53500
|
down: "down";
|
|
53698
53501
|
}>>;
|
|
53699
53502
|
}, z.core.$strict>>;
|
|
53700
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
53701
|
-
top: "top";
|
|
53702
|
-
bottom: "bottom";
|
|
53703
|
-
center: "center";
|
|
53704
|
-
}>>;
|
|
53705
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53706
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53707
53503
|
}, z.core.$strict>, z.ZodObject<{
|
|
53708
53504
|
type: z.ZodEnum<{
|
|
53709
53505
|
html: "html";
|
|
@@ -54868,15 +54664,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54868
54664
|
speed?: string | number;
|
|
54869
54665
|
} | {
|
|
54870
54666
|
type: "rich-caption";
|
|
54871
|
-
|
|
54872
|
-
maxLines: string | number;
|
|
54873
|
-
src?: string;
|
|
54874
|
-
words?: {
|
|
54875
|
-
text: string;
|
|
54876
|
-
start?: string | number;
|
|
54877
|
-
end?: string | number;
|
|
54878
|
-
confidence?: string | number;
|
|
54879
|
-
}[];
|
|
54667
|
+
src: string;
|
|
54880
54668
|
font?: {
|
|
54881
54669
|
family: string;
|
|
54882
54670
|
size: string | number;
|
|
@@ -54884,11 +54672,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54884
54672
|
color: string;
|
|
54885
54673
|
opacity: string | number;
|
|
54886
54674
|
background?: string;
|
|
54887
|
-
stroke?: {
|
|
54888
|
-
width: string | number;
|
|
54889
|
-
color: string;
|
|
54890
|
-
opacity: string | number;
|
|
54891
|
-
};
|
|
54892
54675
|
};
|
|
54893
54676
|
style?: {
|
|
54894
54677
|
letterSpacing: string | number;
|
|
@@ -54922,6 +54705,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54922
54705
|
borderRadius: string | number;
|
|
54923
54706
|
color?: string;
|
|
54924
54707
|
};
|
|
54708
|
+
border?: {
|
|
54709
|
+
width: string | number;
|
|
54710
|
+
color: string;
|
|
54711
|
+
opacity: string | number;
|
|
54712
|
+
radius: string | number;
|
|
54713
|
+
};
|
|
54925
54714
|
padding?: string | number | {
|
|
54926
54715
|
top: string | number;
|
|
54927
54716
|
right: string | number;
|
|
@@ -54950,7 +54739,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54950
54739
|
speed: string | number;
|
|
54951
54740
|
direction?: "left" | "right" | "up" | "down";
|
|
54952
54741
|
};
|
|
54953
|
-
position?: "top" | "bottom" | "center";
|
|
54954
54742
|
} | {
|
|
54955
54743
|
type: "html";
|
|
54956
54744
|
html: string;
|
|
@@ -55411,15 +55199,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55411
55199
|
speed?: string | number;
|
|
55412
55200
|
} | {
|
|
55413
55201
|
type: "rich-caption";
|
|
55414
|
-
|
|
55415
|
-
maxLines: string | number;
|
|
55416
|
-
src?: string;
|
|
55417
|
-
words?: {
|
|
55418
|
-
text: string;
|
|
55419
|
-
start?: string | number;
|
|
55420
|
-
end?: string | number;
|
|
55421
|
-
confidence?: string | number;
|
|
55422
|
-
}[];
|
|
55202
|
+
src: string;
|
|
55423
55203
|
font?: {
|
|
55424
55204
|
family: string;
|
|
55425
55205
|
size: string | number;
|
|
@@ -55427,11 +55207,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55427
55207
|
color: string;
|
|
55428
55208
|
opacity: string | number;
|
|
55429
55209
|
background?: string;
|
|
55430
|
-
stroke?: {
|
|
55431
|
-
width: string | number;
|
|
55432
|
-
color: string;
|
|
55433
|
-
opacity: string | number;
|
|
55434
|
-
};
|
|
55435
55210
|
};
|
|
55436
55211
|
style?: {
|
|
55437
55212
|
letterSpacing: string | number;
|
|
@@ -55465,6 +55240,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55465
55240
|
borderRadius: string | number;
|
|
55466
55241
|
color?: string;
|
|
55467
55242
|
};
|
|
55243
|
+
border?: {
|
|
55244
|
+
width: string | number;
|
|
55245
|
+
color: string;
|
|
55246
|
+
opacity: string | number;
|
|
55247
|
+
radius: string | number;
|
|
55248
|
+
};
|
|
55468
55249
|
padding?: string | number | {
|
|
55469
55250
|
top: string | number;
|
|
55470
55251
|
right: string | number;
|
|
@@ -55493,7 +55274,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55493
55274
|
speed: string | number;
|
|
55494
55275
|
direction?: "left" | "right" | "up" | "down";
|
|
55495
55276
|
};
|
|
55496
|
-
position?: "top" | "bottom" | "center";
|
|
55497
55277
|
} | {
|
|
55498
55278
|
type: "html";
|
|
55499
55279
|
html: string;
|
|
@@ -55811,6 +55591,22 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55811
55591
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
55812
55592
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
55813
55593
|
}, z.core.$strict>>;
|
|
55594
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
55595
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
55596
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
55597
|
+
host: z.ZodString;
|
|
55598
|
+
cpCode: z.ZodString;
|
|
55599
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
55600
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
55601
|
+
}, z.core.$strict>>;
|
|
55602
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
55603
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
55604
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
55605
|
+
accountName: z.ZodString;
|
|
55606
|
+
container: z.ZodString;
|
|
55607
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
55608
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
55609
|
+
}, z.core.$strict>>;
|
|
55814
55610
|
}, z.core.$strict>], "provider">>>;
|
|
55815
55611
|
}, z.core.$strict>;
|
|
55816
55612
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -56166,13 +55962,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56166
55962
|
type: z.ZodEnum<{
|
|
56167
55963
|
"rich-caption": "rich-caption";
|
|
56168
55964
|
}>;
|
|
56169
|
-
src: z.
|
|
56170
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
56171
|
-
text: z.ZodString;
|
|
56172
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
56173
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
56174
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
56175
|
-
}, z.core.$strict>>>;
|
|
55965
|
+
src: z.ZodString;
|
|
56176
55966
|
font: z.ZodOptional<z.ZodObject<{
|
|
56177
55967
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
56178
55968
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -56180,11 +55970,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56180
55970
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56181
55971
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56182
55972
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56183
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
56184
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56185
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56186
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56187
|
-
}, z.core.$strict>>;
|
|
56188
55973
|
}, z.core.$strict>>;
|
|
56189
55974
|
style: z.ZodOptional<z.ZodObject<{
|
|
56190
55975
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -56230,6 +56015,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56230
56015
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56231
56016
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56232
56017
|
}, z.core.$strict>>;
|
|
56018
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
56019
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56020
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56021
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56022
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56023
|
+
}, z.core.$strict>>;
|
|
56233
56024
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
56234
56025
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56235
56026
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -56280,13 +56071,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56280
56071
|
down: "down";
|
|
56281
56072
|
}>>;
|
|
56282
56073
|
}, z.core.$strict>>;
|
|
56283
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
56284
|
-
top: "top";
|
|
56285
|
-
bottom: "bottom";
|
|
56286
|
-
center: "center";
|
|
56287
|
-
}>>;
|
|
56288
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56289
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56290
56074
|
}, z.core.$strict>, z.ZodObject<{
|
|
56291
56075
|
type: z.ZodEnum<{
|
|
56292
56076
|
html: "html";
|
|
@@ -57451,15 +57235,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57451
57235
|
speed?: string | number;
|
|
57452
57236
|
} | {
|
|
57453
57237
|
type: "rich-caption";
|
|
57454
|
-
|
|
57455
|
-
maxLines: string | number;
|
|
57456
|
-
src?: string;
|
|
57457
|
-
words?: {
|
|
57458
|
-
text: string;
|
|
57459
|
-
start?: string | number;
|
|
57460
|
-
end?: string | number;
|
|
57461
|
-
confidence?: string | number;
|
|
57462
|
-
}[];
|
|
57238
|
+
src: string;
|
|
57463
57239
|
font?: {
|
|
57464
57240
|
family: string;
|
|
57465
57241
|
size: string | number;
|
|
@@ -57467,11 +57243,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57467
57243
|
color: string;
|
|
57468
57244
|
opacity: string | number;
|
|
57469
57245
|
background?: string;
|
|
57470
|
-
stroke?: {
|
|
57471
|
-
width: string | number;
|
|
57472
|
-
color: string;
|
|
57473
|
-
opacity: string | number;
|
|
57474
|
-
};
|
|
57475
57246
|
};
|
|
57476
57247
|
style?: {
|
|
57477
57248
|
letterSpacing: string | number;
|
|
@@ -57505,6 +57276,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57505
57276
|
borderRadius: string | number;
|
|
57506
57277
|
color?: string;
|
|
57507
57278
|
};
|
|
57279
|
+
border?: {
|
|
57280
|
+
width: string | number;
|
|
57281
|
+
color: string;
|
|
57282
|
+
opacity: string | number;
|
|
57283
|
+
radius: string | number;
|
|
57284
|
+
};
|
|
57508
57285
|
padding?: string | number | {
|
|
57509
57286
|
top: string | number;
|
|
57510
57287
|
right: string | number;
|
|
@@ -57533,7 +57310,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57533
57310
|
speed: string | number;
|
|
57534
57311
|
direction?: "left" | "right" | "up" | "down";
|
|
57535
57312
|
};
|
|
57536
|
-
position?: "top" | "bottom" | "center";
|
|
57537
57313
|
} | {
|
|
57538
57314
|
type: "html";
|
|
57539
57315
|
html: string;
|
|
@@ -57994,15 +57770,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57994
57770
|
speed?: string | number;
|
|
57995
57771
|
} | {
|
|
57996
57772
|
type: "rich-caption";
|
|
57997
|
-
|
|
57998
|
-
maxLines: string | number;
|
|
57999
|
-
src?: string;
|
|
58000
|
-
words?: {
|
|
58001
|
-
text: string;
|
|
58002
|
-
start?: string | number;
|
|
58003
|
-
end?: string | number;
|
|
58004
|
-
confidence?: string | number;
|
|
58005
|
-
}[];
|
|
57773
|
+
src: string;
|
|
58006
57774
|
font?: {
|
|
58007
57775
|
family: string;
|
|
58008
57776
|
size: string | number;
|
|
@@ -58010,11 +57778,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58010
57778
|
color: string;
|
|
58011
57779
|
opacity: string | number;
|
|
58012
57780
|
background?: string;
|
|
58013
|
-
stroke?: {
|
|
58014
|
-
width: string | number;
|
|
58015
|
-
color: string;
|
|
58016
|
-
opacity: string | number;
|
|
58017
|
-
};
|
|
58018
57781
|
};
|
|
58019
57782
|
style?: {
|
|
58020
57783
|
letterSpacing: string | number;
|
|
@@ -58048,6 +57811,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58048
57811
|
borderRadius: string | number;
|
|
58049
57812
|
color?: string;
|
|
58050
57813
|
};
|
|
57814
|
+
border?: {
|
|
57815
|
+
width: string | number;
|
|
57816
|
+
color: string;
|
|
57817
|
+
opacity: string | number;
|
|
57818
|
+
radius: string | number;
|
|
57819
|
+
};
|
|
58051
57820
|
padding?: string | number | {
|
|
58052
57821
|
top: string | number;
|
|
58053
57822
|
right: string | number;
|
|
@@ -58076,7 +57845,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58076
57845
|
speed: string | number;
|
|
58077
57846
|
direction?: "left" | "right" | "up" | "down";
|
|
58078
57847
|
};
|
|
58079
|
-
position?: "top" | "bottom" | "center";
|
|
58080
57848
|
} | {
|
|
58081
57849
|
type: "html";
|
|
58082
57850
|
html: string;
|
|
@@ -58394,6 +58162,22 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58394
58162
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
58395
58163
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
58396
58164
|
}, z.core.$strict>>;
|
|
58165
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
58166
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
58167
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
58168
|
+
host: z.ZodString;
|
|
58169
|
+
cpCode: z.ZodString;
|
|
58170
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
58171
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
58172
|
+
}, z.core.$strict>>;
|
|
58173
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
58174
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
58175
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
58176
|
+
accountName: z.ZodString;
|
|
58177
|
+
container: z.ZodString;
|
|
58178
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
58179
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
58180
|
+
}, z.core.$strict>>;
|
|
58397
58181
|
}, z.core.$strict>], "provider">>>;
|
|
58398
58182
|
}, z.core.$strict>;
|
|
58399
58183
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -58796,13 +58580,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
58796
58580
|
type: z.ZodEnum<{
|
|
58797
58581
|
"rich-caption": "rich-caption";
|
|
58798
58582
|
}>;
|
|
58799
|
-
src: z.
|
|
58800
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
58801
|
-
text: z.ZodString;
|
|
58802
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
58803
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
58804
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
58805
|
-
}, z.core.$strict>>>;
|
|
58583
|
+
src: z.ZodString;
|
|
58806
58584
|
font: z.ZodOptional<z.ZodObject<{
|
|
58807
58585
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
58808
58586
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -58810,11 +58588,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
58810
58588
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
58811
58589
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58812
58590
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
58813
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
58814
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58815
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
58816
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58817
|
-
}, z.core.$strict>>;
|
|
58818
58591
|
}, z.core.$strict>>;
|
|
58819
58592
|
style: z.ZodOptional<z.ZodObject<{
|
|
58820
58593
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -58860,6 +58633,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
58860
58633
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58861
58634
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58862
58635
|
}, z.core.$strict>>;
|
|
58636
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
58637
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58638
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
58639
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58640
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58641
|
+
}, z.core.$strict>>;
|
|
58863
58642
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
58864
58643
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58865
58644
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -58910,13 +58689,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
58910
58689
|
down: "down";
|
|
58911
58690
|
}>>;
|
|
58912
58691
|
}, z.core.$strict>>;
|
|
58913
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
58914
|
-
top: "top";
|
|
58915
|
-
bottom: "bottom";
|
|
58916
|
-
center: "center";
|
|
58917
|
-
}>>;
|
|
58918
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58919
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58920
58692
|
}, z.core.$strict>, z.ZodObject<{
|
|
58921
58693
|
type: z.ZodEnum<{
|
|
58922
58694
|
html: "html";
|
|
@@ -60081,15 +59853,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60081
59853
|
speed?: string | number;
|
|
60082
59854
|
} | {
|
|
60083
59855
|
type: "rich-caption";
|
|
60084
|
-
|
|
60085
|
-
maxLines: string | number;
|
|
60086
|
-
src?: string;
|
|
60087
|
-
words?: {
|
|
60088
|
-
text: string;
|
|
60089
|
-
start?: string | number;
|
|
60090
|
-
end?: string | number;
|
|
60091
|
-
confidence?: string | number;
|
|
60092
|
-
}[];
|
|
59856
|
+
src: string;
|
|
60093
59857
|
font?: {
|
|
60094
59858
|
family: string;
|
|
60095
59859
|
size: string | number;
|
|
@@ -60097,11 +59861,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60097
59861
|
color: string;
|
|
60098
59862
|
opacity: string | number;
|
|
60099
59863
|
background?: string;
|
|
60100
|
-
stroke?: {
|
|
60101
|
-
width: string | number;
|
|
60102
|
-
color: string;
|
|
60103
|
-
opacity: string | number;
|
|
60104
|
-
};
|
|
60105
59864
|
};
|
|
60106
59865
|
style?: {
|
|
60107
59866
|
letterSpacing: string | number;
|
|
@@ -60135,6 +59894,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60135
59894
|
borderRadius: string | number;
|
|
60136
59895
|
color?: string;
|
|
60137
59896
|
};
|
|
59897
|
+
border?: {
|
|
59898
|
+
width: string | number;
|
|
59899
|
+
color: string;
|
|
59900
|
+
opacity: string | number;
|
|
59901
|
+
radius: string | number;
|
|
59902
|
+
};
|
|
60138
59903
|
padding?: string | number | {
|
|
60139
59904
|
top: string | number;
|
|
60140
59905
|
right: string | number;
|
|
@@ -60163,7 +59928,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60163
59928
|
speed: string | number;
|
|
60164
59929
|
direction?: "left" | "right" | "up" | "down";
|
|
60165
59930
|
};
|
|
60166
|
-
position?: "top" | "bottom" | "center";
|
|
60167
59931
|
} | {
|
|
60168
59932
|
type: "html";
|
|
60169
59933
|
html: string;
|
|
@@ -60624,15 +60388,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60624
60388
|
speed?: string | number;
|
|
60625
60389
|
} | {
|
|
60626
60390
|
type: "rich-caption";
|
|
60627
|
-
|
|
60628
|
-
maxLines: string | number;
|
|
60629
|
-
src?: string;
|
|
60630
|
-
words?: {
|
|
60631
|
-
text: string;
|
|
60632
|
-
start?: string | number;
|
|
60633
|
-
end?: string | number;
|
|
60634
|
-
confidence?: string | number;
|
|
60635
|
-
}[];
|
|
60391
|
+
src: string;
|
|
60636
60392
|
font?: {
|
|
60637
60393
|
family: string;
|
|
60638
60394
|
size: string | number;
|
|
@@ -60640,11 +60396,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60640
60396
|
color: string;
|
|
60641
60397
|
opacity: string | number;
|
|
60642
60398
|
background?: string;
|
|
60643
|
-
stroke?: {
|
|
60644
|
-
width: string | number;
|
|
60645
|
-
color: string;
|
|
60646
|
-
opacity: string | number;
|
|
60647
|
-
};
|
|
60648
60399
|
};
|
|
60649
60400
|
style?: {
|
|
60650
60401
|
letterSpacing: string | number;
|
|
@@ -60678,6 +60429,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60678
60429
|
borderRadius: string | number;
|
|
60679
60430
|
color?: string;
|
|
60680
60431
|
};
|
|
60432
|
+
border?: {
|
|
60433
|
+
width: string | number;
|
|
60434
|
+
color: string;
|
|
60435
|
+
opacity: string | number;
|
|
60436
|
+
radius: string | number;
|
|
60437
|
+
};
|
|
60681
60438
|
padding?: string | number | {
|
|
60682
60439
|
top: string | number;
|
|
60683
60440
|
right: string | number;
|
|
@@ -60706,7 +60463,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60706
60463
|
speed: string | number;
|
|
60707
60464
|
direction?: "left" | "right" | "up" | "down";
|
|
60708
60465
|
};
|
|
60709
|
-
position?: "top" | "bottom" | "center";
|
|
60710
60466
|
} | {
|
|
60711
60467
|
type: "html";
|
|
60712
60468
|
html: string;
|
|
@@ -61024,6 +60780,22 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61024
60780
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
61025
60781
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
61026
60782
|
}, z.core.$strict>>;
|
|
60783
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
60784
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
60785
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
60786
|
+
host: z.ZodString;
|
|
60787
|
+
cpCode: z.ZodString;
|
|
60788
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
60789
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
60790
|
+
}, z.core.$strict>>;
|
|
60791
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
60792
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
60793
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
60794
|
+
accountName: z.ZodString;
|
|
60795
|
+
container: z.ZodString;
|
|
60796
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
60797
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
60798
|
+
}, z.core.$strict>>;
|
|
61027
60799
|
}, z.core.$strict>], "provider">>>;
|
|
61028
60800
|
}, z.core.$strict>;
|
|
61029
60801
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -61405,13 +61177,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61405
61177
|
type: z.ZodEnum<{
|
|
61406
61178
|
"rich-caption": "rich-caption";
|
|
61407
61179
|
}>;
|
|
61408
|
-
src: z.
|
|
61409
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
61410
|
-
text: z.ZodString;
|
|
61411
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
61412
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
61413
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
61414
|
-
}, z.core.$strict>>>;
|
|
61180
|
+
src: z.ZodString;
|
|
61415
61181
|
font: z.ZodOptional<z.ZodObject<{
|
|
61416
61182
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
61417
61183
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -61419,11 +61185,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61419
61185
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
61420
61186
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61421
61187
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
61422
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
61423
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61424
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
61425
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61426
|
-
}, z.core.$strict>>;
|
|
61427
61188
|
}, z.core.$strict>>;
|
|
61428
61189
|
style: z.ZodOptional<z.ZodObject<{
|
|
61429
61190
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -61469,6 +61230,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61469
61230
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61470
61231
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61471
61232
|
}, z.core.$strict>>;
|
|
61233
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
61234
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61235
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
61236
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61237
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61238
|
+
}, z.core.$strict>>;
|
|
61472
61239
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
61473
61240
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61474
61241
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -61519,13 +61286,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61519
61286
|
down: "down";
|
|
61520
61287
|
}>>;
|
|
61521
61288
|
}, z.core.$strict>>;
|
|
61522
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
61523
|
-
top: "top";
|
|
61524
|
-
bottom: "bottom";
|
|
61525
|
-
center: "center";
|
|
61526
|
-
}>>;
|
|
61527
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61528
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61529
61289
|
}, z.core.$strict>, z.ZodObject<{
|
|
61530
61290
|
type: z.ZodEnum<{
|
|
61531
61291
|
html: "html";
|
|
@@ -62690,15 +62450,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
62690
62450
|
speed?: string | number;
|
|
62691
62451
|
} | {
|
|
62692
62452
|
type: "rich-caption";
|
|
62693
|
-
|
|
62694
|
-
maxLines: string | number;
|
|
62695
|
-
src?: string;
|
|
62696
|
-
words?: {
|
|
62697
|
-
text: string;
|
|
62698
|
-
start?: string | number;
|
|
62699
|
-
end?: string | number;
|
|
62700
|
-
confidence?: string | number;
|
|
62701
|
-
}[];
|
|
62453
|
+
src: string;
|
|
62702
62454
|
font?: {
|
|
62703
62455
|
family: string;
|
|
62704
62456
|
size: string | number;
|
|
@@ -62706,11 +62458,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
62706
62458
|
color: string;
|
|
62707
62459
|
opacity: string | number;
|
|
62708
62460
|
background?: string;
|
|
62709
|
-
stroke?: {
|
|
62710
|
-
width: string | number;
|
|
62711
|
-
color: string;
|
|
62712
|
-
opacity: string | number;
|
|
62713
|
-
};
|
|
62714
62461
|
};
|
|
62715
62462
|
style?: {
|
|
62716
62463
|
letterSpacing: string | number;
|
|
@@ -62744,6 +62491,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
62744
62491
|
borderRadius: string | number;
|
|
62745
62492
|
color?: string;
|
|
62746
62493
|
};
|
|
62494
|
+
border?: {
|
|
62495
|
+
width: string | number;
|
|
62496
|
+
color: string;
|
|
62497
|
+
opacity: string | number;
|
|
62498
|
+
radius: string | number;
|
|
62499
|
+
};
|
|
62747
62500
|
padding?: string | number | {
|
|
62748
62501
|
top: string | number;
|
|
62749
62502
|
right: string | number;
|
|
@@ -62772,7 +62525,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
62772
62525
|
speed: string | number;
|
|
62773
62526
|
direction?: "left" | "right" | "up" | "down";
|
|
62774
62527
|
};
|
|
62775
|
-
position?: "top" | "bottom" | "center";
|
|
62776
62528
|
} | {
|
|
62777
62529
|
type: "html";
|
|
62778
62530
|
html: string;
|
|
@@ -63233,15 +62985,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63233
62985
|
speed?: string | number;
|
|
63234
62986
|
} | {
|
|
63235
62987
|
type: "rich-caption";
|
|
63236
|
-
|
|
63237
|
-
maxLines: string | number;
|
|
63238
|
-
src?: string;
|
|
63239
|
-
words?: {
|
|
63240
|
-
text: string;
|
|
63241
|
-
start?: string | number;
|
|
63242
|
-
end?: string | number;
|
|
63243
|
-
confidence?: string | number;
|
|
63244
|
-
}[];
|
|
62988
|
+
src: string;
|
|
63245
62989
|
font?: {
|
|
63246
62990
|
family: string;
|
|
63247
62991
|
size: string | number;
|
|
@@ -63249,11 +62993,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63249
62993
|
color: string;
|
|
63250
62994
|
opacity: string | number;
|
|
63251
62995
|
background?: string;
|
|
63252
|
-
stroke?: {
|
|
63253
|
-
width: string | number;
|
|
63254
|
-
color: string;
|
|
63255
|
-
opacity: string | number;
|
|
63256
|
-
};
|
|
63257
62996
|
};
|
|
63258
62997
|
style?: {
|
|
63259
62998
|
letterSpacing: string | number;
|
|
@@ -63287,6 +63026,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63287
63026
|
borderRadius: string | number;
|
|
63288
63027
|
color?: string;
|
|
63289
63028
|
};
|
|
63029
|
+
border?: {
|
|
63030
|
+
width: string | number;
|
|
63031
|
+
color: string;
|
|
63032
|
+
opacity: string | number;
|
|
63033
|
+
radius: string | number;
|
|
63034
|
+
};
|
|
63290
63035
|
padding?: string | number | {
|
|
63291
63036
|
top: string | number;
|
|
63292
63037
|
right: string | number;
|
|
@@ -63315,7 +63060,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63315
63060
|
speed: string | number;
|
|
63316
63061
|
direction?: "left" | "right" | "up" | "down";
|
|
63317
63062
|
};
|
|
63318
|
-
position?: "top" | "bottom" | "center";
|
|
63319
63063
|
} | {
|
|
63320
63064
|
type: "html";
|
|
63321
63065
|
html: string;
|
|
@@ -63633,6 +63377,22 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63633
63377
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
63634
63378
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
63635
63379
|
}, z.core.$strict>>;
|
|
63380
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
63381
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
63382
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
63383
|
+
host: z.ZodString;
|
|
63384
|
+
cpCode: z.ZodString;
|
|
63385
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
63386
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
63387
|
+
}, z.core.$strict>>;
|
|
63388
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
63389
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
63390
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
63391
|
+
accountName: z.ZodString;
|
|
63392
|
+
container: z.ZodString;
|
|
63393
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
63394
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
63395
|
+
}, z.core.$strict>>;
|
|
63636
63396
|
}, z.core.$strict>], "provider">>>;
|
|
63637
63397
|
}, z.core.$strict>;
|
|
63638
63398
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -64029,13 +63789,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64029
63789
|
type: z.ZodEnum<{
|
|
64030
63790
|
"rich-caption": "rich-caption";
|
|
64031
63791
|
}>;
|
|
64032
|
-
src: z.
|
|
64033
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
64034
|
-
text: z.ZodString;
|
|
64035
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
64036
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
64037
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
64038
|
-
}, z.core.$strict>>>;
|
|
63792
|
+
src: z.ZodString;
|
|
64039
63793
|
font: z.ZodOptional<z.ZodObject<{
|
|
64040
63794
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
64041
63795
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -64043,11 +63797,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64043
63797
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64044
63798
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64045
63799
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
64046
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
64047
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64048
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64049
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64050
|
-
}, z.core.$strict>>;
|
|
64051
63800
|
}, z.core.$strict>>;
|
|
64052
63801
|
style: z.ZodOptional<z.ZodObject<{
|
|
64053
63802
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -64093,6 +63842,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64093
63842
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64094
63843
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64095
63844
|
}, z.core.$strict>>;
|
|
63845
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
63846
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
63847
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
63848
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
63849
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
63850
|
+
}, z.core.$strict>>;
|
|
64096
63851
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
64097
63852
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64098
63853
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -64143,13 +63898,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64143
63898
|
down: "down";
|
|
64144
63899
|
}>>;
|
|
64145
63900
|
}, z.core.$strict>>;
|
|
64146
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
64147
|
-
top: "top";
|
|
64148
|
-
bottom: "bottom";
|
|
64149
|
-
center: "center";
|
|
64150
|
-
}>>;
|
|
64151
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64152
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64153
63901
|
}, z.core.$strict>, z.ZodObject<{
|
|
64154
63902
|
type: z.ZodEnum<{
|
|
64155
63903
|
html: "html";
|
|
@@ -65314,15 +65062,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65314
65062
|
speed?: string | number;
|
|
65315
65063
|
} | {
|
|
65316
65064
|
type: "rich-caption";
|
|
65317
|
-
|
|
65318
|
-
maxLines: string | number;
|
|
65319
|
-
src?: string;
|
|
65320
|
-
words?: {
|
|
65321
|
-
text: string;
|
|
65322
|
-
start?: string | number;
|
|
65323
|
-
end?: string | number;
|
|
65324
|
-
confidence?: string | number;
|
|
65325
|
-
}[];
|
|
65065
|
+
src: string;
|
|
65326
65066
|
font?: {
|
|
65327
65067
|
family: string;
|
|
65328
65068
|
size: string | number;
|
|
@@ -65330,11 +65070,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65330
65070
|
color: string;
|
|
65331
65071
|
opacity: string | number;
|
|
65332
65072
|
background?: string;
|
|
65333
|
-
stroke?: {
|
|
65334
|
-
width: string | number;
|
|
65335
|
-
color: string;
|
|
65336
|
-
opacity: string | number;
|
|
65337
|
-
};
|
|
65338
65073
|
};
|
|
65339
65074
|
style?: {
|
|
65340
65075
|
letterSpacing: string | number;
|
|
@@ -65368,6 +65103,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65368
65103
|
borderRadius: string | number;
|
|
65369
65104
|
color?: string;
|
|
65370
65105
|
};
|
|
65106
|
+
border?: {
|
|
65107
|
+
width: string | number;
|
|
65108
|
+
color: string;
|
|
65109
|
+
opacity: string | number;
|
|
65110
|
+
radius: string | number;
|
|
65111
|
+
};
|
|
65371
65112
|
padding?: string | number | {
|
|
65372
65113
|
top: string | number;
|
|
65373
65114
|
right: string | number;
|
|
@@ -65396,7 +65137,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65396
65137
|
speed: string | number;
|
|
65397
65138
|
direction?: "left" | "right" | "up" | "down";
|
|
65398
65139
|
};
|
|
65399
|
-
position?: "top" | "bottom" | "center";
|
|
65400
65140
|
} | {
|
|
65401
65141
|
type: "html";
|
|
65402
65142
|
html: string;
|
|
@@ -65857,15 +65597,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65857
65597
|
speed?: string | number;
|
|
65858
65598
|
} | {
|
|
65859
65599
|
type: "rich-caption";
|
|
65860
|
-
|
|
65861
|
-
maxLines: string | number;
|
|
65862
|
-
src?: string;
|
|
65863
|
-
words?: {
|
|
65864
|
-
text: string;
|
|
65865
|
-
start?: string | number;
|
|
65866
|
-
end?: string | number;
|
|
65867
|
-
confidence?: string | number;
|
|
65868
|
-
}[];
|
|
65600
|
+
src: string;
|
|
65869
65601
|
font?: {
|
|
65870
65602
|
family: string;
|
|
65871
65603
|
size: string | number;
|
|
@@ -65873,11 +65605,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65873
65605
|
color: string;
|
|
65874
65606
|
opacity: string | number;
|
|
65875
65607
|
background?: string;
|
|
65876
|
-
stroke?: {
|
|
65877
|
-
width: string | number;
|
|
65878
|
-
color: string;
|
|
65879
|
-
opacity: string | number;
|
|
65880
|
-
};
|
|
65881
65608
|
};
|
|
65882
65609
|
style?: {
|
|
65883
65610
|
letterSpacing: string | number;
|
|
@@ -65911,6 +65638,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65911
65638
|
borderRadius: string | number;
|
|
65912
65639
|
color?: string;
|
|
65913
65640
|
};
|
|
65641
|
+
border?: {
|
|
65642
|
+
width: string | number;
|
|
65643
|
+
color: string;
|
|
65644
|
+
opacity: string | number;
|
|
65645
|
+
radius: string | number;
|
|
65646
|
+
};
|
|
65914
65647
|
padding?: string | number | {
|
|
65915
65648
|
top: string | number;
|
|
65916
65649
|
right: string | number;
|
|
@@ -65939,7 +65672,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65939
65672
|
speed: string | number;
|
|
65940
65673
|
direction?: "left" | "right" | "up" | "down";
|
|
65941
65674
|
};
|
|
65942
|
-
position?: "top" | "bottom" | "center";
|
|
65943
65675
|
} | {
|
|
65944
65676
|
type: "html";
|
|
65945
65677
|
html: string;
|
|
@@ -66257,6 +65989,22 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66257
65989
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
66258
65990
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
66259
65991
|
}, z.core.$strict>>;
|
|
65992
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
65993
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
65994
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
65995
|
+
host: z.ZodString;
|
|
65996
|
+
cpCode: z.ZodString;
|
|
65997
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
65998
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
65999
|
+
}, z.core.$strict>>;
|
|
66000
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
66001
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
66002
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
66003
|
+
accountName: z.ZodString;
|
|
66004
|
+
container: z.ZodString;
|
|
66005
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
66006
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
66007
|
+
}, z.core.$strict>>;
|
|
66260
66008
|
}, z.core.$strict>], "provider">>>;
|
|
66261
66009
|
}, z.core.$strict>;
|
|
66262
66010
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -66615,13 +66363,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
66615
66363
|
type: z.ZodEnum<{
|
|
66616
66364
|
"rich-caption": "rich-caption";
|
|
66617
66365
|
}>;
|
|
66618
|
-
src: z.
|
|
66619
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
66620
|
-
text: z.ZodString;
|
|
66621
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
66622
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
66623
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
66624
|
-
}, z.core.$strict>>>;
|
|
66366
|
+
src: z.ZodString;
|
|
66625
66367
|
font: z.ZodOptional<z.ZodObject<{
|
|
66626
66368
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
66627
66369
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -66629,11 +66371,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
66629
66371
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
66630
66372
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66631
66373
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
66632
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
66633
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66634
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
66635
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66636
|
-
}, z.core.$strict>>;
|
|
66637
66374
|
}, z.core.$strict>>;
|
|
66638
66375
|
style: z.ZodOptional<z.ZodObject<{
|
|
66639
66376
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -66679,6 +66416,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
66679
66416
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66680
66417
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66681
66418
|
}, z.core.$strict>>;
|
|
66419
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
66420
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66421
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
66422
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66423
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66424
|
+
}, z.core.$strict>>;
|
|
66682
66425
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
66683
66426
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66684
66427
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -66729,13 +66472,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
66729
66472
|
down: "down";
|
|
66730
66473
|
}>>;
|
|
66731
66474
|
}, z.core.$strict>>;
|
|
66732
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
66733
|
-
top: "top";
|
|
66734
|
-
bottom: "bottom";
|
|
66735
|
-
center: "center";
|
|
66736
|
-
}>>;
|
|
66737
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66738
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66739
66475
|
}, z.core.$strict>, z.ZodObject<{
|
|
66740
66476
|
type: z.ZodEnum<{
|
|
66741
66477
|
html: "html";
|
|
@@ -67900,15 +67636,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67900
67636
|
speed?: string | number;
|
|
67901
67637
|
} | {
|
|
67902
67638
|
type: "rich-caption";
|
|
67903
|
-
|
|
67904
|
-
maxLines: string | number;
|
|
67905
|
-
src?: string;
|
|
67906
|
-
words?: {
|
|
67907
|
-
text: string;
|
|
67908
|
-
start?: string | number;
|
|
67909
|
-
end?: string | number;
|
|
67910
|
-
confidence?: string | number;
|
|
67911
|
-
}[];
|
|
67639
|
+
src: string;
|
|
67912
67640
|
font?: {
|
|
67913
67641
|
family: string;
|
|
67914
67642
|
size: string | number;
|
|
@@ -67916,11 +67644,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67916
67644
|
color: string;
|
|
67917
67645
|
opacity: string | number;
|
|
67918
67646
|
background?: string;
|
|
67919
|
-
stroke?: {
|
|
67920
|
-
width: string | number;
|
|
67921
|
-
color: string;
|
|
67922
|
-
opacity: string | number;
|
|
67923
|
-
};
|
|
67924
67647
|
};
|
|
67925
67648
|
style?: {
|
|
67926
67649
|
letterSpacing: string | number;
|
|
@@ -67954,6 +67677,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67954
67677
|
borderRadius: string | number;
|
|
67955
67678
|
color?: string;
|
|
67956
67679
|
};
|
|
67680
|
+
border?: {
|
|
67681
|
+
width: string | number;
|
|
67682
|
+
color: string;
|
|
67683
|
+
opacity: string | number;
|
|
67684
|
+
radius: string | number;
|
|
67685
|
+
};
|
|
67957
67686
|
padding?: string | number | {
|
|
67958
67687
|
top: string | number;
|
|
67959
67688
|
right: string | number;
|
|
@@ -67982,7 +67711,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67982
67711
|
speed: string | number;
|
|
67983
67712
|
direction?: "left" | "right" | "up" | "down";
|
|
67984
67713
|
};
|
|
67985
|
-
position?: "top" | "bottom" | "center";
|
|
67986
67714
|
} | {
|
|
67987
67715
|
type: "html";
|
|
67988
67716
|
html: string;
|
|
@@ -68443,15 +68171,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68443
68171
|
speed?: string | number;
|
|
68444
68172
|
} | {
|
|
68445
68173
|
type: "rich-caption";
|
|
68446
|
-
|
|
68447
|
-
maxLines: string | number;
|
|
68448
|
-
src?: string;
|
|
68449
|
-
words?: {
|
|
68450
|
-
text: string;
|
|
68451
|
-
start?: string | number;
|
|
68452
|
-
end?: string | number;
|
|
68453
|
-
confidence?: string | number;
|
|
68454
|
-
}[];
|
|
68174
|
+
src: string;
|
|
68455
68175
|
font?: {
|
|
68456
68176
|
family: string;
|
|
68457
68177
|
size: string | number;
|
|
@@ -68459,11 +68179,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68459
68179
|
color: string;
|
|
68460
68180
|
opacity: string | number;
|
|
68461
68181
|
background?: string;
|
|
68462
|
-
stroke?: {
|
|
68463
|
-
width: string | number;
|
|
68464
|
-
color: string;
|
|
68465
|
-
opacity: string | number;
|
|
68466
|
-
};
|
|
68467
68182
|
};
|
|
68468
68183
|
style?: {
|
|
68469
68184
|
letterSpacing: string | number;
|
|
@@ -68497,6 +68212,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68497
68212
|
borderRadius: string | number;
|
|
68498
68213
|
color?: string;
|
|
68499
68214
|
};
|
|
68215
|
+
border?: {
|
|
68216
|
+
width: string | number;
|
|
68217
|
+
color: string;
|
|
68218
|
+
opacity: string | number;
|
|
68219
|
+
radius: string | number;
|
|
68220
|
+
};
|
|
68500
68221
|
padding?: string | number | {
|
|
68501
68222
|
top: string | number;
|
|
68502
68223
|
right: string | number;
|
|
@@ -68525,7 +68246,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68525
68246
|
speed: string | number;
|
|
68526
68247
|
direction?: "left" | "right" | "up" | "down";
|
|
68527
68248
|
};
|
|
68528
|
-
position?: "top" | "bottom" | "center";
|
|
68529
68249
|
} | {
|
|
68530
68250
|
type: "html";
|
|
68531
68251
|
html: string;
|
|
@@ -68843,6 +68563,22 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68843
68563
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
68844
68564
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
68845
68565
|
}, z.core.$strict>>;
|
|
68566
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
68567
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
68568
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
68569
|
+
host: z.ZodString;
|
|
68570
|
+
cpCode: z.ZodString;
|
|
68571
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
68572
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
68573
|
+
}, z.core.$strict>>;
|
|
68574
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
68575
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
68576
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
68577
|
+
accountName: z.ZodString;
|
|
68578
|
+
container: z.ZodString;
|
|
68579
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
68580
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
68581
|
+
}, z.core.$strict>>;
|
|
68846
68582
|
}, z.core.$strict>], "provider">>>;
|
|
68847
68583
|
}, z.core.$strict>;
|
|
68848
68584
|
merge: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -69068,6 +68804,22 @@ export declare const postServeAssetRequest: z.ZodObject<{
|
|
|
69068
68804
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
69069
68805
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
69070
68806
|
}, z.core.$strict>>;
|
|
68807
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
68808
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
68809
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
68810
|
+
host: z.ZodString;
|
|
68811
|
+
cpCode: z.ZodString;
|
|
68812
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
68813
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
68814
|
+
}, z.core.$strict>>;
|
|
68815
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
68816
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
68817
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
68818
|
+
accountName: z.ZodString;
|
|
68819
|
+
container: z.ZodString;
|
|
68820
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
68821
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
68822
|
+
}, z.core.$strict>>;
|
|
69071
68823
|
}, z.core.$strict>], "provider">>;
|
|
69072
68824
|
}, z.core.$strict>;
|
|
69073
68825
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -69359,6 +69111,22 @@ export declare const postSourceRequest: z.ZodObject<{
|
|
|
69359
69111
|
disableStitch: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
69360
69112
|
disableComment: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
69361
69113
|
}, z.core.$strict>>;
|
|
69114
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
69115
|
+
provider: z.ZodLiteral<"akamai-netstorage">;
|
|
69116
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
69117
|
+
host: z.ZodString;
|
|
69118
|
+
cpCode: z.ZodString;
|
|
69119
|
+
path: z.ZodOptional<z.ZodUnknown>;
|
|
69120
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
69121
|
+
}, z.core.$strict>>;
|
|
69122
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
69123
|
+
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
69124
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
69125
|
+
accountName: z.ZodString;
|
|
69126
|
+
container: z.ZodString;
|
|
69127
|
+
prefix: z.ZodOptional<z.ZodUnknown>;
|
|
69128
|
+
filename: z.ZodOptional<z.ZodUnknown>;
|
|
69129
|
+
}, z.core.$strict>>;
|
|
69362
69130
|
}, z.core.$strict>], "provider">>;
|
|
69363
69131
|
callback: z.ZodOptional<z.ZodString>;
|
|
69364
69132
|
}, z.core.$strict>;
|