@shotstack/schemas 1.8.2 → 1.8.4

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.
@@ -2051,95 +2051,8 @@
2051
2051
  "font": {
2052
2052
  "anyOf": [
2053
2053
  {
2054
- "type": "object",
2055
2054
  "description": "Font styling properties for inactive words.",
2056
- "properties": {
2057
- "family": {
2058
- "anyOf": [
2059
- {
2060
- "type": "string",
2061
- "description": "The font family name. This must be the Family name embedded in the font, i.e. \"Roboto\".",
2062
- "enum": [
2063
- "Roboto"
2064
- ]
2065
- },
2066
- {
2067
- "type": "null"
2068
- }
2069
- ]
2070
- },
2071
- "size": {
2072
- "anyOf": [
2073
- {
2074
- "type": "integer",
2075
- "description": "The size of the font in pixels (px). Must be between 1 and 500.",
2076
- "minimum": 1,
2077
- "maximum": 500
2078
- },
2079
- {
2080
- "type": "null"
2081
- }
2082
- ]
2083
- },
2084
- "weight": {
2085
- "anyOf": [
2086
- {
2087
- "type": "string",
2088
- "description": "The weight of the font. Can be a number (100-900) or a string ('normal', 'bold', etc.). 100 is lightest, 900 is heaviest (boldest)."
2089
- },
2090
- {
2091
- "type": "null"
2092
- }
2093
- ]
2094
- },
2095
- "color": {
2096
- "anyOf": [
2097
- {
2098
- "type": "string",
2099
- "description": "The text color using hexadecimal color notation.",
2100
- "enum": [
2101
- "#ffffff"
2102
- ]
2103
- },
2104
- {
2105
- "type": "null"
2106
- }
2107
- ]
2108
- },
2109
- "opacity": {
2110
- "anyOf": [
2111
- {
2112
- "type": "number",
2113
- "description": "The opacity of the text where 1 is opaque and 0 is transparent.",
2114
- "minimum": 0,
2115
- "maximum": 1
2116
- },
2117
- {
2118
- "type": "null"
2119
- }
2120
- ]
2121
- },
2122
- "background": {
2123
- "anyOf": [
2124
- {
2125
- "type": "string",
2126
- "description": "The background color behind the text using hexadecimal color notation."
2127
- },
2128
- {
2129
- "type": "null"
2130
- }
2131
- ]
2132
- }
2133
- },
2134
- "additionalProperties": false,
2135
- "required": [
2136
- "family",
2137
- "size",
2138
- "weight",
2139
- "color",
2140
- "opacity",
2141
- "background"
2142
- ]
2055
+ "$ref": "#/$defs/RichTextFont"
2143
2056
  },
2144
2057
  {
2145
2058
  "type": "null"
@@ -3717,6 +3630,126 @@
3717
3630
  "options"
3718
3631
  ],
3719
3632
  "additionalProperties": false
3633
+ },
3634
+ {
3635
+ "description": "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.",
3636
+ "properties": {
3637
+ "provider": {
3638
+ "description": "The destination to send assets to - set to `akamai-netstorage` for Akamai NetStorage.",
3639
+ "type": "string",
3640
+ "enum": [
3641
+ "akamai-netstorage"
3642
+ ]
3643
+ },
3644
+ "options": {
3645
+ "anyOf": [
3646
+ {
3647
+ "type": "object",
3648
+ "description": "Additional Akamai NetStorage configuration options.",
3649
+ "properties": {
3650
+ "host": {
3651
+ "description": "The Akamai NetStorage hostname, i.e. `example-nsu.akamaihd.net`.",
3652
+ "type": "string"
3653
+ },
3654
+ "cpCode": {
3655
+ "description": "The Content Provider code (CP code) for the NetStorage upload directory.",
3656
+ "type": "string"
3657
+ },
3658
+ "path": {
3659
+ "description": "A remote directory path/prefix for the file being sent, i.e. `videos` or `customerId/videos`.",
3660
+ "type": [
3661
+ "string",
3662
+ "null"
3663
+ ]
3664
+ },
3665
+ "filename": {
3666
+ "description": "Use your own filename instead of the default filenames generated by Shotstack. Note: omit the file extension as this will be appended depending on the output format. Also `-poster.jpg` and `-thumb.jpg` will be appended for poster and thumbnail images.",
3667
+ "type": [
3668
+ "string",
3669
+ "null"
3670
+ ]
3671
+ }
3672
+ },
3673
+ "required": [
3674
+ "host",
3675
+ "cpCode",
3676
+ "path",
3677
+ "filename"
3678
+ ],
3679
+ "additionalProperties": false
3680
+ },
3681
+ {
3682
+ "type": "null"
3683
+ }
3684
+ ]
3685
+ }
3686
+ },
3687
+ "type": "object",
3688
+ "required": [
3689
+ "provider",
3690
+ "options"
3691
+ ],
3692
+ "additionalProperties": false
3693
+ },
3694
+ {
3695
+ "description": "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.",
3696
+ "properties": {
3697
+ "provider": {
3698
+ "description": "The destination to send assets to - set to `azure-blob-storage` for Azure Blob Storage.",
3699
+ "type": "string",
3700
+ "enum": [
3701
+ "azure-blob-storage"
3702
+ ]
3703
+ },
3704
+ "options": {
3705
+ "anyOf": [
3706
+ {
3707
+ "type": "object",
3708
+ "description": "Additional Azure Blob Storage configuration options.",
3709
+ "properties": {
3710
+ "accountName": {
3711
+ "description": "The Azure Storage account name.",
3712
+ "type": "string"
3713
+ },
3714
+ "container": {
3715
+ "description": "The Blob container name. The container must exist in the Azure Storage account before files can be sent.",
3716
+ "type": "string"
3717
+ },
3718
+ "prefix": {
3719
+ "description": "A virtual directory prefix for the blob being sent, i.e. `videos` or `customerId/videos`.",
3720
+ "type": [
3721
+ "string",
3722
+ "null"
3723
+ ]
3724
+ },
3725
+ "filename": {
3726
+ "description": "Use your own filename instead of the default filenames generated by Shotstack. Note: omit the file extension as this will be appended depending on the output format. Also `-poster.jpg` and `-thumb.jpg` will be appended for poster and thumbnail images.",
3727
+ "type": [
3728
+ "string",
3729
+ "null"
3730
+ ]
3731
+ }
3732
+ },
3733
+ "required": [
3734
+ "accountName",
3735
+ "container",
3736
+ "prefix",
3737
+ "filename"
3738
+ ],
3739
+ "additionalProperties": false
3740
+ },
3741
+ {
3742
+ "type": "null"
3743
+ }
3744
+ ]
3745
+ }
3746
+ },
3747
+ "type": "object",
3748
+ "required": [
3749
+ "provider",
3750
+ "options"
3751
+ ],
3752
+ "additionalProperties": false
3720
3753
  }
3721
3754
  ]
