@shotstack/schemas 1.9.7 → 1.9.9
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 +164 -922
- package/dist/json-schema/asset.json +23 -14
- package/dist/json-schema/clip.json +23 -14
- package/dist/json-schema/destinations.json +28 -12
- package/dist/json-schema/edit.json +51 -26
- package/dist/json-schema/output.json +28 -12
- package/dist/json-schema/rich-caption-active-font.json +25 -1
- package/dist/json-schema/rich-caption-active.json +26 -16
- package/dist/json-schema/rich-caption-asset.json +23 -14
- package/dist/json-schema/schemas.json +59 -33
- package/dist/json-schema/timeline.json +23 -14
- package/dist/json-schema/track.json +23 -14
- package/dist/schema.d.ts +12 -521
- package/dist/zod/zod.gen.cjs +22 -525
- package/dist/zod/zod.gen.d.ts +262 -773
- package/dist/zod/zod.gen.js +19 -521
- package/dist/zod/zod.gen.ts +19 -303
- package/package.json +1 -1
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -164,8 +164,8 @@ export declare const cropSchema: z.ZodObject<{
|
|
|
164
164
|
export declare const akamaiNetStorageDestinationOptionsAkamaiNetStorageDestinationOptionsSchema: z.ZodObject<{
|
|
165
165
|
host: z.ZodString;
|
|
166
166
|
cpCode: z.ZodString;
|
|
167
|
-
path: z.ZodOptional<z.
|
|
168
|
-
filename: z.ZodOptional<z.
|
|
167
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
168
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
169
169
|
}, z.core.$strict>;
|
|
170
170
|
/**
|
|
171
171
|
* 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.
|
|
@@ -175,8 +175,8 @@ export declare const akamaiNetStorageDestinationAkamaiNetStorageDestinationSchem
|
|
|
175
175
|
options: z.ZodOptional<z.ZodObject<{
|
|
176
176
|
host: z.ZodString;
|
|
177
177
|
cpCode: z.ZodString;
|
|
178
|
-
path: z.ZodOptional<z.
|
|
179
|
-
filename: z.ZodOptional<z.
|
|
178
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
179
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
180
180
|
}, z.core.$strict>>;
|
|
181
181
|
}, z.core.$strict>;
|
|
182
182
|
/**
|
|
@@ -185,8 +185,8 @@ export declare const akamaiNetStorageDestinationAkamaiNetStorageDestinationSchem
|
|
|
185
185
|
export declare const azureBlobStorageDestinationOptionsAzureBlobStorageDestinationOptionsSchema: z.ZodObject<{
|
|
186
186
|
accountName: z.ZodString;
|
|
187
187
|
container: z.ZodString;
|
|
188
|
-
prefix: z.ZodOptional<z.
|
|
189
|
-
filename: z.ZodOptional<z.
|
|
188
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
189
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
190
190
|
}, z.core.$strict>;
|
|
191
191
|
/**
|
|
192
192
|
* 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.
|
|
@@ -196,8 +196,8 @@ export declare const azureBlobStorageDestinationAzureBlobStorageDestinationSchem
|
|
|
196
196
|
options: z.ZodOptional<z.ZodObject<{
|
|
197
197
|
accountName: z.ZodString;
|
|
198
198
|
container: z.ZodString;
|
|
199
|
-
prefix: z.ZodOptional<z.
|
|
200
|
-
filename: z.ZodOptional<z.
|
|
199
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
200
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
201
201
|
}, z.core.$strict>>;
|
|
202
202
|
}, z.core.$strict>;
|
|
203
203
|
/**
|
|
@@ -628,16 +628,16 @@ export declare const destinationsDestinationsSchema: z.ZodDiscriminatedUnion<[z.
|
|
|
628
628
|
options: z.ZodOptional<z.ZodObject<{
|
|
629
629
|
host: z.ZodString;
|
|
630
630
|
cpCode: z.ZodString;
|
|
631
|
-
path: z.ZodOptional<z.
|
|
632
|
-
filename: z.ZodOptional<z.
|
|
631
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
632
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
633
633
|
}, z.core.$strict>>;
|
|
634
634
|
}, z.core.$strict>, z.ZodObject<{
|
|
635
635
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
636
636
|
options: z.ZodOptional<z.ZodObject<{
|
|
637
637
|
accountName: z.ZodString;
|
|
638
638
|
container: z.ZodString;
|
|
639
|
-
prefix: z.ZodOptional<z.
|
|
640
|
-
filename: z.ZodOptional<z.
|
|
639
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
640
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
641
641
|
}, z.core.$strict>>;
|
|
642
642
|
}, z.core.$strict>], "provider">;
|
|
643
643
|
export declare const destinationsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -720,16 +720,16 @@ export declare const destinationsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
720
720
|
options: z.ZodOptional<z.ZodObject<{
|
|
721
721
|
host: z.ZodString;
|
|
722
722
|
cpCode: z.ZodString;
|
|
723
|
-
path: z.ZodOptional<z.
|
|
724
|
-
filename: z.ZodOptional<z.
|
|
723
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
724
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
725
725
|
}, z.core.$strict>>;
|
|
726
726
|
}, z.core.$strict>, z.ZodObject<{
|
|
727
727
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
728
728
|
options: z.ZodOptional<z.ZodObject<{
|
|
729
729
|
accountName: z.ZodString;
|
|
730
730
|
container: z.ZodString;
|
|
731
|
-
prefix: z.ZodOptional<z.
|
|
732
|
-
filename: z.ZodOptional<z.
|
|
731
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
732
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
733
733
|
}, z.core.$strict>>;
|
|
734
734
|
}, z.core.$strict>], "provider">;
|
|
735
735
|
/**
|
|
@@ -1534,6 +1534,8 @@ export declare const templateResponseSchema: z.ZodObject<{
|
|
|
1534
1534
|
* Font properties for the active/highlighted word.
|
|
1535
1535
|
*/
|
|
1536
1536
|
export declare const richcaptionpropertiesRichCaptionActiveFontSchema: z.ZodObject<{
|
|
1537
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1538
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1537
1539
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1538
1540
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1539
1541
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1545,6 +1547,8 @@ export declare const richcaptionpropertiesRichCaptionActiveFontSchema: z.ZodObje
|
|
|
1545
1547
|
}>>;
|
|
1546
1548
|
}, z.core.$strict>;
|
|
1547
1549
|
export declare const richCaptionActiveFontSchema: z.ZodObject<{
|
|
1550
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1551
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1548
1552
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1549
1553
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1550
1554
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1798,6 +1802,8 @@ export declare const richTextStrokeSchema: z.ZodObject<{
|
|
|
1798
1802
|
*/
|
|
1799
1803
|
export declare const richcaptionpropertiesRichCaptionActiveSchema: z.ZodObject<{
|
|
1800
1804
|
font: z.ZodOptional<z.ZodObject<{
|
|
1805
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1806
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1801
1807
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1802
1808
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1803
1809
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1824,10 +1830,11 @@ export declare const richcaptionpropertiesRichCaptionActiveSchema: z.ZodObject<{
|
|
|
1824
1830
|
}, z.core.$strict>, z.ZodEnum<{
|
|
1825
1831
|
none: "none";
|
|
1826
1832
|
}>]>>;
|
|
1827
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
1828
1833
|
}, z.core.$strict>;
|
|
1829
1834
|
export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
1830
1835
|
font: z.ZodOptional<z.ZodObject<{
|
|
1836
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1837
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1831
1838
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1832
1839
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1833
1840
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1854,7 +1861,6 @@ export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
|
1854
1861
|
}, z.core.$strict>, z.ZodEnum<{
|
|
1855
1862
|
none: "none";
|
|
1856
1863
|
}>]>>;
|
|
1857
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
1858
1864
|
}, z.core.$strict>;
|
|
1859
1865
|
/**
|
|
1860
1866
|
* The RichCaptionAsset provides word-level caption animations with rich-text styling. It supports
|
|
@@ -1945,6 +1951,8 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
1945
1951
|
}, z.core.$strict>>;
|
|
1946
1952
|
active: z.ZodOptional<z.ZodObject<{
|
|
1947
1953
|
font: z.ZodOptional<z.ZodObject<{
|
|
1954
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1955
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1948
1956
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1949
1957
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1950
1958
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1971,7 +1979,6 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
1971
1979
|
}, z.core.$strict>, z.ZodEnum<{
|
|
1972
1980
|
none: "none";
|
|
1973
1981
|
}>]>>;
|
|
1974
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
1975
1982
|
}, z.core.$strict>>;
|
|
1976
1983
|
animation: z.ZodOptional<z.ZodObject<{
|
|
1977
1984
|
style: z.ZodEnum<{
|
|
@@ -2075,6 +2082,8 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
2075
2082
|
}, z.core.$strict>>;
|
|
2076
2083
|
active: z.ZodOptional<z.ZodObject<{
|
|
2077
2084
|
font: z.ZodOptional<z.ZodObject<{
|
|
2085
|
+
family: z.ZodOptional<z.ZodString>;
|
|
2086
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
2078
2087
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
2079
2088
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
2080
2089
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -2101,7 +2110,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
2101
2110
|
}, z.core.$strict>, z.ZodEnum<{
|
|
2102
2111
|
none: "none";
|
|
2103
2112
|
}>]>>;
|
|
2104
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
2105
2113
|
}, z.core.$strict>>;
|
|
2106
2114
|
animation: z.ZodOptional<z.ZodObject<{
|
|
2107
2115
|
style: z.ZodEnum<{
|
|
@@ -2594,16 +2602,16 @@ export declare const transferTransferSchema: z.ZodObject<{
|
|
|
2594
2602
|
options: z.ZodOptional<z.ZodObject<{
|
|
2595
2603
|
host: z.ZodString;
|
|
2596
2604
|
cpCode: z.ZodString;
|
|
2597
|
-
path: z.ZodOptional<z.
|
|
2598
|
-
filename: z.ZodOptional<z.
|
|
2605
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2606
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2599
2607
|
}, z.core.$strict>>;
|
|
2600
2608
|
}, z.core.$strict>, z.ZodObject<{
|
|
2601
2609
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
2602
2610
|
options: z.ZodOptional<z.ZodObject<{
|
|
2603
2611
|
accountName: z.ZodString;
|
|
2604
2612
|
container: z.ZodString;
|
|
2605
|
-
prefix: z.ZodOptional<z.
|
|
2606
|
-
filename: z.ZodOptional<z.
|
|
2613
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2614
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2607
2615
|
}, z.core.$strict>>;
|
|
2608
2616
|
}, z.core.$strict>], "provider">>;
|
|
2609
2617
|
}, z.core.$strict>;
|
|
@@ -2690,16 +2698,16 @@ export declare const transferSchema: z.ZodObject<{
|
|
|
2690
2698
|
options: z.ZodOptional<z.ZodObject<{
|
|
2691
2699
|
host: z.ZodString;
|
|
2692
2700
|
cpCode: z.ZodString;
|
|
2693
|
-
path: z.ZodOptional<z.
|
|
2694
|
-
filename: z.ZodOptional<z.
|
|
2701
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2702
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2695
2703
|
}, z.core.$strict>>;
|
|
2696
2704
|
}, z.core.$strict>, z.ZodObject<{
|
|
2697
2705
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
2698
2706
|
options: z.ZodOptional<z.ZodObject<{
|
|
2699
2707
|
accountName: z.ZodString;
|
|
2700
2708
|
container: z.ZodString;
|
|
2701
|
-
prefix: z.ZodOptional<z.
|
|
2702
|
-
filename: z.ZodOptional<z.
|
|
2709
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2710
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2703
2711
|
}, z.core.$strict>>;
|
|
2704
2712
|
}, z.core.$strict>], "provider">>;
|
|
2705
2713
|
}, z.core.$strict>;
|
|
@@ -4438,16 +4446,16 @@ export declare const sourceSourceSchema: z.ZodObject<{
|
|
|
4438
4446
|
options: z.ZodOptional<z.ZodObject<{
|
|
4439
4447
|
host: z.ZodString;
|
|
4440
4448
|
cpCode: z.ZodString;
|
|
4441
|
-
path: z.ZodOptional<z.
|
|
4442
|
-
filename: z.ZodOptional<z.
|
|
4449
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4450
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4443
4451
|
}, z.core.$strict>>;
|
|
4444
4452
|
}, z.core.$strict>, z.ZodObject<{
|
|
4445
4453
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
4446
4454
|
options: z.ZodOptional<z.ZodObject<{
|
|
4447
4455
|
accountName: z.ZodString;
|
|
4448
4456
|
container: z.ZodString;
|
|
4449
|
-
prefix: z.ZodOptional<z.
|
|
4450
|
-
filename: z.ZodOptional<z.
|
|
4457
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4458
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4451
4459
|
}, z.core.$strict>>;
|
|
4452
4460
|
}, z.core.$strict>], "provider">>;
|
|
4453
4461
|
callback: z.ZodOptional<z.ZodString>;
|
|
@@ -4607,16 +4615,16 @@ export declare const sourceSchema: z.ZodObject<{
|
|
|
4607
4615
|
options: z.ZodOptional<z.ZodObject<{
|
|
4608
4616
|
host: z.ZodString;
|
|
4609
4617
|
cpCode: z.ZodString;
|
|
4610
|
-
path: z.ZodOptional<z.
|
|
4611
|
-
filename: z.ZodOptional<z.
|
|
4618
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4619
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4612
4620
|
}, z.core.$strict>>;
|
|
4613
4621
|
}, z.core.$strict>, z.ZodObject<{
|
|
4614
4622
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
4615
4623
|
options: z.ZodOptional<z.ZodObject<{
|
|
4616
4624
|
accountName: z.ZodString;
|
|
4617
4625
|
container: z.ZodString;
|
|
4618
|
-
prefix: z.ZodOptional<z.
|
|
4619
|
-
filename: z.ZodOptional<z.
|
|
4626
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4627
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
4620
4628
|
}, z.core.$strict>>;
|
|
4621
4629
|
}, z.core.$strict>], "provider">>;
|
|
4622
4630
|
callback: z.ZodOptional<z.ZodString>;
|
|
@@ -4677,592 +4685,6 @@ export declare const svgAssetSchema: z.ZodObject<{
|
|
|
4677
4685
|
}>;
|
|
4678
4686
|
src: z.ZodString;
|
|
4679
4687
|
}, z.core.$strict>;
|
|
4680
|
-
/**
|
|
4681
|
-
* A color stop in a gradient. Each stop defines a color at a specific position
|
|
4682
|
-
* along the gradient vector. Gradients require at least 2 stops.
|
|
4683
|
-
*
|
|
4684
|
-
*/
|
|
4685
|
-
export declare const svgpropertiesSvgGradientStopSchema: z.ZodObject<{
|
|
4686
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4687
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4688
|
-
}, z.core.$strict>;
|
|
4689
|
-
export declare const svgGradientStopSchema: z.ZodObject<{
|
|
4690
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4691
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4692
|
-
}, z.core.$strict>;
|
|
4693
|
-
/**
|
|
4694
|
-
* A linear gradient fill that transitions colors along a straight line.
|
|
4695
|
-
* The gradient direction is controlled by the `angle` property.
|
|
4696
|
-
*
|
|
4697
|
-
*/
|
|
4698
|
-
export declare const svgpropertiesSvgLinearGradientFillSchema: z.ZodObject<{
|
|
4699
|
-
type: z.ZodEnum<{
|
|
4700
|
-
linear: "linear";
|
|
4701
|
-
}>;
|
|
4702
|
-
angle: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4703
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
4704
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4705
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4706
|
-
}, z.core.$strict>>;
|
|
4707
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4708
|
-
}, z.core.$strict>;
|
|
4709
|
-
export declare const svgLinearGradientFillSchema: z.ZodObject<{
|
|
4710
|
-
type: z.ZodEnum<{
|
|
4711
|
-
linear: "linear";
|
|
4712
|
-
}>;
|
|
4713
|
-
angle: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4714
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
4715
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4716
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4717
|
-
}, z.core.$strict>>;
|
|
4718
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4719
|
-
}, z.core.$strict>;
|
|
4720
|
-
/**
|
|
4721
|
-
* A radial gradient fill that transitions colors radiating outward from a center point.
|
|
4722
|
-
* The gradient creates a circular or elliptical color transition.
|
|
4723
|
-
*
|
|
4724
|
-
*/
|
|
4725
|
-
export declare const svgpropertiesSvgRadialGradientFillSchema: z.ZodObject<{
|
|
4726
|
-
type: z.ZodEnum<{
|
|
4727
|
-
radial: "radial";
|
|
4728
|
-
}>;
|
|
4729
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
4730
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4731
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4732
|
-
}, z.core.$strict>>;
|
|
4733
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4734
|
-
}, z.core.$strict>;
|
|
4735
|
-
export declare const svgRadialGradientFillSchema: z.ZodObject<{
|
|
4736
|
-
type: z.ZodEnum<{
|
|
4737
|
-
radial: "radial";
|
|
4738
|
-
}>;
|
|
4739
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
4740
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4741
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4742
|
-
}, z.core.$strict>>;
|
|
4743
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4744
|
-
}, z.core.$strict>;
|
|
4745
|
-
/**
|
|
4746
|
-
* Drop shadow properties for SVG shapes. Creates a shadow effect behind the shape.
|
|
4747
|
-
*
|
|
4748
|
-
*/
|
|
4749
|
-
export declare const svgpropertiesSvgShadowSchema: z.ZodObject<{
|
|
4750
|
-
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4751
|
-
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4752
|
-
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4753
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4754
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4755
|
-
}, z.core.$strict>;
|
|
4756
|
-
export declare const svgShadowSchema: z.ZodObject<{
|
|
4757
|
-
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4758
|
-
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4759
|
-
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4760
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4761
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4762
|
-
}, z.core.$strict>;
|
|
4763
|
-
/**
|
|
4764
|
-
* A solid color fill for SVG shapes.
|
|
4765
|
-
*/
|
|
4766
|
-
export declare const svgpropertiesSvgSolidFillSchema: z.ZodObject<{
|
|
4767
|
-
type: z.ZodEnum<{
|
|
4768
|
-
solid: "solid";
|
|
4769
|
-
}>;
|
|
4770
|
-
color: z.ZodDefault<z.ZodString>;
|
|
4771
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4772
|
-
}, z.core.$strict>;
|
|
4773
|
-
export declare const svgSolidFillSchema: z.ZodObject<{
|
|
4774
|
-
type: z.ZodEnum<{
|
|
4775
|
-
solid: "solid";
|
|
4776
|
-
}>;
|
|
4777
|
-
color: z.ZodDefault<z.ZodString>;
|
|
4778
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4779
|
-
}, z.core.$strict>;
|
|
4780
|
-
/**
|
|
4781
|
-
* Fill properties for SVG shapes. Supports solid colors and gradients.
|
|
4782
|
-
* The fill defines how the interior of a shape is painted.
|
|
4783
|
-
*
|
|
4784
|
-
*/
|
|
4785
|
-
export declare const svgpropertiesSvgFillSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4786
|
-
type: z.ZodEnum<{
|
|
4787
|
-
solid: "solid";
|
|
4788
|
-
}>;
|
|
4789
|
-
color: z.ZodDefault<z.ZodString>;
|
|
4790
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4791
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4792
|
-
type: z.ZodEnum<{
|
|
4793
|
-
linear: "linear";
|
|
4794
|
-
}>;
|
|
4795
|
-
angle: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4796
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
4797
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4798
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4799
|
-
}, z.core.$strict>>;
|
|
4800
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4801
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4802
|
-
type: z.ZodEnum<{
|
|
4803
|
-
radial: "radial";
|
|
4804
|
-
}>;
|
|
4805
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
4806
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4807
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4808
|
-
}, z.core.$strict>>;
|
|
4809
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4810
|
-
}, z.core.$strict>], "type">;
|
|
4811
|
-
export declare const svgFillSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4812
|
-
type: z.ZodEnum<{
|
|
4813
|
-
solid: "solid";
|
|
4814
|
-
}>;
|
|
4815
|
-
color: z.ZodDefault<z.ZodString>;
|
|
4816
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4817
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4818
|
-
type: z.ZodEnum<{
|
|
4819
|
-
linear: "linear";
|
|
4820
|
-
}>;
|
|
4821
|
-
angle: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4822
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
4823
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4824
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4825
|
-
}, z.core.$strict>>;
|
|
4826
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4827
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4828
|
-
type: z.ZodEnum<{
|
|
4829
|
-
radial: "radial";
|
|
4830
|
-
}>;
|
|
4831
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
4832
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4833
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4834
|
-
}, z.core.$strict>>;
|
|
4835
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4836
|
-
}, z.core.$strict>], "type">;
|
|
4837
|
-
/**
|
|
4838
|
-
* Stroke (outline) properties for SVG shapes. The stroke defines how the outline
|
|
4839
|
-
* of a shape is painted, including its color, width, and line style.
|
|
4840
|
-
*
|
|
4841
|
-
*/
|
|
4842
|
-
export declare const svgpropertiesSvgStrokeSchema: z.ZodObject<{
|
|
4843
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4844
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4845
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4846
|
-
lineCap: z.ZodOptional<z.ZodEnum<{
|
|
4847
|
-
butt: "butt";
|
|
4848
|
-
round: "round";
|
|
4849
|
-
square: "square";
|
|
4850
|
-
}>>;
|
|
4851
|
-
lineJoin: z.ZodOptional<z.ZodEnum<{
|
|
4852
|
-
round: "round";
|
|
4853
|
-
miter: "miter";
|
|
4854
|
-
bevel: "bevel";
|
|
4855
|
-
}>>;
|
|
4856
|
-
dashArray: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4857
|
-
dashOffset: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4858
|
-
}, z.core.$strict>;
|
|
4859
|
-
export declare const svgStrokeSchema: z.ZodObject<{
|
|
4860
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4861
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4862
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4863
|
-
lineCap: z.ZodOptional<z.ZodEnum<{
|
|
4864
|
-
butt: "butt";
|
|
4865
|
-
round: "round";
|
|
4866
|
-
square: "square";
|
|
4867
|
-
}>>;
|
|
4868
|
-
lineJoin: z.ZodOptional<z.ZodEnum<{
|
|
4869
|
-
round: "round";
|
|
4870
|
-
miter: "miter";
|
|
4871
|
-
bevel: "bevel";
|
|
4872
|
-
}>>;
|
|
4873
|
-
dashArray: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4874
|
-
dashOffset: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4875
|
-
}, z.core.$strict>;
|
|
4876
|
-
/**
|
|
4877
|
-
* Transformation properties for positioning, rotating, and scaling SVG shapes.
|
|
4878
|
-
*
|
|
4879
|
-
*/
|
|
4880
|
-
export declare const svgpropertiesSvgTransformSchema: z.ZodObject<{
|
|
4881
|
-
x: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4882
|
-
y: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4883
|
-
rotation: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4884
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4885
|
-
originX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4886
|
-
originY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4887
|
-
}, z.core.$strict>;
|
|
4888
|
-
export declare const svgTransformSchema: z.ZodObject<{
|
|
4889
|
-
x: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4890
|
-
y: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4891
|
-
rotation: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4892
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4893
|
-
originX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4894
|
-
originY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4895
|
-
}, z.core.$strict>;
|
|
4896
|
-
/**
|
|
4897
|
-
* An arrow shape pointing to the right by default.
|
|
4898
|
-
* Use transform rotation to change direction.
|
|
4899
|
-
*
|
|
4900
|
-
*/
|
|
4901
|
-
export declare const svgshapesSvgArrowShapeSchema: z.ZodObject<{
|
|
4902
|
-
type: z.ZodEnum<{
|
|
4903
|
-
arrow: "arrow";
|
|
4904
|
-
}>;
|
|
4905
|
-
length: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4906
|
-
headWidth: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4907
|
-
headLength: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4908
|
-
shaftWidth: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4909
|
-
}, z.core.$strict>;
|
|
4910
|
-
export declare const svgArrowShapeSchema: z.ZodObject<{
|
|
4911
|
-
type: z.ZodEnum<{
|
|
4912
|
-
arrow: "arrow";
|
|
4913
|
-
}>;
|
|
4914
|
-
length: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4915
|
-
headWidth: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4916
|
-
headLength: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4917
|
-
shaftWidth: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4918
|
-
}, z.core.$strict>;
|
|
4919
|
-
/**
|
|
4920
|
-
* A perfect circle shape defined by its radius.
|
|
4921
|
-
* The circle is centered at the shape's position.
|
|
4922
|
-
*
|
|
4923
|
-
*/
|
|
4924
|
-
export declare const svgshapesSvgCircleShapeSchema: z.ZodObject<{
|
|
4925
|
-
type: z.ZodEnum<{
|
|
4926
|
-
circle: "circle";
|
|
4927
|
-
}>;
|
|
4928
|
-
radius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4929
|
-
}, z.core.$strict>;
|
|
4930
|
-
export declare const svgCircleShapeSchema: z.ZodObject<{
|
|
4931
|
-
type: z.ZodEnum<{
|
|
4932
|
-
circle: "circle";
|
|
4933
|
-
}>;
|
|
4934
|
-
radius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4935
|
-
}, z.core.$strict>;
|
|
4936
|
-
/**
|
|
4937
|
-
* A cross or plus shape with equal or different arm lengths.
|
|
4938
|
-
* Can be styled as a plus sign (+) or a cross (x with rotation).
|
|
4939
|
-
*
|
|
4940
|
-
*/
|
|
4941
|
-
export declare const svgshapesSvgCrossShapeSchema: z.ZodObject<{
|
|
4942
|
-
type: z.ZodEnum<{
|
|
4943
|
-
cross: "cross";
|
|
4944
|
-
}>;
|
|
4945
|
-
width: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4946
|
-
height: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4947
|
-
thickness: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4948
|
-
}, z.core.$strict>;
|
|
4949
|
-
export declare const svgCrossShapeSchema: z.ZodObject<{
|
|
4950
|
-
type: z.ZodEnum<{
|
|
4951
|
-
cross: "cross";
|
|
4952
|
-
}>;
|
|
4953
|
-
width: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4954
|
-
height: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4955
|
-
thickness: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4956
|
-
}, z.core.$strict>;
|
|
4957
|
-
/**
|
|
4958
|
-
* An ellipse (oval) shape with separate horizontal and vertical radii.
|
|
4959
|
-
* The ellipse is centered at the shape's position.
|
|
4960
|
-
*
|
|
4961
|
-
*/
|
|
4962
|
-
export declare const svgshapesSvgEllipseShapeSchema: z.ZodObject<{
|
|
4963
|
-
type: z.ZodEnum<{
|
|
4964
|
-
ellipse: "ellipse";
|
|
4965
|
-
}>;
|
|
4966
|
-
radiusX: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4967
|
-
radiusY: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4968
|
-
}, z.core.$strict>;
|
|
4969
|
-
export declare const svgEllipseShapeSchema: z.ZodObject<{
|
|
4970
|
-
type: z.ZodEnum<{
|
|
4971
|
-
ellipse: "ellipse";
|
|
4972
|
-
}>;
|
|
4973
|
-
radiusX: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4974
|
-
radiusY: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4975
|
-
}, z.core.$strict>;
|
|
4976
|
-
/**
|
|
4977
|
-
* A heart shape commonly used for love/like icons.
|
|
4978
|
-
* The heart is defined by a single size parameter.
|
|
4979
|
-
*
|
|
4980
|
-
*/
|
|
4981
|
-
export declare const svgshapesSvgHeartShapeSchema: z.ZodObject<{
|
|
4982
|
-
type: z.ZodEnum<{
|
|
4983
|
-
heart: "heart";
|
|
4984
|
-
}>;
|
|
4985
|
-
size: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4986
|
-
}, z.core.$strict>;
|
|
4987
|
-
export declare const svgHeartShapeSchema: z.ZodObject<{
|
|
4988
|
-
type: z.ZodEnum<{
|
|
4989
|
-
heart: "heart";
|
|
4990
|
-
}>;
|
|
4991
|
-
size: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4992
|
-
}, z.core.$strict>;
|
|
4993
|
-
/**
|
|
4994
|
-
* A straight line shape with a specified length and thickness.
|
|
4995
|
-
* The line is drawn horizontally by default and can be rotated using transform.
|
|
4996
|
-
*
|
|
4997
|
-
*/
|
|
4998
|
-
export declare const svgshapesSvgLineShapeSchema: z.ZodObject<{
|
|
4999
|
-
type: z.ZodEnum<{
|
|
5000
|
-
line: "line";
|
|
5001
|
-
}>;
|
|
5002
|
-
length: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5003
|
-
thickness: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5004
|
-
}, z.core.$strict>;
|
|
5005
|
-
export declare const svgLineShapeSchema: z.ZodObject<{
|
|
5006
|
-
type: z.ZodEnum<{
|
|
5007
|
-
line: "line";
|
|
5008
|
-
}>;
|
|
5009
|
-
length: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5010
|
-
thickness: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5011
|
-
}, z.core.$strict>;
|
|
5012
|
-
/**
|
|
5013
|
-
* A custom shape defined by SVG path data.
|
|
5014
|
-
* Supports all standard SVG path commands for creating complex shapes.
|
|
5015
|
-
*
|
|
5016
|
-
* **Path Commands:**
|
|
5017
|
-
* - `M x y` / `m dx dy` - Move to (absolute/relative)
|
|
5018
|
-
* - `L x y` / `l dx dy` - Line to
|
|
5019
|
-
* - `H x` / `h dx` - Horizontal line to
|
|
5020
|
-
* - `V y` / `v dy` - Vertical line to
|
|
5021
|
-
* - `C x1 y1 x2 y2 x y` / `c` - Cubic Bezier curve
|
|
5022
|
-
* - `S x2 y2 x y` / `s` - Smooth cubic Bezier
|
|
5023
|
-
* - `Q x1 y1 x y` / `q` - Quadratic Bezier curve
|
|
5024
|
-
* - `T x y` / `t` - Smooth quadratic Bezier
|
|
5025
|
-
* - `A rx ry angle large-arc sweep x y` / `a` - Elliptical arc
|
|
5026
|
-
* - `Z` / `z` - Close path
|
|
5027
|
-
*
|
|
5028
|
-
*/
|
|
5029
|
-
export declare const svgshapesSvgPathShapeSchema: z.ZodObject<{
|
|
5030
|
-
type: z.ZodEnum<{
|
|
5031
|
-
path: "path";
|
|
5032
|
-
}>;
|
|
5033
|
-
d: z.ZodString;
|
|
5034
|
-
}, z.core.$strict>;
|
|
5035
|
-
export declare const svgPathShapeSchema: z.ZodObject<{
|
|
5036
|
-
type: z.ZodEnum<{
|
|
5037
|
-
path: "path";
|
|
5038
|
-
}>;
|
|
5039
|
-
d: z.ZodString;
|
|
5040
|
-
}, z.core.$strict>;
|
|
5041
|
-
/**
|
|
5042
|
-
* A regular polygon shape with a specified number of sides.
|
|
5043
|
-
* Examples: triangle (3), square (4), pentagon (5), hexagon (6), etc.
|
|
5044
|
-
* The polygon is inscribed in a circle of the given radius.
|
|
5045
|
-
*
|
|
5046
|
-
*/
|
|
5047
|
-
export declare const svgshapesSvgPolygonShapeSchema: z.ZodObject<{
|
|
5048
|
-
type: z.ZodEnum<{
|
|
5049
|
-
polygon: "polygon";
|
|
5050
|
-
}>;
|
|
5051
|
-
sides: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5052
|
-
radius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5053
|
-
}, z.core.$strict>;
|
|
5054
|
-
export declare const svgPolygonShapeSchema: z.ZodObject<{
|
|
5055
|
-
type: z.ZodEnum<{
|
|
5056
|
-
polygon: "polygon";
|
|
5057
|
-
}>;
|
|
5058
|
-
sides: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5059
|
-
radius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5060
|
-
}, z.core.$strict>;
|
|
5061
|
-
/**
|
|
5062
|
-
* A rectangle shape with optional rounded corners.
|
|
5063
|
-
* The rectangle is defined by its width and height dimensions.
|
|
5064
|
-
*
|
|
5065
|
-
*/
|
|
5066
|
-
export declare const svgshapesSvgRectangleShapeSchema: z.ZodObject<{
|
|
5067
|
-
type: z.ZodEnum<{
|
|
5068
|
-
rectangle: "rectangle";
|
|
5069
|
-
}>;
|
|
5070
|
-
width: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5071
|
-
height: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5072
|
-
cornerRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5073
|
-
}, z.core.$strict>;
|
|
5074
|
-
export declare const svgRectangleShapeSchema: z.ZodObject<{
|
|
5075
|
-
type: z.ZodEnum<{
|
|
5076
|
-
rectangle: "rectangle";
|
|
5077
|
-
}>;
|
|
5078
|
-
width: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5079
|
-
height: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5080
|
-
cornerRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5081
|
-
}, z.core.$strict>;
|
|
5082
|
-
/**
|
|
5083
|
-
* A ring (donut/annulus) shape - a circle with a circular hole in the center.
|
|
5084
|
-
* The ring is defined by outer and inner radii.
|
|
5085
|
-
*
|
|
5086
|
-
*/
|
|
5087
|
-
export declare const svgshapesSvgRingShapeSchema: z.ZodObject<{
|
|
5088
|
-
type: z.ZodEnum<{
|
|
5089
|
-
ring: "ring";
|
|
5090
|
-
}>;
|
|
5091
|
-
outerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5092
|
-
innerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5093
|
-
}, z.core.$strict>;
|
|
5094
|
-
export declare const svgRingShapeSchema: z.ZodObject<{
|
|
5095
|
-
type: z.ZodEnum<{
|
|
5096
|
-
ring: "ring";
|
|
5097
|
-
}>;
|
|
5098
|
-
outerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5099
|
-
innerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5100
|
-
}, z.core.$strict>;
|
|
5101
|
-
/**
|
|
5102
|
-
* A star shape with a specified number of points.
|
|
5103
|
-
* The star is defined by outer and inner radii, creating the characteristic
|
|
5104
|
-
* pointed appearance.
|
|
5105
|
-
*
|
|
5106
|
-
*/
|
|
5107
|
-
export declare const svgshapesSvgStarShapeSchema: z.ZodObject<{
|
|
5108
|
-
type: z.ZodEnum<{
|
|
5109
|
-
star: "star";
|
|
5110
|
-
}>;
|
|
5111
|
-
points: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5112
|
-
outerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5113
|
-
innerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5114
|
-
}, z.core.$strict>;
|
|
5115
|
-
export declare const svgStarShapeSchema: z.ZodObject<{
|
|
5116
|
-
type: z.ZodEnum<{
|
|
5117
|
-
star: "star";
|
|
5118
|
-
}>;
|
|
5119
|
-
points: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5120
|
-
outerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5121
|
-
innerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5122
|
-
}, z.core.$strict>;
|
|
5123
|
-
/**
|
|
5124
|
-
* The shape definition for an SVG asset. Each shape type has its own specific
|
|
5125
|
-
* properties. The `type` field determines which shape is rendered.
|
|
5126
|
-
*
|
|
5127
|
-
*/
|
|
5128
|
-
export declare const svgshapesSvgShapeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5129
|
-
type: z.ZodEnum<{
|
|
5130
|
-
rectangle: "rectangle";
|
|
5131
|
-
}>;
|
|
5132
|
-
width: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5133
|
-
height: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5134
|
-
cornerRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5135
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5136
|
-
type: z.ZodEnum<{
|
|
5137
|
-
circle: "circle";
|
|
5138
|
-
}>;
|
|
5139
|
-
radius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5140
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5141
|
-
type: z.ZodEnum<{
|
|
5142
|
-
ellipse: "ellipse";
|
|
5143
|
-
}>;
|
|
5144
|
-
radiusX: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5145
|
-
radiusY: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5146
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5147
|
-
type: z.ZodEnum<{
|
|
5148
|
-
line: "line";
|
|
5149
|
-
}>;
|
|
5150
|
-
length: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5151
|
-
thickness: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5152
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5153
|
-
type: z.ZodEnum<{
|
|
5154
|
-
polygon: "polygon";
|
|
5155
|
-
}>;
|
|
5156
|
-
sides: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5157
|
-
radius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5158
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5159
|
-
type: z.ZodEnum<{
|
|
5160
|
-
star: "star";
|
|
5161
|
-
}>;
|
|
5162
|
-
points: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5163
|
-
outerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5164
|
-
innerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5165
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5166
|
-
type: z.ZodEnum<{
|
|
5167
|
-
arrow: "arrow";
|
|
5168
|
-
}>;
|
|
5169
|
-
length: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5170
|
-
headWidth: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5171
|
-
headLength: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5172
|
-
shaftWidth: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5173
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5174
|
-
type: z.ZodEnum<{
|
|
5175
|
-
heart: "heart";
|
|
5176
|
-
}>;
|
|
5177
|
-
size: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5178
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5179
|
-
type: z.ZodEnum<{
|
|
5180
|
-
cross: "cross";
|
|
5181
|
-
}>;
|
|
5182
|
-
width: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5183
|
-
height: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5184
|
-
thickness: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5185
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5186
|
-
type: z.ZodEnum<{
|
|
5187
|
-
ring: "ring";
|
|
5188
|
-
}>;
|
|
5189
|
-
outerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5190
|
-
innerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5191
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5192
|
-
type: z.ZodEnum<{
|
|
5193
|
-
path: "path";
|
|
5194
|
-
}>;
|
|
5195
|
-
d: z.ZodString;
|
|
5196
|
-
}, z.core.$strict>], "type">;
|
|
5197
|
-
export declare const svgShapeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5198
|
-
type: z.ZodEnum<{
|
|
5199
|
-
rectangle: "rectangle";
|
|
5200
|
-
}>;
|
|
5201
|
-
width: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5202
|
-
height: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5203
|
-
cornerRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5204
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5205
|
-
type: z.ZodEnum<{
|
|
5206
|
-
circle: "circle";
|
|
5207
|
-
}>;
|
|
5208
|
-
radius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5209
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5210
|
-
type: z.ZodEnum<{
|
|
5211
|
-
ellipse: "ellipse";
|
|
5212
|
-
}>;
|
|
5213
|
-
radiusX: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5214
|
-
radiusY: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5215
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5216
|
-
type: z.ZodEnum<{
|
|
5217
|
-
line: "line";
|
|
5218
|
-
}>;
|
|
5219
|
-
length: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5220
|
-
thickness: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5221
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5222
|
-
type: z.ZodEnum<{
|
|
5223
|
-
polygon: "polygon";
|
|
5224
|
-
}>;
|
|
5225
|
-
sides: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5226
|
-
radius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5227
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5228
|
-
type: z.ZodEnum<{
|
|
5229
|
-
star: "star";
|
|
5230
|
-
}>;
|
|
5231
|
-
points: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5232
|
-
outerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5233
|
-
innerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5234
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5235
|
-
type: z.ZodEnum<{
|
|
5236
|
-
arrow: "arrow";
|
|
5237
|
-
}>;
|
|
5238
|
-
length: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5239
|
-
headWidth: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5240
|
-
headLength: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5241
|
-
shaftWidth: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5242
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5243
|
-
type: z.ZodEnum<{
|
|
5244
|
-
heart: "heart";
|
|
5245
|
-
}>;
|
|
5246
|
-
size: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5247
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5248
|
-
type: z.ZodEnum<{
|
|
5249
|
-
cross: "cross";
|
|
5250
|
-
}>;
|
|
5251
|
-
width: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5252
|
-
height: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5253
|
-
thickness: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5254
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5255
|
-
type: z.ZodEnum<{
|
|
5256
|
-
ring: "ring";
|
|
5257
|
-
}>;
|
|
5258
|
-
outerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5259
|
-
innerRadius: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5260
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
5261
|
-
type: z.ZodEnum<{
|
|
5262
|
-
path: "path";
|
|
5263
|
-
}>;
|
|
5264
|
-
d: z.ZodString;
|
|
5265
|
-
}, z.core.$strict>], "type">;
|
|
5266
4688
|
/**
|
|
5267
4689
|
* Configure the id and optional merge fields to render a template by id.
|
|
5268
4690
|
*/
|
|
@@ -5634,16 +5056,16 @@ export declare const outputOutputSchema: z.ZodObject<{
|
|
|
5634
5056
|
options: z.ZodOptional<z.ZodObject<{
|
|
5635
5057
|
host: z.ZodString;
|
|
5636
5058
|
cpCode: z.ZodString;
|
|
5637
|
-
path: z.ZodOptional<z.
|
|
5638
|
-
filename: z.ZodOptional<z.
|
|
5059
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
5060
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
5639
5061
|
}, z.core.$strict>>;
|
|
5640
5062
|
}, z.core.$strict>, z.ZodObject<{
|
|
5641
5063
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
5642
5064
|
options: z.ZodOptional<z.ZodObject<{
|
|
5643
5065
|
accountName: z.ZodString;
|
|
5644
5066
|
container: z.ZodString;
|
|
5645
|
-
prefix: z.ZodOptional<z.
|
|
5646
|
-
filename: z.ZodOptional<z.
|
|
5067
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
5068
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
5647
5069
|
}, z.core.$strict>>;
|
|
5648
5070
|
}, z.core.$strict>], "provider">>>;
|
|
5649
5071
|
}, z.core.$strict>;
|
|
@@ -5784,16 +5206,16 @@ export declare const outputSchema: z.ZodObject<{
|
|
|
5784
5206
|
options: z.ZodOptional<z.ZodObject<{
|
|
5785
5207
|
host: z.ZodString;
|
|
5786
5208
|
cpCode: z.ZodString;
|
|
5787
|
-
path: z.ZodOptional<z.
|
|
5788
|
-
filename: z.ZodOptional<z.
|
|
5209
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
5210
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
5789
5211
|
}, z.core.$strict>>;
|
|
5790
5212
|
}, z.core.$strict>, z.ZodObject<{
|
|
5791
5213
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
5792
5214
|
options: z.ZodOptional<z.ZodObject<{
|
|
5793
5215
|
accountName: z.ZodString;
|
|
5794
5216
|
container: z.ZodString;
|
|
5795
|
-
prefix: z.ZodOptional<z.
|
|
5796
|
-
filename: z.ZodOptional<z.
|
|
5217
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
5218
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
5797
5219
|
}, z.core.$strict>>;
|
|
5798
5220
|
}, z.core.$strict>], "provider">>>;
|
|
5799
5221
|
}, z.core.$strict>;
|
|
@@ -7878,6 +7300,8 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7878
7300
|
}, z.core.$strict>>;
|
|
7879
7301
|
active: z.ZodOptional<z.ZodObject<{
|
|
7880
7302
|
font: z.ZodOptional<z.ZodObject<{
|
|
7303
|
+
family: z.ZodOptional<z.ZodString>;
|
|
7304
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
7881
7305
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
7882
7306
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
7883
7307
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -7904,7 +7328,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7904
7328
|
}, z.core.$strict>, z.ZodEnum<{
|
|
7905
7329
|
none: "none";
|
|
7906
7330
|
}>]>>;
|
|
7907
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
7908
7331
|
}, z.core.$strict>>;
|
|
7909
7332
|
animation: z.ZodOptional<z.ZodObject<{
|
|
7910
7333
|
style: z.ZodEnum<{
|
|
@@ -8594,6 +8017,8 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8594
8017
|
}, z.core.$strict>>;
|
|
8595
8018
|
active: z.ZodOptional<z.ZodObject<{
|
|
8596
8019
|
font: z.ZodOptional<z.ZodObject<{
|
|
8020
|
+
family: z.ZodOptional<z.ZodString>;
|
|
8021
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
8597
8022
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
8598
8023
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
8599
8024
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -8620,7 +8045,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8620
8045
|
}, z.core.$strict>, z.ZodEnum<{
|
|
8621
8046
|
none: "none";
|
|
8622
8047
|
}>]>>;
|
|
8623
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
8624
8048
|
}, z.core.$strict>>;
|
|
8625
8049
|
animation: z.ZodOptional<z.ZodObject<{
|
|
8626
8050
|
style: z.ZodEnum<{
|
|
@@ -9314,6 +8738,8 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
9314
8738
|
}, z.core.$strict>>;
|
|
9315
8739
|
active: z.ZodOptional<z.ZodObject<{
|
|
9316
8740
|
font: z.ZodOptional<z.ZodObject<{
|
|
8741
|
+
family: z.ZodOptional<z.ZodString>;
|
|
8742
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
9317
8743
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
9318
8744
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
9319
8745
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -9340,7 +8766,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
9340
8766
|
}, z.core.$strict>, z.ZodEnum<{
|
|
9341
8767
|
none: "none";
|
|
9342
8768
|
}>]>>;
|
|
9343
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
9344
8769
|
}, z.core.$strict>>;
|
|
9345
8770
|
animation: z.ZodOptional<z.ZodObject<{
|
|
9346
8771
|
style: z.ZodEnum<{
|
|
@@ -10514,6 +9939,8 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
10514
9939
|
}, z.core.$strict>>;
|
|
10515
9940
|
active: z.ZodOptional<z.ZodObject<{
|
|
10516
9941
|
font: z.ZodOptional<z.ZodObject<{
|
|
9942
|
+
family: z.ZodOptional<z.ZodString>;
|
|
9943
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
10517
9944
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
10518
9945
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
10519
9946
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -10540,7 +9967,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
10540
9967
|
}, z.core.$strict>, z.ZodEnum<{
|
|
10541
9968
|
none: "none";
|
|
10542
9969
|
}>]>>;
|
|
10543
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
10544
9970
|
}, z.core.$strict>>;
|
|
10545
9971
|
animation: z.ZodOptional<z.ZodObject<{
|
|
10546
9972
|
style: z.ZodEnum<{
|
|
@@ -11718,6 +11144,8 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
11718
11144
|
}, z.core.$strict>>;
|
|
11719
11145
|
active: z.ZodOptional<z.ZodObject<{
|
|
11720
11146
|
font: z.ZodOptional<z.ZodObject<{
|
|
11147
|
+
family: z.ZodOptional<z.ZodString>;
|
|
11148
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
11721
11149
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11722
11150
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11723
11151
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11744,7 +11172,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
11744
11172
|
}, z.core.$strict>, z.ZodEnum<{
|
|
11745
11173
|
none: "none";
|
|
11746
11174
|
}>]>>;
|
|
11747
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11748
11175
|
}, z.core.$strict>>;
|
|
11749
11176
|
animation: z.ZodOptional<z.ZodObject<{
|
|
11750
11177
|
style: z.ZodEnum<{
|
|
@@ -12759,9 +12186,10 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
12759
12186
|
vertical?: "top" | "bottom" | "middle";
|
|
12760
12187
|
};
|
|
12761
12188
|
active?: {
|
|
12762
|
-
scale: string | number;
|
|
12763
12189
|
font?: {
|
|
12190
|
+
weight: unknown;
|
|
12764
12191
|
opacity: string | number;
|
|
12192
|
+
family?: string;
|
|
12765
12193
|
color?: string;
|
|
12766
12194
|
background?: string;
|
|
12767
12195
|
size?: string | number;
|
|
@@ -13208,9 +12636,10 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
13208
12636
|
vertical?: "top" | "bottom" | "middle";
|
|
13209
12637
|
};
|
|
13210
12638
|
active?: {
|
|
13211
|
-
scale: string | number;
|
|
13212
12639
|
font?: {
|
|
12640
|
+
weight: unknown;
|
|
13213
12641
|
opacity: string | number;
|
|
12642
|
+
family?: string;
|
|
13214
12643
|
color?: string;
|
|
13215
12644
|
background?: string;
|
|
13216
12645
|
size?: string | number;
|
|
@@ -13819,6 +13248,8 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
13819
13248
|
}, z.core.$strict>>;
|
|
13820
13249
|
active: z.ZodOptional<z.ZodObject<{
|
|
13821
13250
|
font: z.ZodOptional<z.ZodObject<{
|
|
13251
|
+
family: z.ZodOptional<z.ZodString>;
|
|
13252
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
13822
13253
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
13823
13254
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
13824
13255
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -13845,7 +13276,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
13845
13276
|
}, z.core.$strict>, z.ZodEnum<{
|
|
13846
13277
|
none: "none";
|
|
13847
13278
|
}>]>>;
|
|
13848
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
13849
13279
|
}, z.core.$strict>>;
|
|
13850
13280
|
animation: z.ZodOptional<z.ZodObject<{
|
|
13851
13281
|
style: z.ZodEnum<{
|
|
@@ -14860,9 +14290,10 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
14860
14290
|
vertical?: "top" | "bottom" | "middle";
|
|
14861
14291
|
};
|
|
14862
14292
|
active?: {
|
|
14863
|
-
scale: string | number;
|
|
14864
14293
|
font?: {
|
|
14294
|
+
weight: unknown;
|
|
14865
14295
|
opacity: string | number;
|
|
14296
|
+
family?: string;
|
|
14866
14297
|
color?: string;
|
|
14867
14298
|
background?: string;
|
|
14868
14299
|
size?: string | number;
|
|
@@ -15309,9 +14740,10 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
15309
14740
|
vertical?: "top" | "bottom" | "middle";
|
|
15310
14741
|
};
|
|
15311
14742
|
active?: {
|
|
15312
|
-
scale: string | number;
|
|
15313
14743
|
font?: {
|
|
14744
|
+
weight: unknown;
|
|
15314
14745
|
opacity: string | number;
|
|
14746
|
+
family?: string;
|
|
15315
14747
|
color?: string;
|
|
15316
14748
|
background?: string;
|
|
15317
14749
|
size?: string | number;
|
|
@@ -15937,6 +15369,8 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
15937
15369
|
}, z.core.$strict>>;
|
|
15938
15370
|
active: z.ZodOptional<z.ZodObject<{
|
|
15939
15371
|
font: z.ZodOptional<z.ZodObject<{
|
|
15372
|
+
family: z.ZodOptional<z.ZodString>;
|
|
15373
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
15940
15374
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15941
15375
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15942
15376
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -15963,7 +15397,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
15963
15397
|
}, z.core.$strict>, z.ZodEnum<{
|
|
15964
15398
|
none: "none";
|
|
15965
15399
|
}>]>>;
|
|
15966
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15967
15400
|
}, z.core.$strict>>;
|
|
15968
15401
|
animation: z.ZodOptional<z.ZodObject<{
|
|
15969
15402
|
style: z.ZodEnum<{
|
|
@@ -16978,9 +16411,10 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
16978
16411
|
vertical?: "top" | "bottom" | "middle";
|
|
16979
16412
|
};
|
|
16980
16413
|
active?: {
|
|
16981
|
-
scale: string | number;
|
|
16982
16414
|
font?: {
|
|
16415
|
+
weight: unknown;
|
|
16983
16416
|
opacity: string | number;
|
|
16417
|
+
family?: string;
|
|
16984
16418
|
color?: string;
|
|
16985
16419
|
background?: string;
|
|
16986
16420
|
size?: string | number;
|
|
@@ -17427,9 +16861,10 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
17427
16861
|
vertical?: "top" | "bottom" | "middle";
|
|
17428
16862
|
};
|
|
17429
16863
|
active?: {
|
|
17430
|
-
scale: string | number;
|
|
17431
16864
|
font?: {
|
|
16865
|
+
weight: unknown;
|
|
17432
16866
|
opacity: string | number;
|
|
16867
|
+
family?: string;
|
|
17433
16868
|
color?: string;
|
|
17434
16869
|
background?: string;
|
|
17435
16870
|
size?: string | number;
|
|
@@ -18054,6 +17489,8 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
18054
17489
|
}, z.core.$strict>>;
|
|
18055
17490
|
active: z.ZodOptional<z.ZodObject<{
|
|
18056
17491
|
font: z.ZodOptional<z.ZodObject<{
|
|
17492
|
+
family: z.ZodOptional<z.ZodString>;
|
|
17493
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
18057
17494
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18058
17495
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18059
17496
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -18080,7 +17517,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
18080
17517
|
}, z.core.$strict>, z.ZodEnum<{
|
|
18081
17518
|
none: "none";
|
|
18082
17519
|
}>]>>;
|
|
18083
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18084
17520
|
}, z.core.$strict>>;
|
|
18085
17521
|
animation: z.ZodOptional<z.ZodObject<{
|
|
18086
17522
|
style: z.ZodEnum<{
|
|
@@ -19095,9 +18531,10 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
19095
18531
|
vertical?: "top" | "bottom" | "middle";
|
|
19096
18532
|
};
|
|
19097
18533
|
active?: {
|
|
19098
|
-
scale: string | number;
|
|
19099
18534
|
font?: {
|
|
18535
|
+
weight: unknown;
|
|
19100
18536
|
opacity: string | number;
|
|
18537
|
+
family?: string;
|
|
19101
18538
|
color?: string;
|
|
19102
18539
|
background?: string;
|
|
19103
18540
|
size?: string | number;
|
|
@@ -19544,9 +18981,10 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
19544
18981
|
vertical?: "top" | "bottom" | "middle";
|
|
19545
18982
|
};
|
|
19546
18983
|
active?: {
|
|
19547
|
-
scale: string | number;
|
|
19548
18984
|
font?: {
|
|
18985
|
+
weight: unknown;
|
|
19549
18986
|
opacity: string | number;
|
|
18987
|
+
family?: string;
|
|
19550
18988
|
color?: string;
|
|
19551
18989
|
background?: string;
|
|
19552
18990
|
size?: string | number;
|
|
@@ -20175,6 +19613,8 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
20175
19613
|
}, z.core.$strict>>;
|
|
20176
19614
|
active: z.ZodOptional<z.ZodObject<{
|
|
20177
19615
|
font: z.ZodOptional<z.ZodObject<{
|
|
19616
|
+
family: z.ZodOptional<z.ZodString>;
|
|
19617
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
20178
19618
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20179
19619
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20180
19620
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -20201,7 +19641,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
20201
19641
|
}, z.core.$strict>, z.ZodEnum<{
|
|
20202
19642
|
none: "none";
|
|
20203
19643
|
}>]>>;
|
|
20204
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20205
19644
|
}, z.core.$strict>>;
|
|
20206
19645
|
animation: z.ZodOptional<z.ZodObject<{
|
|
20207
19646
|
style: z.ZodEnum<{
|
|
@@ -21216,9 +20655,10 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
21216
20655
|
vertical?: "top" | "bottom" | "middle";
|
|
21217
20656
|
};
|
|
21218
20657
|
active?: {
|
|
21219
|
-
scale: string | number;
|
|
21220
20658
|
font?: {
|
|
20659
|
+
weight: unknown;
|
|
21221
20660
|
opacity: string | number;
|
|
20661
|
+
family?: string;
|
|
21222
20662
|
color?: string;
|
|
21223
20663
|
background?: string;
|
|
21224
20664
|
size?: string | number;
|
|
@@ -21665,9 +21105,10 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
21665
21105
|
vertical?: "top" | "bottom" | "middle";
|
|
21666
21106
|
};
|
|
21667
21107
|
active?: {
|
|
21668
|
-
scale: string | number;
|
|
21669
21108
|
font?: {
|
|
21109
|
+
weight: unknown;
|
|
21670
21110
|
opacity: string | number;
|
|
21111
|
+
family?: string;
|
|
21671
21112
|
color?: string;
|
|
21672
21113
|
background?: string;
|
|
21673
21114
|
size?: string | number;
|
|
@@ -22015,16 +21456,16 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
22015
21456
|
options: z.ZodOptional<z.ZodObject<{
|
|
22016
21457
|
host: z.ZodString;
|
|
22017
21458
|
cpCode: z.ZodString;
|
|
22018
|
-
path: z.ZodOptional<z.
|
|
22019
|
-
filename: z.ZodOptional<z.
|
|
21459
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
21460
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
22020
21461
|
}, z.core.$strict>>;
|
|
22021
21462
|
}, z.core.$strict>, z.ZodObject<{
|
|
22022
21463
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
22023
21464
|
options: z.ZodOptional<z.ZodObject<{
|
|
22024
21465
|
accountName: z.ZodString;
|
|
22025
21466
|
container: z.ZodString;
|
|
22026
|
-
prefix: z.ZodOptional<z.
|
|
22027
|
-
filename: z.ZodOptional<z.
|
|
21467
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
21468
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
22028
21469
|
}, z.core.$strict>>;
|
|
22029
21470
|
}, z.core.$strict>], "provider">>>;
|
|
22030
21471
|
}, z.core.$strict>;
|
|
@@ -22458,6 +21899,8 @@ export declare const editSchema: z.ZodObject<{
|
|
|
22458
21899
|
}, z.core.$strict>>;
|
|
22459
21900
|
active: z.ZodOptional<z.ZodObject<{
|
|
22460
21901
|
font: z.ZodOptional<z.ZodObject<{
|
|
21902
|
+
family: z.ZodOptional<z.ZodString>;
|
|
21903
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
22461
21904
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
22462
21905
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
22463
21906
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -22484,7 +21927,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
22484
21927
|
}, z.core.$strict>, z.ZodEnum<{
|
|
22485
21928
|
none: "none";
|
|
22486
21929
|
}>]>>;
|
|
22487
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22488
21930
|
}, z.core.$strict>>;
|
|
22489
21931
|
animation: z.ZodOptional<z.ZodObject<{
|
|
22490
21932
|
style: z.ZodEnum<{
|
|
@@ -23499,9 +22941,10 @@ export declare const editSchema: z.ZodObject<{
|
|
|
23499
22941
|
vertical?: "top" | "bottom" | "middle";
|
|
23500
22942
|
};
|
|
23501
22943
|
active?: {
|
|
23502
|
-
scale: string | number;
|
|
23503
22944
|
font?: {
|
|
22945
|
+
weight: unknown;
|
|
23504
22946
|
opacity: string | number;
|
|
22947
|
+
family?: string;
|
|
23505
22948
|
color?: string;
|
|
23506
22949
|
background?: string;
|
|
23507
22950
|
size?: string | number;
|
|
@@ -23948,9 +23391,10 @@ export declare const editSchema: z.ZodObject<{
|
|
|
23948
23391
|
vertical?: "top" | "bottom" | "middle";
|
|
23949
23392
|
};
|
|
23950
23393
|
active?: {
|
|
23951
|
-
scale: string | number;
|
|
23952
23394
|
font?: {
|
|
23395
|
+
weight: unknown;
|
|
23953
23396
|
opacity: string | number;
|
|
23397
|
+
family?: string;
|
|
23954
23398
|
color?: string;
|
|
23955
23399
|
background?: string;
|
|
23956
23400
|
size?: string | number;
|
|
@@ -24298,16 +23742,16 @@ export declare const editSchema: z.ZodObject<{
|
|
|
24298
23742
|
options: z.ZodOptional<z.ZodObject<{
|
|
24299
23743
|
host: z.ZodString;
|
|
24300
23744
|
cpCode: z.ZodString;
|
|
24301
|
-
path: z.ZodOptional<z.
|
|
24302
|
-
filename: z.ZodOptional<z.
|
|
23745
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
23746
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
24303
23747
|
}, z.core.$strict>>;
|
|
24304
23748
|
}, z.core.$strict>, z.ZodObject<{
|
|
24305
23749
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
24306
23750
|
options: z.ZodOptional<z.ZodObject<{
|
|
24307
23751
|
accountName: z.ZodString;
|
|
24308
23752
|
container: z.ZodString;
|
|
24309
|
-
prefix: z.ZodOptional<z.
|
|
24310
|
-
filename: z.ZodOptional<z.
|
|
23753
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
23754
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
24311
23755
|
}, z.core.$strict>>;
|
|
24312
23756
|
}, z.core.$strict>], "provider">>>;
|
|
24313
23757
|
}, z.core.$strict>;
|
|
@@ -24763,6 +24207,8 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
24763
24207
|
}, z.core.$strict>>;
|
|
24764
24208
|
active: z.ZodOptional<z.ZodObject<{
|
|
24765
24209
|
font: z.ZodOptional<z.ZodObject<{
|
|
24210
|
+
family: z.ZodOptional<z.ZodString>;
|
|
24211
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
24766
24212
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
24767
24213
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
24768
24214
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -24789,7 +24235,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
24789
24235
|
}, z.core.$strict>, z.ZodEnum<{
|
|
24790
24236
|
none: "none";
|
|
24791
24237
|
}>]>>;
|
|
24792
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
24793
24238
|
}, z.core.$strict>>;
|
|
24794
24239
|
animation: z.ZodOptional<z.ZodObject<{
|
|
24795
24240
|
style: z.ZodEnum<{
|
|
@@ -25804,9 +25249,10 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
25804
25249
|
vertical?: "top" | "bottom" | "middle";
|
|
25805
25250
|
};
|
|
25806
25251
|
active?: {
|
|
25807
|
-
scale: string | number;
|
|
25808
25252
|
font?: {
|
|
25253
|
+
weight: unknown;
|
|
25809
25254
|
opacity: string | number;
|
|
25255
|
+
family?: string;
|
|
25810
25256
|
color?: string;
|
|
25811
25257
|
background?: string;
|
|
25812
25258
|
size?: string | number;
|
|
@@ -26253,9 +25699,10 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
26253
25699
|
vertical?: "top" | "bottom" | "middle";
|
|
26254
25700
|
};
|
|
26255
25701
|
active?: {
|
|
26256
|
-
scale: string | number;
|
|
26257
25702
|
font?: {
|
|
25703
|
+
weight: unknown;
|
|
26258
25704
|
opacity: string | number;
|
|
25705
|
+
family?: string;
|
|
26259
25706
|
color?: string;
|
|
26260
25707
|
background?: string;
|
|
26261
25708
|
size?: string | number;
|
|
@@ -26603,16 +26050,16 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
26603
26050
|
options: z.ZodOptional<z.ZodObject<{
|
|
26604
26051
|
host: z.ZodString;
|
|
26605
26052
|
cpCode: z.ZodString;
|
|
26606
|
-
path: z.ZodOptional<z.
|
|
26607
|
-
filename: z.ZodOptional<z.
|
|
26053
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
26054
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
26608
26055
|
}, z.core.$strict>>;
|
|
26609
26056
|
}, z.core.$strict>, z.ZodObject<{
|
|
26610
26057
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
26611
26058
|
options: z.ZodOptional<z.ZodObject<{
|
|
26612
26059
|
accountName: z.ZodString;
|
|
26613
26060
|
container: z.ZodString;
|
|
26614
|
-
prefix: z.ZodOptional<z.
|
|
26615
|
-
filename: z.ZodOptional<z.
|
|
26061
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
26062
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
26616
26063
|
}, z.core.$strict>>;
|
|
26617
26064
|
}, z.core.$strict>], "provider">>>;
|
|
26618
26065
|
}, z.core.$strict>;
|
|
@@ -27068,6 +26515,8 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
27068
26515
|
}, z.core.$strict>>;
|
|
27069
26516
|
active: z.ZodOptional<z.ZodObject<{
|
|
27070
26517
|
font: z.ZodOptional<z.ZodObject<{
|
|
26518
|
+
family: z.ZodOptional<z.ZodString>;
|
|
26519
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
27071
26520
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27072
26521
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27073
26522
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -27094,7 +26543,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
27094
26543
|
}, z.core.$strict>, z.ZodEnum<{
|
|
27095
26544
|
none: "none";
|
|
27096
26545
|
}>]>>;
|
|
27097
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27098
26546
|
}, z.core.$strict>>;
|
|
27099
26547
|
animation: z.ZodOptional<z.ZodObject<{
|
|
27100
26548
|
style: z.ZodEnum<{
|
|
@@ -28109,9 +27557,10 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
28109
27557
|
vertical?: "top" | "bottom" | "middle";
|
|
28110
27558
|
};
|
|
28111
27559
|
active?: {
|
|
28112
|
-
scale: string | number;
|
|
28113
27560
|
font?: {
|
|
27561
|
+
weight: unknown;
|
|
28114
27562
|
opacity: string | number;
|
|
27563
|
+
family?: string;
|
|
28115
27564
|
color?: string;
|
|
28116
27565
|
background?: string;
|
|
28117
27566
|
size?: string | number;
|
|
@@ -28558,9 +28007,10 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
28558
28007
|
vertical?: "top" | "bottom" | "middle";
|
|
28559
28008
|
};
|
|
28560
28009
|
active?: {
|
|
28561
|
-
scale: string | number;
|
|
28562
28010
|
font?: {
|
|
28011
|
+
weight: unknown;
|
|
28563
28012
|
opacity: string | number;
|
|
28013
|
+
family?: string;
|
|
28564
28014
|
color?: string;
|
|
28565
28015
|
background?: string;
|
|
28566
28016
|
size?: string | number;
|
|
@@ -28908,16 +28358,16 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
28908
28358
|
options: z.ZodOptional<z.ZodObject<{
|
|
28909
28359
|
host: z.ZodString;
|
|
28910
28360
|
cpCode: z.ZodString;
|
|
28911
|
-
path: z.ZodOptional<z.
|
|
28912
|
-
filename: z.ZodOptional<z.
|
|
28361
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
28362
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
28913
28363
|
}, z.core.$strict>>;
|
|
28914
28364
|
}, z.core.$strict>, z.ZodObject<{
|
|
28915
28365
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
28916
28366
|
options: z.ZodOptional<z.ZodObject<{
|
|
28917
28367
|
accountName: z.ZodString;
|
|
28918
28368
|
container: z.ZodString;
|
|
28919
|
-
prefix: z.ZodOptional<z.
|
|
28920
|
-
filename: z.ZodOptional<z.
|
|
28369
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
28370
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
28921
28371
|
}, z.core.$strict>>;
|
|
28922
28372
|
}, z.core.$strict>], "provider">>>;
|
|
28923
28373
|
}, z.core.$strict>;
|
|
@@ -29379,6 +28829,8 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
29379
28829
|
}, z.core.$strict>>;
|
|
29380
28830
|
active: z.ZodOptional<z.ZodObject<{
|
|
29381
28831
|
font: z.ZodOptional<z.ZodObject<{
|
|
28832
|
+
family: z.ZodOptional<z.ZodString>;
|
|
28833
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
29382
28834
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
29383
28835
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
29384
28836
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -29405,7 +28857,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
29405
28857
|
}, z.core.$strict>, z.ZodEnum<{
|
|
29406
28858
|
none: "none";
|
|
29407
28859
|
}>]>>;
|
|
29408
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
29409
28860
|
}, z.core.$strict>>;
|
|
29410
28861
|
animation: z.ZodOptional<z.ZodObject<{
|
|
29411
28862
|
style: z.ZodEnum<{
|
|
@@ -30420,9 +29871,10 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
30420
29871
|
vertical?: "top" | "bottom" | "middle";
|
|
30421
29872
|
};
|
|
30422
29873
|
active?: {
|
|
30423
|
-
scale: string | number;
|
|
30424
29874
|
font?: {
|
|
29875
|
+
weight: unknown;
|
|
30425
29876
|
opacity: string | number;
|
|
29877
|
+
family?: string;
|
|
30426
29878
|
color?: string;
|
|
30427
29879
|
background?: string;
|
|
30428
29880
|
size?: string | number;
|
|
@@ -30869,9 +30321,10 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
30869
30321
|
vertical?: "top" | "bottom" | "middle";
|
|
30870
30322
|
};
|
|
30871
30323
|
active?: {
|
|
30872
|
-
scale: string | number;
|
|
30873
30324
|
font?: {
|
|
30325
|
+
weight: unknown;
|
|
30874
30326
|
opacity: string | number;
|
|
30327
|
+
family?: string;
|
|
30875
30328
|
color?: string;
|
|
30876
30329
|
background?: string;
|
|
30877
30330
|
size?: string | number;
|
|
@@ -31219,16 +30672,16 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
31219
30672
|
options: z.ZodOptional<z.ZodObject<{
|
|
31220
30673
|
host: z.ZodString;
|
|
31221
30674
|
cpCode: z.ZodString;
|
|
31222
|
-
path: z.ZodOptional<z.
|
|
31223
|
-
filename: z.ZodOptional<z.
|
|
30675
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
30676
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
31224
30677
|
}, z.core.$strict>>;
|
|
31225
30678
|
}, z.core.$strict>, z.ZodObject<{
|
|
31226
30679
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
31227
30680
|
options: z.ZodOptional<z.ZodObject<{
|
|
31228
30681
|
accountName: z.ZodString;
|
|
31229
30682
|
container: z.ZodString;
|
|
31230
|
-
prefix: z.ZodOptional<z.
|
|
31231
|
-
filename: z.ZodOptional<z.
|
|
30683
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
30684
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
31232
30685
|
}, z.core.$strict>>;
|
|
31233
30686
|
}, z.core.$strict>], "provider">>>;
|
|
31234
30687
|
}, z.core.$strict>;
|
|
@@ -31688,6 +31141,8 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
31688
31141
|
}, z.core.$strict>>;
|
|
31689
31142
|
active: z.ZodOptional<z.ZodObject<{
|
|
31690
31143
|
font: z.ZodOptional<z.ZodObject<{
|
|
31144
|
+
family: z.ZodOptional<z.ZodString>;
|
|
31145
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
31691
31146
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
31692
31147
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
31693
31148
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -31714,7 +31169,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
31714
31169
|
}, z.core.$strict>, z.ZodEnum<{
|
|
31715
31170
|
none: "none";
|
|
31716
31171
|
}>]>>;
|
|
31717
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
31718
31172
|
}, z.core.$strict>>;
|
|
31719
31173
|
animation: z.ZodOptional<z.ZodObject<{
|
|
31720
31174
|
style: z.ZodEnum<{
|
|
@@ -32729,9 +32183,10 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
32729
32183
|
vertical?: "top" | "bottom" | "middle";
|
|
32730
32184
|
};
|
|
32731
32185
|
active?: {
|
|
32732
|
-
scale: string | number;
|
|
32733
32186
|
font?: {
|
|
32187
|
+
weight: unknown;
|
|
32734
32188
|
opacity: string | number;
|
|
32189
|
+
family?: string;
|
|
32735
32190
|
color?: string;
|
|
32736
32191
|
background?: string;
|
|
32737
32192
|
size?: string | number;
|
|
@@ -33178,9 +32633,10 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
33178
32633
|
vertical?: "top" | "bottom" | "middle";
|
|
33179
32634
|
};
|
|
33180
32635
|
active?: {
|
|
33181
|
-
scale: string | number;
|
|
33182
32636
|
font?: {
|
|
32637
|
+
weight: unknown;
|
|
33183
32638
|
opacity: string | number;
|
|
32639
|
+
family?: string;
|
|
33184
32640
|
color?: string;
|
|
33185
32641
|
background?: string;
|
|
33186
32642
|
size?: string | number;
|
|
@@ -33528,16 +32984,16 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
33528
32984
|
options: z.ZodOptional<z.ZodObject<{
|
|
33529
32985
|
host: z.ZodString;
|
|
33530
32986
|
cpCode: z.ZodString;
|
|
33531
|
-
path: z.ZodOptional<z.
|
|
33532
|
-
filename: z.ZodOptional<z.
|
|
32987
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
32988
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
33533
32989
|
}, z.core.$strict>>;
|
|
33534
32990
|
}, z.core.$strict>, z.ZodObject<{
|
|
33535
32991
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
33536
32992
|
options: z.ZodOptional<z.ZodObject<{
|
|
33537
32993
|
accountName: z.ZodString;
|
|
33538
32994
|
container: z.ZodString;
|
|
33539
|
-
prefix: z.ZodOptional<z.
|
|
33540
|
-
filename: z.ZodOptional<z.
|
|
32995
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
32996
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
33541
32997
|
}, z.core.$strict>>;
|
|
33542
32998
|
}, z.core.$strict>], "provider">>>;
|
|
33543
32999
|
}, z.core.$strict>;
|
|
@@ -33982,6 +33438,8 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
33982
33438
|
}, z.core.$strict>>;
|
|
33983
33439
|
active: z.ZodOptional<z.ZodObject<{
|
|
33984
33440
|
font: z.ZodOptional<z.ZodObject<{
|
|
33441
|
+
family: z.ZodOptional<z.ZodString>;
|
|
33442
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
33985
33443
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33986
33444
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33987
33445
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -34008,7 +33466,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
34008
33466
|
}, z.core.$strict>, z.ZodEnum<{
|
|
34009
33467
|
none: "none";
|
|
34010
33468
|
}>]>>;
|
|
34011
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
34012
33469
|
}, z.core.$strict>>;
|
|
34013
33470
|
animation: z.ZodOptional<z.ZodObject<{
|
|
34014
33471
|
style: z.ZodEnum<{
|
|
@@ -35023,9 +34480,10 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
35023
34480
|
vertical?: "top" | "bottom" | "middle";
|
|
35024
34481
|
};
|
|
35025
34482
|
active?: {
|
|
35026
|
-
scale: string | number;
|
|
35027
34483
|
font?: {
|
|
34484
|
+
weight: unknown;
|
|
35028
34485
|
opacity: string | number;
|
|
34486
|
+
family?: string;
|
|
35029
34487
|
color?: string;
|
|
35030
34488
|
background?: string;
|
|
35031
34489
|
size?: string | number;
|
|
@@ -35472,9 +34930,10 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
35472
34930
|
vertical?: "top" | "bottom" | "middle";
|
|
35473
34931
|
};
|
|
35474
34932
|
active?: {
|
|
35475
|
-
scale: string | number;
|
|
35476
34933
|
font?: {
|
|
34934
|
+
weight: unknown;
|
|
35477
34935
|
opacity: string | number;
|
|
34936
|
+
family?: string;
|
|
35478
34937
|
color?: string;
|
|
35479
34938
|
background?: string;
|
|
35480
34939
|
size?: string | number;
|
|
@@ -35822,16 +35281,16 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
35822
35281
|
options: z.ZodOptional<z.ZodObject<{
|
|
35823
35282
|
host: z.ZodString;
|
|
35824
35283
|
cpCode: z.ZodString;
|
|
35825
|
-
path: z.ZodOptional<z.
|
|
35826
|
-
filename: z.ZodOptional<z.
|
|
35284
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
35285
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
35827
35286
|
}, z.core.$strict>>;
|
|
35828
35287
|
}, z.core.$strict>, z.ZodObject<{
|
|
35829
35288
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
35830
35289
|
options: z.ZodOptional<z.ZodObject<{
|
|
35831
35290
|
accountName: z.ZodString;
|
|
35832
35291
|
container: z.ZodString;
|
|
35833
|
-
prefix: z.ZodOptional<z.
|
|
35834
|
-
filename: z.ZodOptional<z.
|
|
35292
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
35293
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
35835
35294
|
}, z.core.$strict>>;
|
|
35836
35295
|
}, z.core.$strict>], "provider">>>;
|
|
35837
35296
|
}, z.core.$strict>;
|
|
@@ -36270,6 +35729,8 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
36270
35729
|
}, z.core.$strict>>;
|
|
36271
35730
|
active: z.ZodOptional<z.ZodObject<{
|
|
36272
35731
|
font: z.ZodOptional<z.ZodObject<{
|
|
35732
|
+
family: z.ZodOptional<z.ZodString>;
|
|
35733
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
36273
35734
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
36274
35735
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
36275
35736
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -36296,7 +35757,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
36296
35757
|
}, z.core.$strict>, z.ZodEnum<{
|
|
36297
35758
|
none: "none";
|
|
36298
35759
|
}>]>>;
|
|
36299
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
36300
35760
|
}, z.core.$strict>>;
|
|
36301
35761
|
animation: z.ZodOptional<z.ZodObject<{
|
|
36302
35762
|
style: z.ZodEnum<{
|
|
@@ -37311,9 +36771,10 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
37311
36771
|
vertical?: "top" | "bottom" | "middle";
|
|
37312
36772
|
};
|
|
37313
36773
|
active?: {
|
|
37314
|
-
scale: string | number;
|
|
37315
36774
|
font?: {
|
|
36775
|
+
weight: unknown;
|
|
37316
36776
|
opacity: string | number;
|
|
36777
|
+
family?: string;
|
|
37317
36778
|
color?: string;
|
|
37318
36779
|
background?: string;
|
|
37319
36780
|
size?: string | number;
|
|
@@ -37760,9 +37221,10 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
37760
37221
|
vertical?: "top" | "bottom" | "middle";
|
|
37761
37222
|
};
|
|
37762
37223
|
active?: {
|
|
37763
|
-
scale: string | number;
|
|
37764
37224
|
font?: {
|
|
37225
|
+
weight: unknown;
|
|
37765
37226
|
opacity: string | number;
|
|
37227
|
+
family?: string;
|
|
37766
37228
|
color?: string;
|
|
37767
37229
|
background?: string;
|
|
37768
37230
|
size?: string | number;
|
|
@@ -38110,16 +37572,16 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
38110
37572
|
options: z.ZodOptional<z.ZodObject<{
|
|
38111
37573
|
host: z.ZodString;
|
|
38112
37574
|
cpCode: z.ZodString;
|
|
38113
|
-
path: z.ZodOptional<z.
|
|
38114
|
-
filename: z.ZodOptional<z.
|
|
37575
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
37576
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
38115
37577
|
}, z.core.$strict>>;
|
|
38116
37578
|
}, z.core.$strict>, z.ZodObject<{
|
|
38117
37579
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
38118
37580
|
options: z.ZodOptional<z.ZodObject<{
|
|
38119
37581
|
accountName: z.ZodString;
|
|
38120
37582
|
container: z.ZodString;
|
|
38121
|
-
prefix: z.ZodOptional<z.
|
|
38122
|
-
filename: z.ZodOptional<z.
|
|
37583
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
37584
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
38123
37585
|
}, z.core.$strict>>;
|
|
38124
37586
|
}, z.core.$strict>], "provider">>>;
|
|
38125
37587
|
}, z.core.$strict>;
|
|
@@ -38564,6 +38026,8 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
38564
38026
|
}, z.core.$strict>>;
|
|
38565
38027
|
active: z.ZodOptional<z.ZodObject<{
|
|
38566
38028
|
font: z.ZodOptional<z.ZodObject<{
|
|
38029
|
+
family: z.ZodOptional<z.ZodString>;
|
|
38030
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
38567
38031
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
38568
38032
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
38569
38033
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -38590,7 +38054,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
38590
38054
|
}, z.core.$strict>, z.ZodEnum<{
|
|
38591
38055
|
none: "none";
|
|
38592
38056
|
}>]>>;
|
|
38593
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38594
38057
|
}, z.core.$strict>>;
|
|
38595
38058
|
animation: z.ZodOptional<z.ZodObject<{
|
|
38596
38059
|
style: z.ZodEnum<{
|
|
@@ -39605,9 +39068,10 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
39605
39068
|
vertical?: "top" | "bottom" | "middle";
|
|
39606
39069
|
};
|
|
39607
39070
|
active?: {
|
|
39608
|
-
scale: string | number;
|
|
39609
39071
|
font?: {
|
|
39072
|
+
weight: unknown;
|
|
39610
39073
|
opacity: string | number;
|
|
39074
|
+
family?: string;
|
|
39611
39075
|
color?: string;
|
|
39612
39076
|
background?: string;
|
|
39613
39077
|
size?: string | number;
|
|
@@ -40054,9 +39518,10 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
40054
39518
|
vertical?: "top" | "bottom" | "middle";
|
|
40055
39519
|
};
|
|
40056
39520
|
active?: {
|
|
40057
|
-
scale: string | number;
|
|
40058
39521
|
font?: {
|
|
39522
|
+
weight: unknown;
|
|
40059
39523
|
opacity: string | number;
|
|
39524
|
+
family?: string;
|
|
40060
39525
|
color?: string;
|
|
40061
39526
|
background?: string;
|
|
40062
39527
|
size?: string | number;
|
|
@@ -40404,16 +39869,16 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
40404
39869
|
options: z.ZodOptional<z.ZodObject<{
|
|
40405
39870
|
host: z.ZodString;
|
|
40406
39871
|
cpCode: z.ZodString;
|
|
40407
|
-
path: z.ZodOptional<z.
|
|
40408
|
-
filename: z.ZodOptional<z.
|
|
39872
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
39873
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
40409
39874
|
}, z.core.$strict>>;
|
|
40410
39875
|
}, z.core.$strict>, z.ZodObject<{
|
|
40411
39876
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
40412
39877
|
options: z.ZodOptional<z.ZodObject<{
|
|
40413
39878
|
accountName: z.ZodString;
|
|
40414
39879
|
container: z.ZodString;
|
|
40415
|
-
prefix: z.ZodOptional<z.
|
|
40416
|
-
filename: z.ZodOptional<z.
|
|
39880
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
39881
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
40417
39882
|
}, z.core.$strict>>;
|
|
40418
39883
|
}, z.core.$strict>], "provider">>>;
|
|
40419
39884
|
}, z.core.$strict>;
|
|
@@ -40856,6 +40321,8 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
40856
40321
|
}, z.core.$strict>>;
|
|
40857
40322
|
active: z.ZodOptional<z.ZodObject<{
|
|
40858
40323
|
font: z.ZodOptional<z.ZodObject<{
|
|
40324
|
+
family: z.ZodOptional<z.ZodString>;
|
|
40325
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
40859
40326
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40860
40327
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40861
40328
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -40882,7 +40349,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
40882
40349
|
}, z.core.$strict>, z.ZodEnum<{
|
|
40883
40350
|
none: "none";
|
|
40884
40351
|
}>]>>;
|
|
40885
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40886
40352
|
}, z.core.$strict>>;
|
|
40887
40353
|
animation: z.ZodOptional<z.ZodObject<{
|
|
40888
40354
|
style: z.ZodEnum<{
|
|
@@ -41897,9 +41363,10 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
41897
41363
|
vertical?: "top" | "bottom" | "middle";
|
|
41898
41364
|
};
|
|
41899
41365
|
active?: {
|
|
41900
|
-
scale: string | number;
|
|
41901
41366
|
font?: {
|
|
41367
|
+
weight: unknown;
|
|
41902
41368
|
opacity: string | number;
|
|
41369
|
+
family?: string;
|
|
41903
41370
|
color?: string;
|
|
41904
41371
|
background?: string;
|
|
41905
41372
|
size?: string | number;
|
|
@@ -42346,9 +41813,10 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
42346
41813
|
vertical?: "top" | "bottom" | "middle";
|
|
42347
41814
|
};
|
|
42348
41815
|
active?: {
|
|
42349
|
-
scale: string | number;
|
|
42350
41816
|
font?: {
|
|
41817
|
+
weight: unknown;
|
|
42351
41818
|
opacity: string | number;
|
|
41819
|
+
family?: string;
|
|
42352
41820
|
color?: string;
|
|
42353
41821
|
background?: string;
|
|
42354
41822
|
size?: string | number;
|
|
@@ -42696,16 +42164,16 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
42696
42164
|
options: z.ZodOptional<z.ZodObject<{
|
|
42697
42165
|
host: z.ZodString;
|
|
42698
42166
|
cpCode: z.ZodString;
|
|
42699
|
-
path: z.ZodOptional<z.
|
|
42700
|
-
filename: z.ZodOptional<z.
|
|
42167
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
42168
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
42701
42169
|
}, z.core.$strict>>;
|
|
42702
42170
|
}, z.core.$strict>, z.ZodObject<{
|
|
42703
42171
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
42704
42172
|
options: z.ZodOptional<z.ZodObject<{
|
|
42705
42173
|
accountName: z.ZodString;
|
|
42706
42174
|
container: z.ZodString;
|
|
42707
|
-
prefix: z.ZodOptional<z.
|
|
42708
|
-
filename: z.ZodOptional<z.
|
|
42175
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
42176
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
42709
42177
|
}, z.core.$strict>>;
|
|
42710
42178
|
}, z.core.$strict>], "provider">>>;
|
|
42711
42179
|
}, z.core.$strict>;
|
|
@@ -43146,6 +42614,8 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
43146
42614
|
}, z.core.$strict>>;
|
|
43147
42615
|
active: z.ZodOptional<z.ZodObject<{
|
|
43148
42616
|
font: z.ZodOptional<z.ZodObject<{
|
|
42617
|
+
family: z.ZodOptional<z.ZodString>;
|
|
42618
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
43149
42619
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
43150
42620
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
43151
42621
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -43172,7 +42642,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
43172
42642
|
}, z.core.$strict>, z.ZodEnum<{
|
|
43173
42643
|
none: "none";
|
|
43174
42644
|
}>]>>;
|
|
43175
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43176
42645
|
}, z.core.$strict>>;
|
|
43177
42646
|
animation: z.ZodOptional<z.ZodObject<{
|
|
43178
42647
|
style: z.ZodEnum<{
|
|
@@ -44187,9 +43656,10 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
44187
43656
|
vertical?: "top" | "bottom" | "middle";
|
|
44188
43657
|
};
|
|
44189
43658
|
active?: {
|
|
44190
|
-
scale: string | number;
|
|
44191
43659
|
font?: {
|
|
43660
|
+
weight: unknown;
|
|
44192
43661
|
opacity: string | number;
|
|
43662
|
+
family?: string;
|
|
44193
43663
|
color?: string;
|
|
44194
43664
|
background?: string;
|
|
44195
43665
|
size?: string | number;
|
|
@@ -44636,9 +44106,10 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
44636
44106
|
vertical?: "top" | "bottom" | "middle";
|
|
44637
44107
|
};
|
|
44638
44108
|
active?: {
|
|
44639
|
-
scale: string | number;
|
|
44640
44109
|
font?: {
|
|
44110
|
+
weight: unknown;
|
|
44641
44111
|
opacity: string | number;
|
|
44112
|
+
family?: string;
|
|
44642
44113
|
color?: string;
|
|
44643
44114
|
background?: string;
|
|
44644
44115
|
size?: string | number;
|
|
@@ -44986,16 +44457,16 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
44986
44457
|
options: z.ZodOptional<z.ZodObject<{
|
|
44987
44458
|
host: z.ZodString;
|
|
44988
44459
|
cpCode: z.ZodString;
|
|
44989
|
-
path: z.ZodOptional<z.
|
|
44990
|
-
filename: z.ZodOptional<z.
|
|
44460
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
44461
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
44991
44462
|
}, z.core.$strict>>;
|
|
44992
44463
|
}, z.core.$strict>, z.ZodObject<{
|
|
44993
44464
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
44994
44465
|
options: z.ZodOptional<z.ZodObject<{
|
|
44995
44466
|
accountName: z.ZodString;
|
|
44996
44467
|
container: z.ZodString;
|
|
44997
|
-
prefix: z.ZodOptional<z.
|
|
44998
|
-
filename: z.ZodOptional<z.
|
|
44468
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
44469
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
44999
44470
|
}, z.core.$strict>>;
|
|
45000
44471
|
}, z.core.$strict>], "provider">>>;
|
|
45001
44472
|
}, z.core.$strict>;
|
|
@@ -45432,6 +44903,8 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
45432
44903
|
}, z.core.$strict>>;
|
|
45433
44904
|
active: z.ZodOptional<z.ZodObject<{
|
|
45434
44905
|
font: z.ZodOptional<z.ZodObject<{
|
|
44906
|
+
family: z.ZodOptional<z.ZodString>;
|
|
44907
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
45435
44908
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
45436
44909
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
45437
44910
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -45458,7 +44931,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
45458
44931
|
}, z.core.$strict>, z.ZodEnum<{
|
|
45459
44932
|
none: "none";
|
|
45460
44933
|
}>]>>;
|
|
45461
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45462
44934
|
}, z.core.$strict>>;
|
|
45463
44935
|
animation: z.ZodOptional<z.ZodObject<{
|
|
45464
44936
|
style: z.ZodEnum<{
|
|
@@ -46473,9 +45945,10 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
46473
45945
|
vertical?: "top" | "bottom" | "middle";
|
|
46474
45946
|
};
|
|
46475
45947
|
active?: {
|
|
46476
|
-
scale: string | number;
|
|
46477
45948
|
font?: {
|
|
45949
|
+
weight: unknown;
|
|
46478
45950
|
opacity: string | number;
|
|
45951
|
+
family?: string;
|
|
46479
45952
|
color?: string;
|
|
46480
45953
|
background?: string;
|
|
46481
45954
|
size?: string | number;
|
|
@@ -46922,9 +46395,10 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
46922
46395
|
vertical?: "top" | "bottom" | "middle";
|
|
46923
46396
|
};
|
|
46924
46397
|
active?: {
|
|
46925
|
-
scale: string | number;
|
|
46926
46398
|
font?: {
|
|
46399
|
+
weight: unknown;
|
|
46927
46400
|
opacity: string | number;
|
|
46401
|
+
family?: string;
|
|
46928
46402
|
color?: string;
|
|
46929
46403
|
background?: string;
|
|
46930
46404
|
size?: string | number;
|
|
@@ -47272,16 +46746,16 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
47272
46746
|
options: z.ZodOptional<z.ZodObject<{
|
|
47273
46747
|
host: z.ZodString;
|
|
47274
46748
|
cpCode: z.ZodString;
|
|
47275
|
-
path: z.ZodOptional<z.
|
|
47276
|
-
filename: z.ZodOptional<z.
|
|
46749
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
46750
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
47277
46751
|
}, z.core.$strict>>;
|
|
47278
46752
|
}, z.core.$strict>, z.ZodObject<{
|
|
47279
46753
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
47280
46754
|
options: z.ZodOptional<z.ZodObject<{
|
|
47281
46755
|
accountName: z.ZodString;
|
|
47282
46756
|
container: z.ZodString;
|
|
47283
|
-
prefix: z.ZodOptional<z.
|
|
47284
|
-
filename: z.ZodOptional<z.
|
|
46757
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
46758
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
47285
46759
|
}, z.core.$strict>>;
|
|
47286
46760
|
}, z.core.$strict>], "provider">>>;
|
|
47287
46761
|
}, z.core.$strict>;
|
|
@@ -47717,6 +47191,8 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
47717
47191
|
}, z.core.$strict>>;
|
|
47718
47192
|
active: z.ZodOptional<z.ZodObject<{
|
|
47719
47193
|
font: z.ZodOptional<z.ZodObject<{
|
|
47194
|
+
family: z.ZodOptional<z.ZodString>;
|
|
47195
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
47720
47196
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
47721
47197
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
47722
47198
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -47743,7 +47219,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
47743
47219
|
}, z.core.$strict>, z.ZodEnum<{
|
|
47744
47220
|
none: "none";
|
|
47745
47221
|
}>]>>;
|
|
47746
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
47747
47222
|
}, z.core.$strict>>;
|
|
47748
47223
|
animation: z.ZodOptional<z.ZodObject<{
|
|
47749
47224
|
style: z.ZodEnum<{
|
|
@@ -48758,9 +48233,10 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
48758
48233
|
vertical?: "top" | "bottom" | "middle";
|
|
48759
48234
|
};
|
|
48760
48235
|
active?: {
|
|
48761
|
-
scale: string | number;
|
|
48762
48236
|
font?: {
|
|
48237
|
+
weight: unknown;
|
|
48763
48238
|
opacity: string | number;
|
|
48239
|
+
family?: string;
|
|
48764
48240
|
color?: string;
|
|
48765
48241
|
background?: string;
|
|
48766
48242
|
size?: string | number;
|
|
@@ -49207,9 +48683,10 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
49207
48683
|
vertical?: "top" | "bottom" | "middle";
|
|
49208
48684
|
};
|
|
49209
48685
|
active?: {
|
|
49210
|
-
scale: string | number;
|
|
49211
48686
|
font?: {
|
|
48687
|
+
weight: unknown;
|
|
49212
48688
|
opacity: string | number;
|
|
48689
|
+
family?: string;
|
|
49213
48690
|
color?: string;
|
|
49214
48691
|
background?: string;
|
|
49215
48692
|
size?: string | number;
|
|
@@ -49557,16 +49034,16 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
49557
49034
|
options: z.ZodOptional<z.ZodObject<{
|
|
49558
49035
|
host: z.ZodString;
|
|
49559
49036
|
cpCode: z.ZodString;
|
|
49560
|
-
path: z.ZodOptional<z.
|
|
49561
|
-
filename: z.ZodOptional<z.
|
|
49037
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
49038
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
49562
49039
|
}, z.core.$strict>>;
|
|
49563
49040
|
}, z.core.$strict>, z.ZodObject<{
|
|
49564
49041
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
49565
49042
|
options: z.ZodOptional<z.ZodObject<{
|
|
49566
49043
|
accountName: z.ZodString;
|
|
49567
49044
|
container: z.ZodString;
|
|
49568
|
-
prefix: z.ZodOptional<z.
|
|
49569
|
-
filename: z.ZodOptional<z.
|
|
49045
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
49046
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
49570
49047
|
}, z.core.$strict>>;
|
|
49571
49048
|
}, z.core.$strict>], "provider">>>;
|
|
49572
49049
|
}, z.core.$strict>;
|
|
@@ -50049,6 +49526,8 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
50049
49526
|
}, z.core.$strict>>;
|
|
50050
49527
|
active: z.ZodOptional<z.ZodObject<{
|
|
50051
49528
|
font: z.ZodOptional<z.ZodObject<{
|
|
49529
|
+
family: z.ZodOptional<z.ZodString>;
|
|
49530
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
50052
49531
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
50053
49532
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
50054
49533
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -50075,7 +49554,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
50075
49554
|
}, z.core.$strict>, z.ZodEnum<{
|
|
50076
49555
|
none: "none";
|
|
50077
49556
|
}>]>>;
|
|
50078
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
50079
49557
|
}, z.core.$strict>>;
|
|
50080
49558
|
animation: z.ZodOptional<z.ZodObject<{
|
|
50081
49559
|
style: z.ZodEnum<{
|
|
@@ -51090,9 +50568,10 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
51090
50568
|
vertical?: "top" | "bottom" | "middle";
|
|
51091
50569
|
};
|
|
51092
50570
|
active?: {
|
|
51093
|
-
scale: string | number;
|
|
51094
50571
|
font?: {
|
|
50572
|
+
weight: unknown;
|
|
51095
50573
|
opacity: string | number;
|
|
50574
|
+
family?: string;
|
|
51096
50575
|
color?: string;
|
|
51097
50576
|
background?: string;
|
|
51098
50577
|
size?: string | number;
|
|
@@ -51539,9 +51018,10 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
51539
51018
|
vertical?: "top" | "bottom" | "middle";
|
|
51540
51019
|
};
|
|
51541
51020
|
active?: {
|
|
51542
|
-
scale: string | number;
|
|
51543
51021
|
font?: {
|
|
51022
|
+
weight: unknown;
|
|
51544
51023
|
opacity: string | number;
|
|
51024
|
+
family?: string;
|
|
51545
51025
|
color?: string;
|
|
51546
51026
|
background?: string;
|
|
51547
51027
|
size?: string | number;
|
|
@@ -51889,16 +51369,16 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
51889
51369
|
options: z.ZodOptional<z.ZodObject<{
|
|
51890
51370
|
host: z.ZodString;
|
|
51891
51371
|
cpCode: z.ZodString;
|
|
51892
|
-
path: z.ZodOptional<z.
|
|
51893
|
-
filename: z.ZodOptional<z.
|
|
51372
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
51373
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
51894
51374
|
}, z.core.$strict>>;
|
|
51895
51375
|
}, z.core.$strict>, z.ZodObject<{
|
|
51896
51376
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
51897
51377
|
options: z.ZodOptional<z.ZodObject<{
|
|
51898
51378
|
accountName: z.ZodString;
|
|
51899
51379
|
container: z.ZodString;
|
|
51900
|
-
prefix: z.ZodOptional<z.
|
|
51901
|
-
filename: z.ZodOptional<z.
|
|
51380
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
51381
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
51902
51382
|
}, z.core.$strict>>;
|
|
51903
51383
|
}, z.core.$strict>], "provider">>>;
|
|
51904
51384
|
}, z.core.$strict>;
|
|
@@ -52360,6 +51840,8 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
52360
51840
|
}, z.core.$strict>>;
|
|
52361
51841
|
active: z.ZodOptional<z.ZodObject<{
|
|
52362
51842
|
font: z.ZodOptional<z.ZodObject<{
|
|
51843
|
+
family: z.ZodOptional<z.ZodString>;
|
|
51844
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
52363
51845
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
52364
51846
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
52365
51847
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -52386,7 +51868,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
52386
51868
|
}, z.core.$strict>, z.ZodEnum<{
|
|
52387
51869
|
none: "none";
|
|
52388
51870
|
}>]>>;
|
|
52389
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
52390
51871
|
}, z.core.$strict>>;
|
|
52391
51872
|
animation: z.ZodOptional<z.ZodObject<{
|
|
52392
51873
|
style: z.ZodEnum<{
|
|
@@ -53401,9 +52882,10 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
53401
52882
|
vertical?: "top" | "bottom" | "middle";
|
|
53402
52883
|
};
|
|
53403
52884
|
active?: {
|
|
53404
|
-
scale: string | number;
|
|
53405
52885
|
font?: {
|
|
52886
|
+
weight: unknown;
|
|
53406
52887
|
opacity: string | number;
|
|
52888
|
+
family?: string;
|
|
53407
52889
|
color?: string;
|
|
53408
52890
|
background?: string;
|
|
53409
52891
|
size?: string | number;
|
|
@@ -53850,9 +53332,10 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
53850
53332
|
vertical?: "top" | "bottom" | "middle";
|
|
53851
53333
|
};
|
|
53852
53334
|
active?: {
|
|
53853
|
-
scale: string | number;
|
|
53854
53335
|
font?: {
|
|
53336
|
+
weight: unknown;
|
|
53855
53337
|
opacity: string | number;
|
|
53338
|
+
family?: string;
|
|
53856
53339
|
color?: string;
|
|
53857
53340
|
background?: string;
|
|
53858
53341
|
size?: string | number;
|
|
@@ -54200,16 +53683,16 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
54200
53683
|
options: z.ZodOptional<z.ZodObject<{
|
|
54201
53684
|
host: z.ZodString;
|
|
54202
53685
|
cpCode: z.ZodString;
|
|
54203
|
-
path: z.ZodOptional<z.
|
|
54204
|
-
filename: z.ZodOptional<z.
|
|
53686
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
53687
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
54205
53688
|
}, z.core.$strict>>;
|
|
54206
53689
|
}, z.core.$strict>, z.ZodObject<{
|
|
54207
53690
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
54208
53691
|
options: z.ZodOptional<z.ZodObject<{
|
|
54209
53692
|
accountName: z.ZodString;
|
|
54210
53693
|
container: z.ZodString;
|
|
54211
|
-
prefix: z.ZodOptional<z.
|
|
54212
|
-
filename: z.ZodOptional<z.
|
|
53694
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
53695
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
54213
53696
|
}, z.core.$strict>>;
|
|
54214
53697
|
}, z.core.$strict>], "provider">>>;
|
|
54215
53698
|
}, z.core.$strict>;
|
|
@@ -54686,6 +54169,8 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
54686
54169
|
}, z.core.$strict>>;
|
|
54687
54170
|
active: z.ZodOptional<z.ZodObject<{
|
|
54688
54171
|
font: z.ZodOptional<z.ZodObject<{
|
|
54172
|
+
family: z.ZodOptional<z.ZodString>;
|
|
54173
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
54689
54174
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
54690
54175
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
54691
54176
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -54712,7 +54197,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
54712
54197
|
}, z.core.$strict>, z.ZodEnum<{
|
|
54713
54198
|
none: "none";
|
|
54714
54199
|
}>]>>;
|
|
54715
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54716
54200
|
}, z.core.$strict>>;
|
|
54717
54201
|
animation: z.ZodOptional<z.ZodObject<{
|
|
54718
54202
|
style: z.ZodEnum<{
|
|
@@ -55727,9 +55211,10 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
55727
55211
|
vertical?: "top" | "bottom" | "middle";
|
|
55728
55212
|
};
|
|
55729
55213
|
active?: {
|
|
55730
|
-
scale: string | number;
|
|
55731
55214
|
font?: {
|
|
55215
|
+
weight: unknown;
|
|
55732
55216
|
opacity: string | number;
|
|
55217
|
+
family?: string;
|
|
55733
55218
|
color?: string;
|
|
55734
55219
|
background?: string;
|
|
55735
55220
|
size?: string | number;
|
|
@@ -56176,9 +55661,10 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
56176
55661
|
vertical?: "top" | "bottom" | "middle";
|
|
56177
55662
|
};
|
|
56178
55663
|
active?: {
|
|
56179
|
-
scale: string | number;
|
|
56180
55664
|
font?: {
|
|
55665
|
+
weight: unknown;
|
|
56181
55666
|
opacity: string | number;
|
|
55667
|
+
family?: string;
|
|
56182
55668
|
color?: string;
|
|
56183
55669
|
background?: string;
|
|
56184
55670
|
size?: string | number;
|
|
@@ -56526,16 +56012,16 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
56526
56012
|
options: z.ZodOptional<z.ZodObject<{
|
|
56527
56013
|
host: z.ZodString;
|
|
56528
56014
|
cpCode: z.ZodString;
|
|
56529
|
-
path: z.ZodOptional<z.
|
|
56530
|
-
filename: z.ZodOptional<z.
|
|
56015
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
56016
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
56531
56017
|
}, z.core.$strict>>;
|
|
56532
56018
|
}, z.core.$strict>, z.ZodObject<{
|
|
56533
56019
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
56534
56020
|
options: z.ZodOptional<z.ZodObject<{
|
|
56535
56021
|
accountName: z.ZodString;
|
|
56536
56022
|
container: z.ZodString;
|
|
56537
|
-
prefix: z.ZodOptional<z.
|
|
56538
|
-
filename: z.ZodOptional<z.
|
|
56023
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
56024
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
56539
56025
|
}, z.core.$strict>>;
|
|
56540
56026
|
}, z.core.$strict>], "provider">>>;
|
|
56541
56027
|
}, z.core.$strict>;
|
|
@@ -56974,6 +56460,8 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
56974
56460
|
}, z.core.$strict>>;
|
|
56975
56461
|
active: z.ZodOptional<z.ZodObject<{
|
|
56976
56462
|
font: z.ZodOptional<z.ZodObject<{
|
|
56463
|
+
family: z.ZodOptional<z.ZodString>;
|
|
56464
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
56977
56465
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56978
56466
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56979
56467
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -57000,7 +56488,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
57000
56488
|
}, z.core.$strict>, z.ZodEnum<{
|
|
57001
56489
|
none: "none";
|
|
57002
56490
|
}>]>>;
|
|
57003
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
57004
56491
|
}, z.core.$strict>>;
|
|
57005
56492
|
animation: z.ZodOptional<z.ZodObject<{
|
|
57006
56493
|
style: z.ZodEnum<{
|
|
@@ -58015,9 +57502,10 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
58015
57502
|
vertical?: "top" | "bottom" | "middle";
|
|
58016
57503
|
};
|
|
58017
57504
|
active?: {
|
|
58018
|
-
scale: string | number;
|
|
58019
57505
|
font?: {
|
|
57506
|
+
weight: unknown;
|
|
58020
57507
|
opacity: string | number;
|
|
57508
|
+
family?: string;
|
|
58021
57509
|
color?: string;
|
|
58022
57510
|
background?: string;
|
|
58023
57511
|
size?: string | number;
|
|
@@ -58464,9 +57952,10 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
58464
57952
|
vertical?: "top" | "bottom" | "middle";
|
|
58465
57953
|
};
|
|
58466
57954
|
active?: {
|
|
58467
|
-
scale: string | number;
|
|
58468
57955
|
font?: {
|
|
57956
|
+
weight: unknown;
|
|
58469
57957
|
opacity: string | number;
|
|
57958
|
+
family?: string;
|
|
58470
57959
|
color?: string;
|
|
58471
57960
|
background?: string;
|
|
58472
57961
|
size?: string | number;
|
|
@@ -58814,16 +58303,16 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
58814
58303
|
options: z.ZodOptional<z.ZodObject<{
|
|
58815
58304
|
host: z.ZodString;
|
|
58816
58305
|
cpCode: z.ZodString;
|
|
58817
|
-
path: z.ZodOptional<z.
|
|
58818
|
-
filename: z.ZodOptional<z.
|
|
58306
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
58307
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
58819
58308
|
}, z.core.$strict>>;
|
|
58820
58309
|
}, z.core.$strict>, z.ZodObject<{
|
|
58821
58310
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
58822
58311
|
options: z.ZodOptional<z.ZodObject<{
|
|
58823
58312
|
accountName: z.ZodString;
|
|
58824
58313
|
container: z.ZodString;
|
|
58825
|
-
prefix: z.ZodOptional<z.
|
|
58826
|
-
filename: z.ZodOptional<z.
|
|
58314
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
58315
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
58827
58316
|
}, z.core.$strict>>;
|
|
58828
58317
|
}, z.core.$strict>], "provider">>>;
|
|
58829
58318
|
}, z.core.$strict>;
|
|
@@ -59055,16 +58544,16 @@ export declare const postServeAssetRequest: z.ZodObject<{
|
|
|
59055
58544
|
options: z.ZodOptional<z.ZodObject<{
|
|
59056
58545
|
host: z.ZodString;
|
|
59057
58546
|
cpCode: z.ZodString;
|
|
59058
|
-
path: z.ZodOptional<z.
|
|
59059
|
-
filename: z.ZodOptional<z.
|
|
58547
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
58548
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
59060
58549
|
}, z.core.$strict>>;
|
|
59061
58550
|
}, z.core.$strict>, z.ZodObject<{
|
|
59062
58551
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
59063
58552
|
options: z.ZodOptional<z.ZodObject<{
|
|
59064
58553
|
accountName: z.ZodString;
|
|
59065
58554
|
container: z.ZodString;
|
|
59066
|
-
prefix: z.ZodOptional<z.
|
|
59067
|
-
filename: z.ZodOptional<z.
|
|
58555
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
58556
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
59068
58557
|
}, z.core.$strict>>;
|
|
59069
58558
|
}, z.core.$strict>], "provider">>;
|
|
59070
58559
|
}, z.core.$strict>;
|
|
@@ -59362,16 +58851,16 @@ export declare const postSourceRequest: z.ZodObject<{
|
|
|
59362
58851
|
options: z.ZodOptional<z.ZodObject<{
|
|
59363
58852
|
host: z.ZodString;
|
|
59364
58853
|
cpCode: z.ZodString;
|
|
59365
|
-
path: z.ZodOptional<z.
|
|
59366
|
-
filename: z.ZodOptional<z.
|
|
58854
|
+
path: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
58855
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
59367
58856
|
}, z.core.$strict>>;
|
|
59368
58857
|
}, z.core.$strict>, z.ZodObject<{
|
|
59369
58858
|
provider: z.ZodLiteral<"azure-blob-storage">;
|
|
59370
58859
|
options: z.ZodOptional<z.ZodObject<{
|
|
59371
58860
|
accountName: z.ZodString;
|
|
59372
58861
|
container: z.ZodString;
|
|
59373
|
-
prefix: z.ZodOptional<z.
|
|
59374
|
-
filename: z.ZodOptional<z.
|
|
58862
|
+
prefix: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
58863
|
+
filename: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
59375
58864
|
}, z.core.$strict>>;
|
|
59376
58865
|
}, z.core.$strict>], "provider">>;
|
|
59377
58866
|
callback: z.ZodOptional<z.ZodString>;
|