mulmocast 1.2.42 → 1.2.44
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/lib/actions/audio.d.ts +1 -0
- package/lib/actions/audio.js +16 -11
- package/lib/actions/image_references.js +3 -22
- package/lib/actions/images.js +3 -7
- package/lib/actions/movie.js +3 -2
- package/lib/actions/translate.js +2 -2
- package/lib/agents/add_bgm_agent.js +3 -3
- package/lib/agents/combine_audio_files_agent.js +5 -1
- package/lib/methods/mulmo_beat.js +1 -1
- package/lib/methods/mulmo_media_source.d.ts +6 -2
- package/lib/methods/mulmo_media_source.js +81 -6
- package/lib/types/schema.d.ts +29 -823
- package/lib/types/schema.js +6 -1
- package/lib/types/type.d.ts +3 -1
- package/lib/utils/context.d.ts +0 -48
- package/lib/utils/context.js +4 -5
- package/lib/utils/error_cause.d.ts +69 -0
- package/lib/utils/error_cause.js +97 -0
- package/lib/utils/ffmpeg_utils.js +2 -1
- package/lib/utils/file.js +1 -1
- package/lib/utils/filters.js +2 -2
- package/lib/utils/image_plugins/source.d.ts +2 -4
- package/lib/utils/image_plugins/source.js +5 -34
- package/lib/utils/utils.d.ts +0 -1
- package/lib/utils/utils.js +0 -14
- package/package.json +9 -9
package/lib/types/schema.d.ts
CHANGED
|
@@ -207,6 +207,34 @@ export declare const mediaSourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
207
207
|
}, {
|
|
208
208
|
kind: "base64";
|
|
209
209
|
data: string;
|
|
210
|
+
}>, z.ZodObject<{
|
|
211
|
+
kind: z.ZodLiteral<"path">;
|
|
212
|
+
path: z.ZodString;
|
|
213
|
+
}, "strict", z.ZodTypeAny, {
|
|
214
|
+
path: string;
|
|
215
|
+
kind: "path";
|
|
216
|
+
}, {
|
|
217
|
+
path: string;
|
|
218
|
+
kind: "path";
|
|
219
|
+
}>]>;
|
|
220
|
+
export declare const mediaSourceMermaidSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
221
|
+
kind: z.ZodLiteral<"url">;
|
|
222
|
+
url: z.ZodString;
|
|
223
|
+
}, "strict", z.ZodTypeAny, {
|
|
224
|
+
url: string;
|
|
225
|
+
kind: "url";
|
|
226
|
+
}, {
|
|
227
|
+
url: string;
|
|
228
|
+
kind: "url";
|
|
229
|
+
}>, z.ZodObject<{
|
|
230
|
+
kind: z.ZodLiteral<"base64">;
|
|
231
|
+
data: z.ZodString;
|
|
232
|
+
}, "strict", z.ZodTypeAny, {
|
|
233
|
+
kind: "base64";
|
|
234
|
+
data: string;
|
|
235
|
+
}, {
|
|
236
|
+
kind: "base64";
|
|
237
|
+
data: string;
|
|
210
238
|
}>, z.ZodObject<{
|
|
211
239
|
kind: z.ZodLiteral<"text">;
|
|
212
240
|
text: z.ZodString;
|
|
@@ -256,15 +284,6 @@ export declare const mulmoImageMediaSchema: z.ZodObject<{
|
|
|
256
284
|
}, {
|
|
257
285
|
kind: "base64";
|
|
258
286
|
data: string;
|
|
259
|
-
}>, z.ZodObject<{
|
|
260
|
-
kind: z.ZodLiteral<"text">;
|
|
261
|
-
text: z.ZodString;
|
|
262
|
-
}, "strict", z.ZodTypeAny, {
|
|
263
|
-
text: string;
|
|
264
|
-
kind: "text";
|
|
265
|
-
}, {
|
|
266
|
-
text: string;
|
|
267
|
-
kind: "text";
|
|
268
287
|
}>, z.ZodObject<{
|
|
269
288
|
kind: z.ZodLiteral<"path">;
|
|
270
289
|
path: z.ZodString;
|
|
@@ -283,9 +302,6 @@ export declare const mulmoImageMediaSchema: z.ZodObject<{
|
|
|
283
302
|
} | {
|
|
284
303
|
kind: "base64";
|
|
285
304
|
data: string;
|
|
286
|
-
} | {
|
|
287
|
-
text: string;
|
|
288
|
-
kind: "text";
|
|
289
305
|
} | {
|
|
290
306
|
path: string;
|
|
291
307
|
kind: "path";
|
|
@@ -298,9 +314,6 @@ export declare const mulmoImageMediaSchema: z.ZodObject<{
|
|
|
298
314
|
} | {
|
|
299
315
|
kind: "base64";
|
|
300
316
|
data: string;
|
|
301
|
-
} | {
|
|
302
|
-
text: string;
|
|
303
|
-
kind: "text";
|
|
304
317
|
} | {
|
|
305
318
|
path: string;
|
|
306
319
|
kind: "path";
|
|
@@ -516,15 +529,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
516
529
|
}, {
|
|
517
530
|
kind: "base64";
|
|
518
531
|
data: string;
|
|
519
|
-
}>, z.ZodObject<{
|
|
520
|
-
kind: z.ZodLiteral<"text">;
|
|
521
|
-
text: z.ZodString;
|
|
522
|
-
}, "strict", z.ZodTypeAny, {
|
|
523
|
-
text: string;
|
|
524
|
-
kind: "text";
|
|
525
|
-
}, {
|
|
526
|
-
text: string;
|
|
527
|
-
kind: "text";
|
|
528
532
|
}>, z.ZodObject<{
|
|
529
533
|
kind: z.ZodLiteral<"path">;
|
|
530
534
|
path: z.ZodString;
|
|
@@ -543,9 +547,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
543
547
|
} | {
|
|
544
548
|
kind: "base64";
|
|
545
549
|
data: string;
|
|
546
|
-
} | {
|
|
547
|
-
text: string;
|
|
548
|
-
kind: "text";
|
|
549
550
|
} | {
|
|
550
551
|
path: string;
|
|
551
552
|
kind: "path";
|
|
@@ -558,9 +559,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
558
559
|
} | {
|
|
559
560
|
kind: "base64";
|
|
560
561
|
data: string;
|
|
561
|
-
} | {
|
|
562
|
-
text: string;
|
|
563
|
-
kind: "text";
|
|
564
562
|
} | {
|
|
565
563
|
path: string;
|
|
566
564
|
kind: "path";
|
|
@@ -585,15 +583,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
585
583
|
}, {
|
|
586
584
|
kind: "base64";
|
|
587
585
|
data: string;
|
|
588
|
-
}>, z.ZodObject<{
|
|
589
|
-
kind: z.ZodLiteral<"text">;
|
|
590
|
-
text: z.ZodString;
|
|
591
|
-
}, "strict", z.ZodTypeAny, {
|
|
592
|
-
text: string;
|
|
593
|
-
kind: "text";
|
|
594
|
-
}, {
|
|
595
|
-
text: string;
|
|
596
|
-
kind: "text";
|
|
597
586
|
}>, z.ZodObject<{
|
|
598
587
|
kind: z.ZodLiteral<"path">;
|
|
599
588
|
path: z.ZodString;
|
|
@@ -612,9 +601,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
612
601
|
} | {
|
|
613
602
|
kind: "base64";
|
|
614
603
|
data: string;
|
|
615
|
-
} | {
|
|
616
|
-
text: string;
|
|
617
|
-
kind: "text";
|
|
618
604
|
} | {
|
|
619
605
|
path: string;
|
|
620
606
|
kind: "path";
|
|
@@ -627,9 +613,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
627
613
|
} | {
|
|
628
614
|
kind: "base64";
|
|
629
615
|
data: string;
|
|
630
|
-
} | {
|
|
631
|
-
text: string;
|
|
632
|
-
kind: "text";
|
|
633
616
|
} | {
|
|
634
617
|
path: string;
|
|
635
618
|
kind: "path";
|
|
@@ -654,15 +637,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
654
637
|
}, {
|
|
655
638
|
kind: "base64";
|
|
656
639
|
data: string;
|
|
657
|
-
}>, z.ZodObject<{
|
|
658
|
-
kind: z.ZodLiteral<"text">;
|
|
659
|
-
text: z.ZodString;
|
|
660
|
-
}, "strict", z.ZodTypeAny, {
|
|
661
|
-
text: string;
|
|
662
|
-
kind: "text";
|
|
663
|
-
}, {
|
|
664
|
-
text: string;
|
|
665
|
-
kind: "text";
|
|
666
640
|
}>, z.ZodObject<{
|
|
667
641
|
kind: z.ZodLiteral<"path">;
|
|
668
642
|
path: z.ZodString;
|
|
@@ -681,9 +655,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
681
655
|
} | {
|
|
682
656
|
kind: "base64";
|
|
683
657
|
data: string;
|
|
684
|
-
} | {
|
|
685
|
-
text: string;
|
|
686
|
-
kind: "text";
|
|
687
658
|
} | {
|
|
688
659
|
path: string;
|
|
689
660
|
kind: "path";
|
|
@@ -696,9 +667,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
696
667
|
} | {
|
|
697
668
|
kind: "base64";
|
|
698
669
|
data: string;
|
|
699
|
-
} | {
|
|
700
|
-
text: string;
|
|
701
|
-
kind: "text";
|
|
702
670
|
} | {
|
|
703
671
|
path: string;
|
|
704
672
|
kind: "path";
|
|
@@ -723,15 +691,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
723
691
|
}, {
|
|
724
692
|
kind: "base64";
|
|
725
693
|
data: string;
|
|
726
|
-
}>, z.ZodObject<{
|
|
727
|
-
kind: z.ZodLiteral<"text">;
|
|
728
|
-
text: z.ZodString;
|
|
729
|
-
}, "strict", z.ZodTypeAny, {
|
|
730
|
-
text: string;
|
|
731
|
-
kind: "text";
|
|
732
|
-
}, {
|
|
733
|
-
text: string;
|
|
734
|
-
kind: "text";
|
|
735
694
|
}>, z.ZodObject<{
|
|
736
695
|
kind: z.ZodLiteral<"path">;
|
|
737
696
|
path: z.ZodString;
|
|
@@ -750,9 +709,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
750
709
|
} | {
|
|
751
710
|
kind: "base64";
|
|
752
711
|
data: string;
|
|
753
|
-
} | {
|
|
754
|
-
text: string;
|
|
755
|
-
kind: "text";
|
|
756
712
|
} | {
|
|
757
713
|
path: string;
|
|
758
714
|
kind: "path";
|
|
@@ -765,9 +721,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
765
721
|
} | {
|
|
766
722
|
kind: "base64";
|
|
767
723
|
data: string;
|
|
768
|
-
} | {
|
|
769
|
-
text: string;
|
|
770
|
-
kind: "text";
|
|
771
724
|
} | {
|
|
772
725
|
path: string;
|
|
773
726
|
kind: "path";
|
|
@@ -948,15 +901,6 @@ export declare const mulmoAudioAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
948
901
|
}, {
|
|
949
902
|
kind: "base64";
|
|
950
903
|
data: string;
|
|
951
|
-
}>, z.ZodObject<{
|
|
952
|
-
kind: z.ZodLiteral<"text">;
|
|
953
|
-
text: z.ZodString;
|
|
954
|
-
}, "strict", z.ZodTypeAny, {
|
|
955
|
-
text: string;
|
|
956
|
-
kind: "text";
|
|
957
|
-
}, {
|
|
958
|
-
text: string;
|
|
959
|
-
kind: "text";
|
|
960
904
|
}>, z.ZodObject<{
|
|
961
905
|
kind: z.ZodLiteral<"path">;
|
|
962
906
|
path: z.ZodString;
|
|
@@ -975,9 +919,6 @@ export declare const mulmoAudioAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
975
919
|
} | {
|
|
976
920
|
kind: "base64";
|
|
977
921
|
data: string;
|
|
978
|
-
} | {
|
|
979
|
-
text: string;
|
|
980
|
-
kind: "text";
|
|
981
922
|
} | {
|
|
982
923
|
path: string;
|
|
983
924
|
kind: "path";
|
|
@@ -990,9 +931,6 @@ export declare const mulmoAudioAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
990
931
|
} | {
|
|
991
932
|
kind: "base64";
|
|
992
933
|
data: string;
|
|
993
|
-
} | {
|
|
994
|
-
text: string;
|
|
995
|
-
kind: "text";
|
|
996
934
|
} | {
|
|
997
935
|
path: string;
|
|
998
936
|
kind: "path";
|
|
@@ -1037,15 +975,6 @@ export declare const mulmoImageParamsImagesSchema: z.ZodRecord<z.ZodString, z.Zo
|
|
|
1037
975
|
}, {
|
|
1038
976
|
kind: "base64";
|
|
1039
977
|
data: string;
|
|
1040
|
-
}>, z.ZodObject<{
|
|
1041
|
-
kind: z.ZodLiteral<"text">;
|
|
1042
|
-
text: z.ZodString;
|
|
1043
|
-
}, "strict", z.ZodTypeAny, {
|
|
1044
|
-
text: string;
|
|
1045
|
-
kind: "text";
|
|
1046
|
-
}, {
|
|
1047
|
-
text: string;
|
|
1048
|
-
kind: "text";
|
|
1049
978
|
}>, z.ZodObject<{
|
|
1050
979
|
kind: z.ZodLiteral<"path">;
|
|
1051
980
|
path: z.ZodString;
|
|
@@ -1064,9 +993,6 @@ export declare const mulmoImageParamsImagesSchema: z.ZodRecord<z.ZodString, z.Zo
|
|
|
1064
993
|
} | {
|
|
1065
994
|
kind: "base64";
|
|
1066
995
|
data: string;
|
|
1067
|
-
} | {
|
|
1068
|
-
text: string;
|
|
1069
|
-
kind: "text";
|
|
1070
996
|
} | {
|
|
1071
997
|
path: string;
|
|
1072
998
|
kind: "path";
|
|
@@ -1079,9 +1005,6 @@ export declare const mulmoImageParamsImagesSchema: z.ZodRecord<z.ZodString, z.Zo
|
|
|
1079
1005
|
} | {
|
|
1080
1006
|
kind: "base64";
|
|
1081
1007
|
data: string;
|
|
1082
|
-
} | {
|
|
1083
|
-
text: string;
|
|
1084
|
-
kind: "text";
|
|
1085
1008
|
} | {
|
|
1086
1009
|
path: string;
|
|
1087
1010
|
kind: "path";
|
|
@@ -1173,15 +1096,6 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1173
1096
|
}, {
|
|
1174
1097
|
kind: "base64";
|
|
1175
1098
|
data: string;
|
|
1176
|
-
}>, z.ZodObject<{
|
|
1177
|
-
kind: z.ZodLiteral<"text">;
|
|
1178
|
-
text: z.ZodString;
|
|
1179
|
-
}, "strict", z.ZodTypeAny, {
|
|
1180
|
-
text: string;
|
|
1181
|
-
kind: "text";
|
|
1182
|
-
}, {
|
|
1183
|
-
text: string;
|
|
1184
|
-
kind: "text";
|
|
1185
1099
|
}>, z.ZodObject<{
|
|
1186
1100
|
kind: z.ZodLiteral<"path">;
|
|
1187
1101
|
path: z.ZodString;
|
|
@@ -1200,9 +1114,6 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1200
1114
|
} | {
|
|
1201
1115
|
kind: "base64";
|
|
1202
1116
|
data: string;
|
|
1203
|
-
} | {
|
|
1204
|
-
text: string;
|
|
1205
|
-
kind: "text";
|
|
1206
1117
|
} | {
|
|
1207
1118
|
path: string;
|
|
1208
1119
|
kind: "path";
|
|
@@ -1215,9 +1126,6 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1215
1126
|
} | {
|
|
1216
1127
|
kind: "base64";
|
|
1217
1128
|
data: string;
|
|
1218
|
-
} | {
|
|
1219
|
-
text: string;
|
|
1220
|
-
kind: "text";
|
|
1221
1129
|
} | {
|
|
1222
1130
|
path: string;
|
|
1223
1131
|
kind: "path";
|
|
@@ -1241,9 +1149,6 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1241
1149
|
} | {
|
|
1242
1150
|
kind: "base64";
|
|
1243
1151
|
data: string;
|
|
1244
|
-
} | {
|
|
1245
|
-
text: string;
|
|
1246
|
-
kind: "text";
|
|
1247
1152
|
} | {
|
|
1248
1153
|
path: string;
|
|
1249
1154
|
kind: "path";
|
|
@@ -1266,9 +1171,6 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1266
1171
|
} | {
|
|
1267
1172
|
kind: "base64";
|
|
1268
1173
|
data: string;
|
|
1269
|
-
} | {
|
|
1270
|
-
text: string;
|
|
1271
|
-
kind: "text";
|
|
1272
1174
|
} | {
|
|
1273
1175
|
path: string;
|
|
1274
1176
|
kind: "path";
|
|
@@ -1330,15 +1232,6 @@ export declare const audioParamsSchema: z.ZodObject<{
|
|
|
1330
1232
|
}, {
|
|
1331
1233
|
kind: "base64";
|
|
1332
1234
|
data: string;
|
|
1333
|
-
}>, z.ZodObject<{
|
|
1334
|
-
kind: z.ZodLiteral<"text">;
|
|
1335
|
-
text: z.ZodString;
|
|
1336
|
-
}, "strict", z.ZodTypeAny, {
|
|
1337
|
-
text: string;
|
|
1338
|
-
kind: "text";
|
|
1339
|
-
}, {
|
|
1340
|
-
text: string;
|
|
1341
|
-
kind: "text";
|
|
1342
1235
|
}>, z.ZodObject<{
|
|
1343
1236
|
kind: z.ZodLiteral<"path">;
|
|
1344
1237
|
path: z.ZodString;
|
|
@@ -1366,9 +1259,6 @@ export declare const audioParamsSchema: z.ZodObject<{
|
|
|
1366
1259
|
} | {
|
|
1367
1260
|
kind: "base64";
|
|
1368
1261
|
data: string;
|
|
1369
|
-
} | {
|
|
1370
|
-
text: string;
|
|
1371
|
-
kind: "text";
|
|
1372
1262
|
} | {
|
|
1373
1263
|
path: string;
|
|
1374
1264
|
kind: "path";
|
|
@@ -1384,9 +1274,6 @@ export declare const audioParamsSchema: z.ZodObject<{
|
|
|
1384
1274
|
} | {
|
|
1385
1275
|
kind: "base64";
|
|
1386
1276
|
data: string;
|
|
1387
|
-
} | {
|
|
1388
|
-
text: string;
|
|
1389
|
-
kind: "text";
|
|
1390
1277
|
} | {
|
|
1391
1278
|
path: string;
|
|
1392
1279
|
kind: "path";
|
|
@@ -1476,15 +1363,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1476
1363
|
}, {
|
|
1477
1364
|
kind: "base64";
|
|
1478
1365
|
data: string;
|
|
1479
|
-
}>, z.ZodObject<{
|
|
1480
|
-
kind: z.ZodLiteral<"text">;
|
|
1481
|
-
text: z.ZodString;
|
|
1482
|
-
}, "strict", z.ZodTypeAny, {
|
|
1483
|
-
text: string;
|
|
1484
|
-
kind: "text";
|
|
1485
|
-
}, {
|
|
1486
|
-
text: string;
|
|
1487
|
-
kind: "text";
|
|
1488
1366
|
}>, z.ZodObject<{
|
|
1489
1367
|
kind: z.ZodLiteral<"path">;
|
|
1490
1368
|
path: z.ZodString;
|
|
@@ -1503,9 +1381,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1503
1381
|
} | {
|
|
1504
1382
|
kind: "base64";
|
|
1505
1383
|
data: string;
|
|
1506
|
-
} | {
|
|
1507
|
-
text: string;
|
|
1508
|
-
kind: "text";
|
|
1509
1384
|
} | {
|
|
1510
1385
|
path: string;
|
|
1511
1386
|
kind: "path";
|
|
@@ -1518,9 +1393,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1518
1393
|
} | {
|
|
1519
1394
|
kind: "base64";
|
|
1520
1395
|
data: string;
|
|
1521
|
-
} | {
|
|
1522
|
-
text: string;
|
|
1523
|
-
kind: "text";
|
|
1524
1396
|
} | {
|
|
1525
1397
|
path: string;
|
|
1526
1398
|
kind: "path";
|
|
@@ -1545,15 +1417,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1545
1417
|
}, {
|
|
1546
1418
|
kind: "base64";
|
|
1547
1419
|
data: string;
|
|
1548
|
-
}>, z.ZodObject<{
|
|
1549
|
-
kind: z.ZodLiteral<"text">;
|
|
1550
|
-
text: z.ZodString;
|
|
1551
|
-
}, "strict", z.ZodTypeAny, {
|
|
1552
|
-
text: string;
|
|
1553
|
-
kind: "text";
|
|
1554
|
-
}, {
|
|
1555
|
-
text: string;
|
|
1556
|
-
kind: "text";
|
|
1557
1420
|
}>, z.ZodObject<{
|
|
1558
1421
|
kind: z.ZodLiteral<"path">;
|
|
1559
1422
|
path: z.ZodString;
|
|
@@ -1572,9 +1435,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1572
1435
|
} | {
|
|
1573
1436
|
kind: "base64";
|
|
1574
1437
|
data: string;
|
|
1575
|
-
} | {
|
|
1576
|
-
text: string;
|
|
1577
|
-
kind: "text";
|
|
1578
1438
|
} | {
|
|
1579
1439
|
path: string;
|
|
1580
1440
|
kind: "path";
|
|
@@ -1587,9 +1447,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1587
1447
|
} | {
|
|
1588
1448
|
kind: "base64";
|
|
1589
1449
|
data: string;
|
|
1590
|
-
} | {
|
|
1591
|
-
text: string;
|
|
1592
|
-
kind: "text";
|
|
1593
1450
|
} | {
|
|
1594
1451
|
path: string;
|
|
1595
1452
|
kind: "path";
|
|
@@ -1614,15 +1471,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1614
1471
|
}, {
|
|
1615
1472
|
kind: "base64";
|
|
1616
1473
|
data: string;
|
|
1617
|
-
}>, z.ZodObject<{
|
|
1618
|
-
kind: z.ZodLiteral<"text">;
|
|
1619
|
-
text: z.ZodString;
|
|
1620
|
-
}, "strict", z.ZodTypeAny, {
|
|
1621
|
-
text: string;
|
|
1622
|
-
kind: "text";
|
|
1623
|
-
}, {
|
|
1624
|
-
text: string;
|
|
1625
|
-
kind: "text";
|
|
1626
1474
|
}>, z.ZodObject<{
|
|
1627
1475
|
kind: z.ZodLiteral<"path">;
|
|
1628
1476
|
path: z.ZodString;
|
|
@@ -1641,9 +1489,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1641
1489
|
} | {
|
|
1642
1490
|
kind: "base64";
|
|
1643
1491
|
data: string;
|
|
1644
|
-
} | {
|
|
1645
|
-
text: string;
|
|
1646
|
-
kind: "text";
|
|
1647
1492
|
} | {
|
|
1648
1493
|
path: string;
|
|
1649
1494
|
kind: "path";
|
|
@@ -1656,9 +1501,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1656
1501
|
} | {
|
|
1657
1502
|
kind: "base64";
|
|
1658
1503
|
data: string;
|
|
1659
|
-
} | {
|
|
1660
|
-
text: string;
|
|
1661
|
-
kind: "text";
|
|
1662
1504
|
} | {
|
|
1663
1505
|
path: string;
|
|
1664
1506
|
kind: "path";
|
|
@@ -1683,15 +1525,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1683
1525
|
}, {
|
|
1684
1526
|
kind: "base64";
|
|
1685
1527
|
data: string;
|
|
1686
|
-
}>, z.ZodObject<{
|
|
1687
|
-
kind: z.ZodLiteral<"text">;
|
|
1688
|
-
text: z.ZodString;
|
|
1689
|
-
}, "strict", z.ZodTypeAny, {
|
|
1690
|
-
text: string;
|
|
1691
|
-
kind: "text";
|
|
1692
|
-
}, {
|
|
1693
|
-
text: string;
|
|
1694
|
-
kind: "text";
|
|
1695
1528
|
}>, z.ZodObject<{
|
|
1696
1529
|
kind: z.ZodLiteral<"path">;
|
|
1697
1530
|
path: z.ZodString;
|
|
@@ -1710,9 +1543,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1710
1543
|
} | {
|
|
1711
1544
|
kind: "base64";
|
|
1712
1545
|
data: string;
|
|
1713
|
-
} | {
|
|
1714
|
-
text: string;
|
|
1715
|
-
kind: "text";
|
|
1716
1546
|
} | {
|
|
1717
1547
|
path: string;
|
|
1718
1548
|
kind: "path";
|
|
@@ -1725,9 +1555,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1725
1555
|
} | {
|
|
1726
1556
|
kind: "base64";
|
|
1727
1557
|
data: string;
|
|
1728
|
-
} | {
|
|
1729
|
-
text: string;
|
|
1730
|
-
kind: "text";
|
|
1731
1558
|
} | {
|
|
1732
1559
|
path: string;
|
|
1733
1560
|
kind: "path";
|
|
@@ -1908,15 +1735,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1908
1735
|
}, {
|
|
1909
1736
|
kind: "base64";
|
|
1910
1737
|
data: string;
|
|
1911
|
-
}>, z.ZodObject<{
|
|
1912
|
-
kind: z.ZodLiteral<"text">;
|
|
1913
|
-
text: z.ZodString;
|
|
1914
|
-
}, "strict", z.ZodTypeAny, {
|
|
1915
|
-
text: string;
|
|
1916
|
-
kind: "text";
|
|
1917
|
-
}, {
|
|
1918
|
-
text: string;
|
|
1919
|
-
kind: "text";
|
|
1920
1738
|
}>, z.ZodObject<{
|
|
1921
1739
|
kind: z.ZodLiteral<"path">;
|
|
1922
1740
|
path: z.ZodString;
|
|
@@ -1935,9 +1753,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1935
1753
|
} | {
|
|
1936
1754
|
kind: "base64";
|
|
1937
1755
|
data: string;
|
|
1938
|
-
} | {
|
|
1939
|
-
text: string;
|
|
1940
|
-
kind: "text";
|
|
1941
1756
|
} | {
|
|
1942
1757
|
path: string;
|
|
1943
1758
|
kind: "path";
|
|
@@ -1950,9 +1765,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1950
1765
|
} | {
|
|
1951
1766
|
kind: "base64";
|
|
1952
1767
|
data: string;
|
|
1953
|
-
} | {
|
|
1954
|
-
text: string;
|
|
1955
|
-
kind: "text";
|
|
1956
1768
|
} | {
|
|
1957
1769
|
path: string;
|
|
1958
1770
|
kind: "path";
|
|
@@ -2115,9 +1927,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2115
1927
|
} | {
|
|
2116
1928
|
kind: "base64";
|
|
2117
1929
|
data: string;
|
|
2118
|
-
} | {
|
|
2119
|
-
text: string;
|
|
2120
|
-
kind: "text";
|
|
2121
1930
|
} | {
|
|
2122
1931
|
path: string;
|
|
2123
1932
|
kind: "path";
|
|
@@ -2130,9 +1939,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2130
1939
|
} | {
|
|
2131
1940
|
kind: "base64";
|
|
2132
1941
|
data: string;
|
|
2133
|
-
} | {
|
|
2134
|
-
text: string;
|
|
2135
|
-
kind: "text";
|
|
2136
1942
|
} | {
|
|
2137
1943
|
path: string;
|
|
2138
1944
|
kind: "path";
|
|
@@ -2145,9 +1951,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2145
1951
|
} | {
|
|
2146
1952
|
kind: "base64";
|
|
2147
1953
|
data: string;
|
|
2148
|
-
} | {
|
|
2149
|
-
text: string;
|
|
2150
|
-
kind: "text";
|
|
2151
1954
|
} | {
|
|
2152
1955
|
path: string;
|
|
2153
1956
|
kind: "path";
|
|
@@ -2160,9 +1963,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2160
1963
|
} | {
|
|
2161
1964
|
kind: "base64";
|
|
2162
1965
|
data: string;
|
|
2163
|
-
} | {
|
|
2164
|
-
text: string;
|
|
2165
|
-
kind: "text";
|
|
2166
1966
|
} | {
|
|
2167
1967
|
path: string;
|
|
2168
1968
|
kind: "path";
|
|
@@ -2217,9 +2017,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2217
2017
|
} | {
|
|
2218
2018
|
kind: "base64";
|
|
2219
2019
|
data: string;
|
|
2220
|
-
} | {
|
|
2221
|
-
text: string;
|
|
2222
|
-
kind: "text";
|
|
2223
2020
|
} | {
|
|
2224
2021
|
path: string;
|
|
2225
2022
|
kind: "path";
|
|
@@ -2300,9 +2097,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2300
2097
|
} | {
|
|
2301
2098
|
kind: "base64";
|
|
2302
2099
|
data: string;
|
|
2303
|
-
} | {
|
|
2304
|
-
text: string;
|
|
2305
|
-
kind: "text";
|
|
2306
2100
|
} | {
|
|
2307
2101
|
path: string;
|
|
2308
2102
|
kind: "path";
|
|
@@ -2315,9 +2109,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2315
2109
|
} | {
|
|
2316
2110
|
kind: "base64";
|
|
2317
2111
|
data: string;
|
|
2318
|
-
} | {
|
|
2319
|
-
text: string;
|
|
2320
|
-
kind: "text";
|
|
2321
2112
|
} | {
|
|
2322
2113
|
path: string;
|
|
2323
2114
|
kind: "path";
|
|
@@ -2330,9 +2121,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2330
2121
|
} | {
|
|
2331
2122
|
kind: "base64";
|
|
2332
2123
|
data: string;
|
|
2333
|
-
} | {
|
|
2334
|
-
text: string;
|
|
2335
|
-
kind: "text";
|
|
2336
2124
|
} | {
|
|
2337
2125
|
path: string;
|
|
2338
2126
|
kind: "path";
|
|
@@ -2345,9 +2133,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2345
2133
|
} | {
|
|
2346
2134
|
kind: "base64";
|
|
2347
2135
|
data: string;
|
|
2348
|
-
} | {
|
|
2349
|
-
text: string;
|
|
2350
|
-
kind: "text";
|
|
2351
2136
|
} | {
|
|
2352
2137
|
path: string;
|
|
2353
2138
|
kind: "path";
|
|
@@ -2402,9 +2187,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2402
2187
|
} | {
|
|
2403
2188
|
kind: "base64";
|
|
2404
2189
|
data: string;
|
|
2405
|
-
} | {
|
|
2406
|
-
text: string;
|
|
2407
|
-
kind: "text";
|
|
2408
2190
|
} | {
|
|
2409
2191
|
path: string;
|
|
2410
2192
|
kind: "path";
|
|
@@ -2758,15 +2540,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2758
2540
|
}, {
|
|
2759
2541
|
kind: "base64";
|
|
2760
2542
|
data: string;
|
|
2761
|
-
}>, z.ZodObject<{
|
|
2762
|
-
kind: z.ZodLiteral<"text">;
|
|
2763
|
-
text: z.ZodString;
|
|
2764
|
-
}, "strict", z.ZodTypeAny, {
|
|
2765
|
-
text: string;
|
|
2766
|
-
kind: "text";
|
|
2767
|
-
}, {
|
|
2768
|
-
text: string;
|
|
2769
|
-
kind: "text";
|
|
2770
2543
|
}>, z.ZodObject<{
|
|
2771
2544
|
kind: z.ZodLiteral<"path">;
|
|
2772
2545
|
path: z.ZodString;
|
|
@@ -2785,9 +2558,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2785
2558
|
} | {
|
|
2786
2559
|
kind: "base64";
|
|
2787
2560
|
data: string;
|
|
2788
|
-
} | {
|
|
2789
|
-
text: string;
|
|
2790
|
-
kind: "text";
|
|
2791
2561
|
} | {
|
|
2792
2562
|
path: string;
|
|
2793
2563
|
kind: "path";
|
|
@@ -2800,9 +2570,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2800
2570
|
} | {
|
|
2801
2571
|
kind: "base64";
|
|
2802
2572
|
data: string;
|
|
2803
|
-
} | {
|
|
2804
|
-
text: string;
|
|
2805
|
-
kind: "text";
|
|
2806
2573
|
} | {
|
|
2807
2574
|
path: string;
|
|
2808
2575
|
kind: "path";
|
|
@@ -2826,9 +2593,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2826
2593
|
} | {
|
|
2827
2594
|
kind: "base64";
|
|
2828
2595
|
data: string;
|
|
2829
|
-
} | {
|
|
2830
|
-
text: string;
|
|
2831
|
-
kind: "text";
|
|
2832
2596
|
} | {
|
|
2833
2597
|
path: string;
|
|
2834
2598
|
kind: "path";
|
|
@@ -2851,9 +2615,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2851
2615
|
} | {
|
|
2852
2616
|
kind: "base64";
|
|
2853
2617
|
data: string;
|
|
2854
|
-
} | {
|
|
2855
|
-
text: string;
|
|
2856
|
-
kind: "text";
|
|
2857
2618
|
} | {
|
|
2858
2619
|
path: string;
|
|
2859
2620
|
kind: "path";
|
|
@@ -2980,15 +2741,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2980
2741
|
}, {
|
|
2981
2742
|
kind: "base64";
|
|
2982
2743
|
data: string;
|
|
2983
|
-
}>, z.ZodObject<{
|
|
2984
|
-
kind: z.ZodLiteral<"text">;
|
|
2985
|
-
text: z.ZodString;
|
|
2986
|
-
}, "strict", z.ZodTypeAny, {
|
|
2987
|
-
text: string;
|
|
2988
|
-
kind: "text";
|
|
2989
|
-
}, {
|
|
2990
|
-
text: string;
|
|
2991
|
-
kind: "text";
|
|
2992
2744
|
}>, z.ZodObject<{
|
|
2993
2745
|
kind: z.ZodLiteral<"path">;
|
|
2994
2746
|
path: z.ZodString;
|
|
@@ -3016,9 +2768,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3016
2768
|
} | {
|
|
3017
2769
|
kind: "base64";
|
|
3018
2770
|
data: string;
|
|
3019
|
-
} | {
|
|
3020
|
-
text: string;
|
|
3021
|
-
kind: "text";
|
|
3022
2771
|
} | {
|
|
3023
2772
|
path: string;
|
|
3024
2773
|
kind: "path";
|
|
@@ -3034,9 +2783,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3034
2783
|
} | {
|
|
3035
2784
|
kind: "base64";
|
|
3036
2785
|
data: string;
|
|
3037
|
-
} | {
|
|
3038
|
-
text: string;
|
|
3039
|
-
kind: "text";
|
|
3040
2786
|
} | {
|
|
3041
2787
|
path: string;
|
|
3042
2788
|
kind: "path";
|
|
@@ -3055,9 +2801,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3055
2801
|
} | {
|
|
3056
2802
|
kind: "base64";
|
|
3057
2803
|
data: string;
|
|
3058
|
-
} | {
|
|
3059
|
-
text: string;
|
|
3060
|
-
kind: "text";
|
|
3061
2804
|
} | {
|
|
3062
2805
|
path: string;
|
|
3063
2806
|
kind: "path";
|
|
@@ -3086,9 +2829,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3086
2829
|
} | {
|
|
3087
2830
|
kind: "base64";
|
|
3088
2831
|
data: string;
|
|
3089
|
-
} | {
|
|
3090
|
-
text: string;
|
|
3091
|
-
kind: "text";
|
|
3092
2832
|
} | {
|
|
3093
2833
|
path: string;
|
|
3094
2834
|
kind: "path";
|
|
@@ -3170,9 +2910,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3170
2910
|
} | {
|
|
3171
2911
|
kind: "base64";
|
|
3172
2912
|
data: string;
|
|
3173
|
-
} | {
|
|
3174
|
-
text: string;
|
|
3175
|
-
kind: "text";
|
|
3176
2913
|
} | {
|
|
3177
2914
|
path: string;
|
|
3178
2915
|
kind: "path";
|
|
@@ -3198,9 +2935,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3198
2935
|
} | {
|
|
3199
2936
|
kind: "base64";
|
|
3200
2937
|
data: string;
|
|
3201
|
-
} | {
|
|
3202
|
-
text: string;
|
|
3203
|
-
kind: "text";
|
|
3204
2938
|
} | {
|
|
3205
2939
|
path: string;
|
|
3206
2940
|
kind: "path";
|
|
@@ -3477,15 +3211,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3477
3211
|
}, {
|
|
3478
3212
|
kind: "base64";
|
|
3479
3213
|
data: string;
|
|
3480
|
-
}>, z.ZodObject<{
|
|
3481
|
-
kind: z.ZodLiteral<"text">;
|
|
3482
|
-
text: z.ZodString;
|
|
3483
|
-
}, "strict", z.ZodTypeAny, {
|
|
3484
|
-
text: string;
|
|
3485
|
-
kind: "text";
|
|
3486
|
-
}, {
|
|
3487
|
-
text: string;
|
|
3488
|
-
kind: "text";
|
|
3489
3214
|
}>, z.ZodObject<{
|
|
3490
3215
|
kind: z.ZodLiteral<"path">;
|
|
3491
3216
|
path: z.ZodString;
|
|
@@ -3504,9 +3229,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3504
3229
|
} | {
|
|
3505
3230
|
kind: "base64";
|
|
3506
3231
|
data: string;
|
|
3507
|
-
} | {
|
|
3508
|
-
text: string;
|
|
3509
|
-
kind: "text";
|
|
3510
3232
|
} | {
|
|
3511
3233
|
path: string;
|
|
3512
3234
|
kind: "path";
|
|
@@ -3519,9 +3241,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3519
3241
|
} | {
|
|
3520
3242
|
kind: "base64";
|
|
3521
3243
|
data: string;
|
|
3522
|
-
} | {
|
|
3523
|
-
text: string;
|
|
3524
|
-
kind: "text";
|
|
3525
3244
|
} | {
|
|
3526
3245
|
path: string;
|
|
3527
3246
|
kind: "path";
|
|
@@ -3545,9 +3264,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3545
3264
|
} | {
|
|
3546
3265
|
kind: "base64";
|
|
3547
3266
|
data: string;
|
|
3548
|
-
} | {
|
|
3549
|
-
text: string;
|
|
3550
|
-
kind: "text";
|
|
3551
3267
|
} | {
|
|
3552
3268
|
path: string;
|
|
3553
3269
|
kind: "path";
|
|
@@ -3570,9 +3286,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3570
3286
|
} | {
|
|
3571
3287
|
kind: "base64";
|
|
3572
3288
|
data: string;
|
|
3573
|
-
} | {
|
|
3574
|
-
text: string;
|
|
3575
|
-
kind: "text";
|
|
3576
3289
|
} | {
|
|
3577
3290
|
path: string;
|
|
3578
3291
|
kind: "path";
|
|
@@ -3699,15 +3412,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3699
3412
|
}, {
|
|
3700
3413
|
kind: "base64";
|
|
3701
3414
|
data: string;
|
|
3702
|
-
}>, z.ZodObject<{
|
|
3703
|
-
kind: z.ZodLiteral<"text">;
|
|
3704
|
-
text: z.ZodString;
|
|
3705
|
-
}, "strict", z.ZodTypeAny, {
|
|
3706
|
-
text: string;
|
|
3707
|
-
kind: "text";
|
|
3708
|
-
}, {
|
|
3709
|
-
text: string;
|
|
3710
|
-
kind: "text";
|
|
3711
3415
|
}>, z.ZodObject<{
|
|
3712
3416
|
kind: z.ZodLiteral<"path">;
|
|
3713
3417
|
path: z.ZodString;
|
|
@@ -3735,9 +3439,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3735
3439
|
} | {
|
|
3736
3440
|
kind: "base64";
|
|
3737
3441
|
data: string;
|
|
3738
|
-
} | {
|
|
3739
|
-
text: string;
|
|
3740
|
-
kind: "text";
|
|
3741
3442
|
} | {
|
|
3742
3443
|
path: string;
|
|
3743
3444
|
kind: "path";
|
|
@@ -3753,9 +3454,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3753
3454
|
} | {
|
|
3754
3455
|
kind: "base64";
|
|
3755
3456
|
data: string;
|
|
3756
|
-
} | {
|
|
3757
|
-
text: string;
|
|
3758
|
-
kind: "text";
|
|
3759
3457
|
} | {
|
|
3760
3458
|
path: string;
|
|
3761
3459
|
kind: "path";
|
|
@@ -3827,15 +3525,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3827
3525
|
}, {
|
|
3828
3526
|
kind: "base64";
|
|
3829
3527
|
data: string;
|
|
3830
|
-
}>, z.ZodObject<{
|
|
3831
|
-
kind: z.ZodLiteral<"text">;
|
|
3832
|
-
text: z.ZodString;
|
|
3833
|
-
}, "strict", z.ZodTypeAny, {
|
|
3834
|
-
text: string;
|
|
3835
|
-
kind: "text";
|
|
3836
|
-
}, {
|
|
3837
|
-
text: string;
|
|
3838
|
-
kind: "text";
|
|
3839
3528
|
}>, z.ZodObject<{
|
|
3840
3529
|
kind: z.ZodLiteral<"path">;
|
|
3841
3530
|
path: z.ZodString;
|
|
@@ -3854,9 +3543,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3854
3543
|
} | {
|
|
3855
3544
|
kind: "base64";
|
|
3856
3545
|
data: string;
|
|
3857
|
-
} | {
|
|
3858
|
-
text: string;
|
|
3859
|
-
kind: "text";
|
|
3860
3546
|
} | {
|
|
3861
3547
|
path: string;
|
|
3862
3548
|
kind: "path";
|
|
@@ -3869,9 +3555,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3869
3555
|
} | {
|
|
3870
3556
|
kind: "base64";
|
|
3871
3557
|
data: string;
|
|
3872
|
-
} | {
|
|
3873
|
-
text: string;
|
|
3874
|
-
kind: "text";
|
|
3875
3558
|
} | {
|
|
3876
3559
|
path: string;
|
|
3877
3560
|
kind: "path";
|
|
@@ -3896,15 +3579,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3896
3579
|
}, {
|
|
3897
3580
|
kind: "base64";
|
|
3898
3581
|
data: string;
|
|
3899
|
-
}>, z.ZodObject<{
|
|
3900
|
-
kind: z.ZodLiteral<"text">;
|
|
3901
|
-
text: z.ZodString;
|
|
3902
|
-
}, "strict", z.ZodTypeAny, {
|
|
3903
|
-
text: string;
|
|
3904
|
-
kind: "text";
|
|
3905
|
-
}, {
|
|
3906
|
-
text: string;
|
|
3907
|
-
kind: "text";
|
|
3908
3582
|
}>, z.ZodObject<{
|
|
3909
3583
|
kind: z.ZodLiteral<"path">;
|
|
3910
3584
|
path: z.ZodString;
|
|
@@ -3923,9 +3597,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3923
3597
|
} | {
|
|
3924
3598
|
kind: "base64";
|
|
3925
3599
|
data: string;
|
|
3926
|
-
} | {
|
|
3927
|
-
text: string;
|
|
3928
|
-
kind: "text";
|
|
3929
3600
|
} | {
|
|
3930
3601
|
path: string;
|
|
3931
3602
|
kind: "path";
|
|
@@ -3938,9 +3609,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3938
3609
|
} | {
|
|
3939
3610
|
kind: "base64";
|
|
3940
3611
|
data: string;
|
|
3941
|
-
} | {
|
|
3942
|
-
text: string;
|
|
3943
|
-
kind: "text";
|
|
3944
3612
|
} | {
|
|
3945
3613
|
path: string;
|
|
3946
3614
|
kind: "path";
|
|
@@ -3965,15 +3633,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3965
3633
|
}, {
|
|
3966
3634
|
kind: "base64";
|
|
3967
3635
|
data: string;
|
|
3968
|
-
}>, z.ZodObject<{
|
|
3969
|
-
kind: z.ZodLiteral<"text">;
|
|
3970
|
-
text: z.ZodString;
|
|
3971
|
-
}, "strict", z.ZodTypeAny, {
|
|
3972
|
-
text: string;
|
|
3973
|
-
kind: "text";
|
|
3974
|
-
}, {
|
|
3975
|
-
text: string;
|
|
3976
|
-
kind: "text";
|
|
3977
3636
|
}>, z.ZodObject<{
|
|
3978
3637
|
kind: z.ZodLiteral<"path">;
|
|
3979
3638
|
path: z.ZodString;
|
|
@@ -3992,9 +3651,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3992
3651
|
} | {
|
|
3993
3652
|
kind: "base64";
|
|
3994
3653
|
data: string;
|
|
3995
|
-
} | {
|
|
3996
|
-
text: string;
|
|
3997
|
-
kind: "text";
|
|
3998
3654
|
} | {
|
|
3999
3655
|
path: string;
|
|
4000
3656
|
kind: "path";
|
|
@@ -4007,9 +3663,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4007
3663
|
} | {
|
|
4008
3664
|
kind: "base64";
|
|
4009
3665
|
data: string;
|
|
4010
|
-
} | {
|
|
4011
|
-
text: string;
|
|
4012
|
-
kind: "text";
|
|
4013
3666
|
} | {
|
|
4014
3667
|
path: string;
|
|
4015
3668
|
kind: "path";
|
|
@@ -4034,15 +3687,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4034
3687
|
}, {
|
|
4035
3688
|
kind: "base64";
|
|
4036
3689
|
data: string;
|
|
4037
|
-
}>, z.ZodObject<{
|
|
4038
|
-
kind: z.ZodLiteral<"text">;
|
|
4039
|
-
text: z.ZodString;
|
|
4040
|
-
}, "strict", z.ZodTypeAny, {
|
|
4041
|
-
text: string;
|
|
4042
|
-
kind: "text";
|
|
4043
|
-
}, {
|
|
4044
|
-
text: string;
|
|
4045
|
-
kind: "text";
|
|
4046
3690
|
}>, z.ZodObject<{
|
|
4047
3691
|
kind: z.ZodLiteral<"path">;
|
|
4048
3692
|
path: z.ZodString;
|
|
@@ -4061,9 +3705,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4061
3705
|
} | {
|
|
4062
3706
|
kind: "base64";
|
|
4063
3707
|
data: string;
|
|
4064
|
-
} | {
|
|
4065
|
-
text: string;
|
|
4066
|
-
kind: "text";
|
|
4067
3708
|
} | {
|
|
4068
3709
|
path: string;
|
|
4069
3710
|
kind: "path";
|
|
@@ -4076,9 +3717,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4076
3717
|
} | {
|
|
4077
3718
|
kind: "base64";
|
|
4078
3719
|
data: string;
|
|
4079
|
-
} | {
|
|
4080
|
-
text: string;
|
|
4081
|
-
kind: "text";
|
|
4082
3720
|
} | {
|
|
4083
3721
|
path: string;
|
|
4084
3722
|
kind: "path";
|
|
@@ -4259,15 +3897,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4259
3897
|
}, {
|
|
4260
3898
|
kind: "base64";
|
|
4261
3899
|
data: string;
|
|
4262
|
-
}>, z.ZodObject<{
|
|
4263
|
-
kind: z.ZodLiteral<"text">;
|
|
4264
|
-
text: z.ZodString;
|
|
4265
|
-
}, "strict", z.ZodTypeAny, {
|
|
4266
|
-
text: string;
|
|
4267
|
-
kind: "text";
|
|
4268
|
-
}, {
|
|
4269
|
-
text: string;
|
|
4270
|
-
kind: "text";
|
|
4271
3900
|
}>, z.ZodObject<{
|
|
4272
3901
|
kind: z.ZodLiteral<"path">;
|
|
4273
3902
|
path: z.ZodString;
|
|
@@ -4286,9 +3915,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4286
3915
|
} | {
|
|
4287
3916
|
kind: "base64";
|
|
4288
3917
|
data: string;
|
|
4289
|
-
} | {
|
|
4290
|
-
text: string;
|
|
4291
|
-
kind: "text";
|
|
4292
3918
|
} | {
|
|
4293
3919
|
path: string;
|
|
4294
3920
|
kind: "path";
|
|
@@ -4301,9 +3927,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4301
3927
|
} | {
|
|
4302
3928
|
kind: "base64";
|
|
4303
3929
|
data: string;
|
|
4304
|
-
} | {
|
|
4305
|
-
text: string;
|
|
4306
|
-
kind: "text";
|
|
4307
3930
|
} | {
|
|
4308
3931
|
path: string;
|
|
4309
3932
|
kind: "path";
|
|
@@ -4466,9 +4089,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4466
4089
|
} | {
|
|
4467
4090
|
kind: "base64";
|
|
4468
4091
|
data: string;
|
|
4469
|
-
} | {
|
|
4470
|
-
text: string;
|
|
4471
|
-
kind: "text";
|
|
4472
4092
|
} | {
|
|
4473
4093
|
path: string;
|
|
4474
4094
|
kind: "path";
|
|
@@ -4481,9 +4101,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4481
4101
|
} | {
|
|
4482
4102
|
kind: "base64";
|
|
4483
4103
|
data: string;
|
|
4484
|
-
} | {
|
|
4485
|
-
text: string;
|
|
4486
|
-
kind: "text";
|
|
4487
4104
|
} | {
|
|
4488
4105
|
path: string;
|
|
4489
4106
|
kind: "path";
|
|
@@ -4496,9 +4113,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4496
4113
|
} | {
|
|
4497
4114
|
kind: "base64";
|
|
4498
4115
|
data: string;
|
|
4499
|
-
} | {
|
|
4500
|
-
text: string;
|
|
4501
|
-
kind: "text";
|
|
4502
4116
|
} | {
|
|
4503
4117
|
path: string;
|
|
4504
4118
|
kind: "path";
|
|
@@ -4511,9 +4125,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4511
4125
|
} | {
|
|
4512
4126
|
kind: "base64";
|
|
4513
4127
|
data: string;
|
|
4514
|
-
} | {
|
|
4515
|
-
text: string;
|
|
4516
|
-
kind: "text";
|
|
4517
4128
|
} | {
|
|
4518
4129
|
path: string;
|
|
4519
4130
|
kind: "path";
|
|
@@ -4568,9 +4179,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4568
4179
|
} | {
|
|
4569
4180
|
kind: "base64";
|
|
4570
4181
|
data: string;
|
|
4571
|
-
} | {
|
|
4572
|
-
text: string;
|
|
4573
|
-
kind: "text";
|
|
4574
4182
|
} | {
|
|
4575
4183
|
path: string;
|
|
4576
4184
|
kind: "path";
|
|
@@ -4651,9 +4259,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4651
4259
|
} | {
|
|
4652
4260
|
kind: "base64";
|
|
4653
4261
|
data: string;
|
|
4654
|
-
} | {
|
|
4655
|
-
text: string;
|
|
4656
|
-
kind: "text";
|
|
4657
4262
|
} | {
|
|
4658
4263
|
path: string;
|
|
4659
4264
|
kind: "path";
|
|
@@ -4666,9 +4271,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4666
4271
|
} | {
|
|
4667
4272
|
kind: "base64";
|
|
4668
4273
|
data: string;
|
|
4669
|
-
} | {
|
|
4670
|
-
text: string;
|
|
4671
|
-
kind: "text";
|
|
4672
4274
|
} | {
|
|
4673
4275
|
path: string;
|
|
4674
4276
|
kind: "path";
|
|
@@ -4681,9 +4283,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4681
4283
|
} | {
|
|
4682
4284
|
kind: "base64";
|
|
4683
4285
|
data: string;
|
|
4684
|
-
} | {
|
|
4685
|
-
text: string;
|
|
4686
|
-
kind: "text";
|
|
4687
4286
|
} | {
|
|
4688
4287
|
path: string;
|
|
4689
4288
|
kind: "path";
|
|
@@ -4696,9 +4295,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4696
4295
|
} | {
|
|
4697
4296
|
kind: "base64";
|
|
4698
4297
|
data: string;
|
|
4699
|
-
} | {
|
|
4700
|
-
text: string;
|
|
4701
|
-
kind: "text";
|
|
4702
4298
|
} | {
|
|
4703
4299
|
path: string;
|
|
4704
4300
|
kind: "path";
|
|
@@ -4753,9 +4349,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4753
4349
|
} | {
|
|
4754
4350
|
kind: "base64";
|
|
4755
4351
|
data: string;
|
|
4756
|
-
} | {
|
|
4757
|
-
text: string;
|
|
4758
|
-
kind: "text";
|
|
4759
4352
|
} | {
|
|
4760
4353
|
path: string;
|
|
4761
4354
|
kind: "path";
|
|
@@ -4836,9 +4429,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4836
4429
|
} | {
|
|
4837
4430
|
kind: "base64";
|
|
4838
4431
|
data: string;
|
|
4839
|
-
} | {
|
|
4840
|
-
text: string;
|
|
4841
|
-
kind: "text";
|
|
4842
4432
|
} | {
|
|
4843
4433
|
path: string;
|
|
4844
4434
|
kind: "path";
|
|
@@ -4867,9 +4457,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4867
4457
|
} | {
|
|
4868
4458
|
kind: "base64";
|
|
4869
4459
|
data: string;
|
|
4870
|
-
} | {
|
|
4871
|
-
text: string;
|
|
4872
|
-
kind: "text";
|
|
4873
4460
|
} | {
|
|
4874
4461
|
path: string;
|
|
4875
4462
|
kind: "path";
|
|
@@ -4927,9 +4514,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4927
4514
|
} | {
|
|
4928
4515
|
kind: "base64";
|
|
4929
4516
|
data: string;
|
|
4930
|
-
} | {
|
|
4931
|
-
text: string;
|
|
4932
|
-
kind: "text";
|
|
4933
4517
|
} | {
|
|
4934
4518
|
path: string;
|
|
4935
4519
|
kind: "path";
|
|
@@ -4942,9 +4526,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4942
4526
|
} | {
|
|
4943
4527
|
kind: "base64";
|
|
4944
4528
|
data: string;
|
|
4945
|
-
} | {
|
|
4946
|
-
text: string;
|
|
4947
|
-
kind: "text";
|
|
4948
4529
|
} | {
|
|
4949
4530
|
path: string;
|
|
4950
4531
|
kind: "path";
|
|
@@ -4957,9 +4538,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4957
4538
|
} | {
|
|
4958
4539
|
kind: "base64";
|
|
4959
4540
|
data: string;
|
|
4960
|
-
} | {
|
|
4961
|
-
text: string;
|
|
4962
|
-
kind: "text";
|
|
4963
4541
|
} | {
|
|
4964
4542
|
path: string;
|
|
4965
4543
|
kind: "path";
|
|
@@ -4972,9 +4550,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4972
4550
|
} | {
|
|
4973
4551
|
kind: "base64";
|
|
4974
4552
|
data: string;
|
|
4975
|
-
} | {
|
|
4976
|
-
text: string;
|
|
4977
|
-
kind: "text";
|
|
4978
4553
|
} | {
|
|
4979
4554
|
path: string;
|
|
4980
4555
|
kind: "path";
|
|
@@ -5029,9 +4604,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5029
4604
|
} | {
|
|
5030
4605
|
kind: "base64";
|
|
5031
4606
|
data: string;
|
|
5032
|
-
} | {
|
|
5033
|
-
text: string;
|
|
5034
|
-
kind: "text";
|
|
5035
4607
|
} | {
|
|
5036
4608
|
path: string;
|
|
5037
4609
|
kind: "path";
|
|
@@ -5155,9 +4727,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5155
4727
|
} | {
|
|
5156
4728
|
kind: "base64";
|
|
5157
4729
|
data: string;
|
|
5158
|
-
} | {
|
|
5159
|
-
text: string;
|
|
5160
|
-
kind: "text";
|
|
5161
4730
|
} | {
|
|
5162
4731
|
path: string;
|
|
5163
4732
|
kind: "path";
|
|
@@ -5170,9 +4739,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5170
4739
|
} | {
|
|
5171
4740
|
kind: "base64";
|
|
5172
4741
|
data: string;
|
|
5173
|
-
} | {
|
|
5174
|
-
text: string;
|
|
5175
|
-
kind: "text";
|
|
5176
4742
|
} | {
|
|
5177
4743
|
path: string;
|
|
5178
4744
|
kind: "path";
|
|
@@ -5185,9 +4751,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5185
4751
|
} | {
|
|
5186
4752
|
kind: "base64";
|
|
5187
4753
|
data: string;
|
|
5188
|
-
} | {
|
|
5189
|
-
text: string;
|
|
5190
|
-
kind: "text";
|
|
5191
4754
|
} | {
|
|
5192
4755
|
path: string;
|
|
5193
4756
|
kind: "path";
|
|
@@ -5200,9 +4763,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5200
4763
|
} | {
|
|
5201
4764
|
kind: "base64";
|
|
5202
4765
|
data: string;
|
|
5203
|
-
} | {
|
|
5204
|
-
text: string;
|
|
5205
|
-
kind: "text";
|
|
5206
4766
|
} | {
|
|
5207
4767
|
path: string;
|
|
5208
4768
|
kind: "path";
|
|
@@ -5257,9 +4817,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5257
4817
|
} | {
|
|
5258
4818
|
kind: "base64";
|
|
5259
4819
|
data: string;
|
|
5260
|
-
} | {
|
|
5261
|
-
text: string;
|
|
5262
|
-
kind: "text";
|
|
5263
4820
|
} | {
|
|
5264
4821
|
path: string;
|
|
5265
4822
|
kind: "path";
|
|
@@ -5338,9 +4895,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5338
4895
|
} | {
|
|
5339
4896
|
kind: "base64";
|
|
5340
4897
|
data: string;
|
|
5341
|
-
} | {
|
|
5342
|
-
text: string;
|
|
5343
|
-
kind: "text";
|
|
5344
4898
|
} | {
|
|
5345
4899
|
path: string;
|
|
5346
4900
|
kind: "path";
|
|
@@ -5366,9 +4920,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5366
4920
|
} | {
|
|
5367
4921
|
kind: "base64";
|
|
5368
4922
|
data: string;
|
|
5369
|
-
} | {
|
|
5370
|
-
text: string;
|
|
5371
|
-
kind: "text";
|
|
5372
4923
|
} | {
|
|
5373
4924
|
path: string;
|
|
5374
4925
|
kind: "path";
|
|
@@ -6007,15 +5558,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6007
5558
|
}, {
|
|
6008
5559
|
kind: "base64";
|
|
6009
5560
|
data: string;
|
|
6010
|
-
}>, z.ZodObject<{
|
|
6011
|
-
kind: z.ZodLiteral<"text">;
|
|
6012
|
-
text: z.ZodString;
|
|
6013
|
-
}, "strict", z.ZodTypeAny, {
|
|
6014
|
-
text: string;
|
|
6015
|
-
kind: "text";
|
|
6016
|
-
}, {
|
|
6017
|
-
text: string;
|
|
6018
|
-
kind: "text";
|
|
6019
5561
|
}>, z.ZodObject<{
|
|
6020
5562
|
kind: z.ZodLiteral<"path">;
|
|
6021
5563
|
path: z.ZodString;
|
|
@@ -6034,9 +5576,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6034
5576
|
} | {
|
|
6035
5577
|
kind: "base64";
|
|
6036
5578
|
data: string;
|
|
6037
|
-
} | {
|
|
6038
|
-
text: string;
|
|
6039
|
-
kind: "text";
|
|
6040
5579
|
} | {
|
|
6041
5580
|
path: string;
|
|
6042
5581
|
kind: "path";
|
|
@@ -6049,9 +5588,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6049
5588
|
} | {
|
|
6050
5589
|
kind: "base64";
|
|
6051
5590
|
data: string;
|
|
6052
|
-
} | {
|
|
6053
|
-
text: string;
|
|
6054
|
-
kind: "text";
|
|
6055
5591
|
} | {
|
|
6056
5592
|
path: string;
|
|
6057
5593
|
kind: "path";
|
|
@@ -6075,9 +5611,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6075
5611
|
} | {
|
|
6076
5612
|
kind: "base64";
|
|
6077
5613
|
data: string;
|
|
6078
|
-
} | {
|
|
6079
|
-
text: string;
|
|
6080
|
-
kind: "text";
|
|
6081
5614
|
} | {
|
|
6082
5615
|
path: string;
|
|
6083
5616
|
kind: "path";
|
|
@@ -6100,9 +5633,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6100
5633
|
} | {
|
|
6101
5634
|
kind: "base64";
|
|
6102
5635
|
data: string;
|
|
6103
|
-
} | {
|
|
6104
|
-
text: string;
|
|
6105
|
-
kind: "text";
|
|
6106
5636
|
} | {
|
|
6107
5637
|
path: string;
|
|
6108
5638
|
kind: "path";
|
|
@@ -6229,15 +5759,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6229
5759
|
}, {
|
|
6230
5760
|
kind: "base64";
|
|
6231
5761
|
data: string;
|
|
6232
|
-
}>, z.ZodObject<{
|
|
6233
|
-
kind: z.ZodLiteral<"text">;
|
|
6234
|
-
text: z.ZodString;
|
|
6235
|
-
}, "strict", z.ZodTypeAny, {
|
|
6236
|
-
text: string;
|
|
6237
|
-
kind: "text";
|
|
6238
|
-
}, {
|
|
6239
|
-
text: string;
|
|
6240
|
-
kind: "text";
|
|
6241
5762
|
}>, z.ZodObject<{
|
|
6242
5763
|
kind: z.ZodLiteral<"path">;
|
|
6243
5764
|
path: z.ZodString;
|
|
@@ -6265,9 +5786,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6265
5786
|
} | {
|
|
6266
5787
|
kind: "base64";
|
|
6267
5788
|
data: string;
|
|
6268
|
-
} | {
|
|
6269
|
-
text: string;
|
|
6270
|
-
kind: "text";
|
|
6271
5789
|
} | {
|
|
6272
5790
|
path: string;
|
|
6273
5791
|
kind: "path";
|
|
@@ -6283,9 +5801,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6283
5801
|
} | {
|
|
6284
5802
|
kind: "base64";
|
|
6285
5803
|
data: string;
|
|
6286
|
-
} | {
|
|
6287
|
-
text: string;
|
|
6288
|
-
kind: "text";
|
|
6289
5804
|
} | {
|
|
6290
5805
|
path: string;
|
|
6291
5806
|
kind: "path";
|
|
@@ -6357,15 +5872,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6357
5872
|
}, {
|
|
6358
5873
|
kind: "base64";
|
|
6359
5874
|
data: string;
|
|
6360
|
-
}>, z.ZodObject<{
|
|
6361
|
-
kind: z.ZodLiteral<"text">;
|
|
6362
|
-
text: z.ZodString;
|
|
6363
|
-
}, "strict", z.ZodTypeAny, {
|
|
6364
|
-
text: string;
|
|
6365
|
-
kind: "text";
|
|
6366
|
-
}, {
|
|
6367
|
-
text: string;
|
|
6368
|
-
kind: "text";
|
|
6369
5875
|
}>, z.ZodObject<{
|
|
6370
5876
|
kind: z.ZodLiteral<"path">;
|
|
6371
5877
|
path: z.ZodString;
|
|
@@ -6384,9 +5890,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6384
5890
|
} | {
|
|
6385
5891
|
kind: "base64";
|
|
6386
5892
|
data: string;
|
|
6387
|
-
} | {
|
|
6388
|
-
text: string;
|
|
6389
|
-
kind: "text";
|
|
6390
5893
|
} | {
|
|
6391
5894
|
path: string;
|
|
6392
5895
|
kind: "path";
|
|
@@ -6399,9 +5902,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6399
5902
|
} | {
|
|
6400
5903
|
kind: "base64";
|
|
6401
5904
|
data: string;
|
|
6402
|
-
} | {
|
|
6403
|
-
text: string;
|
|
6404
|
-
kind: "text";
|
|
6405
5905
|
} | {
|
|
6406
5906
|
path: string;
|
|
6407
5907
|
kind: "path";
|
|
@@ -6426,15 +5926,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6426
5926
|
}, {
|
|
6427
5927
|
kind: "base64";
|
|
6428
5928
|
data: string;
|
|
6429
|
-
}>, z.ZodObject<{
|
|
6430
|
-
kind: z.ZodLiteral<"text">;
|
|
6431
|
-
text: z.ZodString;
|
|
6432
|
-
}, "strict", z.ZodTypeAny, {
|
|
6433
|
-
text: string;
|
|
6434
|
-
kind: "text";
|
|
6435
|
-
}, {
|
|
6436
|
-
text: string;
|
|
6437
|
-
kind: "text";
|
|
6438
5929
|
}>, z.ZodObject<{
|
|
6439
5930
|
kind: z.ZodLiteral<"path">;
|
|
6440
5931
|
path: z.ZodString;
|
|
@@ -6453,9 +5944,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6453
5944
|
} | {
|
|
6454
5945
|
kind: "base64";
|
|
6455
5946
|
data: string;
|
|
6456
|
-
} | {
|
|
6457
|
-
text: string;
|
|
6458
|
-
kind: "text";
|
|
6459
5947
|
} | {
|
|
6460
5948
|
path: string;
|
|
6461
5949
|
kind: "path";
|
|
@@ -6468,9 +5956,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6468
5956
|
} | {
|
|
6469
5957
|
kind: "base64";
|
|
6470
5958
|
data: string;
|
|
6471
|
-
} | {
|
|
6472
|
-
text: string;
|
|
6473
|
-
kind: "text";
|
|
6474
5959
|
} | {
|
|
6475
5960
|
path: string;
|
|
6476
5961
|
kind: "path";
|
|
@@ -6495,15 +5980,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6495
5980
|
}, {
|
|
6496
5981
|
kind: "base64";
|
|
6497
5982
|
data: string;
|
|
6498
|
-
}>, z.ZodObject<{
|
|
6499
|
-
kind: z.ZodLiteral<"text">;
|
|
6500
|
-
text: z.ZodString;
|
|
6501
|
-
}, "strict", z.ZodTypeAny, {
|
|
6502
|
-
text: string;
|
|
6503
|
-
kind: "text";
|
|
6504
|
-
}, {
|
|
6505
|
-
text: string;
|
|
6506
|
-
kind: "text";
|
|
6507
5983
|
}>, z.ZodObject<{
|
|
6508
5984
|
kind: z.ZodLiteral<"path">;
|
|
6509
5985
|
path: z.ZodString;
|
|
@@ -6522,9 +5998,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6522
5998
|
} | {
|
|
6523
5999
|
kind: "base64";
|
|
6524
6000
|
data: string;
|
|
6525
|
-
} | {
|
|
6526
|
-
text: string;
|
|
6527
|
-
kind: "text";
|
|
6528
6001
|
} | {
|
|
6529
6002
|
path: string;
|
|
6530
6003
|
kind: "path";
|
|
@@ -6537,9 +6010,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6537
6010
|
} | {
|
|
6538
6011
|
kind: "base64";
|
|
6539
6012
|
data: string;
|
|
6540
|
-
} | {
|
|
6541
|
-
text: string;
|
|
6542
|
-
kind: "text";
|
|
6543
6013
|
} | {
|
|
6544
6014
|
path: string;
|
|
6545
6015
|
kind: "path";
|
|
@@ -6563,16 +6033,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6563
6033
|
data: string;
|
|
6564
6034
|
}, {
|
|
6565
6035
|
kind: "base64";
|
|
6566
|
-
data: string;
|
|
6567
|
-
}>, z.ZodObject<{
|
|
6568
|
-
kind: z.ZodLiteral<"text">;
|
|
6569
|
-
text: z.ZodString;
|
|
6570
|
-
}, "strict", z.ZodTypeAny, {
|
|
6571
|
-
text: string;
|
|
6572
|
-
kind: "text";
|
|
6573
|
-
}, {
|
|
6574
|
-
text: string;
|
|
6575
|
-
kind: "text";
|
|
6036
|
+
data: string;
|
|
6576
6037
|
}>, z.ZodObject<{
|
|
6577
6038
|
kind: z.ZodLiteral<"path">;
|
|
6578
6039
|
path: z.ZodString;
|
|
@@ -6591,9 +6052,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6591
6052
|
} | {
|
|
6592
6053
|
kind: "base64";
|
|
6593
6054
|
data: string;
|
|
6594
|
-
} | {
|
|
6595
|
-
text: string;
|
|
6596
|
-
kind: "text";
|
|
6597
6055
|
} | {
|
|
6598
6056
|
path: string;
|
|
6599
6057
|
kind: "path";
|
|
@@ -6606,9 +6064,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6606
6064
|
} | {
|
|
6607
6065
|
kind: "base64";
|
|
6608
6066
|
data: string;
|
|
6609
|
-
} | {
|
|
6610
|
-
text: string;
|
|
6611
|
-
kind: "text";
|
|
6612
6067
|
} | {
|
|
6613
6068
|
path: string;
|
|
6614
6069
|
kind: "path";
|
|
@@ -6789,15 +6244,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6789
6244
|
}, {
|
|
6790
6245
|
kind: "base64";
|
|
6791
6246
|
data: string;
|
|
6792
|
-
}>, z.ZodObject<{
|
|
6793
|
-
kind: z.ZodLiteral<"text">;
|
|
6794
|
-
text: z.ZodString;
|
|
6795
|
-
}, "strict", z.ZodTypeAny, {
|
|
6796
|
-
text: string;
|
|
6797
|
-
kind: "text";
|
|
6798
|
-
}, {
|
|
6799
|
-
text: string;
|
|
6800
|
-
kind: "text";
|
|
6801
6247
|
}>, z.ZodObject<{
|
|
6802
6248
|
kind: z.ZodLiteral<"path">;
|
|
6803
6249
|
path: z.ZodString;
|
|
@@ -6816,9 +6262,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6816
6262
|
} | {
|
|
6817
6263
|
kind: "base64";
|
|
6818
6264
|
data: string;
|
|
6819
|
-
} | {
|
|
6820
|
-
text: string;
|
|
6821
|
-
kind: "text";
|
|
6822
6265
|
} | {
|
|
6823
6266
|
path: string;
|
|
6824
6267
|
kind: "path";
|
|
@@ -6831,9 +6274,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6831
6274
|
} | {
|
|
6832
6275
|
kind: "base64";
|
|
6833
6276
|
data: string;
|
|
6834
|
-
} | {
|
|
6835
|
-
text: string;
|
|
6836
|
-
kind: "text";
|
|
6837
6277
|
} | {
|
|
6838
6278
|
path: string;
|
|
6839
6279
|
kind: "path";
|
|
@@ -6996,9 +6436,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6996
6436
|
} | {
|
|
6997
6437
|
kind: "base64";
|
|
6998
6438
|
data: string;
|
|
6999
|
-
} | {
|
|
7000
|
-
text: string;
|
|
7001
|
-
kind: "text";
|
|
7002
6439
|
} | {
|
|
7003
6440
|
path: string;
|
|
7004
6441
|
kind: "path";
|
|
@@ -7011,9 +6448,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7011
6448
|
} | {
|
|
7012
6449
|
kind: "base64";
|
|
7013
6450
|
data: string;
|
|
7014
|
-
} | {
|
|
7015
|
-
text: string;
|
|
7016
|
-
kind: "text";
|
|
7017
6451
|
} | {
|
|
7018
6452
|
path: string;
|
|
7019
6453
|
kind: "path";
|
|
@@ -7026,9 +6460,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7026
6460
|
} | {
|
|
7027
6461
|
kind: "base64";
|
|
7028
6462
|
data: string;
|
|
7029
|
-
} | {
|
|
7030
|
-
text: string;
|
|
7031
|
-
kind: "text";
|
|
7032
6463
|
} | {
|
|
7033
6464
|
path: string;
|
|
7034
6465
|
kind: "path";
|
|
@@ -7041,9 +6472,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7041
6472
|
} | {
|
|
7042
6473
|
kind: "base64";
|
|
7043
6474
|
data: string;
|
|
7044
|
-
} | {
|
|
7045
|
-
text: string;
|
|
7046
|
-
kind: "text";
|
|
7047
6475
|
} | {
|
|
7048
6476
|
path: string;
|
|
7049
6477
|
kind: "path";
|
|
@@ -7098,9 +6526,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7098
6526
|
} | {
|
|
7099
6527
|
kind: "base64";
|
|
7100
6528
|
data: string;
|
|
7101
|
-
} | {
|
|
7102
|
-
text: string;
|
|
7103
|
-
kind: "text";
|
|
7104
6529
|
} | {
|
|
7105
6530
|
path: string;
|
|
7106
6531
|
kind: "path";
|
|
@@ -7181,9 +6606,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7181
6606
|
} | {
|
|
7182
6607
|
kind: "base64";
|
|
7183
6608
|
data: string;
|
|
7184
|
-
} | {
|
|
7185
|
-
text: string;
|
|
7186
|
-
kind: "text";
|
|
7187
6609
|
} | {
|
|
7188
6610
|
path: string;
|
|
7189
6611
|
kind: "path";
|
|
@@ -7196,9 +6618,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7196
6618
|
} | {
|
|
7197
6619
|
kind: "base64";
|
|
7198
6620
|
data: string;
|
|
7199
|
-
} | {
|
|
7200
|
-
text: string;
|
|
7201
|
-
kind: "text";
|
|
7202
6621
|
} | {
|
|
7203
6622
|
path: string;
|
|
7204
6623
|
kind: "path";
|
|
@@ -7211,9 +6630,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7211
6630
|
} | {
|
|
7212
6631
|
kind: "base64";
|
|
7213
6632
|
data: string;
|
|
7214
|
-
} | {
|
|
7215
|
-
text: string;
|
|
7216
|
-
kind: "text";
|
|
7217
6633
|
} | {
|
|
7218
6634
|
path: string;
|
|
7219
6635
|
kind: "path";
|
|
@@ -7226,9 +6642,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7226
6642
|
} | {
|
|
7227
6643
|
kind: "base64";
|
|
7228
6644
|
data: string;
|
|
7229
|
-
} | {
|
|
7230
|
-
text: string;
|
|
7231
|
-
kind: "text";
|
|
7232
6645
|
} | {
|
|
7233
6646
|
path: string;
|
|
7234
6647
|
kind: "path";
|
|
@@ -7283,9 +6696,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7283
6696
|
} | {
|
|
7284
6697
|
kind: "base64";
|
|
7285
6698
|
data: string;
|
|
7286
|
-
} | {
|
|
7287
|
-
text: string;
|
|
7288
|
-
kind: "text";
|
|
7289
6699
|
} | {
|
|
7290
6700
|
path: string;
|
|
7291
6701
|
kind: "path";
|
|
@@ -7366,9 +6776,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7366
6776
|
} | {
|
|
7367
6777
|
kind: "base64";
|
|
7368
6778
|
data: string;
|
|
7369
|
-
} | {
|
|
7370
|
-
text: string;
|
|
7371
|
-
kind: "text";
|
|
7372
6779
|
} | {
|
|
7373
6780
|
path: string;
|
|
7374
6781
|
kind: "path";
|
|
@@ -7397,9 +6804,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7397
6804
|
} | {
|
|
7398
6805
|
kind: "base64";
|
|
7399
6806
|
data: string;
|
|
7400
|
-
} | {
|
|
7401
|
-
text: string;
|
|
7402
|
-
kind: "text";
|
|
7403
6807
|
} | {
|
|
7404
6808
|
path: string;
|
|
7405
6809
|
kind: "path";
|
|
@@ -7457,9 +6861,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7457
6861
|
} | {
|
|
7458
6862
|
kind: "base64";
|
|
7459
6863
|
data: string;
|
|
7460
|
-
} | {
|
|
7461
|
-
text: string;
|
|
7462
|
-
kind: "text";
|
|
7463
6864
|
} | {
|
|
7464
6865
|
path: string;
|
|
7465
6866
|
kind: "path";
|
|
@@ -7472,9 +6873,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7472
6873
|
} | {
|
|
7473
6874
|
kind: "base64";
|
|
7474
6875
|
data: string;
|
|
7475
|
-
} | {
|
|
7476
|
-
text: string;
|
|
7477
|
-
kind: "text";
|
|
7478
6876
|
} | {
|
|
7479
6877
|
path: string;
|
|
7480
6878
|
kind: "path";
|
|
@@ -7487,9 +6885,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7487
6885
|
} | {
|
|
7488
6886
|
kind: "base64";
|
|
7489
6887
|
data: string;
|
|
7490
|
-
} | {
|
|
7491
|
-
text: string;
|
|
7492
|
-
kind: "text";
|
|
7493
6888
|
} | {
|
|
7494
6889
|
path: string;
|
|
7495
6890
|
kind: "path";
|
|
@@ -7502,9 +6897,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7502
6897
|
} | {
|
|
7503
6898
|
kind: "base64";
|
|
7504
6899
|
data: string;
|
|
7505
|
-
} | {
|
|
7506
|
-
text: string;
|
|
7507
|
-
kind: "text";
|
|
7508
6900
|
} | {
|
|
7509
6901
|
path: string;
|
|
7510
6902
|
kind: "path";
|
|
@@ -7559,9 +6951,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7559
6951
|
} | {
|
|
7560
6952
|
kind: "base64";
|
|
7561
6953
|
data: string;
|
|
7562
|
-
} | {
|
|
7563
|
-
text: string;
|
|
7564
|
-
kind: "text";
|
|
7565
6954
|
} | {
|
|
7566
6955
|
path: string;
|
|
7567
6956
|
kind: "path";
|
|
@@ -7685,9 +7074,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7685
7074
|
} | {
|
|
7686
7075
|
kind: "base64";
|
|
7687
7076
|
data: string;
|
|
7688
|
-
} | {
|
|
7689
|
-
text: string;
|
|
7690
|
-
kind: "text";
|
|
7691
7077
|
} | {
|
|
7692
7078
|
path: string;
|
|
7693
7079
|
kind: "path";
|
|
@@ -7700,9 +7086,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7700
7086
|
} | {
|
|
7701
7087
|
kind: "base64";
|
|
7702
7088
|
data: string;
|
|
7703
|
-
} | {
|
|
7704
|
-
text: string;
|
|
7705
|
-
kind: "text";
|
|
7706
7089
|
} | {
|
|
7707
7090
|
path: string;
|
|
7708
7091
|
kind: "path";
|
|
@@ -7715,9 +7098,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7715
7098
|
} | {
|
|
7716
7099
|
kind: "base64";
|
|
7717
7100
|
data: string;
|
|
7718
|
-
} | {
|
|
7719
|
-
text: string;
|
|
7720
|
-
kind: "text";
|
|
7721
7101
|
} | {
|
|
7722
7102
|
path: string;
|
|
7723
7103
|
kind: "path";
|
|
@@ -7730,9 +7110,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7730
7110
|
} | {
|
|
7731
7111
|
kind: "base64";
|
|
7732
7112
|
data: string;
|
|
7733
|
-
} | {
|
|
7734
|
-
text: string;
|
|
7735
|
-
kind: "text";
|
|
7736
7113
|
} | {
|
|
7737
7114
|
path: string;
|
|
7738
7115
|
kind: "path";
|
|
@@ -7787,9 +7164,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7787
7164
|
} | {
|
|
7788
7165
|
kind: "base64";
|
|
7789
7166
|
data: string;
|
|
7790
|
-
} | {
|
|
7791
|
-
text: string;
|
|
7792
|
-
kind: "text";
|
|
7793
7167
|
} | {
|
|
7794
7168
|
path: string;
|
|
7795
7169
|
kind: "path";
|
|
@@ -7868,9 +7242,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7868
7242
|
} | {
|
|
7869
7243
|
kind: "base64";
|
|
7870
7244
|
data: string;
|
|
7871
|
-
} | {
|
|
7872
|
-
text: string;
|
|
7873
|
-
kind: "text";
|
|
7874
7245
|
} | {
|
|
7875
7246
|
path: string;
|
|
7876
7247
|
kind: "path";
|
|
@@ -7896,9 +7267,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7896
7267
|
} | {
|
|
7897
7268
|
kind: "base64";
|
|
7898
7269
|
data: string;
|
|
7899
|
-
} | {
|
|
7900
|
-
text: string;
|
|
7901
|
-
kind: "text";
|
|
7902
7270
|
} | {
|
|
7903
7271
|
path: string;
|
|
7904
7272
|
kind: "path";
|
|
@@ -8061,9 +7429,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8061
7429
|
} | {
|
|
8062
7430
|
kind: "base64";
|
|
8063
7431
|
data: string;
|
|
8064
|
-
} | {
|
|
8065
|
-
text: string;
|
|
8066
|
-
kind: "text";
|
|
8067
7432
|
} | {
|
|
8068
7433
|
path: string;
|
|
8069
7434
|
kind: "path";
|
|
@@ -8092,9 +7457,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8092
7457
|
} | {
|
|
8093
7458
|
kind: "base64";
|
|
8094
7459
|
data: string;
|
|
8095
|
-
} | {
|
|
8096
|
-
text: string;
|
|
8097
|
-
kind: "text";
|
|
8098
7460
|
} | {
|
|
8099
7461
|
path: string;
|
|
8100
7462
|
kind: "path";
|
|
@@ -8152,9 +7514,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8152
7514
|
} | {
|
|
8153
7515
|
kind: "base64";
|
|
8154
7516
|
data: string;
|
|
8155
|
-
} | {
|
|
8156
|
-
text: string;
|
|
8157
|
-
kind: "text";
|
|
8158
7517
|
} | {
|
|
8159
7518
|
path: string;
|
|
8160
7519
|
kind: "path";
|
|
@@ -8167,9 +7526,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8167
7526
|
} | {
|
|
8168
7527
|
kind: "base64";
|
|
8169
7528
|
data: string;
|
|
8170
|
-
} | {
|
|
8171
|
-
text: string;
|
|
8172
|
-
kind: "text";
|
|
8173
7529
|
} | {
|
|
8174
7530
|
path: string;
|
|
8175
7531
|
kind: "path";
|
|
@@ -8182,9 +7538,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8182
7538
|
} | {
|
|
8183
7539
|
kind: "base64";
|
|
8184
7540
|
data: string;
|
|
8185
|
-
} | {
|
|
8186
|
-
text: string;
|
|
8187
|
-
kind: "text";
|
|
8188
7541
|
} | {
|
|
8189
7542
|
path: string;
|
|
8190
7543
|
kind: "path";
|
|
@@ -8197,9 +7550,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8197
7550
|
} | {
|
|
8198
7551
|
kind: "base64";
|
|
8199
7552
|
data: string;
|
|
8200
|
-
} | {
|
|
8201
|
-
text: string;
|
|
8202
|
-
kind: "text";
|
|
8203
7553
|
} | {
|
|
8204
7554
|
path: string;
|
|
8205
7555
|
kind: "path";
|
|
@@ -8254,9 +7604,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8254
7604
|
} | {
|
|
8255
7605
|
kind: "base64";
|
|
8256
7606
|
data: string;
|
|
8257
|
-
} | {
|
|
8258
|
-
text: string;
|
|
8259
|
-
kind: "text";
|
|
8260
7607
|
} | {
|
|
8261
7608
|
path: string;
|
|
8262
7609
|
kind: "path";
|
|
@@ -8402,9 +7749,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8402
7749
|
} | {
|
|
8403
7750
|
kind: "base64";
|
|
8404
7751
|
data: string;
|
|
8405
|
-
} | {
|
|
8406
|
-
text: string;
|
|
8407
|
-
kind: "text";
|
|
8408
7752
|
} | {
|
|
8409
7753
|
path: string;
|
|
8410
7754
|
kind: "path";
|
|
@@ -8417,9 +7761,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8417
7761
|
} | {
|
|
8418
7762
|
kind: "base64";
|
|
8419
7763
|
data: string;
|
|
8420
|
-
} | {
|
|
8421
|
-
text: string;
|
|
8422
|
-
kind: "text";
|
|
8423
7764
|
} | {
|
|
8424
7765
|
path: string;
|
|
8425
7766
|
kind: "path";
|
|
@@ -8432,9 +7773,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8432
7773
|
} | {
|
|
8433
7774
|
kind: "base64";
|
|
8434
7775
|
data: string;
|
|
8435
|
-
} | {
|
|
8436
|
-
text: string;
|
|
8437
|
-
kind: "text";
|
|
8438
7776
|
} | {
|
|
8439
7777
|
path: string;
|
|
8440
7778
|
kind: "path";
|
|
@@ -8447,9 +7785,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8447
7785
|
} | {
|
|
8448
7786
|
kind: "base64";
|
|
8449
7787
|
data: string;
|
|
8450
|
-
} | {
|
|
8451
|
-
text: string;
|
|
8452
|
-
kind: "text";
|
|
8453
7788
|
} | {
|
|
8454
7789
|
path: string;
|
|
8455
7790
|
kind: "path";
|
|
@@ -8504,9 +7839,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8504
7839
|
} | {
|
|
8505
7840
|
kind: "base64";
|
|
8506
7841
|
data: string;
|
|
8507
|
-
} | {
|
|
8508
|
-
text: string;
|
|
8509
|
-
kind: "text";
|
|
8510
7842
|
} | {
|
|
8511
7843
|
path: string;
|
|
8512
7844
|
kind: "path";
|
|
@@ -8585,9 +7917,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8585
7917
|
} | {
|
|
8586
7918
|
kind: "base64";
|
|
8587
7919
|
data: string;
|
|
8588
|
-
} | {
|
|
8589
|
-
text: string;
|
|
8590
|
-
kind: "text";
|
|
8591
7920
|
} | {
|
|
8592
7921
|
path: string;
|
|
8593
7922
|
kind: "path";
|
|
@@ -8613,9 +7942,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8613
7942
|
} | {
|
|
8614
7943
|
kind: "base64";
|
|
8615
7944
|
data: string;
|
|
8616
|
-
} | {
|
|
8617
|
-
text: string;
|
|
8618
|
-
kind: "text";
|
|
8619
7945
|
} | {
|
|
8620
7946
|
path: string;
|
|
8621
7947
|
kind: "path";
|
|
@@ -8891,15 +8217,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8891
8217
|
}, {
|
|
8892
8218
|
kind: "base64";
|
|
8893
8219
|
data: string;
|
|
8894
|
-
}>, z.ZodObject<{
|
|
8895
|
-
kind: z.ZodLiteral<"text">;
|
|
8896
|
-
text: z.ZodString;
|
|
8897
|
-
}, "strict", z.ZodTypeAny, {
|
|
8898
|
-
text: string;
|
|
8899
|
-
kind: "text";
|
|
8900
|
-
}, {
|
|
8901
|
-
text: string;
|
|
8902
|
-
kind: "text";
|
|
8903
8220
|
}>, z.ZodObject<{
|
|
8904
8221
|
kind: z.ZodLiteral<"path">;
|
|
8905
8222
|
path: z.ZodString;
|
|
@@ -8918,9 +8235,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8918
8235
|
} | {
|
|
8919
8236
|
kind: "base64";
|
|
8920
8237
|
data: string;
|
|
8921
|
-
} | {
|
|
8922
|
-
text: string;
|
|
8923
|
-
kind: "text";
|
|
8924
8238
|
} | {
|
|
8925
8239
|
path: string;
|
|
8926
8240
|
kind: "path";
|
|
@@ -8933,9 +8247,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8933
8247
|
} | {
|
|
8934
8248
|
kind: "base64";
|
|
8935
8249
|
data: string;
|
|
8936
|
-
} | {
|
|
8937
|
-
text: string;
|
|
8938
|
-
kind: "text";
|
|
8939
8250
|
} | {
|
|
8940
8251
|
path: string;
|
|
8941
8252
|
kind: "path";
|
|
@@ -8959,9 +8270,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8959
8270
|
} | {
|
|
8960
8271
|
kind: "base64";
|
|
8961
8272
|
data: string;
|
|
8962
|
-
} | {
|
|
8963
|
-
text: string;
|
|
8964
|
-
kind: "text";
|
|
8965
8273
|
} | {
|
|
8966
8274
|
path: string;
|
|
8967
8275
|
kind: "path";
|
|
@@ -8984,9 +8292,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8984
8292
|
} | {
|
|
8985
8293
|
kind: "base64";
|
|
8986
8294
|
data: string;
|
|
8987
|
-
} | {
|
|
8988
|
-
text: string;
|
|
8989
|
-
kind: "text";
|
|
8990
8295
|
} | {
|
|
8991
8296
|
path: string;
|
|
8992
8297
|
kind: "path";
|
|
@@ -9113,15 +8418,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9113
8418
|
}, {
|
|
9114
8419
|
kind: "base64";
|
|
9115
8420
|
data: string;
|
|
9116
|
-
}>, z.ZodObject<{
|
|
9117
|
-
kind: z.ZodLiteral<"text">;
|
|
9118
|
-
text: z.ZodString;
|
|
9119
|
-
}, "strict", z.ZodTypeAny, {
|
|
9120
|
-
text: string;
|
|
9121
|
-
kind: "text";
|
|
9122
|
-
}, {
|
|
9123
|
-
text: string;
|
|
9124
|
-
kind: "text";
|
|
9125
8421
|
}>, z.ZodObject<{
|
|
9126
8422
|
kind: z.ZodLiteral<"path">;
|
|
9127
8423
|
path: z.ZodString;
|
|
@@ -9149,9 +8445,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9149
8445
|
} | {
|
|
9150
8446
|
kind: "base64";
|
|
9151
8447
|
data: string;
|
|
9152
|
-
} | {
|
|
9153
|
-
text: string;
|
|
9154
|
-
kind: "text";
|
|
9155
8448
|
} | {
|
|
9156
8449
|
path: string;
|
|
9157
8450
|
kind: "path";
|
|
@@ -9167,9 +8460,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9167
8460
|
} | {
|
|
9168
8461
|
kind: "base64";
|
|
9169
8462
|
data: string;
|
|
9170
|
-
} | {
|
|
9171
|
-
text: string;
|
|
9172
|
-
kind: "text";
|
|
9173
8463
|
} | {
|
|
9174
8464
|
path: string;
|
|
9175
8465
|
kind: "path";
|
|
@@ -9188,9 +8478,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9188
8478
|
} | {
|
|
9189
8479
|
kind: "base64";
|
|
9190
8480
|
data: string;
|
|
9191
|
-
} | {
|
|
9192
|
-
text: string;
|
|
9193
|
-
kind: "text";
|
|
9194
8481
|
} | {
|
|
9195
8482
|
path: string;
|
|
9196
8483
|
kind: "path";
|
|
@@ -9219,9 +8506,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9219
8506
|
} | {
|
|
9220
8507
|
kind: "base64";
|
|
9221
8508
|
data: string;
|
|
9222
|
-
} | {
|
|
9223
|
-
text: string;
|
|
9224
|
-
kind: "text";
|
|
9225
8509
|
} | {
|
|
9226
8510
|
path: string;
|
|
9227
8511
|
kind: "path";
|
|
@@ -9303,9 +8587,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9303
8587
|
} | {
|
|
9304
8588
|
kind: "base64";
|
|
9305
8589
|
data: string;
|
|
9306
|
-
} | {
|
|
9307
|
-
text: string;
|
|
9308
|
-
kind: "text";
|
|
9309
8590
|
} | {
|
|
9310
8591
|
path: string;
|
|
9311
8592
|
kind: "path";
|
|
@@ -9331,9 +8612,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9331
8612
|
} | {
|
|
9332
8613
|
kind: "base64";
|
|
9333
8614
|
data: string;
|
|
9334
|
-
} | {
|
|
9335
|
-
text: string;
|
|
9336
|
-
kind: "text";
|
|
9337
8615
|
} | {
|
|
9338
8616
|
path: string;
|
|
9339
8617
|
kind: "path";
|
|
@@ -9416,9 +8694,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9416
8694
|
} | {
|
|
9417
8695
|
kind: "base64";
|
|
9418
8696
|
data: string;
|
|
9419
|
-
} | {
|
|
9420
|
-
text: string;
|
|
9421
|
-
kind: "text";
|
|
9422
8697
|
} | {
|
|
9423
8698
|
path: string;
|
|
9424
8699
|
kind: "path";
|
|
@@ -9447,9 +8722,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9447
8722
|
} | {
|
|
9448
8723
|
kind: "base64";
|
|
9449
8724
|
data: string;
|
|
9450
|
-
} | {
|
|
9451
|
-
text: string;
|
|
9452
|
-
kind: "text";
|
|
9453
8725
|
} | {
|
|
9454
8726
|
path: string;
|
|
9455
8727
|
kind: "path";
|
|
@@ -9537,9 +8809,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9537
8809
|
} | {
|
|
9538
8810
|
kind: "base64";
|
|
9539
8811
|
data: string;
|
|
9540
|
-
} | {
|
|
9541
|
-
text: string;
|
|
9542
|
-
kind: "text";
|
|
9543
8812
|
} | {
|
|
9544
8813
|
path: string;
|
|
9545
8814
|
kind: "path";
|
|
@@ -9565,9 +8834,6 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9565
8834
|
} | {
|
|
9566
8835
|
kind: "base64";
|
|
9567
8836
|
data: string;
|
|
9568
|
-
} | {
|
|
9569
|
-
text: string;
|
|
9570
|
-
kind: "text";
|
|
9571
8837
|
} | {
|
|
9572
8838
|
path: string;
|
|
9573
8839
|
kind: "path";
|
|
@@ -9834,15 +9100,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9834
9100
|
}, {
|
|
9835
9101
|
kind: "base64";
|
|
9836
9102
|
data: string;
|
|
9837
|
-
}>, z.ZodObject<{
|
|
9838
|
-
kind: z.ZodLiteral<"text">;
|
|
9839
|
-
text: z.ZodString;
|
|
9840
|
-
}, "strict", z.ZodTypeAny, {
|
|
9841
|
-
text: string;
|
|
9842
|
-
kind: "text";
|
|
9843
|
-
}, {
|
|
9844
|
-
text: string;
|
|
9845
|
-
kind: "text";
|
|
9846
9103
|
}>, z.ZodObject<{
|
|
9847
9104
|
kind: z.ZodLiteral<"path">;
|
|
9848
9105
|
path: z.ZodString;
|
|
@@ -9861,9 +9118,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9861
9118
|
} | {
|
|
9862
9119
|
kind: "base64";
|
|
9863
9120
|
data: string;
|
|
9864
|
-
} | {
|
|
9865
|
-
text: string;
|
|
9866
|
-
kind: "text";
|
|
9867
9121
|
} | {
|
|
9868
9122
|
path: string;
|
|
9869
9123
|
kind: "path";
|
|
@@ -9876,9 +9130,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9876
9130
|
} | {
|
|
9877
9131
|
kind: "base64";
|
|
9878
9132
|
data: string;
|
|
9879
|
-
} | {
|
|
9880
|
-
text: string;
|
|
9881
|
-
kind: "text";
|
|
9882
9133
|
} | {
|
|
9883
9134
|
path: string;
|
|
9884
9135
|
kind: "path";
|
|
@@ -9902,9 +9153,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9902
9153
|
} | {
|
|
9903
9154
|
kind: "base64";
|
|
9904
9155
|
data: string;
|
|
9905
|
-
} | {
|
|
9906
|
-
text: string;
|
|
9907
|
-
kind: "text";
|
|
9908
9156
|
} | {
|
|
9909
9157
|
path: string;
|
|
9910
9158
|
kind: "path";
|
|
@@ -9927,9 +9175,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9927
9175
|
} | {
|
|
9928
9176
|
kind: "base64";
|
|
9929
9177
|
data: string;
|
|
9930
|
-
} | {
|
|
9931
|
-
text: string;
|
|
9932
|
-
kind: "text";
|
|
9933
9178
|
} | {
|
|
9934
9179
|
path: string;
|
|
9935
9180
|
kind: "path";
|
|
@@ -10056,15 +9301,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10056
9301
|
}, {
|
|
10057
9302
|
kind: "base64";
|
|
10058
9303
|
data: string;
|
|
10059
|
-
}>, z.ZodObject<{
|
|
10060
|
-
kind: z.ZodLiteral<"text">;
|
|
10061
|
-
text: z.ZodString;
|
|
10062
|
-
}, "strict", z.ZodTypeAny, {
|
|
10063
|
-
text: string;
|
|
10064
|
-
kind: "text";
|
|
10065
|
-
}, {
|
|
10066
|
-
text: string;
|
|
10067
|
-
kind: "text";
|
|
10068
9304
|
}>, z.ZodObject<{
|
|
10069
9305
|
kind: z.ZodLiteral<"path">;
|
|
10070
9306
|
path: z.ZodString;
|
|
@@ -10092,9 +9328,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10092
9328
|
} | {
|
|
10093
9329
|
kind: "base64";
|
|
10094
9330
|
data: string;
|
|
10095
|
-
} | {
|
|
10096
|
-
text: string;
|
|
10097
|
-
kind: "text";
|
|
10098
9331
|
} | {
|
|
10099
9332
|
path: string;
|
|
10100
9333
|
kind: "path";
|
|
@@ -10110,9 +9343,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10110
9343
|
} | {
|
|
10111
9344
|
kind: "base64";
|
|
10112
9345
|
data: string;
|
|
10113
|
-
} | {
|
|
10114
|
-
text: string;
|
|
10115
|
-
kind: "text";
|
|
10116
9346
|
} | {
|
|
10117
9347
|
path: string;
|
|
10118
9348
|
kind: "path";
|
|
@@ -10131,9 +9361,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10131
9361
|
} | {
|
|
10132
9362
|
kind: "base64";
|
|
10133
9363
|
data: string;
|
|
10134
|
-
} | {
|
|
10135
|
-
text: string;
|
|
10136
|
-
kind: "text";
|
|
10137
9364
|
} | {
|
|
10138
9365
|
path: string;
|
|
10139
9366
|
kind: "path";
|
|
@@ -10162,9 +9389,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10162
9389
|
} | {
|
|
10163
9390
|
kind: "base64";
|
|
10164
9391
|
data: string;
|
|
10165
|
-
} | {
|
|
10166
|
-
text: string;
|
|
10167
|
-
kind: "text";
|
|
10168
9392
|
} | {
|
|
10169
9393
|
path: string;
|
|
10170
9394
|
kind: "path";
|
|
@@ -10246,9 +9470,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10246
9470
|
} | {
|
|
10247
9471
|
kind: "base64";
|
|
10248
9472
|
data: string;
|
|
10249
|
-
} | {
|
|
10250
|
-
text: string;
|
|
10251
|
-
kind: "text";
|
|
10252
9473
|
} | {
|
|
10253
9474
|
path: string;
|
|
10254
9475
|
kind: "path";
|
|
@@ -10274,9 +9495,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10274
9495
|
} | {
|
|
10275
9496
|
kind: "base64";
|
|
10276
9497
|
data: string;
|
|
10277
|
-
} | {
|
|
10278
|
-
text: string;
|
|
10279
|
-
kind: "text";
|
|
10280
9498
|
} | {
|
|
10281
9499
|
path: string;
|
|
10282
9500
|
kind: "path";
|
|
@@ -10362,9 +9580,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10362
9580
|
} | {
|
|
10363
9581
|
kind: "base64";
|
|
10364
9582
|
data: string;
|
|
10365
|
-
} | {
|
|
10366
|
-
text: string;
|
|
10367
|
-
kind: "text";
|
|
10368
9583
|
} | {
|
|
10369
9584
|
path: string;
|
|
10370
9585
|
kind: "path";
|
|
@@ -10393,9 +9608,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10393
9608
|
} | {
|
|
10394
9609
|
kind: "base64";
|
|
10395
9610
|
data: string;
|
|
10396
|
-
} | {
|
|
10397
|
-
text: string;
|
|
10398
|
-
kind: "text";
|
|
10399
9611
|
} | {
|
|
10400
9612
|
path: string;
|
|
10401
9613
|
kind: "path";
|
|
@@ -10484,9 +9696,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10484
9696
|
} | {
|
|
10485
9697
|
kind: "base64";
|
|
10486
9698
|
data: string;
|
|
10487
|
-
} | {
|
|
10488
|
-
text: string;
|
|
10489
|
-
kind: "text";
|
|
10490
9699
|
} | {
|
|
10491
9700
|
path: string;
|
|
10492
9701
|
kind: "path";
|
|
@@ -10512,9 +9721,6 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10512
9721
|
} | {
|
|
10513
9722
|
kind: "base64";
|
|
10514
9723
|
data: string;
|
|
10515
|
-
} | {
|
|
10516
|
-
text: string;
|
|
10517
|
-
kind: "text";
|
|
10518
9724
|
} | {
|
|
10519
9725
|
path: string;
|
|
10520
9726
|
kind: "path";
|