3722
3755
  },
@@ -1879,88 +1879,7 @@
1879
1879
  "font": {
1880
1880
  "anyOf": [
1881
1881
  {
1882
- "type": "object",
1883
- "properties": {
1884
- "family": {
1885
- "anyOf": [
1886
- {
1887
- "type": "string",
1888
- "enum": [
1889
- "Roboto"
1890
- ]
1891
- },
1892
- {
1893
- "type": "null"
1894
- }
1895
- ]
1896
- },
1897
- "size": {
1898
- "anyOf": [
1899
- {
1900
- "type": "integer",
1901
- "minimum": 1,
1902
- "maximum": 500
1903
- },
1904
- {
1905
- "type": "null"
1906
- }
1907
- ]
1908
- },
1909
- "weight": {
1910
- "anyOf": [
1911
- {
1912
- "type": "string"
1913
- },
1914
- {
1915
- "type": "null"
1916
- }
1917
- ]
1918
- },
1919
- "color": {
1920
- "anyOf": [
1921
- {
1922
- "type": "string",
1923
- "enum": [
1924
- "#ffffff"
1925
- ]
1926
- },
1927
- {
1928
- "type": "null"
1929
- }
1930
- ]
1931
- },
1932
- "opacity": {
1933
- "anyOf": [
1934
- {
1935
- "type": "number",
1936
- "minimum": 0,
1937
- "maximum": 1
1938
- },
1939
- {
1940
- "type": "null"
1941
- }
1942
- ]
1943
- },
1944
- "background": {
1945
- "anyOf": [
1946
- {
1947
- "type": "string"
1948
- },
1949
- {
1950
- "type": "null"
1951
- }
1952
- ]
1953
- }
1954
- },
1955
- "additionalProperties": false,
1956
- "required": [
1957
- "family",
1958
- "size",
1959
- "weight",
1960
- "color",
1961
- "opacity",
1962
- "background"
1963
- ]
1882
+ "$ref": "#/$defs/RichTextFont"
1964
1883
  },
1965
1884
  {
1966
1885
  "type": "null"
@@ -1766,88 +1766,7 @@
1766
1766
  "font": {
1767
1767
  "anyOf": [
1768
1768
  {
1769
- "type": "object",
1770
- "properties": {
1771
- "family": {
1772
- "anyOf": [
1773
- {
1774
- "type": "string",
1775
- "enum": [
1776
- "Roboto"
1777
- ]
1778
- },
1779
- {
1780
- "type": "null"
1781
- }
1782
- ]
1783
- },
1784
- "size": {
1785
- "anyOf": [
1786
- {
1787
- "type": "integer",
1788
- "minimum": 1,
1789
- "maximum": 500
1790
- },
1791
- {
1792
- "type": "null"
1793
- }
1794
- ]
1795
- },
1796
- "weight": {
1797
- "anyOf": [
1798
- {
1799
- "type": "string"
1800
- },
1801
- {
1802
- "type": "null"
1803
- }
1804
- ]
1805
- },
1806
- "color": {
1807
- "anyOf": [
1808
- {
1809
- "type": "string",
1810
- "enum": [
1811
- "#ffffff"
1812
- ]
1813
- },
1814
- {
1815
- "type": "null"
1816
- }
1817
- ]
1818
- },
1819
- "opacity": {
1820
- "anyOf": [
1821
- {
1822
- "type": "number",
1823
- "minimum": 0,
1824
- "maximum": 1
1825
- },
1826
- {
1827
- "type": "null"
1828
- }
1829
- ]
1830
- },
1831
- "background": {
1832
- "anyOf": [
1833
- {
1834
- "type": "string"
1835
- },
1836
- {
1837
- "type": "null"
1838
- }
1839
- ]
1840
- }
1841
- },
1842
- "additionalProperties": false,
1843
- "required": [
1844
- "family",
1845
- "size",
1846
- "weight",
1847
- "color",
1848
- "opacity",
1849
- "background"
1850
- ]
1769
+ "$ref": "#/$defs/RichTextFont"
1851
1770
  },
1852
1771
  {
1853
1772
  "type": "null"
package/dist/schema.d.ts CHANGED
@@ -997,42 +997,7 @@ export interface components {
997
997
  /** @description Pre-provided word-level timing data. Use this instead of `src` when you have word timestamps from an external source. Mutually exclusive with `src`. */
998
998
  words?: components["schemas"]["WordTiming"][];
999
999
  /** @description Font styling properties for inactive words. */
1000
- font?: {
1001
- /**
1002
- * @description The font family name. This must be the Family name embedded in the font, i.e. "Roboto".
1003
- * @default Roboto
1004
- * @example Roboto
1005
- */
1006
- family?: string;
1007
- /**
1008
- * @description The size of the font in pixels (px). Must be between 1 and 500.
1009
- * @default 24
1010
- * @example 48
1011
- */
1012
- size?: number;
1013
- /**
1014
- * @description The weight of the font. Can be a number (100-900) or a string ('normal', 'bold', etc.). 100 is lightest, 900 is heaviest (boldest).
1015
- * @default 400
1016
- */
1017
- weight?: unknown;
1018
- /**
1019
- * @description The text color using hexadecimal color notation.
1020
- * @default #ffffff
1021
- * @example #ffffff
1022
- */
1023
- color?: string;
1024
- /**
1025
- * @description The opacity of the text where 1 is opaque and 0 is transparent.
1026
- * @default 1
1027
- * @example 0.9
1028
- */
1029
- opacity?: number;
1030
- /**
1031
- * @description The background color behind the text using hexadecimal color notation.
1032
- * @example #000000
1033
- */
1034
- background?: string;
1035
- };
1000
+ font?: components["schemas"]["RichTextFont"];
1036
1001
  /** @description Text style properties including spacing, line height, and transformations. */
1037
1002
  style?: components["schemas"]["RichTextStyle"];
1038
1003
  /** @description Text stroke (outline) properties for inactive words. */
@@ -2199,6 +2164,66 @@ export interface components {
2199
2164
  */
2200
2165
  disableComment?: boolean;
2201
2166
  };
2167
+ } | {
2168
+ /**
2169
+ * @description The destination to send assets to - set to `akamai-netstorage` for Akamai NetStorage.
2170
+ * @default akamai-netstorage
2171
+ * @example akamai-netstorage
2172
+ */
2173
+ provider: string;
2174
+ /** @description Additional Akamai NetStorage configuration options. */
2175
+ options?: {
2176
+ /**
2177
+ * @description The Akamai NetStorage hostname, i.e. `example-nsu.akamaihd.net`.
2178
+ * @example example-nsu.akamaihd.net
2179
+ */
2180
+ host: string;
2181
+ /**
2182
+ * @description The Content Provider code (CP code) for the NetStorage upload directory.
2183
+ * @example 123456
2184
+ */
2185
+ cpCode: string;
2186
+ /**
2187
+ * @description A remote directory path/prefix for the file being sent, i.e. `videos` or `customerId/videos`.
2188
+ * @example videos
2189
+ */
2190
+ path?: string | null;
2191
+ /**
2192
+ * @description Use your own filename instead of the default filenames generated by Shotstack. Note: omit the file extension as this will be appended depending on the output format. Also `-poster.jpg` and `-thumb.jpg` will be appended for poster and thumbnail images.
2193
+ * @example my-file
2194
+ */
2195
+ filename?: string | null;
2196
+ };
2197
+ } | {
2198
+ /**
2199
+ * @description The destination to send assets to - set to `azure-blob-storage` for Azure Blob Storage.
2200
+ * @default azure-blob-storage
2201
+ * @example azure-blob-storage
2202
+ */
2203
+ provider: string;
2204
+ /** @description Additional Azure Blob Storage configuration options. */
2205
+ options?: {
2206
+ /**
2207
+ * @description The Azure Storage account name.
2208
+ * @example mystorageaccount
2209
+ */
2210
+ accountName: string;
2211
+ /**
2212
+ * @description The Blob container name. The container must exist in the Azure Storage account before files can be sent.
2213
+ * @example my-container
2214
+ */
2215
+ container: string;
2216
+ /**
2217
+ * @description A virtual directory prefix for the blob being sent, i.e. `videos` or `customerId/videos`.
2218
+ * @example videos
2219
+ */
2220
+ prefix?: string | null;
2221
+ /**
2222
+ * @description Use your own filename instead of the default filenames generated by Shotstack. Note: omit the file extension as this will be appended depending on the output format. Also `-poster.jpg` and `-thumb.jpg` will be appended for poster and thumbnail images.
2223
+ * @example my-file
2224
+ */
2225
+ filename?: string | null;
2226
+ };
2202
2227
  };
2203
2228
  /** @description Send videos and assets to the [Shotstack hosting and CDN](https://shotstack.io/docs/guide/serving-assets/destinations/shotstack/) service. This destination is enabled by default. */
2204
2229
  ShotstackDestination: {
@@ -2,12 +2,12 @@
2
2
  // This file is auto-generated by @hey-api/openapi-ts
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.openAiGeneratedAssetSchema = exports.openaiGeneratedAssetOpenAiGeneratedAssetSchema = exports.openAiGeneratedAssetOptionsSchema = exports.openaiGeneratedAssetOptionsOpenAiGeneratedAssetOptionsSchema = exports.openAiTextGeneratorOptionsSchema = exports.openaiTextGeneratorOptionsOpenAiTextGeneratorOptionsSchema = exports.heyGenGeneratedAssetSchema = exports.heygenGeneratedAssetHeyGenGeneratedAssetSchema = exports.heyGenGeneratedAssetOptionsSchema = exports.heygenGeneratedAssetOptionsHeyGenGeneratedAssetOptionsSchema = exports.heyGenTextToAvatarOptionsSchema = exports.heygenTextToAvatarOptionsHeyGenTextToAvatarOptionsSchema = exports.elevenLabsGeneratedAssetSchema = exports.elevenlabsGeneratedAssetElevenLabsGeneratedAssetSchema = exports.elevenLabsGeneratedAssetOptionsSchema = exports.elevenlabsGeneratedAssetOptionsElevenLabsGeneratedAssetOptionsSchema = exports.elevenLabsTextToSpeechOptionsSchema = exports.elevenlabsTextToSpeechOptionsElevenLabsTextToSpeechOptionsSchema = exports.didGeneratedAssetSchema = exports.didGeneratedAssetDidGeneratedAssetSchema = exports.didGeneratedAssetOptionsSchema = exports.didGeneratedAssetOptionsDidGeneratedAssetOptionsSchema = exports.didTextToAvatarOptionsSchema = exports.didTextToAvatarOptionsDidTextToAvatarOptionsSchema = exports.chromaKeySchema = exports.chromakeyChromaKeySchema = exports.captionAssetSchema = exports.captionassetCaptionAssetSchema = exports.captionMarginSchema = exports.captionpropertiesCaptionMarginSchema = exports.captionFontSchema = exports.captionpropertiesCaptionFontSchema = exports.captionBackgroundSchema = exports.captionpropertiesCaptionBackgroundSchema = exports.uploadRootSchema = exports.templatesrenderRootSchema = exports.templatesidRootSchema = exports.templatesRootSchema = exports.sourcesidRootSchema = exports.sourcesRootSchema = exports.renderidRootSchema = exports.renderRootSchema = exports.probeRootSchema = exports.generateassetidRootSchema = exports.generateassetRootSchema = exports.assetsrenderidRootSchema = exports.assetsidRootSchema = exports.assetsRootSchema = exports.sourceRootSchema = exports.editRootSchema = void 0;
5
- exports.shotstackDestinationSchema = exports.shotstackDestinationShotstackDestinationSchema = exports.s3DestinationSchema = exports.s3DestinationS3DestinationSchema = exports.s3DestinationOptionsSchema = exports.s3DestinationOptionsS3DestinationOptionsSchema = exports.muxDestinationSchema = exports.muxDestinationMuxDestinationSchema = exports.muxDestinationOptionsSchema = exports.muxDestinationOptionsMuxDestinationOptionsSchema = exports.googleDriveDestinationSchema = exports.googleDriveDestinationGoogleDriveDestinationSchema = exports.googleDriveDestinationOptionsSchema = exports.googleDriveDestinationOptionsGoogleDriveDestinationOptionsSchema = exports.googleCloudStorageDestinationSchema = exports.googleCloudStorageDestinationGoogleCloudStorageDestinationSchema = exports.googleCloudStorageDestinationOptionsSchema = exports.googleCloudStorageDestinationOptionsGoogleCloudStorageDestinationOptionsSchema = exports.cropSchema = exports.cropCropSchema = exports.generatedAssetSchema = exports.generatedAssetGeneratedAssetSchema = exports.stabilityAiGeneratedAssetSchema = exports.stabilityAiGeneratedAssetStabilityAiGeneratedAssetSchema = exports.stabilityAiGeneratedAssetOptionsSchema = exports.stabilityAiGeneratedAssetOptionsStabilityAiGeneratedAssetOptionsSchema = exports.stabilityAiTextToImageOptionsSchema = exports.stabilityAiTextToImageOptionsStabilityAiTextToImageOptionsSchema = exports.shotstackGeneratedAssetSchema = exports.shotstackGeneratedAssetShotstackGeneratedAssetSchema = exports.shotstackGeneratedAssetOptionsSchema = exports.shotstackGeneratedAssetOptionsShotstackGeneratedAssetOptionsSchema = exports.shotstackTextToSpeechOptionsSchema = exports.shotstackTextToSpeechOptionsShotstackTextToSpeechOptionsSchema = exports.shotstackTextToImageOptionsSchema = exports.shotstackTextToImageOptionsShotstackTextToImageOptionsSchema = exports.shotstackTextGeneratorOptionsSchema = exports.shotstackTextGeneratorOptionsShotstackTextGeneratorOptionsSchema = exports.shotstackImageToVideoOptionsSchema = exports.shotstackImageToVideoOptionsShotstackImageToVideoOptionsSchema = exports.generatedAssetResponseSchema = exports.generatedAssetResponseGeneratedAssetResponseSchema = exports.generatedAssetResponseDataSchema = exports.generatedAssetResponseDataGeneratedAssetResponseDataSchema = exports.generatedAssetResponseAttributesSchema = exports.generatedAssetResponseAttributesGeneratedAssetResponseAttributesSchema = exports.generatedAssetErrorResponseSchema = exports.generatedAssetErrorResponseGeneratedAssetErrorResponseSchema = exports.generatedAssetErrorResponseDataSchema = exports.generatedAssetErrorResponseDataGeneratedAssetErrorResponseDataSchema = void 0;
6
- exports.mergeFieldSchema = exports.mergefieldMergeFieldSchema = exports.lumaAssetSchema = exports.lumaassetLumaAssetSchema = exports.transcriptionSchema = exports.transcriptionTranscriptionSchema = exports.speedSchema = exports.speedSpeedSchema = exports.uploadResponseSchema = exports.uploadresponseUploadResponseSchema = exports.uploadResponseDataSchema = exports.uploadresponsedataUploadResponseDataSchema = exports.uploadResponseAttributesSchema = exports.uploadresponseattributesUploadResponseAttributesSchema = exports.queuedSourceResponseSchema = exports.queuedsourceresponseQueuedSourceResponseSchema = exports.queuedSourceResponseDataSchema = exports.queuedsourceresponsedataQueuedSourceResponseDataSchema = exports.ingestErrorResponseSchema = exports.ingesterrorresponseIngestErrorResponseSchema = exports.ingestErrorResponseDataSchema = exports.ingesterrorresponsedataIngestErrorResponseDataSchema = exports.enhancementsSchema = exports.enhancementsEnhancementsSchema = exports.audioEnhancementSchema = exports.audioEnhancementAudioEnhancementSchema = exports.dolbyEnhancementSchema = exports.dolbyEnhancementDolbyEnhancementSchema = exports.dolbyEnhancementOptionsSchema = exports.dolbyEnhancementOptionsDolbyEnhancementOptionsSchema = exports.imageToVideoAssetSchema = exports.imagetovideoassetImageToVideoAssetSchema = exports.imageAssetSchema = exports.imageassetImageAssetSchema = exports.htmlAssetSchema = exports.htmlassetHtmlAssetSchema = exports.fontSchema = exports.fontFontSchema = exports.flipTransformationSchema = exports.fliptransformationFlipTransformationSchema = exports.destinationsSchema = exports.destinationsDestinationsSchema = exports.vimeoDestinationSchema = exports.vimeoDestinationVimeoDestinationSchema = exports.vimeoDestinationOptionsSchema = exports.vimeoDestinationOptionsVimeoDestinationOptionsSchema = exports.vimeoDestinationPrivacyOptionsSchema = exports.vimeoDestinationPrivacyOptionsVimeoDestinationPrivacyOptionsSchema = exports.tiktokDestinationTiktokDestinationSchema = exports.tiktokDestinationOptionsTiktokDestinationOptionsSchema = void 0;
7
- exports.richcaptionpropertiesRichCaptionActiveSchema = exports.richTextStrokeSchema = exports.richtextpropertiesRichTextStrokeSchema = exports.richTextShadowSchema = exports.richtextpropertiesRichTextShadowSchema = exports.richtextpropertiesRichTextPaddingSchema = exports.richTextGradientSchema = exports.richtextpropertiesRichTextGradientSchema = exports.richtextpropertiesRichTextBorderSchema = exports.richTextBackgroundSchema = exports.richtextpropertiesRichTextBackgroundSchema = exports.richTextAnimationSchema = exports.richtextpropertiesRichTextAnimationSchema = exports.richTextAlignmentSchema = exports.richtextpropertiesRichTextAlignmentSchema = exports.wordTimingSchema = exports.richcaptionpropertiesWordTimingSchema = exports.richCaptionWordAnimationSchema = exports.richcaptionpropertiesRichCaptionWordAnimationSchema = exports.richcaptionpropertiesRichCaptionFontSchema = exports.richCaptionActiveFontSchema = exports.richcaptionpropertiesRichCaptionActiveFontSchema = exports.templateResponseSchema = exports.templateresponseTemplateResponseSchema = exports.templateResponseDataSchema = exports.templateresponsedataTemplateResponseDataSchema = exports.templateListResponseSchema = exports.templatelistresponseTemplateListResponseSchema = exports.templateListResponseDataSchema = exports.templatelistresponsedataTemplateListResponseDataSchema = exports.templateListResponseItemSchema = exports.templatelistresponseitemTemplateListResponseItemSchema = exports.queuedResponseSchema = exports.queuedresponseQueuedResponseSchema = exports.queuedResponseDataSchema = exports.queuedresponsedataQueuedResponseDataSchema = exports.probeResponseSchema = exports.proberesponseProbeResponseSchema = exports.assetResponseSchema = exports.assetresponseAssetResponseSchema = exports.assetRenderResponseSchema = exports.assetrenderresponseAssetRenderResponseSchema = exports.assetResponseDataSchema = exports.assetresponsedataAssetResponseDataSchema = exports.assetResponseAttributesSchema = exports.assetresponseattributesAssetResponseAttributesSchema = exports.rangeSchema = exports.rangeRangeSchema = exports.posterSchema = exports.posterPosterSchema = void 0;
8
- exports.textBackgroundSchema = exports.textpropertiesTextBackgroundSchema = exports.textpropertiesTextAnimationSchema = exports.textAlignmentSchema = exports.textpropertiesTextAlignmentSchema = exports.templateRenderSchema = exports.templaterenderTemplateRenderSchema = exports.svgAssetSchema = exports.svgassetSvgAssetSchema = exports.soundtrackSchema = exports.soundtrackSoundtrackSchema = exports.sourceSchema = exports.sourceSourceSchema = exports.sourceResponseSchema = exports.sourceresponseSourceResponseSchema = exports.sourceListResponseSchema = exports.sourcelistresponseSourceListResponseSchema = exports.sourceResponseDataSchema = exports.sourceresponsedataSourceResponseDataSchema = exports.sourceResponseAttributesSchema = exports.sourceresponseattributesSourceResponseAttributesSchema = exports.outputsResponseSchema = exports.outputsresponseOutputsResponseSchema = exports.renditionResponseAttributesSchema = exports.renditionresponseattributesRenditionResponseAttributesSchema = exports.outputsSchema = exports.outputsOutputsSchema = exports.renditionSchema = exports.renditionRenditionSchema = exports.sizeSchema = exports.sizeSizeSchema = exports.shapeAssetSchema = exports.shapeassetShapeAssetSchema = exports.transferSchema = exports.transferTransferSchema = exports.transferResponseSchema = exports.transferresponseTransferResponseSchema = exports.transferResponseDataSchema = exports.transferresponsedataTransferResponseDataSchema = exports.transferResponseAttributesSchema = exports.transferresponseattributesTransferResponseAttributesSchema = exports.richTextAssetSchema = exports.richtextassetRichTextAssetSchema = exports.richCaptionAssetSchema = exports.richcaptionassetRichCaptionAssetSchema = exports.richTextStyleSchema = exports.richtextpropertiesRichTextStyleSchema = exports.richTextFontSchema = exports.richtextpropertiesRichTextFontSchema = exports.richCaptionActiveSchema = void 0;
9
- exports.templateTemplateSchema = exports.templateDataResponseSchema = exports.templatedataresponseTemplateDataResponseSchema = exports.templateDataResponseDataSchema = exports.templatedataresponsedataTemplateDataResponseDataSchema = exports.renderResponseSchema = exports.renderresponseRenderResponseSchema = exports.renderResponseDataSchema = exports.renderresponsedataRenderResponseDataSchema = exports.editSchema = exports.editEditSchema = exports.timelineSchema = exports.timelineTimelineSchema = exports.trackSchema = exports.trackTrackSchema = exports.clipSchema = exports.clipClipSchema = exports.assetSchema = exports.assetAssetSchema = exports.videoAssetSchema = exports.videoassetVideoAssetSchema = exports.transformationSchema = exports.transformationTransformationSchema = exports.titleAssetSchema = exports.titleassetTitleAssetSchema = exports.textToSpeechAssetSchema = exports.texttospeechassetTextToSpeechAssetSchema = exports.skewTransformationSchema = exports.skewtransformationSkewTransformationSchema = exports.rotateTransformationSchema = exports.rotatetransformationRotateTransformationSchema = exports.offsetSchema = exports.offsetOffsetSchema = exports.audioAssetSchema = exports.audioassetAudioAssetSchema = exports.tweenSchema = exports.tweenTweenSchema = exports.transitionSchema = exports.transitionTransitionSchema = exports.outputSchema = exports.outputOutputSchema = exports.thumbnailSchema = exports.thumbnailThumbnailSchema = exports.textToImageAssetSchema = exports.texttoimageassetTextToImageAssetSchema = exports.textAssetSchema = exports.textassetTextAssetSchema = exports.textpropertiesTextStrokeSchema = exports.textFontSchema = exports.textpropertiesTextFontSchema = void 0;
10
- exports.getGeneratedAssetResponse = exports.getGeneratedAssetRequest = exports.postGenerateAssetResponse = exports.postGenerateAssetRequest = exports.getUploadSignedUrlResponse = exports.getUploadSignedUrlRequest = exports.getSourceResponse = exports.getSourceRequest = exports.deleteSourceResponse = exports.deleteSourceRequest = exports.postSourceResponse = exports.postSourceRequest = exports.getSourcesResponse = exports.getSourcesRequest = exports.postServeAssetResponse = exports.postServeAssetRequest = exports.getAssetByRenderIdResponse = exports.getAssetByRenderIdRequest = exports.getAssetResponse = exports.getAssetRequest = exports.deleteAssetResponse = exports.deleteAssetRequest = exports.probeResponse = exports.probeRequest = exports.postTemplateRenderResponse = exports.postTemplateRenderRequest = exports.putTemplateResponse = exports.putTemplateRequest = exports.getTemplateResponse = exports.getTemplateRequest = exports.deleteTemplateResponse = exports.deleteTemplateRequest = exports.postTemplateResponse = exports.postTemplateRequest = exports.getTemplatesResponse = exports.getTemplatesRequest = exports.getRenderResponse = exports.getRenderRequest = exports.postRenderResponse = exports.postRenderRequest = exports.templateSchema = void 0;
5
+ exports.s3DestinationOptionsSchema = exports.s3DestinationOptionsS3DestinationOptionsSchema = exports.muxDestinationSchema = exports.muxDestinationMuxDestinationSchema = exports.muxDestinationOptionsSchema = exports.muxDestinationOptionsMuxDestinationOptionsSchema = exports.googleDriveDestinationSchema = exports.googleDriveDestinationGoogleDriveDestinationSchema = exports.googleDriveDestinationOptionsSchema = exports.googleDriveDestinationOptionsGoogleDriveDestinationOptionsSchema = exports.googleCloudStorageDestinationSchema = exports.googleCloudStorageDestinationGoogleCloudStorageDestinationSchema = exports.googleCloudStorageDestinationOptionsSchema = exports.googleCloudStorageDestinationOptionsGoogleCloudStorageDestinationOptionsSchema = exports.azureBlobStorageDestinationAzureBlobStorageDestinationSchema = exports.azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOptionsSchema = exports.akamaiNetStorageDestinationAkamaiNetStorageDestinationSchema = exports.akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOptionsSchema = exports.cropSchema = exports.cropCropSchema = exports.generatedAssetSchema = exports.generatedAssetGeneratedAssetSchema = exports.stabilityAiGeneratedAssetSchema = exports.stabilityAiGeneratedAssetStabilityAiGeneratedAssetSchema = exports.stabilityAiGeneratedAssetOptionsSchema = exports.stabilityAiGeneratedAssetOptionsStabilityAiGeneratedAssetOptionsSchema = exports.stabilityAiTextToImageOptionsSchema = exports.stabilityAiTextToImageOptionsStabilityAiTextToImageOptionsSchema = exports.shotstackGeneratedAssetSchema = exports.shotstackGeneratedAssetShotstackGeneratedAssetSchema = exports.shotstackGeneratedAssetOptionsSchema = exports.shotstackGeneratedAssetOptionsShotstackGeneratedAssetOptionsSchema = exports.shotstackTextToSpeechOptionsSchema = exports.shotstackTextToSpeechOptionsShotstackTextToSpeechOptionsSchema = exports.shotstackTextToImageOptionsSchema = exports.shotstackTextToImageOptionsShotstackTextToImageOptionsSchema = exports.shotstackTextGeneratorOptionsSchema = exports.shotstackTextGeneratorOptionsShotstackTextGeneratorOptionsSchema = exports.shotstackImageToVideoOptionsSchema = exports.shotstackImageToVideoOptionsShotstackImageToVideoOptionsSchema = exports.generatedAssetResponseSchema = exports.generatedAssetResponseGeneratedAssetResponseSchema = exports.generatedAssetResponseDataSchema = exports.generatedAssetResponseDataGeneratedAssetResponseDataSchema = exports.generatedAssetResponseAttributesSchema = exports.generatedAssetResponseAttributesGeneratedAssetResponseAttributesSchema = exports.generatedAssetErrorResponseSchema = exports.generatedAssetErrorResponseGeneratedAssetErrorResponseSchema = exports.generatedAssetErrorResponseDataSchema = exports.generatedAssetErrorResponseDataGeneratedAssetErrorResponseDataSchema = void 0;
6
+ exports.transcriptionSchema = exports.transcriptionTranscriptionSchema = exports.speedSchema = exports.speedSpeedSchema = exports.uploadResponseSchema = exports.uploadresponseUploadResponseSchema = exports.uploadResponseDataSchema = exports.uploadresponsedataUploadResponseDataSchema = exports.uploadResponseAttributesSchema = exports.uploadresponseattributesUploadResponseAttributesSchema = exports.queuedSourceResponseSchema = exports.queuedsourceresponseQueuedSourceResponseSchema = exports.queuedSourceResponseDataSchema = exports.queuedsourceresponsedataQueuedSourceResponseDataSchema = exports.ingestErrorResponseSchema = exports.ingesterrorresponseIngestErrorResponseSchema = exports.ingestErrorResponseDataSchema = exports.ingesterrorresponsedataIngestErrorResponseDataSchema = exports.enhancementsSchema = exports.enhancementsEnhancementsSchema = exports.audioEnhancementSchema = exports.audioEnhancementAudioEnhancementSchema = exports.dolbyEnhancementSchema = exports.dolbyEnhancementDolbyEnhancementSchema = exports.dolbyEnhancementOptionsSchema = exports.dolbyEnhancementOptionsDolbyEnhancementOptionsSchema = exports.imageToVideoAssetSchema = exports.imagetovideoassetImageToVideoAssetSchema = exports.imageAssetSchema = exports.imageassetImageAssetSchema = exports.htmlAssetSchema = exports.htmlassetHtmlAssetSchema = exports.fontSchema = exports.fontFontSchema = exports.flipTransformationSchema = exports.fliptransformationFlipTransformationSchema = exports.destinationsSchema = exports.destinationsDestinationsSchema = exports.vimeoDestinationSchema = exports.vimeoDestinationVimeoDestinationSchema = exports.vimeoDestinationOptionsSchema = exports.vimeoDestinationOptionsVimeoDestinationOptionsSchema = exports.vimeoDestinationPrivacyOptionsSchema = exports.vimeoDestinationPrivacyOptionsVimeoDestinationPrivacyOptionsSchema = exports.tiktokDestinationTiktokDestinationSchema = exports.tiktokDestinationOptionsTiktokDestinationOptionsSchema = exports.shotstackDestinationSchema = exports.shotstackDestinationShotstackDestinationSchema = exports.s3DestinationSchema = exports.s3DestinationS3DestinationSchema = void 0;
7
+ exports.richTextShadowSchema = exports.richtextpropertiesRichTextShadowSchema = exports.richtextpropertiesRichTextPaddingSchema = exports.richTextGradientSchema = exports.richtextpropertiesRichTextGradientSchema = exports.richtextpropertiesRichTextBorderSchema = exports.richTextBackgroundSchema = exports.richtextpropertiesRichTextBackgroundSchema = exports.richTextAnimationSchema = exports.richtextpropertiesRichTextAnimationSchema = exports.richTextAlignmentSchema = exports.richtextpropertiesRichTextAlignmentSchema = exports.wordTimingSchema = exports.richcaptionpropertiesWordTimingSchema = exports.richCaptionWordAnimationSchema = exports.richcaptionpropertiesRichCaptionWordAnimationSchema = exports.richCaptionActiveFontSchema = exports.richcaptionpropertiesRichCaptionActiveFontSchema = exports.templateResponseSchema = exports.templateresponseTemplateResponseSchema = exports.templateResponseDataSchema = exports.templateresponsedataTemplateResponseDataSchema = exports.templateListResponseSchema = exports.templatelistresponseTemplateListResponseSchema = exports.templateListResponseDataSchema = exports.templatelistresponsedataTemplateListResponseDataSchema = exports.templateListResponseItemSchema = exports.templatelistresponseitemTemplateListResponseItemSchema = exports.queuedResponseSchema = exports.queuedresponseQueuedResponseSchema = exports.queuedResponseDataSchema = exports.queuedresponsedataQueuedResponseDataSchema = exports.probeResponseSchema = exports.proberesponseProbeResponseSchema = exports.assetResponseSchema = exports.assetresponseAssetResponseSchema = exports.assetRenderResponseSchema = exports.assetrenderresponseAssetRenderResponseSchema = exports.assetResponseDataSchema = exports.assetresponsedataAssetResponseDataSchema = exports.assetResponseAttributesSchema = exports.assetresponseattributesAssetResponseAttributesSchema = exports.rangeSchema = exports.rangeRangeSchema = exports.posterSchema = exports.posterPosterSchema = exports.mergeFieldSchema = exports.mergefieldMergeFieldSchema = exports.lumaAssetSchema = exports.lumaassetLumaAssetSchema = void 0;
8
+ exports.textAlignmentSchema = exports.textpropertiesTextAlignmentSchema = exports.templateRenderSchema = exports.templaterenderTemplateRenderSchema = exports.svgAssetSchema = exports.svgassetSvgAssetSchema = exports.soundtrackSchema = exports.soundtrackSoundtrackSchema = exports.sourceSchema = exports.sourceSourceSchema = exports.sourceResponseSchema = exports.sourceresponseSourceResponseSchema = exports.sourceListResponseSchema = exports.sourcelistresponseSourceListResponseSchema = exports.sourceResponseDataSchema = exports.sourceresponsedataSourceResponseDataSchema = exports.sourceResponseAttributesSchema = exports.sourceresponseattributesSourceResponseAttributesSchema = exports.outputsResponseSchema = exports.outputsresponseOutputsResponseSchema = exports.renditionResponseAttributesSchema = exports.renditionresponseattributesRenditionResponseAttributesSchema = exports.outputsSchema = exports.outputsOutputsSchema = exports.renditionSchema = exports.renditionRenditionSchema = exports.sizeSchema = exports.sizeSizeSchema = exports.shapeAssetSchema = exports.shapeassetShapeAssetSchema = exports.transferSchema = exports.transferTransferSchema = exports.transferResponseSchema = exports.transferresponseTransferResponseSchema = exports.transferResponseDataSchema = exports.transferresponsedataTransferResponseDataSchema = exports.transferResponseAttributesSchema = exports.transferresponseattributesTransferResponseAttributesSchema = exports.richTextAssetSchema = exports.richtextassetRichTextAssetSchema = exports.richCaptionAssetSchema = exports.richcaptionassetRichCaptionAssetSchema = exports.richTextStyleSchema = exports.richtextpropertiesRichTextStyleSchema = exports.richTextFontSchema = exports.richtextpropertiesRichTextFontSchema = exports.richCaptionActiveSchema = exports.richcaptionpropertiesRichCaptionActiveSchema = exports.richTextStrokeSchema = exports.richtextpropertiesRichTextStrokeSchema = void 0;
9
+ exports.templateDataResponseDataSchema = exports.templatedataresponsedataTemplateDataResponseDataSchema = exports.renderResponseSchema = exports.renderresponseRenderResponseSchema = exports.renderResponseDataSchema = exports.renderresponsedataRenderResponseDataSchema = exports.editSchema = exports.editEditSchema = exports.timelineSchema = exports.timelineTimelineSchema = exports.trackSchema = exports.trackTrackSchema = exports.clipSchema = exports.clipClipSchema = exports.assetSchema = exports.assetAssetSchema = exports.videoAssetSchema = exports.videoassetVideoAssetSchema = exports.transformationSchema = exports.transformationTransformationSchema = exports.titleAssetSchema = exports.titleassetTitleAssetSchema = exports.textToSpeechAssetSchema = exports.texttospeechassetTextToSpeechAssetSchema = exports.skewTransformationSchema = exports.skewtransformationSkewTransformationSchema = exports.rotateTransformationSchema = exports.rotatetransformationRotateTransformationSchema = exports.offsetSchema = exports.offsetOffsetSchema = exports.audioAssetSchema = exports.audioassetAudioAssetSchema = exports.tweenSchema = exports.tweenTweenSchema = exports.transitionSchema = exports.transitionTransitionSchema = exports.outputSchema = exports.outputOutputSchema = exports.thumbnailSchema = exports.thumbnailThumbnailSchema = exports.textToImageAssetSchema = exports.texttoimageassetTextToImageAssetSchema = exports.textAssetSchema = exports.textassetTextAssetSchema = exports.textpropertiesTextStrokeSchema = exports.textFontSchema = exports.textpropertiesTextFontSchema = exports.textBackgroundSchema = exports.textpropertiesTextBackgroundSchema = exports.textpropertiesTextAnimationSchema = void 0;
10
+ exports.getGeneratedAssetResponse = exports.getGeneratedAssetRequest = exports.postGenerateAssetResponse = exports.postGenerateAssetRequest = exports.getUploadSignedUrlResponse = exports.getUploadSignedUrlRequest = exports.getSourceResponse = exports.getSourceRequest = exports.deleteSourceResponse = exports.deleteSourceRequest = exports.postSourceResponse = exports.postSourceRequest = exports.getSourcesResponse = exports.getSourcesRequest = exports.postServeAssetResponse = exports.postServeAssetRequest = exports.getAssetByRenderIdResponse = exports.getAssetByRenderIdRequest = exports.getAssetResponse = exports.getAssetRequest = exports.deleteAssetResponse = exports.deleteAssetRequest = exports.probeResponse = exports.probeRequest = exports.postTemplateRenderResponse = exports.postTemplateRenderRequest = exports.putTemplateResponse = exports.putTemplateRequest = exports.getTemplateResponse = exports.getTemplateRequest = exports.deleteTemplateResponse = exports.deleteTemplateRequest = exports.postTemplateResponse = exports.postTemplateRequest = exports.getTemplatesResponse = exports.getTemplatesRequest = exports.getRenderResponse = exports.getRenderRequest = exports.postRenderResponse = exports.postRenderRequest = exports.templateSchema = exports.templateTemplateSchema = exports.templateDataResponseSchema = exports.templatedataresponseTemplateDataResponseSchema = void 0;
11
11
  const zod_1 = require("zod");
12
12
  exports.editRootSchema = zod_1.z.unknown();
13
13
  exports.sourceRootSchema = zod_1.z.unknown();
@@ -810,6 +810,38 @@ exports.cropCropSchema = zod_1.z.object({
810
810
  } return v; }), zod_1.z.number().gte(0).lte(1)), zod_1.z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])),
811
811
  }).strict();
