@lokalise/content-conversion-schemas 5.5.0 → 5.7.0
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/common.d.ts +3 -0
- package/dist/api/common.d.ts.map +1 -0
- package/dist/api/common.js +3 -0
- package/dist/api/common.js.map +1 -0
- package/dist/api/contentObjects.d.ts +98 -89
- package/dist/api/contentObjects.d.ts.map +1 -1
- package/dist/api/contentObjects.js +1 -45
- package/dist/api/contentObjects.js.map +1 -1
- package/dist/api/contentObjectsNew.d.ts +261 -9
- package/dist/api/contentObjectsNew.d.ts.map +1 -1
- package/dist/api/contentObjectsNew.js +12 -6
- package/dist/api/contentObjectsNew.js.map +1 -1
- package/dist/api/exportObjects.d.ts.map +1 -1
- package/dist/api/exportObjects.js +2 -1
- package/dist/api/exportObjects.js.map +1 -1
- package/dist/api/generationObjects.d.ts +294 -6
- package/dist/api/generationObjects.d.ts.map +1 -1
- package/dist/api/textUnit.d.ts +202 -0
- package/dist/api/textUnit.d.ts.map +1 -0
- package/dist/api/textUnit.js +54 -0
- package/dist/api/textUnit.js.map +1 -0
- package/dist/events/conversion.d.ts +759 -21
- package/dist/events/conversion.d.ts.map +1 -1
- package/dist/events/export.d.ts.map +1 -1
- package/dist/events/export.js +2 -1
- package/dist/events/export.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -39,7 +39,6 @@ export declare const BULK_GENERATE_CONTENT_COMMAND_SCHEMA: z.ZodObject<{
|
|
|
39
39
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
40
40
|
id: z.ZodString;
|
|
41
41
|
name: z.ZodOptional<z.ZodString>;
|
|
42
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
43
42
|
isTranslatable: z.ZodBoolean;
|
|
44
43
|
source: z.ZodObject<{
|
|
45
44
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -56,6 +55,55 @@ export declare const BULK_GENERATE_CONTENT_COMMAND_SCHEMA: z.ZodObject<{
|
|
|
56
55
|
hasBeenSegmented: z.ZodBoolean;
|
|
57
56
|
segments: z.ZodArray<z.ZodString>;
|
|
58
57
|
}, z.core.$strip>;
|
|
58
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
59
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
60
|
+
segments: z.ZodArray<z.ZodString>;
|
|
61
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
62
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
63
|
+
slideNumber: z.ZodNumber;
|
|
64
|
+
slideType: z.ZodEnum<{
|
|
65
|
+
readonly LAYOUT: "LAYOUT";
|
|
66
|
+
readonly NOTES: "NOTES";
|
|
67
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
68
|
+
readonly SLIDE: "SLIDE";
|
|
69
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
70
|
+
readonly CHART: "CHART";
|
|
71
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
72
|
+
}>;
|
|
73
|
+
}, z.core.$strip>>;
|
|
74
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
75
|
+
state: z.ZodOptional<z.ZodString>;
|
|
76
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
77
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
78
|
+
localizationType: z.ZodEnum<{
|
|
79
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
80
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
81
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
82
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
83
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
84
|
+
}>;
|
|
85
|
+
keyPath: z.ZodString;
|
|
86
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
87
|
+
readonly MAC: "MAC";
|
|
88
|
+
readonly IPHONE: "IPHONE";
|
|
89
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
90
|
+
readonly IPAD: "IPAD";
|
|
91
|
+
readonly OTHER: "OTHER";
|
|
92
|
+
}>>;
|
|
93
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
94
|
+
readonly ZERO: "ZERO";
|
|
95
|
+
readonly ONE: "ONE";
|
|
96
|
+
readonly TWO: "TWO";
|
|
97
|
+
readonly FEW: "FEW";
|
|
98
|
+
readonly MANY: "MANY";
|
|
99
|
+
readonly OTHER: "OTHER";
|
|
100
|
+
}>>;
|
|
101
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
102
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
103
|
+
isPlural: z.ZodBoolean;
|
|
104
|
+
}, z.core.$strip>>;
|
|
105
|
+
}, z.core.$strip>>;
|
|
106
|
+
}, z.core.$strip>>>;
|
|
59
107
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
60
108
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
61
109
|
slideNumber: z.ZodNumber;
|
|
@@ -378,7 +426,6 @@ export declare const PARSE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
378
426
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
379
427
|
id: z.ZodString;
|
|
380
428
|
name: z.ZodOptional<z.ZodString>;
|
|
381
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
382
429
|
isTranslatable: z.ZodBoolean;
|
|
383
430
|
source: z.ZodObject<{
|
|
384
431
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -395,6 +442,55 @@ export declare const PARSE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
395
442
|
hasBeenSegmented: z.ZodBoolean;
|
|
396
443
|
segments: z.ZodArray<z.ZodString>;
|
|
397
444
|
}, z.core.$strip>;
|
|
445
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
446
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
447
|
+
segments: z.ZodArray<z.ZodString>;
|
|
448
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
449
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
450
|
+
slideNumber: z.ZodNumber;
|
|
451
|
+
slideType: z.ZodEnum<{
|
|
452
|
+
readonly LAYOUT: "LAYOUT";
|
|
453
|
+
readonly NOTES: "NOTES";
|
|
454
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
455
|
+
readonly SLIDE: "SLIDE";
|
|
456
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
457
|
+
readonly CHART: "CHART";
|
|
458
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
459
|
+
}>;
|
|
460
|
+
}, z.core.$strip>>;
|
|
461
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
462
|
+
state: z.ZodOptional<z.ZodString>;
|
|
463
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
464
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
465
|
+
localizationType: z.ZodEnum<{
|
|
466
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
467
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
468
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
469
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
470
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
471
|
+
}>;
|
|
472
|
+
keyPath: z.ZodString;
|
|
473
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
474
|
+
readonly MAC: "MAC";
|
|
475
|
+
readonly IPHONE: "IPHONE";
|
|
476
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
477
|
+
readonly IPAD: "IPAD";
|
|
478
|
+
readonly OTHER: "OTHER";
|
|
479
|
+
}>>;
|
|
480
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
481
|
+
readonly ZERO: "ZERO";
|
|
482
|
+
readonly ONE: "ONE";
|
|
483
|
+
readonly TWO: "TWO";
|
|
484
|
+
readonly FEW: "FEW";
|
|
485
|
+
readonly MANY: "MANY";
|
|
486
|
+
readonly OTHER: "OTHER";
|
|
487
|
+
}>>;
|
|
488
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
489
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
490
|
+
isPlural: z.ZodBoolean;
|
|
491
|
+
}, z.core.$strip>>;
|
|
492
|
+
}, z.core.$strip>>;
|
|
493
|
+
}, z.core.$strip>>>;
|
|
398
494
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
399
495
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
400
496
|
slideNumber: z.ZodNumber;
|
|
@@ -451,7 +547,10 @@ export declare const PARSE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
451
547
|
}, z.core.$strip>]>;
|
|
452
548
|
sourceWordCount: z.ZodNumber;
|
|
453
549
|
textUnitCount: z.ZodNumber;
|
|
454
|
-
|
|
550
|
+
localeInfo: z.ZodOptional<z.ZodObject<{
|
|
551
|
+
sourceLocale: z.ZodString;
|
|
552
|
+
targetLocales: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
553
|
+
}, z.core.$strip>>;
|
|
455
554
|
position: z.ZodNumber;
|
|
456
555
|
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
457
556
|
type: z.ZodLiteral<"inline">;
|
|
@@ -526,7 +625,6 @@ export declare const PARSE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
526
625
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
527
626
|
id: z.ZodString;
|
|
528
627
|
name: z.ZodOptional<z.ZodString>;
|
|
529
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
530
628
|
isTranslatable: z.ZodBoolean;
|
|
531
629
|
source: z.ZodObject<{
|
|
532
630
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -543,6 +641,55 @@ export declare const PARSE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
543
641
|
hasBeenSegmented: z.ZodBoolean;
|
|
544
642
|
segments: z.ZodArray<z.ZodString>;
|
|
545
643
|
}, z.core.$strip>;
|
|
644
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
645
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
646
|
+
segments: z.ZodArray<z.ZodString>;
|
|
647
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
648
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
649
|
+
slideNumber: z.ZodNumber;
|
|
650
|
+
slideType: z.ZodEnum<{
|
|
651
|
+
readonly LAYOUT: "LAYOUT";
|
|
652
|
+
readonly NOTES: "NOTES";
|
|
653
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
654
|
+
readonly SLIDE: "SLIDE";
|
|
655
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
656
|
+
readonly CHART: "CHART";
|
|
657
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
658
|
+
}>;
|
|
659
|
+
}, z.core.$strip>>;
|
|
660
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
661
|
+
state: z.ZodOptional<z.ZodString>;
|
|
662
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
663
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
664
|
+
localizationType: z.ZodEnum<{
|
|
665
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
666
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
667
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
668
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
669
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
670
|
+
}>;
|
|
671
|
+
keyPath: z.ZodString;
|
|
672
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
673
|
+
readonly MAC: "MAC";
|
|
674
|
+
readonly IPHONE: "IPHONE";
|
|
675
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
676
|
+
readonly IPAD: "IPAD";
|
|
677
|
+
readonly OTHER: "OTHER";
|
|
678
|
+
}>>;
|
|
679
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
680
|
+
readonly ZERO: "ZERO";
|
|
681
|
+
readonly ONE: "ONE";
|
|
682
|
+
readonly TWO: "TWO";
|
|
683
|
+
readonly FEW: "FEW";
|
|
684
|
+
readonly MANY: "MANY";
|
|
685
|
+
readonly OTHER: "OTHER";
|
|
686
|
+
}>>;
|
|
687
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
688
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
689
|
+
isPlural: z.ZodBoolean;
|
|
690
|
+
}, z.core.$strip>>;
|
|
691
|
+
}, z.core.$strip>>;
|
|
692
|
+
}, z.core.$strip>>>;
|
|
546
693
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
547
694
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
548
695
|
slideNumber: z.ZodNumber;
|
|
@@ -599,7 +746,10 @@ export declare const PARSE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
599
746
|
}, z.core.$strip>]>;
|
|
600
747
|
sourceWordCount: z.ZodNumber;
|
|
601
748
|
textUnitCount: z.ZodNumber;
|
|
602
|
-
|
|
749
|
+
localeInfo: z.ZodOptional<z.ZodObject<{
|
|
750
|
+
sourceLocale: z.ZodString;
|
|
751
|
+
targetLocales: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
752
|
+
}, z.core.$strip>>;
|
|
603
753
|
position: z.ZodNumber;
|
|
604
754
|
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
605
755
|
type: z.ZodLiteral<"inline">;
|
|
@@ -663,7 +813,6 @@ export declare const GENERATE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
663
813
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
664
814
|
id: z.ZodString;
|
|
665
815
|
name: z.ZodOptional<z.ZodString>;
|
|
666
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
667
816
|
isTranslatable: z.ZodBoolean;
|
|
668
817
|
source: z.ZodObject<{
|
|
669
818
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -680,6 +829,55 @@ export declare const GENERATE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
680
829
|
hasBeenSegmented: z.ZodBoolean;
|
|
681
830
|
segments: z.ZodArray<z.ZodString>;
|
|
682
831
|
}, z.core.$strip>;
|
|
832
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
833
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
834
|
+
segments: z.ZodArray<z.ZodString>;
|
|
835
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
836
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
837
|
+
slideNumber: z.ZodNumber;
|
|
838
|
+
slideType: z.ZodEnum<{
|
|
839
|
+
readonly LAYOUT: "LAYOUT";
|
|
840
|
+
readonly NOTES: "NOTES";
|
|
841
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
842
|
+
readonly SLIDE: "SLIDE";
|
|
843
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
844
|
+
readonly CHART: "CHART";
|
|
845
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
846
|
+
}>;
|
|
847
|
+
}, z.core.$strip>>;
|
|
848
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
849
|
+
state: z.ZodOptional<z.ZodString>;
|
|
850
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
851
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
852
|
+
localizationType: z.ZodEnum<{
|
|
853
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
854
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
855
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
856
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
857
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
858
|
+
}>;
|
|
859
|
+
keyPath: z.ZodString;
|
|
860
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
861
|
+
readonly MAC: "MAC";
|
|
862
|
+
readonly IPHONE: "IPHONE";
|
|
863
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
864
|
+
readonly IPAD: "IPAD";
|
|
865
|
+
readonly OTHER: "OTHER";
|
|
866
|
+
}>>;
|
|
867
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
868
|
+
readonly ZERO: "ZERO";
|
|
869
|
+
readonly ONE: "ONE";
|
|
870
|
+
readonly TWO: "TWO";
|
|
871
|
+
readonly FEW: "FEW";
|
|
872
|
+
readonly MANY: "MANY";
|
|
873
|
+
readonly OTHER: "OTHER";
|
|
874
|
+
}>>;
|
|
875
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
876
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
877
|
+
isPlural: z.ZodBoolean;
|
|
878
|
+
}, z.core.$strip>>;
|
|
879
|
+
}, z.core.$strip>>;
|
|
880
|
+
}, z.core.$strip>>>;
|
|
683
881
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
684
882
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
685
883
|
slideNumber: z.ZodNumber;
|
|
@@ -801,7 +999,6 @@ export declare const GENERATE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
801
999
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
802
1000
|
id: z.ZodString;
|
|
803
1001
|
name: z.ZodOptional<z.ZodString>;
|
|
804
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
805
1002
|
isTranslatable: z.ZodBoolean;
|
|
806
1003
|
source: z.ZodObject<{
|
|
807
1004
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -818,6 +1015,55 @@ export declare const GENERATE_CONTENT_COMMAND_RESULT_SCHEMA: z.ZodObject<{
|
|
|
818
1015
|
hasBeenSegmented: z.ZodBoolean;
|
|
819
1016
|
segments: z.ZodArray<z.ZodString>;
|
|
820
1017
|
}, z.core.$strip>;
|
|
1018
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1019
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
1020
|
+
segments: z.ZodArray<z.ZodString>;
|
|
1021
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1022
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
1023
|
+
slideNumber: z.ZodNumber;
|
|
1024
|
+
slideType: z.ZodEnum<{
|
|
1025
|
+
readonly LAYOUT: "LAYOUT";
|
|
1026
|
+
readonly NOTES: "NOTES";
|
|
1027
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
1028
|
+
readonly SLIDE: "SLIDE";
|
|
1029
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
1030
|
+
readonly CHART: "CHART";
|
|
1031
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
1032
|
+
}>;
|
|
1033
|
+
}, z.core.$strip>>;
|
|
1034
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
1035
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1036
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
1037
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
1038
|
+
localizationType: z.ZodEnum<{
|
|
1039
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
1040
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
1041
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
1042
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
1043
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
1044
|
+
}>;
|
|
1045
|
+
keyPath: z.ZodString;
|
|
1046
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
1047
|
+
readonly MAC: "MAC";
|
|
1048
|
+
readonly IPHONE: "IPHONE";
|
|
1049
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
1050
|
+
readonly IPAD: "IPAD";
|
|
1051
|
+
readonly OTHER: "OTHER";
|
|
1052
|
+
}>>;
|
|
1053
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
1054
|
+
readonly ZERO: "ZERO";
|
|
1055
|
+
readonly ONE: "ONE";
|
|
1056
|
+
readonly TWO: "TWO";
|
|
1057
|
+
readonly FEW: "FEW";
|
|
1058
|
+
readonly MANY: "MANY";
|
|
1059
|
+
readonly OTHER: "OTHER";
|
|
1060
|
+
}>>;
|
|
1061
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
1062
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
1063
|
+
isPlural: z.ZodBoolean;
|
|
1064
|
+
}, z.core.$strip>>;
|
|
1065
|
+
}, z.core.$strip>>;
|
|
1066
|
+
}, z.core.$strip>>>;
|
|
821
1067
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
822
1068
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
823
1069
|
slideNumber: z.ZodNumber;
|
|
@@ -1236,7 +1482,6 @@ export declare const ConversionCommands: {
|
|
|
1236
1482
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
1237
1483
|
id: z.ZodString;
|
|
1238
1484
|
name: z.ZodOptional<z.ZodString>;
|
|
1239
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
1240
1485
|
isTranslatable: z.ZodBoolean;
|
|
1241
1486
|
source: z.ZodObject<{
|
|
1242
1487
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -1253,6 +1498,55 @@ export declare const ConversionCommands: {
|
|
|
1253
1498
|
hasBeenSegmented: z.ZodBoolean;
|
|
1254
1499
|
segments: z.ZodArray<z.ZodString>;
|
|
1255
1500
|
}, z.core.$strip>;
|
|
1501
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1502
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
1503
|
+
segments: z.ZodArray<z.ZodString>;
|
|
1504
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1505
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
1506
|
+
slideNumber: z.ZodNumber;
|
|
1507
|
+
slideType: z.ZodEnum<{
|
|
1508
|
+
readonly LAYOUT: "LAYOUT";
|
|
1509
|
+
readonly NOTES: "NOTES";
|
|
1510
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
1511
|
+
readonly SLIDE: "SLIDE";
|
|
1512
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
1513
|
+
readonly CHART: "CHART";
|
|
1514
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
1515
|
+
}>;
|
|
1516
|
+
}, z.core.$strip>>;
|
|
1517
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
1518
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1519
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
1520
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
1521
|
+
localizationType: z.ZodEnum<{
|
|
1522
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
1523
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
1524
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
1525
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
1526
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
1527
|
+
}>;
|
|
1528
|
+
keyPath: z.ZodString;
|
|
1529
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
1530
|
+
readonly MAC: "MAC";
|
|
1531
|
+
readonly IPHONE: "IPHONE";
|
|
1532
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
1533
|
+
readonly IPAD: "IPAD";
|
|
1534
|
+
readonly OTHER: "OTHER";
|
|
1535
|
+
}>>;
|
|
1536
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
1537
|
+
readonly ZERO: "ZERO";
|
|
1538
|
+
readonly ONE: "ONE";
|
|
1539
|
+
readonly TWO: "TWO";
|
|
1540
|
+
readonly FEW: "FEW";
|
|
1541
|
+
readonly MANY: "MANY";
|
|
1542
|
+
readonly OTHER: "OTHER";
|
|
1543
|
+
}>>;
|
|
1544
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
1545
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
1546
|
+
isPlural: z.ZodBoolean;
|
|
1547
|
+
}, z.core.$strip>>;
|
|
1548
|
+
}, z.core.$strip>>;
|
|
1549
|
+
}, z.core.$strip>>>;
|
|
1256
1550
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
1257
1551
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
1258
1552
|
slideNumber: z.ZodNumber;
|
|
@@ -1357,7 +1651,6 @@ export declare const ConversionCommands: {
|
|
|
1357
1651
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
1358
1652
|
id: z.ZodString;
|
|
1359
1653
|
name: z.ZodOptional<z.ZodString>;
|
|
1360
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
1361
1654
|
isTranslatable: z.ZodBoolean;
|
|
1362
1655
|
source: z.ZodObject<{
|
|
1363
1656
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -1374,6 +1667,55 @@ export declare const ConversionCommands: {
|
|
|
1374
1667
|
hasBeenSegmented: z.ZodBoolean;
|
|
1375
1668
|
segments: z.ZodArray<z.ZodString>;
|
|
1376
1669
|
}, z.core.$strip>;
|
|
1670
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1671
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
1672
|
+
segments: z.ZodArray<z.ZodString>;
|
|
1673
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1674
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
1675
|
+
slideNumber: z.ZodNumber;
|
|
1676
|
+
slideType: z.ZodEnum<{
|
|
1677
|
+
readonly LAYOUT: "LAYOUT";
|
|
1678
|
+
readonly NOTES: "NOTES";
|
|
1679
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
1680
|
+
readonly SLIDE: "SLIDE";
|
|
1681
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
1682
|
+
readonly CHART: "CHART";
|
|
1683
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
1684
|
+
}>;
|
|
1685
|
+
}, z.core.$strip>>;
|
|
1686
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
1687
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1688
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
1689
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
1690
|
+
localizationType: z.ZodEnum<{
|
|
1691
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
1692
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
1693
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
1694
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
1695
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
1696
|
+
}>;
|
|
1697
|
+
keyPath: z.ZodString;
|
|
1698
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
1699
|
+
readonly MAC: "MAC";
|
|
1700
|
+
readonly IPHONE: "IPHONE";
|
|
1701
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
1702
|
+
readonly IPAD: "IPAD";
|
|
1703
|
+
readonly OTHER: "OTHER";
|
|
1704
|
+
}>>;
|
|
1705
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
1706
|
+
readonly ZERO: "ZERO";
|
|
1707
|
+
readonly ONE: "ONE";
|
|
1708
|
+
readonly TWO: "TWO";
|
|
1709
|
+
readonly FEW: "FEW";
|
|
1710
|
+
readonly MANY: "MANY";
|
|
1711
|
+
readonly OTHER: "OTHER";
|
|
1712
|
+
}>>;
|
|
1713
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
1714
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
1715
|
+
isPlural: z.ZodBoolean;
|
|
1716
|
+
}, z.core.$strip>>;
|
|
1717
|
+
}, z.core.$strip>>;
|
|
1718
|
+
}, z.core.$strip>>>;
|
|
1377
1719
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
1378
1720
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
1379
1721
|
slideNumber: z.ZodNumber;
|
|
@@ -1530,7 +1872,6 @@ export declare const ConversionCommandResults: {
|
|
|
1530
1872
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
1531
1873
|
id: z.ZodString;
|
|
1532
1874
|
name: z.ZodOptional<z.ZodString>;
|
|
1533
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
1534
1875
|
isTranslatable: z.ZodBoolean;
|
|
1535
1876
|
source: z.ZodObject<{
|
|
1536
1877
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -1547,6 +1888,55 @@ export declare const ConversionCommandResults: {
|
|
|
1547
1888
|
hasBeenSegmented: z.ZodBoolean;
|
|
1548
1889
|
segments: z.ZodArray<z.ZodString>;
|
|
1549
1890
|
}, z.core.$strip>;
|
|
1891
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1892
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
1893
|
+
segments: z.ZodArray<z.ZodString>;
|
|
1894
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1895
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
1896
|
+
slideNumber: z.ZodNumber;
|
|
1897
|
+
slideType: z.ZodEnum<{
|
|
1898
|
+
readonly LAYOUT: "LAYOUT";
|
|
1899
|
+
readonly NOTES: "NOTES";
|
|
1900
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
1901
|
+
readonly SLIDE: "SLIDE";
|
|
1902
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
1903
|
+
readonly CHART: "CHART";
|
|
1904
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
1905
|
+
}>;
|
|
1906
|
+
}, z.core.$strip>>;
|
|
1907
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
1908
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1909
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
1910
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
1911
|
+
localizationType: z.ZodEnum<{
|
|
1912
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
1913
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
1914
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
1915
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
1916
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
1917
|
+
}>;
|
|
1918
|
+
keyPath: z.ZodString;
|
|
1919
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
1920
|
+
readonly MAC: "MAC";
|
|
1921
|
+
readonly IPHONE: "IPHONE";
|
|
1922
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
1923
|
+
readonly IPAD: "IPAD";
|
|
1924
|
+
readonly OTHER: "OTHER";
|
|
1925
|
+
}>>;
|
|
1926
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
1927
|
+
readonly ZERO: "ZERO";
|
|
1928
|
+
readonly ONE: "ONE";
|
|
1929
|
+
readonly TWO: "TWO";
|
|
1930
|
+
readonly FEW: "FEW";
|
|
1931
|
+
readonly MANY: "MANY";
|
|
1932
|
+
readonly OTHER: "OTHER";
|
|
1933
|
+
}>>;
|
|
1934
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
1935
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
1936
|
+
isPlural: z.ZodBoolean;
|
|
1937
|
+
}, z.core.$strip>>;
|
|
1938
|
+
}, z.core.$strip>>;
|
|
1939
|
+
}, z.core.$strip>>>;
|
|
1550
1940
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
1551
1941
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
1552
1942
|
slideNumber: z.ZodNumber;
|
|
@@ -1603,7 +1993,10 @@ export declare const ConversionCommandResults: {
|
|
|
1603
1993
|
}, z.core.$strip>]>;
|
|
1604
1994
|
sourceWordCount: z.ZodNumber;
|
|
1605
1995
|
textUnitCount: z.ZodNumber;
|
|
1606
|
-
|
|
1996
|
+
localeInfo: z.ZodOptional<z.ZodObject<{
|
|
1997
|
+
sourceLocale: z.ZodString;
|
|
1998
|
+
targetLocales: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1999
|
+
}, z.core.$strip>>;
|
|
1607
2000
|
position: z.ZodNumber;
|
|
1608
2001
|
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1609
2002
|
type: z.ZodLiteral<"inline">;
|
|
@@ -1678,7 +2071,6 @@ export declare const ConversionCommandResults: {
|
|
|
1678
2071
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
1679
2072
|
id: z.ZodString;
|
|
1680
2073
|
name: z.ZodOptional<z.ZodString>;
|
|
1681
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
1682
2074
|
isTranslatable: z.ZodBoolean;
|
|
1683
2075
|
source: z.ZodObject<{
|
|
1684
2076
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -1695,6 +2087,55 @@ export declare const ConversionCommandResults: {
|
|
|
1695
2087
|
hasBeenSegmented: z.ZodBoolean;
|
|
1696
2088
|
segments: z.ZodArray<z.ZodString>;
|
|
1697
2089
|
}, z.core.$strip>;
|
|
2090
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2091
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
2092
|
+
segments: z.ZodArray<z.ZodString>;
|
|
2093
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2094
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2095
|
+
slideNumber: z.ZodNumber;
|
|
2096
|
+
slideType: z.ZodEnum<{
|
|
2097
|
+
readonly LAYOUT: "LAYOUT";
|
|
2098
|
+
readonly NOTES: "NOTES";
|
|
2099
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
2100
|
+
readonly SLIDE: "SLIDE";
|
|
2101
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
2102
|
+
readonly CHART: "CHART";
|
|
2103
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
2104
|
+
}>;
|
|
2105
|
+
}, z.core.$strip>>;
|
|
2106
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
2107
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2108
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
2109
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
2110
|
+
localizationType: z.ZodEnum<{
|
|
2111
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
2112
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
2113
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
2114
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
2115
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
2116
|
+
}>;
|
|
2117
|
+
keyPath: z.ZodString;
|
|
2118
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
2119
|
+
readonly MAC: "MAC";
|
|
2120
|
+
readonly IPHONE: "IPHONE";
|
|
2121
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
2122
|
+
readonly IPAD: "IPAD";
|
|
2123
|
+
readonly OTHER: "OTHER";
|
|
2124
|
+
}>>;
|
|
2125
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
2126
|
+
readonly ZERO: "ZERO";
|
|
2127
|
+
readonly ONE: "ONE";
|
|
2128
|
+
readonly TWO: "TWO";
|
|
2129
|
+
readonly FEW: "FEW";
|
|
2130
|
+
readonly MANY: "MANY";
|
|
2131
|
+
readonly OTHER: "OTHER";
|
|
2132
|
+
}>>;
|
|
2133
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
2134
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
2135
|
+
isPlural: z.ZodBoolean;
|
|
2136
|
+
}, z.core.$strip>>;
|
|
2137
|
+
}, z.core.$strip>>;
|
|
2138
|
+
}, z.core.$strip>>>;
|
|
1698
2139
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
1699
2140
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
1700
2141
|
slideNumber: z.ZodNumber;
|
|
@@ -1751,7 +2192,10 @@ export declare const ConversionCommandResults: {
|
|
|
1751
2192
|
}, z.core.$strip>]>;
|
|
1752
2193
|
sourceWordCount: z.ZodNumber;
|
|
1753
2194
|
textUnitCount: z.ZodNumber;
|
|
1754
|
-
|
|
2195
|
+
localeInfo: z.ZodOptional<z.ZodObject<{
|
|
2196
|
+
sourceLocale: z.ZodString;
|
|
2197
|
+
targetLocales: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2198
|
+
}, z.core.$strip>>;
|
|
1755
2199
|
position: z.ZodNumber;
|
|
1756
2200
|
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1757
2201
|
type: z.ZodLiteral<"inline">;
|
|
@@ -1855,7 +2299,6 @@ export declare const ConversionCommandResults: {
|
|
|
1855
2299
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
1856
2300
|
id: z.ZodString;
|
|
1857
2301
|
name: z.ZodOptional<z.ZodString>;
|
|
1858
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
1859
2302
|
isTranslatable: z.ZodBoolean;
|
|
1860
2303
|
source: z.ZodObject<{
|
|
1861
2304
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -1872,6 +2315,55 @@ export declare const ConversionCommandResults: {
|
|
|
1872
2315
|
hasBeenSegmented: z.ZodBoolean;
|
|
1873
2316
|
segments: z.ZodArray<z.ZodString>;
|
|
1874
2317
|
}, z.core.$strip>;
|
|
2318
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2319
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
2320
|
+
segments: z.ZodArray<z.ZodString>;
|
|
2321
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2322
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2323
|
+
slideNumber: z.ZodNumber;
|
|
2324
|
+
slideType: z.ZodEnum<{
|
|
2325
|
+
readonly LAYOUT: "LAYOUT";
|
|
2326
|
+
readonly NOTES: "NOTES";
|
|
2327
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
2328
|
+
readonly SLIDE: "SLIDE";
|
|
2329
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
2330
|
+
readonly CHART: "CHART";
|
|
2331
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
2332
|
+
}>;
|
|
2333
|
+
}, z.core.$strip>>;
|
|
2334
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
2335
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2336
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
2337
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
2338
|
+
localizationType: z.ZodEnum<{
|
|
2339
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
2340
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
2341
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
2342
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
2343
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
2344
|
+
}>;
|
|
2345
|
+
keyPath: z.ZodString;
|
|
2346
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
2347
|
+
readonly MAC: "MAC";
|
|
2348
|
+
readonly IPHONE: "IPHONE";
|
|
2349
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
2350
|
+
readonly IPAD: "IPAD";
|
|
2351
|
+
readonly OTHER: "OTHER";
|
|
2352
|
+
}>>;
|
|
2353
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
2354
|
+
readonly ZERO: "ZERO";
|
|
2355
|
+
readonly ONE: "ONE";
|
|
2356
|
+
readonly TWO: "TWO";
|
|
2357
|
+
readonly FEW: "FEW";
|
|
2358
|
+
readonly MANY: "MANY";
|
|
2359
|
+
readonly OTHER: "OTHER";
|
|
2360
|
+
}>>;
|
|
2361
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
2362
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
2363
|
+
isPlural: z.ZodBoolean;
|
|
2364
|
+
}, z.core.$strip>>;
|
|
2365
|
+
}, z.core.$strip>>;
|
|
2366
|
+
}, z.core.$strip>>>;
|
|
1875
2367
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
1876
2368
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
1877
2369
|
slideNumber: z.ZodNumber;
|
|
@@ -1928,7 +2420,10 @@ export declare const ConversionCommandResults: {
|
|
|
1928
2420
|
}, z.core.$strip>]>;
|
|
1929
2421
|
sourceWordCount: z.ZodNumber;
|
|
1930
2422
|
textUnitCount: z.ZodNumber;
|
|
1931
|
-
|
|
2423
|
+
localeInfo: z.ZodOptional<z.ZodObject<{
|
|
2424
|
+
sourceLocale: z.ZodString;
|
|
2425
|
+
targetLocales: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2426
|
+
}, z.core.$strip>>;
|
|
1932
2427
|
position: z.ZodNumber;
|
|
1933
2428
|
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
1934
2429
|
type: z.ZodLiteral<"inline">;
|
|
@@ -2003,7 +2498,6 @@ export declare const ConversionCommandResults: {
|
|
|
2003
2498
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
2004
2499
|
id: z.ZodString;
|
|
2005
2500
|
name: z.ZodOptional<z.ZodString>;
|
|
2006
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
2007
2501
|
isTranslatable: z.ZodBoolean;
|
|
2008
2502
|
source: z.ZodObject<{
|
|
2009
2503
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -2020,6 +2514,55 @@ export declare const ConversionCommandResults: {
|
|
|
2020
2514
|
hasBeenSegmented: z.ZodBoolean;
|
|
2021
2515
|
segments: z.ZodArray<z.ZodString>;
|
|
2022
2516
|
}, z.core.$strip>;
|
|
2517
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2518
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
2519
|
+
segments: z.ZodArray<z.ZodString>;
|
|
2520
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2521
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2522
|
+
slideNumber: z.ZodNumber;
|
|
2523
|
+
slideType: z.ZodEnum<{
|
|
2524
|
+
readonly LAYOUT: "LAYOUT";
|
|
2525
|
+
readonly NOTES: "NOTES";
|
|
2526
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
2527
|
+
readonly SLIDE: "SLIDE";
|
|
2528
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
2529
|
+
readonly CHART: "CHART";
|
|
2530
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
2531
|
+
}>;
|
|
2532
|
+
}, z.core.$strip>>;
|
|
2533
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
2534
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2535
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
2536
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
2537
|
+
localizationType: z.ZodEnum<{
|
|
2538
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
2539
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
2540
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
2541
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
2542
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
2543
|
+
}>;
|
|
2544
|
+
keyPath: z.ZodString;
|
|
2545
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
2546
|
+
readonly MAC: "MAC";
|
|
2547
|
+
readonly IPHONE: "IPHONE";
|
|
2548
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
2549
|
+
readonly IPAD: "IPAD";
|
|
2550
|
+
readonly OTHER: "OTHER";
|
|
2551
|
+
}>>;
|
|
2552
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
2553
|
+
readonly ZERO: "ZERO";
|
|
2554
|
+
readonly ONE: "ONE";
|
|
2555
|
+
readonly TWO: "TWO";
|
|
2556
|
+
readonly FEW: "FEW";
|
|
2557
|
+
readonly MANY: "MANY";
|
|
2558
|
+
readonly OTHER: "OTHER";
|
|
2559
|
+
}>>;
|
|
2560
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
2561
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
2562
|
+
isPlural: z.ZodBoolean;
|
|
2563
|
+
}, z.core.$strip>>;
|
|
2564
|
+
}, z.core.$strip>>;
|
|
2565
|
+
}, z.core.$strip>>>;
|
|
2023
2566
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2024
2567
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2025
2568
|
slideNumber: z.ZodNumber;
|
|
@@ -2076,7 +2619,10 @@ export declare const ConversionCommandResults: {
|
|
|
2076
2619
|
}, z.core.$strip>]>;
|
|
2077
2620
|
sourceWordCount: z.ZodNumber;
|
|
2078
2621
|
textUnitCount: z.ZodNumber;
|
|
2079
|
-
|
|
2622
|
+
localeInfo: z.ZodOptional<z.ZodObject<{
|
|
2623
|
+
sourceLocale: z.ZodString;
|
|
2624
|
+
targetLocales: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2625
|
+
}, z.core.$strip>>;
|
|
2080
2626
|
position: z.ZodNumber;
|
|
2081
2627
|
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2082
2628
|
type: z.ZodLiteral<"inline">;
|
|
@@ -2157,7 +2703,6 @@ export declare const ConversionCommandResults: {
|
|
|
2157
2703
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
2158
2704
|
id: z.ZodString;
|
|
2159
2705
|
name: z.ZodOptional<z.ZodString>;
|
|
2160
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
2161
2706
|
isTranslatable: z.ZodBoolean;
|
|
2162
2707
|
source: z.ZodObject<{
|
|
2163
2708
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -2174,6 +2719,55 @@ export declare const ConversionCommandResults: {
|
|
|
2174
2719
|
hasBeenSegmented: z.ZodBoolean;
|
|
2175
2720
|
segments: z.ZodArray<z.ZodString>;
|
|
2176
2721
|
}, z.core.$strip>;
|
|
2722
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2723
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
2724
|
+
segments: z.ZodArray<z.ZodString>;
|
|
2725
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2726
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2727
|
+
slideNumber: z.ZodNumber;
|
|
2728
|
+
slideType: z.ZodEnum<{
|
|
2729
|
+
readonly LAYOUT: "LAYOUT";
|
|
2730
|
+
readonly NOTES: "NOTES";
|
|
2731
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
2732
|
+
readonly SLIDE: "SLIDE";
|
|
2733
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
2734
|
+
readonly CHART: "CHART";
|
|
2735
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
2736
|
+
}>;
|
|
2737
|
+
}, z.core.$strip>>;
|
|
2738
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
2739
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2740
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
2741
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
2742
|
+
localizationType: z.ZodEnum<{
|
|
2743
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
2744
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
2745
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
2746
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
2747
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
2748
|
+
}>;
|
|
2749
|
+
keyPath: z.ZodString;
|
|
2750
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
2751
|
+
readonly MAC: "MAC";
|
|
2752
|
+
readonly IPHONE: "IPHONE";
|
|
2753
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
2754
|
+
readonly IPAD: "IPAD";
|
|
2755
|
+
readonly OTHER: "OTHER";
|
|
2756
|
+
}>>;
|
|
2757
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
2758
|
+
readonly ZERO: "ZERO";
|
|
2759
|
+
readonly ONE: "ONE";
|
|
2760
|
+
readonly TWO: "TWO";
|
|
2761
|
+
readonly FEW: "FEW";
|
|
2762
|
+
readonly MANY: "MANY";
|
|
2763
|
+
readonly OTHER: "OTHER";
|
|
2764
|
+
}>>;
|
|
2765
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
2766
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
2767
|
+
isPlural: z.ZodBoolean;
|
|
2768
|
+
}, z.core.$strip>>;
|
|
2769
|
+
}, z.core.$strip>>;
|
|
2770
|
+
}, z.core.$strip>>>;
|
|
2177
2771
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2178
2772
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2179
2773
|
slideNumber: z.ZodNumber;
|
|
@@ -2295,7 +2889,6 @@ export declare const ConversionCommandResults: {
|
|
|
2295
2889
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
2296
2890
|
id: z.ZodString;
|
|
2297
2891
|
name: z.ZodOptional<z.ZodString>;
|
|
2298
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
2299
2892
|
isTranslatable: z.ZodBoolean;
|
|
2300
2893
|
source: z.ZodObject<{
|
|
2301
2894
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -2312,6 +2905,55 @@ export declare const ConversionCommandResults: {
|
|
|
2312
2905
|
hasBeenSegmented: z.ZodBoolean;
|
|
2313
2906
|
segments: z.ZodArray<z.ZodString>;
|
|
2314
2907
|
}, z.core.$strip>;
|
|
2908
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2909
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
2910
|
+
segments: z.ZodArray<z.ZodString>;
|
|
2911
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2912
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2913
|
+
slideNumber: z.ZodNumber;
|
|
2914
|
+
slideType: z.ZodEnum<{
|
|
2915
|
+
readonly LAYOUT: "LAYOUT";
|
|
2916
|
+
readonly NOTES: "NOTES";
|
|
2917
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
2918
|
+
readonly SLIDE: "SLIDE";
|
|
2919
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
2920
|
+
readonly CHART: "CHART";
|
|
2921
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
2922
|
+
}>;
|
|
2923
|
+
}, z.core.$strip>>;
|
|
2924
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
2925
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2926
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
2927
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
2928
|
+
localizationType: z.ZodEnum<{
|
|
2929
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
2930
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
2931
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
2932
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
2933
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
2934
|
+
}>;
|
|
2935
|
+
keyPath: z.ZodString;
|
|
2936
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
2937
|
+
readonly MAC: "MAC";
|
|
2938
|
+
readonly IPHONE: "IPHONE";
|
|
2939
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
2940
|
+
readonly IPAD: "IPAD";
|
|
2941
|
+
readonly OTHER: "OTHER";
|
|
2942
|
+
}>>;
|
|
2943
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
2944
|
+
readonly ZERO: "ZERO";
|
|
2945
|
+
readonly ONE: "ONE";
|
|
2946
|
+
readonly TWO: "TWO";
|
|
2947
|
+
readonly FEW: "FEW";
|
|
2948
|
+
readonly MANY: "MANY";
|
|
2949
|
+
readonly OTHER: "OTHER";
|
|
2950
|
+
}>>;
|
|
2951
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
2952
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
2953
|
+
isPlural: z.ZodBoolean;
|
|
2954
|
+
}, z.core.$strip>>;
|
|
2955
|
+
}, z.core.$strip>>;
|
|
2956
|
+
}, z.core.$strip>>>;
|
|
2315
2957
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2316
2958
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2317
2959
|
slideNumber: z.ZodNumber;
|
|
@@ -2461,7 +3103,6 @@ export declare const ConversionCommandResults: {
|
|
|
2461
3103
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
2462
3104
|
id: z.ZodString;
|
|
2463
3105
|
name: z.ZodOptional<z.ZodString>;
|
|
2464
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
2465
3106
|
isTranslatable: z.ZodBoolean;
|
|
2466
3107
|
source: z.ZodObject<{
|
|
2467
3108
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -2478,6 +3119,55 @@ export declare const ConversionCommandResults: {
|
|
|
2478
3119
|
hasBeenSegmented: z.ZodBoolean;
|
|
2479
3120
|
segments: z.ZodArray<z.ZodString>;
|
|
2480
3121
|
}, z.core.$strip>;
|
|
3122
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3123
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
3124
|
+
segments: z.ZodArray<z.ZodString>;
|
|
3125
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
3126
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
3127
|
+
slideNumber: z.ZodNumber;
|
|
3128
|
+
slideType: z.ZodEnum<{
|
|
3129
|
+
readonly LAYOUT: "LAYOUT";
|
|
3130
|
+
readonly NOTES: "NOTES";
|
|
3131
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
3132
|
+
readonly SLIDE: "SLIDE";
|
|
3133
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
3134
|
+
readonly CHART: "CHART";
|
|
3135
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
3136
|
+
}>;
|
|
3137
|
+
}, z.core.$strip>>;
|
|
3138
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
3139
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3140
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
3141
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
3142
|
+
localizationType: z.ZodEnum<{
|
|
3143
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
3144
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
3145
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
3146
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
3147
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
3148
|
+
}>;
|
|
3149
|
+
keyPath: z.ZodString;
|
|
3150
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
3151
|
+
readonly MAC: "MAC";
|
|
3152
|
+
readonly IPHONE: "IPHONE";
|
|
3153
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
3154
|
+
readonly IPAD: "IPAD";
|
|
3155
|
+
readonly OTHER: "OTHER";
|
|
3156
|
+
}>>;
|
|
3157
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
3158
|
+
readonly ZERO: "ZERO";
|
|
3159
|
+
readonly ONE: "ONE";
|
|
3160
|
+
readonly TWO: "TWO";
|
|
3161
|
+
readonly FEW: "FEW";
|
|
3162
|
+
readonly MANY: "MANY";
|
|
3163
|
+
readonly OTHER: "OTHER";
|
|
3164
|
+
}>>;
|
|
3165
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
3166
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
3167
|
+
isPlural: z.ZodBoolean;
|
|
3168
|
+
}, z.core.$strip>>;
|
|
3169
|
+
}, z.core.$strip>>;
|
|
3170
|
+
}, z.core.$strip>>>;
|
|
2481
3171
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2482
3172
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2483
3173
|
slideNumber: z.ZodNumber;
|
|
@@ -2599,7 +3289,6 @@ export declare const ConversionCommandResults: {
|
|
|
2599
3289
|
textUnits: z.ZodArray<z.ZodObject<{
|
|
2600
3290
|
id: z.ZodString;
|
|
2601
3291
|
name: z.ZodOptional<z.ZodString>;
|
|
2602
|
-
locale: z.ZodOptional<z.ZodString>;
|
|
2603
3292
|
isTranslatable: z.ZodBoolean;
|
|
2604
3293
|
source: z.ZodObject<{
|
|
2605
3294
|
textCodes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -2616,6 +3305,55 @@ export declare const ConversionCommandResults: {
|
|
|
2616
3305
|
hasBeenSegmented: z.ZodBoolean;
|
|
2617
3306
|
segments: z.ZodArray<z.ZodString>;
|
|
2618
3307
|
}, z.core.$strip>;
|
|
3308
|
+
targets: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3309
|
+
hasBeenSegmented: z.ZodBoolean;
|
|
3310
|
+
segments: z.ZodArray<z.ZodString>;
|
|
3311
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
3312
|
+
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
3313
|
+
slideNumber: z.ZodNumber;
|
|
3314
|
+
slideType: z.ZodEnum<{
|
|
3315
|
+
readonly LAYOUT: "LAYOUT";
|
|
3316
|
+
readonly NOTES: "NOTES";
|
|
3317
|
+
readonly MASTER_NOTES: "MASTER_NOTES";
|
|
3318
|
+
readonly SLIDE: "SLIDE";
|
|
3319
|
+
readonly MASTER_SLIDE: "MASTER_SLIDE";
|
|
3320
|
+
readonly CHART: "CHART";
|
|
3321
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
3322
|
+
}>;
|
|
3323
|
+
}, z.core.$strip>>;
|
|
3324
|
+
xcstrings: z.ZodOptional<z.ZodObject<{
|
|
3325
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3326
|
+
shouldTranslate: z.ZodOptional<z.ZodBoolean>;
|
|
3327
|
+
extractionState: z.ZodOptional<z.ZodString>;
|
|
3328
|
+
localizationType: z.ZodEnum<{
|
|
3329
|
+
readonly STRING_UNIT: "STRING_UNIT";
|
|
3330
|
+
readonly SUBSTITUTIONS: "SUBSTITUTIONS";
|
|
3331
|
+
readonly PLURAL_VARIATION: "PLURAL_VARIATION";
|
|
3332
|
+
readonly DEVICE_VARIATION: "DEVICE_VARIATION";
|
|
3333
|
+
readonly DEVICE_PLURAL_VARIATION: "DEVICE_PLURAL_VARIATION";
|
|
3334
|
+
}>;
|
|
3335
|
+
keyPath: z.ZodString;
|
|
3336
|
+
device: z.ZodOptional<z.ZodEnum<{
|
|
3337
|
+
readonly MAC: "MAC";
|
|
3338
|
+
readonly IPHONE: "IPHONE";
|
|
3339
|
+
readonly APPLE_WATCH: "APPLE_WATCH";
|
|
3340
|
+
readonly IPAD: "IPAD";
|
|
3341
|
+
readonly OTHER: "OTHER";
|
|
3342
|
+
}>>;
|
|
3343
|
+
pluralForm: z.ZodOptional<z.ZodEnum<{
|
|
3344
|
+
readonly ZERO: "ZERO";
|
|
3345
|
+
readonly ONE: "ONE";
|
|
3346
|
+
readonly TWO: "TWO";
|
|
3347
|
+
readonly FEW: "FEW";
|
|
3348
|
+
readonly MANY: "MANY";
|
|
3349
|
+
readonly OTHER: "OTHER";
|
|
3350
|
+
}>>;
|
|
3351
|
+
formatSpecifier: z.ZodOptional<z.ZodString>;
|
|
3352
|
+
argNum: z.ZodOptional<z.ZodNumber>;
|
|
3353
|
+
isPlural: z.ZodBoolean;
|
|
3354
|
+
}, z.core.$strip>>;
|
|
3355
|
+
}, z.core.$strip>>;
|
|
3356
|
+
}, z.core.$strip>>>;
|
|
2619
3357
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2620
3358
|
pptxAttributes: z.ZodOptional<z.ZodObject<{
|
|
2621
3359
|
slideNumber: z.ZodNumber;
|