@shotstack/shotstack-studio 1.10.0 → 1.10.1

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.
@@ -146,8 +146,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
146
146
  }>, zod.ZodObject<{
147
147
  type: zod.ZodLiteral<"rich-text">;
148
148
  text: zod.ZodDefault<zod.ZodString>;
149
- width: zod.ZodOptional<zod.ZodNumber>;
150
- height: zod.ZodOptional<zod.ZodNumber>;
151
149
  font: zod.ZodOptional<zod.ZodObject<{
152
150
  family: zod.ZodDefault<zod.ZodString>;
153
151
  size: zod.ZodDefault<zod.ZodNumber>;
@@ -340,24 +338,9 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
340
338
  style?: "character" | "word" | undefined;
341
339
  direction?: "right" | "left" | "up" | "down" | undefined;
342
340
  }>>;
343
- customFonts: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
344
- src: zod.ZodString;
345
- family: zod.ZodString;
346
- weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
347
- }, "strict", zod.ZodTypeAny, {
348
- src: string;
349
- family: string;
350
- weight: string | number;
351
- }, {
352
- src: string;
353
- family: string;
354
- weight?: string | number | undefined;
355
- }>, "many">>;
356
341
  }, "strict", zod.ZodTypeAny, {
357
342
  type: "rich-text";
358
343
  text: string;
359
- width?: number | undefined;
360
- height?: number | undefined;
361
344
  style?: {
362
345
  letterSpacing: number;
363
346
  lineHeight: number;
@@ -418,16 +401,9 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
418
401
  style?: "character" | "word" | undefined;
419
402
  direction?: "right" | "left" | "up" | "down" | undefined;
420
403
  } | undefined;
421
- customFonts?: {
422
- src: string;
423
- family: string;
424
- weight: string | number;
425
- }[] | undefined;
426
404
  }, {
427
405
  type: "rich-text";
428
406
  text?: string | undefined;
429
- width?: number | undefined;
430
- height?: number | undefined;
431
407
  style?: {
432
408
  letterSpacing?: number | undefined;
433
409
  lineHeight?: number | undefined;
@@ -488,11 +464,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
488
464
  style?: "character" | "word" | undefined;
489
465
  direction?: "right" | "left" | "up" | "down" | undefined;
490
466
  } | undefined;
491
- customFonts?: {
492
- src: string;
493
- family: string;
494
- weight?: string | number | undefined;
495
- }[] | undefined;
496
467
  }>, zod.ZodEffects<zod.ZodObject<{
497
468
  type: zod.ZodLiteral<"shape">;
498
469
  width: zod.ZodOptional<zod.ZodNumber>;
@@ -876,8 +847,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
876
847
  } | {
877
848
  type: "rich-text";
878
849
  text: string;
879
- width?: number | undefined;
880
- height?: number | undefined;
881
850
  style?: {
882
851
  letterSpacing: number;
883
852
  lineHeight: number;
@@ -938,11 +907,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
938
907
  style?: "character" | "word" | undefined;
939
908
  direction?: "right" | "left" | "up" | "down" | undefined;
940
909
  } | undefined;
941
- customFonts?: {
942
- src: string;
943
- family: string;
944
- weight: string | number;
945
- }[] | undefined;
946
910
  } | {
947
911
  type: "shape";
948
912
  shape: "rectangle" | "circle" | "line";
@@ -1044,8 +1008,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
1044
1008
  } | {
1045
1009
  type: "rich-text";
1046
1010
  text?: string | undefined;
1047
- width?: number | undefined;
1048
- height?: number | undefined;
1049
1011
  style?: {
1050
1012
  letterSpacing?: number | undefined;
1051
1013
  lineHeight?: number | undefined;
@@ -1106,11 +1068,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
1106
1068
  style?: "character" | "word" | undefined;
1107
1069
  direction?: "right" | "left" | "up" | "down" | undefined;
1108
1070
  } | undefined;
1109
- customFonts?: {
1110
- src: string;
1111
- family: string;
1112
- weight?: string | number | undefined;
1113
- }[] | undefined;
1114
1071
  } | {
1115
1072
  type: "shape";
1116
1073
  shape: "rectangle" | "circle" | "line";
@@ -1421,8 +1378,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
1421
1378
  }>, zod.ZodObject<{
1422
1379
  type: zod.ZodLiteral<"rich-text">;
1423
1380
  text: zod.ZodDefault<zod.ZodString>;
1424
- width: zod.ZodOptional<zod.ZodNumber>;
1425
- height: zod.ZodOptional<zod.ZodNumber>;
1426
1381
  font: zod.ZodOptional<zod.ZodObject<{
1427
1382
  family: zod.ZodDefault<zod.ZodString>;
1428
1383
  size: zod.ZodDefault<zod.ZodNumber>;
@@ -1615,24 +1570,9 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
1615
1570
  style?: "character" | "word" | undefined;
1616
1571
  direction?: "right" | "left" | "up" | "down" | undefined;
1617
1572
  }>>;
1618
- customFonts: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
1619
- src: zod.ZodString;
1620
- family: zod.ZodString;
1621
- weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
1622
- }, "strict", zod.ZodTypeAny, {
1623
- src: string;
1624
- family: string;
1625
- weight: string | number;
1626
- }, {
1627
- src: string;
1628
- family: string;
1629
- weight?: string | number | undefined;
1630
- }>, "many">>;
1631
1573
  }, "strict", zod.ZodTypeAny, {
1632
1574
  type: "rich-text";
1633
1575
  text: string;
1634
- width?: number | undefined;
1635
- height?: number | undefined;
1636
1576
  style?: {
1637
1577
  letterSpacing: number;
1638
1578
  lineHeight: number;
@@ -1693,16 +1633,9 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
1693
1633
  style?: "character" | "word" | undefined;
1694
1634
  direction?: "right" | "left" | "up" | "down" | undefined;
1695
1635
  } | undefined;
1696
- customFonts?: {
1697
- src: string;
1698
- family: string;
1699
- weight: string | number;
1700
- }[] | undefined;
1701
1636
  }, {
1702
1637
  type: "rich-text";
1703
1638
  text?: string | undefined;
1704
- width?: number | undefined;
1705
- height?: number | undefined;
1706
1639
  style?: {
1707
1640
  letterSpacing?: number | undefined;
1708
1641
  lineHeight?: number | undefined;
@@ -1763,11 +1696,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
1763
1696
  style?: "character" | "word" | undefined;
1764
1697
  direction?: "right" | "left" | "up" | "down" | undefined;
1765
1698
  } | undefined;
1766
- customFonts?: {
1767
- src: string;
1768
- family: string;
1769
- weight?: string | number | undefined;
1770
- }[] | undefined;
1771
1699
  }>, zod.ZodEffects<zod.ZodObject<{
1772
1700
  type: zod.ZodLiteral<"shape">;
1773
1701
  width: zod.ZodOptional<zod.ZodNumber>;
@@ -2151,8 +2079,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
2151
2079
  } | {
2152
2080
  type: "rich-text";
2153
2081
  text: string;
2154
- width?: number | undefined;
2155
- height?: number | undefined;
2156
2082
  style?: {
2157
2083
  letterSpacing: number;
2158
2084
  lineHeight: number;
@@ -2213,11 +2139,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
2213
2139
  style?: "character" | "word" | undefined;
2214
2140
  direction?: "right" | "left" | "up" | "down" | undefined;
2215
2141
  } | undefined;
2216
- customFonts?: {
2217
- src: string;
2218
- family: string;
2219
- weight: string | number;
2220
- }[] | undefined;
2221
2142
  } | {
2222
2143
  type: "shape";
2223
2144
  shape: "rectangle" | "circle" | "line";
@@ -2319,8 +2240,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
2319
2240
  } | {
2320
2241
  type: "rich-text";
2321
2242
  text?: string | undefined;
2322
- width?: number | undefined;
2323
- height?: number | undefined;
2324
2243
  style?: {
2325
2244
  letterSpacing?: number | undefined;
2326
2245
  lineHeight?: number | undefined;
@@ -2381,11 +2300,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
2381
2300
  style?: "character" | "word" | undefined;
2382
2301
  direction?: "right" | "left" | "up" | "down" | undefined;
2383
2302
  } | undefined;
2384
- customFonts?: {
2385
- src: string;
2386
- family: string;
2387
- weight?: string | number | undefined;
2388
- }[] | undefined;
2389
2303
  } | {
2390
2304
  type: "shape";
2391
2305
  shape: "rectangle" | "circle" | "line";
@@ -2703,8 +2617,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
2703
2617
  } | {
2704
2618
  type: "rich-text";
2705
2619
  text: string;
2706
- width?: number | undefined;
2707
- height?: number | undefined;
2708
2620
  style?: {
2709
2621
  letterSpacing: number;
2710
2622
  lineHeight: number;
@@ -2765,11 +2677,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
2765
2677
  style?: "character" | "word" | undefined;
2766
2678
  direction?: "right" | "left" | "up" | "down" | undefined;
2767
2679
  } | undefined;
2768
- customFonts?: {
2769
- src: string;
2770
- family: string;
2771
- weight: string | number;
2772
- }[] | undefined;
2773
2680
  } | {
2774
2681
  type: "shape";
2775
2682
  shape: "rectangle" | "circle" | "line";
@@ -2930,8 +2837,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
2930
2837
  } | {
2931
2838
  type: "rich-text";
2932
2839
  text?: string | undefined;
2933
- width?: number | undefined;
2934
- height?: number | undefined;
2935
2840
  style?: {
2936
2841
  letterSpacing?: number | undefined;
2937
2842
  lineHeight?: number | undefined;
@@ -2992,11 +2897,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
2992
2897
  style?: "character" | "word" | undefined;
2993
2898
  direction?: "right" | "left" | "up" | "down" | undefined;
2994
2899
  } | undefined;
2995
- customFonts?: {
2996
- src: string;
2997
- family: string;
2998
- weight?: string | number | undefined;
2999
- }[] | undefined;
3000
2900
  } | {
3001
2901
  type: "shape";
3002
2902
  shape: "rectangle" | "circle" | "line";
@@ -3158,8 +3058,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
3158
3058
  } | {
3159
3059
  type: "rich-text";
3160
3060
  text: string;
3161
- width?: number | undefined;
3162
- height?: number | undefined;
3163
3061
  style?: {
3164
3062
  letterSpacing: number;
3165
3063
  lineHeight: number;
@@ -3220,11 +3118,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
3220
3118
  style?: "character" | "word" | undefined;
3221
3119
  direction?: "right" | "left" | "up" | "down" | undefined;
3222
3120
  } | undefined;
3223
- customFonts?: {
3224
- src: string;
3225
- family: string;
3226
- weight: string | number;
3227
- }[] | undefined;
3228
3121
  } | {
3229
3122
  type: "shape";
3230
3123
  shape: "rectangle" | "circle" | "line";
@@ -3384,8 +3277,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
3384
3277
  } | {
3385
3278
  type: "rich-text";
3386
3279
  text?: string | undefined;
3387
- width?: number | undefined;
3388
- height?: number | undefined;
3389
3280
  style?: {
3390
3281
  letterSpacing?: number | undefined;
3391
3282
  lineHeight?: number | undefined;
@@ -3446,11 +3337,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
3446
3337
  style?: "character" | "word" | undefined;
3447
3338
  direction?: "right" | "left" | "up" | "down" | undefined;
3448
3339
  } | undefined;
3449
- customFonts?: {
3450
- src: string;
3451
- family: string;
3452
- weight?: string | number | undefined;
3453
- }[] | undefined;
3454
3340
  } | {
3455
3341
  type: "shape";
3456
3342
  shape: "rectangle" | "circle" | "line";
@@ -3808,8 +3694,6 @@ export declare const EditSchema: zod.ZodObject<{
3808
3694
  }>, zod.ZodObject<{
3809
3695
  type: zod.ZodLiteral<"rich-text">;
3810
3696
  text: zod.ZodDefault<zod.ZodString>;
3811
- width: zod.ZodOptional<zod.ZodNumber>;
3812
- height: zod.ZodOptional<zod.ZodNumber>;
3813
3697
  font: zod.ZodOptional<zod.ZodObject<{
3814
3698
  family: zod.ZodDefault<zod.ZodString>;
3815
3699
  size: zod.ZodDefault<zod.ZodNumber>;
@@ -4002,24 +3886,9 @@ export declare const EditSchema: zod.ZodObject<{
4002
3886
  style?: "character" | "word" | undefined;
4003
3887
  direction?: "right" | "left" | "up" | "down" | undefined;
4004
3888
  }>>;
4005
- customFonts: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
4006
- src: zod.ZodString;
4007
- family: zod.ZodString;
4008
- weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
4009
- }, "strict", zod.ZodTypeAny, {
4010
- src: string;
4011
- family: string;
4012
- weight: string | number;
4013
- }, {
4014
- src: string;
4015
- family: string;
4016
- weight?: string | number | undefined;
4017
- }>, "many">>;
4018
3889
  }, "strict", zod.ZodTypeAny, {
4019
3890
  type: "rich-text";
4020
3891
  text: string;
4021
- width?: number | undefined;
4022
- height?: number | undefined;
4023
3892
  style?: {
4024
3893
  letterSpacing: number;
4025
3894
  lineHeight: number;
@@ -4080,16 +3949,9 @@ export declare const EditSchema: zod.ZodObject<{
4080
3949
  style?: "character" | "word" | undefined;
4081
3950
  direction?: "right" | "left" | "up" | "down" | undefined;
4082
3951
  } | undefined;
4083
- customFonts?: {
4084
- src: string;
4085
- family: string;
4086
- weight: string | number;
4087
- }[] | undefined;
4088
3952
  }, {
4089
3953
  type: "rich-text";
4090
3954
  text?: string | undefined;
4091
- width?: number | undefined;
4092
- height?: number | undefined;
4093
3955
  style?: {
4094
3956
  letterSpacing?: number | undefined;
4095
3957
  lineHeight?: number | undefined;
@@ -4150,11 +4012,6 @@ export declare const EditSchema: zod.ZodObject<{
4150
4012
  style?: "character" | "word" | undefined;
4151
4013
  direction?: "right" | "left" | "up" | "down" | undefined;
4152
4014
  } | undefined;
4153
- customFonts?: {
4154
- src: string;
4155
- family: string;
4156
- weight?: string | number | undefined;
4157
- }[] | undefined;
4158
4015
  }>, zod.ZodEffects<zod.ZodObject<{
4159
4016
  type: zod.ZodLiteral<"shape">;
4160
4017
  width: zod.ZodOptional<zod.ZodNumber>;
@@ -4538,8 +4395,6 @@ export declare const EditSchema: zod.ZodObject<{
4538
4395
  } | {
4539
4396
  type: "rich-text";
4540
4397
  text: string;
4541
- width?: number | undefined;
4542
- height?: number | undefined;
4543
4398
  style?: {
4544
4399
  letterSpacing: number;
4545
4400
  lineHeight: number;
@@ -4600,11 +4455,6 @@ export declare const EditSchema: zod.ZodObject<{
4600
4455
  style?: "character" | "word" | undefined;
4601
4456
  direction?: "right" | "left" | "up" | "down" | undefined;
4602
4457
  } | undefined;
4603
- customFonts?: {
4604
- src: string;
4605
- family: string;
4606
- weight: string | number;
4607
- }[] | undefined;
4608
4458
  } | {
4609
4459
  type: "shape";
4610
4460
  shape: "rectangle" | "circle" | "line";
@@ -4706,8 +4556,6 @@ export declare const EditSchema: zod.ZodObject<{
4706
4556
  } | {
4707
4557
  type: "rich-text";
4708
4558
  text?: string | undefined;
4709
- width?: number | undefined;
4710
- height?: number | undefined;
4711
4559
  style?: {
4712
4560
  letterSpacing?: number | undefined;
4713
4561
  lineHeight?: number | undefined;
@@ -4768,11 +4616,6 @@ export declare const EditSchema: zod.ZodObject<{
4768
4616
  style?: "character" | "word" | undefined;
4769
4617
  direction?: "right" | "left" | "up" | "down" | undefined;
4770
4618
  } | undefined;
4771
- customFonts?: {
4772
- src: string;
4773
- family: string;
4774
- weight?: string | number | undefined;
4775
- }[] | undefined;
4776
4619
  } | {
4777
4620
  type: "shape";
4778
4621
  shape: "rectangle" | "circle" | "line";
@@ -5090,8 +4933,6 @@ export declare const EditSchema: zod.ZodObject<{
5090
4933
  } | {
5091
4934
  type: "rich-text";
5092
4935
  text: string;
5093
- width?: number | undefined;
5094
- height?: number | undefined;
5095
4936
  style?: {
5096
4937
  letterSpacing: number;
5097
4938
  lineHeight: number;
@@ -5152,11 +4993,6 @@ export declare const EditSchema: zod.ZodObject<{
5152
4993
  style?: "character" | "word" | undefined;
5153
4994
  direction?: "right" | "left" | "up" | "down" | undefined;
5154
4995
  } | undefined;
5155
- customFonts?: {
5156
- src: string;
5157
- family: string;
5158
- weight: string | number;
5159
- }[] | undefined;
5160
4996
  } | {
5161
4997
  type: "shape";
5162
4998
  shape: "rectangle" | "circle" | "line";
@@ -5317,8 +5153,6 @@ export declare const EditSchema: zod.ZodObject<{
5317
5153
  } | {
5318
5154
  type: "rich-text";
5319
5155
  text?: string | undefined;
5320
- width?: number | undefined;
5321
- height?: number | undefined;
5322
5156
  style?: {
5323
5157
  letterSpacing?: number | undefined;
5324
5158
  lineHeight?: number | undefined;
@@ -5379,11 +5213,6 @@ export declare const EditSchema: zod.ZodObject<{
5379
5213
  style?: "character" | "word" | undefined;
5380
5214
  direction?: "right" | "left" | "up" | "down" | undefined;
5381
5215
  } | undefined;
5382
- customFonts?: {
5383
- src: string;
5384
- family: string;
5385
- weight?: string | number | undefined;
5386
- }[] | undefined;
5387
5216
  } | {
5388
5217
  type: "shape";
5389
5218
  shape: "rectangle" | "circle" | "line";
@@ -5545,8 +5374,6 @@ export declare const EditSchema: zod.ZodObject<{
5545
5374
  } | {
5546
5375
  type: "rich-text";
5547
5376
  text: string;
5548
- width?: number | undefined;
5549
- height?: number | undefined;
5550
5377
  style?: {
5551
5378
  letterSpacing: number;
5552
5379
  lineHeight: number;
@@ -5607,11 +5434,6 @@ export declare const EditSchema: zod.ZodObject<{
5607
5434
  style?: "character" | "word" | undefined;
5608
5435
  direction?: "right" | "left" | "up" | "down" | undefined;
5609
5436
  } | undefined;
5610
- customFonts?: {
5611
- src: string;
5612
- family: string;
5613
- weight: string | number;
5614
- }[] | undefined;
5615
5437
  } | {
5616
5438
  type: "shape";
5617
5439
  shape: "rectangle" | "circle" | "line";
@@ -5771,8 +5593,6 @@ export declare const EditSchema: zod.ZodObject<{
5771
5593
  } | {
5772
5594
  type: "rich-text";
5773
5595
  text?: string | undefined;
5774
- width?: number | undefined;
5775
- height?: number | undefined;
5776
5596
  style?: {
5777
5597
  letterSpacing?: number | undefined;
5778
5598
  lineHeight?: number | undefined;
@@ -5833,11 +5653,6 @@ export declare const EditSchema: zod.ZodObject<{
5833
5653
  style?: "character" | "word" | undefined;
5834
5654
  direction?: "right" | "left" | "up" | "down" | undefined;
5835
5655
  } | undefined;
5836
- customFonts?: {
5837
- src: string;
5838
- family: string;
5839
- weight?: string | number | undefined;
5840
- }[] | undefined;
5841
5656
  } | {
5842
5657
  type: "shape";
5843
5658
  shape: "rectangle" | "circle" | "line";
@@ -6001,8 +5816,6 @@ export declare const EditSchema: zod.ZodObject<{
6001
5816
  } | {
6002
5817
  type: "rich-text";
6003
5818
  text: string;
6004
- width?: number | undefined;
6005
- height?: number | undefined;
6006
5819
  style?: {
6007
5820
  letterSpacing: number;
6008
5821
  lineHeight: number;
@@ -6063,11 +5876,6 @@ export declare const EditSchema: zod.ZodObject<{
6063
5876
  style?: "character" | "word" | undefined;
6064
5877
  direction?: "right" | "left" | "up" | "down" | undefined;
6065
5878
  } | undefined;
6066
- customFonts?: {
6067
- src: string;
6068
- family: string;
6069
- weight: string | number;
6070
- }[] | undefined;
6071
5879
  } | {
6072
5880
  type: "shape";
6073
5881
  shape: "rectangle" | "circle" | "line";
@@ -6229,8 +6037,6 @@ export declare const EditSchema: zod.ZodObject<{
6229
6037
  } | {
6230
6038
  type: "rich-text";
6231
6039
  text?: string | undefined;
6232
- width?: number | undefined;
6233
- height?: number | undefined;
6234
6040
  style?: {
6235
6041
  letterSpacing?: number | undefined;
6236
6042
  lineHeight?: number | undefined;
@@ -6291,11 +6097,6 @@ export declare const EditSchema: zod.ZodObject<{
6291
6097
  style?: "character" | "word" | undefined;
6292
6098
  direction?: "right" | "left" | "up" | "down" | undefined;
6293
6099
  } | undefined;
6294
- customFonts?: {
6295
- src: string;
6296
- family: string;
6297
- weight?: string | number | undefined;
6298
- }[] | undefined;
6299
6100
  } | {
6300
6101
  type: "shape";
6301
6102
  shape: "rectangle" | "circle" | "line";
@@ -6461,8 +6262,6 @@ export declare const EditSchema: zod.ZodObject<{
6461
6262
  } | {
6462
6263
  type: "rich-text";
6463
6264
  text: string;
6464
- width?: number | undefined;
6465
- height?: number | undefined;
6466
6265
  style?: {
6467
6266
  letterSpacing: number;
6468
6267
  lineHeight: number;
@@ -6523,11 +6322,6 @@ export declare const EditSchema: zod.ZodObject<{
6523
6322
  style?: "character" | "word" | undefined;
6524
6323
  direction?: "right" | "left" | "up" | "down" | undefined;
6525
6324
  } | undefined;
6526
- customFonts?: {
6527
- src: string;
6528
- family: string;
6529
- weight: string | number;
6530
- }[] | undefined;
6531
6325
  } | {
6532
6326
  type: "shape";
6533
6327
  shape: "rectangle" | "circle" | "line";
@@ -6695,8 +6489,6 @@ export declare const EditSchema: zod.ZodObject<{
6695
6489
  } | {
6696
6490
  type: "rich-text";
6697
6491
  text?: string | undefined;
6698
- width?: number | undefined;
6699
- height?: number | undefined;
6700
6492
  style?: {
6701
6493
  letterSpacing?: number | undefined;
6702
6494
  lineHeight?: number | undefined;
@@ -6757,11 +6549,6 @@ export declare const EditSchema: zod.ZodObject<{
6757
6549
  style?: "character" | "word" | undefined;
6758
6550
  direction?: "right" | "left" | "up" | "down" | undefined;
6759
6551
  } | undefined;
6760
- customFonts?: {
6761
- src: string;
6762
- family: string;
6763
- weight?: string | number | undefined;
6764
- }[] | undefined;
6765
6552
  } | {
6766
6553
  type: "shape";
6767
6554
  shape: "rectangle" | "circle" | "line";
@@ -6971,8 +6758,6 @@ export declare const EditSchema: zod.ZodObject<{
6971
6758
  } | {
6972
6759
  type: "rich-text";
6973
6760
  text: string;
6974
- width?: number | undefined;
6975
- height?: number | undefined;
6976
6761
  style?: {
6977
6762
  letterSpacing: number;
6978
6763
  lineHeight: number;
@@ -7033,11 +6818,6 @@ export declare const EditSchema: zod.ZodObject<{
7033
6818
  style?: "character" | "word" | undefined;
7034
6819
  direction?: "right" | "left" | "up" | "down" | undefined;
7035
6820
  } | undefined;
7036
- customFonts?: {
7037
- src: string;
7038
- family: string;
7039
- weight: string | number;
7040
- }[] | undefined;
7041
6821
  } | {
7042
6822
  type: "shape";
7043
6823
  shape: "rectangle" | "circle" | "line";
@@ -7219,8 +6999,6 @@ export declare const EditSchema: zod.ZodObject<{
7219
6999
  } | {
7220
7000
  type: "rich-text";
7221
7001
  text?: string | undefined;
7222
- width?: number | undefined;
7223
- height?: number | undefined;
7224
7002
  style?: {
7225
7003
  letterSpacing?: number | undefined;
7226
7004
  lineHeight?: number | undefined;
@@ -7281,11 +7059,6 @@ export declare const EditSchema: zod.ZodObject<{
7281
7059
  style?: "character" | "word" | undefined;
7282
7060
  direction?: "right" | "left" | "up" | "down" | undefined;
7283
7061
  } | undefined;
7284
- customFonts?: {
7285
- src: string;
7286
- family: string;
7287
- weight?: string | number | undefined;
7288
- }[] | undefined;
7289
7062
  } | {
7290
7063
  type: "shape";
7291
7064
  shape: "rectangle" | "circle" | "line";
@@ -7709,8 +7482,6 @@ export declare type RichTextAsset = zod.infer<typeof RichTextAssetSchema>;
7709
7482
  export declare const RichTextAssetSchema: zod.ZodObject<{
7710
7483
  type: zod.ZodLiteral<"rich-text">;
7711
7484
  text: zod.ZodDefault<zod.ZodString>;
7712
- width: zod.ZodOptional<zod.ZodNumber>;
7713
- height: zod.ZodOptional<zod.ZodNumber>;
7714
7485
  font: zod.ZodOptional<zod.ZodObject<{
7715
7486
  family: zod.ZodDefault<zod.ZodString>;
7716
7487
  size: zod.ZodDefault<zod.ZodNumber>;
@@ -7903,24 +7674,9 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
7903
7674
  style?: "character" | "word" | undefined;
7904
7675
  direction?: "right" | "left" | "up" | "down" | undefined;
7905
7676
  }>>;
7906
- customFonts: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
7907
- src: zod.ZodString;
7908
- family: zod.ZodString;
7909
- weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
7910
- }, "strict", zod.ZodTypeAny, {
7911
- src: string;
7912
- family: string;
7913
- weight: string | number;
7914
- }, {
7915
- src: string;
7916
- family: string;
7917
- weight?: string | number | undefined;
7918
- }>, "many">>;
7919
7677
  }, "strict", zod.ZodTypeAny, {
7920
7678
  type: "rich-text";
7921
7679
  text: string;
7922
- width?: number | undefined;
7923
- height?: number | undefined;
7924
7680
  style?: {
7925
7681
  letterSpacing: number;
7926
7682
  lineHeight: number;
@@ -7981,16 +7737,9 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
7981
7737
  style?: "character" | "word" | undefined;
7982
7738
  direction?: "right" | "left" | "up" | "down" | undefined;
7983
7739
  } | undefined;
7984
- customFonts?: {
7985
- src: string;
7986
- family: string;
7987
- weight: string | number;
7988
- }[] | undefined;
7989
7740
  }, {
7990
7741
  type: "rich-text";
7991
7742
  text?: string | undefined;
7992
- width?: number | undefined;
7993
- height?: number | undefined;
7994
7743
  style?: {
7995
7744
  letterSpacing?: number | undefined;
7996
7745
  lineHeight?: number | undefined;
@@ -8051,11 +7800,6 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
8051
7800
  style?: "character" | "word" | undefined;
8052
7801
  direction?: "right" | "left" | "up" | "down" | undefined;
8053
7802
  } | undefined;
8054
- customFonts?: {
8055
- src: string;
8056
- family: string;
8057
- weight?: string | number | undefined;
8058
- }[] | undefined;
8059
7803
  }>;
8060
7804
 
8061
7805
  declare interface SelectionBounds {
@@ -8695,8 +8439,6 @@ export declare const TimelineSchema: zod.ZodObject<{
8695
8439
  }>, zod.ZodObject<{
8696
8440
  type: zod.ZodLiteral<"rich-text">;
8697
8441
  text: zod.ZodDefault<zod.ZodString>;
8698
- width: zod.ZodOptional<zod.ZodNumber>;
8699
- height: zod.ZodOptional<zod.ZodNumber>;
8700
8442
  font: zod.ZodOptional<zod.ZodObject<{
8701
8443
  family: zod.ZodDefault<zod.ZodString>;
8702
8444
  size: zod.ZodDefault<zod.ZodNumber>;
@@ -8889,24 +8631,9 @@ export declare const TimelineSchema: zod.ZodObject<{
8889
8631
  style?: "character" | "word" | undefined;
8890
8632
  direction?: "right" | "left" | "up" | "down" | undefined;
8891
8633
  }>>;
8892
- customFonts: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
8893
- src: zod.ZodString;
8894
- family: zod.ZodString;
8895
- weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
8896
- }, "strict", zod.ZodTypeAny, {
8897
- src: string;
8898
- family: string;
8899
- weight: string | number;
8900
- }, {
8901
- src: string;
8902
- family: string;
8903
- weight?: string | number | undefined;
8904
- }>, "many">>;
8905
8634
  }, "strict", zod.ZodTypeAny, {
8906
8635
  type: "rich-text";
8907
8636
  text: string;
8908
- width?: number | undefined;
8909
- height?: number | undefined;
8910
8637
  style?: {
8911
8638
  letterSpacing: number;
8912
8639
  lineHeight: number;
@@ -8967,16 +8694,9 @@ export declare const TimelineSchema: zod.ZodObject<{
8967
8694
  style?: "character" | "word" | undefined;
8968
8695
  direction?: "right" | "left" | "up" | "down" | undefined;
8969
8696
  } | undefined;
8970
- customFonts?: {
8971
- src: string;
8972
- family: string;
8973
- weight: string | number;
8974
- }[] | undefined;
8975
8697
  }, {
8976
8698
  type: "rich-text";
8977
8699
  text?: string | undefined;
8978
- width?: number | undefined;
8979
- height?: number | undefined;
8980
8700
  style?: {
8981
8701
  letterSpacing?: number | undefined;
8982
8702
  lineHeight?: number | undefined;
@@ -9037,11 +8757,6 @@ export declare const TimelineSchema: zod.ZodObject<{
9037
8757
  style?: "character" | "word" | undefined;
9038
8758
  direction?: "right" | "left" | "up" | "down" | undefined;
9039
8759
  } | undefined;
9040
- customFonts?: {
9041
- src: string;
9042
- family: string;
9043
- weight?: string | number | undefined;
9044
- }[] | undefined;
9045
8760
  }>, zod.ZodEffects<zod.ZodObject<{
9046
8761
  type: zod.ZodLiteral<"shape">;
9047
8762
  width: zod.ZodOptional<zod.ZodNumber>;
@@ -9425,8 +9140,6 @@ export declare const TimelineSchema: zod.ZodObject<{
9425
9140
  } | {
9426
9141
  type: "rich-text";
9427
9142
  text: string;
9428
- width?: number | undefined;
9429
- height?: number | undefined;
9430
9143
  style?: {
9431
9144
  letterSpacing: number;
9432
9145
  lineHeight: number;
@@ -9487,11 +9200,6 @@ export declare const TimelineSchema: zod.ZodObject<{
9487
9200
  style?: "character" | "word" | undefined;
9488
9201
  direction?: "right" | "left" | "up" | "down" | undefined;
9489
9202
  } | undefined;
9490
- customFonts?: {
9491
- src: string;
9492
- family: string;
9493
- weight: string | number;
9494
- }[] | undefined;
9495
9203
  } | {
9496
9204
  type: "shape";
9497
9205
  shape: "rectangle" | "circle" | "line";
@@ -9593,8 +9301,6 @@ export declare const TimelineSchema: zod.ZodObject<{
9593
9301
  } | {
9594
9302
  type: "rich-text";
9595
9303
  text?: string | undefined;
9596
- width?: number | undefined;
9597
- height?: number | undefined;
9598
9304
  style?: {
9599
9305
  letterSpacing?: number | undefined;
9600
9306
  lineHeight?: number | undefined;
@@ -9655,11 +9361,6 @@ export declare const TimelineSchema: zod.ZodObject<{
9655
9361
  style?: "character" | "word" | undefined;
9656
9362
  direction?: "right" | "left" | "up" | "down" | undefined;
9657
9363
  } | undefined;
9658
- customFonts?: {
9659
- src: string;
9660
- family: string;
9661
- weight?: string | number | undefined;
9662
- }[] | undefined;
9663
9364
  } | {
9664
9365
  type: "shape";
9665
9366
  shape: "rectangle" | "circle" | "line";
@@ -9977,8 +9678,6 @@ export declare const TimelineSchema: zod.ZodObject<{
9977
9678
  } | {
9978
9679
  type: "rich-text";
9979
9680
  text: string;
9980
- width?: number | undefined;
9981
- height?: number | undefined;
9982
9681
  style?: {
9983
9682
  letterSpacing: number;
9984
9683
  lineHeight: number;
@@ -10039,11 +9738,6 @@ export declare const TimelineSchema: zod.ZodObject<{
10039
9738
  style?: "character" | "word" | undefined;
10040
9739
  direction?: "right" | "left" | "up" | "down" | undefined;
10041
9740
  } | undefined;
10042
- customFonts?: {
10043
- src: string;
10044
- family: string;
10045
- weight: string | number;
10046
- }[] | undefined;
10047
9741
  } | {
10048
9742
  type: "shape";
10049
9743
  shape: "rectangle" | "circle" | "line";
@@ -10204,8 +9898,6 @@ export declare const TimelineSchema: zod.ZodObject<{
10204
9898
  } | {
10205
9899
  type: "rich-text";
10206
9900
  text?: string | undefined;
10207
- width?: number | undefined;
10208
- height?: number | undefined;
10209
9901
  style?: {
10210
9902
  letterSpacing?: number | undefined;
10211
9903
  lineHeight?: number | undefined;
@@ -10266,11 +9958,6 @@ export declare const TimelineSchema: zod.ZodObject<{
10266
9958
  style?: "character" | "word" | undefined;
10267
9959
  direction?: "right" | "left" | "up" | "down" | undefined;
10268
9960
  } | undefined;
10269
- customFonts?: {
10270
- src: string;
10271
- family: string;
10272
- weight?: string | number | undefined;
10273
- }[] | undefined;
10274
9961
  } | {
10275
9962
  type: "shape";
10276
9963
  shape: "rectangle" | "circle" | "line";
@@ -10432,8 +10119,6 @@ export declare const TimelineSchema: zod.ZodObject<{
10432
10119
  } | {
10433
10120
  type: "rich-text";
10434
10121
  text: string;
10435
- width?: number | undefined;
10436
- height?: number | undefined;
10437
10122
  style?: {
10438
10123
  letterSpacing: number;
10439
10124
  lineHeight: number;
@@ -10494,11 +10179,6 @@ export declare const TimelineSchema: zod.ZodObject<{
10494
10179
  style?: "character" | "word" | undefined;
10495
10180
  direction?: "right" | "left" | "up" | "down" | undefined;
10496
10181
  } | undefined;
10497
- customFonts?: {
10498
- src: string;
10499
- family: string;
10500
- weight: string | number;
10501
- }[] | undefined;
10502
10182
  } | {
10503
10183
  type: "shape";
10504
10184
  shape: "rectangle" | "circle" | "line";
@@ -10658,8 +10338,6 @@ export declare const TimelineSchema: zod.ZodObject<{
10658
10338
  } | {
10659
10339
  type: "rich-text";
10660
10340
  text?: string | undefined;
10661
- width?: number | undefined;
10662
- height?: number | undefined;
10663
10341
  style?: {
10664
10342
  letterSpacing?: number | undefined;
10665
10343
  lineHeight?: number | undefined;
@@ -10720,11 +10398,6 @@ export declare const TimelineSchema: zod.ZodObject<{
10720
10398
  style?: "character" | "word" | undefined;
10721
10399
  direction?: "right" | "left" | "up" | "down" | undefined;
10722
10400
  } | undefined;
10723
- customFonts?: {
10724
- src: string;
10725
- family: string;
10726
- weight?: string | number | undefined;
10727
- }[] | undefined;
10728
10401
  } | {
10729
10402
  type: "shape";
10730
10403
  shape: "rectangle" | "circle" | "line";
@@ -10888,8 +10561,6 @@ export declare const TimelineSchema: zod.ZodObject<{
10888
10561
  } | {
10889
10562
  type: "rich-text";
10890
10563
  text: string;
10891
- width?: number | undefined;
10892
- height?: number | undefined;
10893
10564
  style?: {
10894
10565
  letterSpacing: number;
10895
10566
  lineHeight: number;
@@ -10950,11 +10621,6 @@ export declare const TimelineSchema: zod.ZodObject<{
10950
10621
  style?: "character" | "word" | undefined;
10951
10622
  direction?: "right" | "left" | "up" | "down" | undefined;
10952
10623
  } | undefined;
10953
- customFonts?: {
10954
- src: string;
10955
- family: string;
10956
- weight: string | number;
10957
- }[] | undefined;
10958
10624
  } | {
10959
10625
  type: "shape";
10960
10626
  shape: "rectangle" | "circle" | "line";
@@ -11116,8 +10782,6 @@ export declare const TimelineSchema: zod.ZodObject<{
11116
10782
  } | {
11117
10783
  type: "rich-text";
11118
10784
  text?: string | undefined;
11119
- width?: number | undefined;
11120
- height?: number | undefined;
11121
10785
  style?: {
11122
10786
  letterSpacing?: number | undefined;
11123
10787
  lineHeight?: number | undefined;
@@ -11178,11 +10842,6 @@ export declare const TimelineSchema: zod.ZodObject<{
11178
10842
  style?: "character" | "word" | undefined;
11179
10843
  direction?: "right" | "left" | "up" | "down" | undefined;
11180
10844
  } | undefined;
11181
- customFonts?: {
11182
- src: string;
11183
- family: string;
11184
- weight?: string | number | undefined;
11185
- }[] | undefined;
11186
10845
  } | {
11187
10846
  type: "shape";
11188
10847
  shape: "rectangle" | "circle" | "line";
@@ -11348,8 +11007,6 @@ export declare const TimelineSchema: zod.ZodObject<{
11348
11007
  } | {
11349
11008
  type: "rich-text";
11350
11009
  text: string;
11351
- width?: number | undefined;
11352
- height?: number | undefined;
11353
11010
  style?: {
11354
11011
  letterSpacing: number;
11355
11012
  lineHeight: number;
@@ -11410,11 +11067,6 @@ export declare const TimelineSchema: zod.ZodObject<{
11410
11067
  style?: "character" | "word" | undefined;
11411
11068
  direction?: "right" | "left" | "up" | "down" | undefined;
11412
11069
  } | undefined;
11413
- customFonts?: {
11414
- src: string;
11415
- family: string;
11416
- weight: string | number;
11417
- }[] | undefined;
11418
11070
  } | {
11419
11071
  type: "shape";
11420
11072
  shape: "rectangle" | "circle" | "line";
@@ -11582,8 +11234,6 @@ export declare const TimelineSchema: zod.ZodObject<{
11582
11234
  } | {
11583
11235
  type: "rich-text";
11584
11236
  text?: string | undefined;
11585
- width?: number | undefined;
11586
- height?: number | undefined;
11587
11237
  style?: {
11588
11238
  letterSpacing?: number | undefined;
11589
11239
  lineHeight?: number | undefined;
@@ -11644,11 +11294,6 @@ export declare const TimelineSchema: zod.ZodObject<{
11644
11294
  style?: "character" | "word" | undefined;
11645
11295
  direction?: "right" | "left" | "up" | "down" | undefined;
11646
11296
  } | undefined;
11647
- customFonts?: {
11648
- src: string;
11649
- family: string;
11650
- weight?: string | number | undefined;
11651
- }[] | undefined;
11652
11297
  } | {
11653
11298
  type: "shape";
11654
11299
  shape: "rectangle" | "circle" | "line";
@@ -11983,8 +11628,6 @@ export declare const TrackSchema: zod.ZodObject<{
11983
11628
  }>, zod.ZodObject<{
11984
11629
  type: zod.ZodLiteral<"rich-text">;
11985
11630
  text: zod.ZodDefault<zod.ZodString>;
11986
- width: zod.ZodOptional<zod.ZodNumber>;
11987
- height: zod.ZodOptional<zod.ZodNumber>;
11988
11631
  font: zod.ZodOptional<zod.ZodObject<{
11989
11632
  family: zod.ZodDefault<zod.ZodString>;
11990
11633
  size: zod.ZodDefault<zod.ZodNumber>;
@@ -12177,24 +11820,9 @@ export declare const TrackSchema: zod.ZodObject<{
12177
11820
  style?: "character" | "word" | undefined;
12178
11821
  direction?: "right" | "left" | "up" | "down" | undefined;
12179
11822
  }>>;
12180
- customFonts: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
12181
- src: zod.ZodString;
12182
- family: zod.ZodString;
12183
- weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
12184
- }, "strict", zod.ZodTypeAny, {
12185
- src: string;
12186
- family: string;
12187
- weight: string | number;
12188
- }, {
12189
- src: string;
12190
- family: string;
12191
- weight?: string | number | undefined;
12192
- }>, "many">>;
12193
11823
  }, "strict", zod.ZodTypeAny, {
12194
11824
  type: "rich-text";
12195
11825
  text: string;
12196
- width?: number | undefined;
12197
- height?: number | undefined;
12198
11826
  style?: {
12199
11827
  letterSpacing: number;
12200
11828
  lineHeight: number;
@@ -12255,16 +11883,9 @@ export declare const TrackSchema: zod.ZodObject<{
12255
11883
  style?: "character" | "word" | undefined;
12256
11884
  direction?: "right" | "left" | "up" | "down" | undefined;
12257
11885
  } | undefined;
12258
- customFonts?: {
12259
- src: string;
12260
- family: string;
12261
- weight: string | number;
12262
- }[] | undefined;
12263
11886
  }, {
12264
11887
  type: "rich-text";
12265
11888
  text?: string | undefined;
12266
- width?: number | undefined;
12267
- height?: number | undefined;
12268
11889
  style?: {
12269
11890
  letterSpacing?: number | undefined;
12270
11891
  lineHeight?: number | undefined;
@@ -12325,11 +11946,6 @@ export declare const TrackSchema: zod.ZodObject<{
12325
11946
  style?: "character" | "word" | undefined;
12326
11947
  direction?: "right" | "left" | "up" | "down" | undefined;
12327
11948
  } | undefined;
12328
- customFonts?: {
12329
- src: string;
12330
- family: string;
12331
- weight?: string | number | undefined;
12332
- }[] | undefined;
12333
11949
  }>, zod.ZodEffects<zod.ZodObject<{
12334
11950
  type: zod.ZodLiteral<"shape">;
12335
11951
  width: zod.ZodOptional<zod.ZodNumber>;
@@ -12713,8 +12329,6 @@ export declare const TrackSchema: zod.ZodObject<{
12713
12329
  } | {
12714
12330
  type: "rich-text";
12715
12331
  text: string;
12716
- width?: number | undefined;
12717
- height?: number | undefined;
12718
12332
  style?: {
12719
12333
  letterSpacing: number;
12720
12334
  lineHeight: number;
@@ -12775,11 +12389,6 @@ export declare const TrackSchema: zod.ZodObject<{
12775
12389
  style?: "character" | "word" | undefined;
12776
12390
  direction?: "right" | "left" | "up" | "down" | undefined;
12777
12391
  } | undefined;
12778
- customFonts?: {
12779
- src: string;
12780
- family: string;
12781
- weight: string | number;
12782
- }[] | undefined;
12783
12392
  } | {
12784
12393
  type: "shape";
12785
12394
  shape: "rectangle" | "circle" | "line";
@@ -12881,8 +12490,6 @@ export declare const TrackSchema: zod.ZodObject<{
12881
12490
  } | {
12882
12491
  type: "rich-text";
12883
12492
  text?: string | undefined;
12884
- width?: number | undefined;
12885
- height?: number | undefined;
12886
12493
  style?: {
12887
12494
  letterSpacing?: number | undefined;
12888
12495
  lineHeight?: number | undefined;
@@ -12943,11 +12550,6 @@ export declare const TrackSchema: zod.ZodObject<{
12943
12550
  style?: "character" | "word" | undefined;
12944
12551
  direction?: "right" | "left" | "up" | "down" | undefined;
12945
12552
  } | undefined;
12946
- customFonts?: {
12947
- src: string;
12948
- family: string;
12949
- weight?: string | number | undefined;
12950
- }[] | undefined;
12951
12553
  } | {
12952
12554
  type: "shape";
12953
12555
  shape: "rectangle" | "circle" | "line";
@@ -13265,8 +12867,6 @@ export declare const TrackSchema: zod.ZodObject<{
13265
12867
  } | {
13266
12868
  type: "rich-text";
13267
12869
  text: string;
13268
- width?: number | undefined;
13269
- height?: number | undefined;
13270
12870
  style?: {
13271
12871
  letterSpacing: number;
13272
12872
  lineHeight: number;
@@ -13327,11 +12927,6 @@ export declare const TrackSchema: zod.ZodObject<{
13327
12927
  style?: "character" | "word" | undefined;
13328
12928
  direction?: "right" | "left" | "up" | "down" | undefined;
13329
12929
  } | undefined;
13330
- customFonts?: {
13331
- src: string;
13332
- family: string;
13333
- weight: string | number;
13334
- }[] | undefined;
13335
12930
  } | {
13336
12931
  type: "shape";
13337
12932
  shape: "rectangle" | "circle" | "line";
@@ -13492,8 +13087,6 @@ export declare const TrackSchema: zod.ZodObject<{
13492
13087
  } | {
13493
13088
  type: "rich-text";
13494
13089
  text?: string | undefined;
13495
- width?: number | undefined;
13496
- height?: number | undefined;
13497
13090
  style?: {
13498
13091
  letterSpacing?: number | undefined;
13499
13092
  lineHeight?: number | undefined;
@@ -13554,11 +13147,6 @@ export declare const TrackSchema: zod.ZodObject<{
13554
13147
  style?: "character" | "word" | undefined;
13555
13148
  direction?: "right" | "left" | "up" | "down" | undefined;
13556
13149
  } | undefined;
13557
- customFonts?: {
13558
- src: string;
13559
- family: string;
13560
- weight?: string | number | undefined;
13561
- }[] | undefined;
13562
13150
  } | {
13563
13151
  type: "shape";
13564
13152
  shape: "rectangle" | "circle" | "line";
@@ -13720,8 +13308,6 @@ export declare const TrackSchema: zod.ZodObject<{
13720
13308
  } | {
13721
13309
  type: "rich-text";
13722
13310
  text: string;
13723
- width?: number | undefined;
13724
- height?: number | undefined;
13725
13311
  style?: {
13726
13312
  letterSpacing: number;
13727
13313
  lineHeight: number;
@@ -13782,11 +13368,6 @@ export declare const TrackSchema: zod.ZodObject<{
13782
13368
  style?: "character" | "word" | undefined;
13783
13369
  direction?: "right" | "left" | "up" | "down" | undefined;
13784
13370
  } | undefined;
13785
- customFonts?: {
13786
- src: string;
13787
- family: string;
13788
- weight: string | number;
13789
- }[] | undefined;
13790
13371
  } | {
13791
13372
  type: "shape";
13792
13373
  shape: "rectangle" | "circle" | "line";
@@ -13946,8 +13527,6 @@ export declare const TrackSchema: zod.ZodObject<{
13946
13527
  } | {
13947
13528
  type: "rich-text";
13948
13529
  text?: string | undefined;
13949
- width?: number | undefined;
13950
- height?: number | undefined;
13951
13530
  style?: {
13952
13531
  letterSpacing?: number | undefined;
13953
13532
  lineHeight?: number | undefined;
@@ -14008,11 +13587,6 @@ export declare const TrackSchema: zod.ZodObject<{
14008
13587
  style?: "character" | "word" | undefined;
14009
13588
  direction?: "right" | "left" | "up" | "down" | undefined;
14010
13589
  } | undefined;
14011
- customFonts?: {
14012
- src: string;
14013
- family: string;
14014
- weight?: string | number | undefined;
14015
- }[] | undefined;
14016
13590
  } | {
14017
13591
  type: "shape";
14018
13592
  shape: "rectangle" | "circle" | "line";
@@ -14176,8 +13750,6 @@ export declare const TrackSchema: zod.ZodObject<{
14176
13750
  } | {
14177
13751
  type: "rich-text";
14178
13752
  text: string;
14179
- width?: number | undefined;
14180
- height?: number | undefined;
14181
13753
  style?: {
14182
13754
  letterSpacing: number;
14183
13755
  lineHeight: number;
@@ -14238,11 +13810,6 @@ export declare const TrackSchema: zod.ZodObject<{
14238
13810
  style?: "character" | "word" | undefined;
14239
13811
  direction?: "right" | "left" | "up" | "down" | undefined;
14240
13812
  } | undefined;
14241
- customFonts?: {
14242
- src: string;
14243
- family: string;
14244
- weight: string | number;
14245
- }[] | undefined;
14246
13813
  } | {
14247
13814
  type: "shape";
14248
13815
  shape: "rectangle" | "circle" | "line";
@@ -14404,8 +13971,6 @@ export declare const TrackSchema: zod.ZodObject<{
14404
13971
  } | {
14405
13972
  type: "rich-text";
14406
13973
  text?: string | undefined;
14407
- width?: number | undefined;
14408
- height?: number | undefined;
14409
13974
  style?: {
14410
13975
  letterSpacing?: number | undefined;
14411
13976
  lineHeight?: number | undefined;
@@ -14466,11 +14031,6 @@ export declare const TrackSchema: zod.ZodObject<{
14466
14031
  style?: "character" | "word" | undefined;
14467
14032
  direction?: "right" | "left" | "up" | "down" | undefined;
14468
14033
  } | undefined;
14469
- customFonts?: {
14470
- src: string;
14471
- family: string;
14472
- weight?: string | number | undefined;
14473
- }[] | undefined;
14474
14034
  } | {
14475
14035
  type: "shape";
14476
14036
  shape: "rectangle" | "circle" | "line";