812
812
  exports.cropSchema = exports.cropCropSchema;
813
+ /**
814
+ * Pass additional options to control how files are stored in Akamai NetStorage.
815
+ */
816
+ exports.akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOptionsSchema = zod_1.z.object({
817
+ host: zod_1.z.string(),
818
+ cpCode: zod_1.z.string(),
819
+ path: zod_1.z.optional(zod_1.z.unknown()),
820
+ filename: zod_1.z.optional(zod_1.z.unknown()),
821
+ }).strict();
822
+ /**
823
+ * 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.
824
+ */
825
+ exports.akamaiNetStorageDestinationAkamaiNetStorageDestinationSchema = zod_1.z.object({
826
+ provider: zod_1.z.string().default("akamai-netstorage"),
827
+ options: zod_1.z.optional(exports.akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOptionsSchema),
828
+ }).strict();
829
+ /**
830
+ * Pass additional options to control how files are stored in Azure Blob Storage.
831
+ */
832
+ exports.azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOptionsSchema = zod_1.z.object({
833
+ accountName: zod_1.z.string(),
834
+ container: zod_1.z.string(),
835
+ prefix: zod_1.z.optional(zod_1.z.unknown()),
836
+ filename: zod_1.z.optional(zod_1.z.unknown()),
837
+ }).strict();
838
+ /**
839
+ * 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.
840
+ */
841
+ exports.azureBlobStorageDestinationAzureBlobStorageDestinationSchema = zod_1.z.object({
842
+ provider: zod_1.z.string().default("azure-blob-storage"),
843
+ options: zod_1.z.optional(exports.azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOptionsSchema),
844
+ }).strict();
813
845
  /**
814
846
  * Pass additional options to control how files are stored in Google Cloud Storage.
815
847
  */
@@ -1331,29 +1363,6 @@ exports.richcaptionpropertiesRichCaptionActiveFontSchema = zod_1.z.object({
1331
1363
  } return v; }), zod_1.z.number().gte(0).lte(1)), zod_1.z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])).default(1),
1332
1364
  }).strict();
1333
1365
  exports.richCaptionActiveFontSchema = exports.richcaptionpropertiesRichCaptionActiveFontSchema;
1334
- /**
1335
- * Font properties for rich captions. Defaults to Roboto.
1336
- */
1337
- exports.richcaptionpropertiesRichCaptionFontSchema = zod_1.z.object({
1338
- family: zod_1.z.optional(zod_1.z.string()).default("Roboto"),
1339
- size: zod_1.z.optional(zod_1.z.union([zod_1.z.preprocess(((v) => { if (v === '' || v === null || v === undefined)
1340
- return undefined; if (Array.isArray(v))
1341
- return v; if (typeof v === 'string') {
1342
- if (/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/.test(v))
1343
- return v;
1344
- return Number(v);
1345
- } return v; }), zod_1.z.number().int().gte(1).lte(500)), zod_1.z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])).default(24),
1346
- weight: zod_1.z.optional(zod_1.z.unknown()).default("400"),
1347
- color: zod_1.z.optional(zod_1.z.union([zod_1.z.string().regex(/^#[A-Fa-f0-9]{6}$/), zod_1.z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])).default("#ffffff"),
1348
- opacity: zod_1.z.optional(zod_1.z.union([zod_1.z.preprocess(((v) => { if (v === '' || v === null || v === undefined)
1349
- return undefined; if (Array.isArray(v))
1350
- return v; if (typeof v === 'string') {
1351
- if (/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/.test(v))
1352
- return v;
1353
- return Number(v);
1354
- } return v; }), zod_1.z.number().gte(0).lte(1)), zod_1.z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])).default(1),
1355
- background: zod_1.z.optional(zod_1.z.union([zod_1.z.string().regex(/^#[A-Fa-f0-9]{6}$/), zod_1.z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])),
1356
- }).strict();
1357
1366
  /**
1358
1367
  * Word-level animation properties for caption effects.
1359
1368
  */
@@ -1680,7 +1689,7 @@ exports.richcaptionassetRichCaptionAssetSchema = zod_1.z.object({
1680
1689
  type: zod_1.z.enum(["rich-caption"]),
1681
1690
  src: zod_1.z.optional(zod_1.z.string().min(1)),
1682
1691
  words: zod_1.z.optional(zod_1.z.array(exports.richcaptionpropertiesWordTimingSchema).max(100000)),
1683
- font: zod_1.z.optional(exports.richcaptionpropertiesRichCaptionFontSchema),
1692
+ font: zod_1.z.optional(exports.richtextpropertiesRichTextFontSchema),
1684
1693
  style: zod_1.z.optional(exports.richtextpropertiesRichTextStyleSchema),
1685
1694
  stroke: zod_1.z.optional(exports.richtextpropertiesRichTextStrokeSchema),
1686
1695
  shadow: zod_1.z.optional(exports.richtextpropertiesRichTextShadowSchema),