@platforma-sdk/block-tools 2.3.1 → 2.3.3
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +33 -33
- package/dist/index.mjs.map +1 -1
- package/dist/io/folder_reader.d.ts.map +1 -1
- package/dist/v2/model/block_description.d.ts +360 -0
- package/dist/v2/model/block_description.d.ts.map +1 -1
- package/dist/v2/model/block_meta.d.ts +231 -0
- package/dist/v2/model/block_meta.d.ts.map +1 -1
- package/dist/v2/registry/schema_public.d.ts +466 -0
- package/dist/v2/registry/schema_public.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/io/folder_reader.ts +2 -0
- package/src/v2/registry/registry_reader.test.ts +19 -0
|
@@ -58,6 +58,61 @@ export declare function BlockPackMetaDescription(root: string): z.ZodObject<{
|
|
|
58
58
|
type: "absolute-file";
|
|
59
59
|
file: string;
|
|
60
60
|
}>>;
|
|
61
|
+
changelog: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodString, {
|
|
62
|
+
type: "explicit-string";
|
|
63
|
+
content: string;
|
|
64
|
+
} | {
|
|
65
|
+
type: "relative";
|
|
66
|
+
path: string;
|
|
67
|
+
}, string>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
68
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
69
|
+
content: z.ZodString;
|
|
70
|
+
}, "strict", z.ZodTypeAny, {
|
|
71
|
+
type: "explicit-string";
|
|
72
|
+
content: string;
|
|
73
|
+
}, {
|
|
74
|
+
type: "explicit-string";
|
|
75
|
+
content: string;
|
|
76
|
+
}>, z.ZodObject<{
|
|
77
|
+
type: z.ZodLiteral<"relative">;
|
|
78
|
+
path: z.ZodString;
|
|
79
|
+
}, "strict", z.ZodTypeAny, {
|
|
80
|
+
type: "relative";
|
|
81
|
+
path: string;
|
|
82
|
+
}, {
|
|
83
|
+
type: "relative";
|
|
84
|
+
path: string;
|
|
85
|
+
}>, z.ZodObject<{
|
|
86
|
+
type: z.ZodLiteral<"absolute-file">;
|
|
87
|
+
file: z.ZodString;
|
|
88
|
+
}, "strict", z.ZodTypeAny, {
|
|
89
|
+
type: "absolute-file";
|
|
90
|
+
file: string;
|
|
91
|
+
}, {
|
|
92
|
+
type: "absolute-file";
|
|
93
|
+
file: string;
|
|
94
|
+
}>]>]>, {
|
|
95
|
+
type: "absolute-file";
|
|
96
|
+
file: string;
|
|
97
|
+
} | {
|
|
98
|
+
type: "explicit-string";
|
|
99
|
+
content: string;
|
|
100
|
+
} | {
|
|
101
|
+
type: "explicit-string";
|
|
102
|
+
content: string;
|
|
103
|
+
} | {
|
|
104
|
+
type: "absolute-file";
|
|
105
|
+
file: string;
|
|
106
|
+
}, string | {
|
|
107
|
+
type: "explicit-string";
|
|
108
|
+
content: string;
|
|
109
|
+
} | {
|
|
110
|
+
type: "relative";
|
|
111
|
+
path: string;
|
|
112
|
+
} | {
|
|
113
|
+
type: "absolute-file";
|
|
114
|
+
file: string;
|
|
115
|
+
}>>;
|
|
61
116
|
logo: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodString, {
|
|
62
117
|
type: "explicit-base64";
|
|
63
118
|
content: string;
|
|
@@ -257,6 +312,19 @@ export declare function BlockPackMetaDescription(root: string): z.ZodObject<{
|
|
|
257
312
|
type: "absolute-file";
|
|
258
313
|
file: string;
|
|
259
314
|
} | undefined;
|
|
315
|
+
changelog?: {
|
|
316
|
+
type: "absolute-file";
|
|
317
|
+
file: string;
|
|
318
|
+
} | {
|
|
319
|
+
type: "explicit-string";
|
|
320
|
+
content: string;
|
|
321
|
+
} | {
|
|
322
|
+
type: "explicit-string";
|
|
323
|
+
content: string;
|
|
324
|
+
} | {
|
|
325
|
+
type: "absolute-file";
|
|
326
|
+
file: string;
|
|
327
|
+
} | undefined;
|
|
260
328
|
logo?: {
|
|
261
329
|
type: "absolute-file";
|
|
262
330
|
file: string;
|
|
@@ -304,6 +372,16 @@ export declare function BlockPackMetaDescription(root: string): z.ZodObject<{
|
|
|
304
372
|
type: "absolute-file";
|
|
305
373
|
file: string;
|
|
306
374
|
} | undefined;
|
|
375
|
+
changelog?: string | {
|
|
376
|
+
type: "explicit-string";
|
|
377
|
+
content: string;
|
|
378
|
+
} | {
|
|
379
|
+
type: "relative";
|
|
380
|
+
path: string;
|
|
381
|
+
} | {
|
|
382
|
+
type: "absolute-file";
|
|
383
|
+
file: string;
|
|
384
|
+
} | undefined;
|
|
307
385
|
logo?: string | {
|
|
308
386
|
type: "explicit-base64";
|
|
309
387
|
content: string;
|
|
@@ -355,6 +433,37 @@ export declare function BlockPackMetaConsolidate(dstFolder: string, fileAccumula
|
|
|
355
433
|
type: "absolute-file";
|
|
356
434
|
file: string;
|
|
357
435
|
}>>;
|
|
436
|
+
changelog: z.ZodOptional<z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
437
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
438
|
+
content: z.ZodString;
|
|
439
|
+
}, "strict", z.ZodTypeAny, {
|
|
440
|
+
type: "explicit-string";
|
|
441
|
+
content: string;
|
|
442
|
+
}, {
|
|
443
|
+
type: "explicit-string";
|
|
444
|
+
content: string;
|
|
445
|
+
}>, z.ZodObject<{
|
|
446
|
+
type: z.ZodLiteral<"absolute-file">;
|
|
447
|
+
file: z.ZodString;
|
|
448
|
+
}, "strict", z.ZodTypeAny, {
|
|
449
|
+
type: "absolute-file";
|
|
450
|
+
file: string;
|
|
451
|
+
}, {
|
|
452
|
+
type: "absolute-file";
|
|
453
|
+
file: string;
|
|
454
|
+
}>]>, {
|
|
455
|
+
type: "relative";
|
|
456
|
+
path: string;
|
|
457
|
+
} | {
|
|
458
|
+
type: "explicit-string";
|
|
459
|
+
content: string;
|
|
460
|
+
}, {
|
|
461
|
+
type: "explicit-string";
|
|
462
|
+
content: string;
|
|
463
|
+
} | {
|
|
464
|
+
type: "absolute-file";
|
|
465
|
+
file: string;
|
|
466
|
+
}>>;
|
|
358
467
|
logo: z.ZodOptional<z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
359
468
|
type: z.ZodLiteral<"explicit-base64">;
|
|
360
469
|
mimeType: z.ZodString;
|
|
@@ -479,6 +588,13 @@ export declare function BlockPackMetaConsolidate(dstFolder: string, fileAccumula
|
|
|
479
588
|
type: "explicit-string";
|
|
480
589
|
content: string;
|
|
481
590
|
} | undefined;
|
|
591
|
+
changelog?: {
|
|
592
|
+
type: "relative";
|
|
593
|
+
path: string;
|
|
594
|
+
} | {
|
|
595
|
+
type: "explicit-string";
|
|
596
|
+
content: string;
|
|
597
|
+
} | undefined;
|
|
482
598
|
logo?: {
|
|
483
599
|
type: "relative";
|
|
484
600
|
path: string;
|
|
@@ -513,6 +629,13 @@ export declare function BlockPackMetaConsolidate(dstFolder: string, fileAccumula
|
|
|
513
629
|
type: "absolute-file";
|
|
514
630
|
file: string;
|
|
515
631
|
} | undefined;
|
|
632
|
+
changelog?: {
|
|
633
|
+
type: "explicit-string";
|
|
634
|
+
content: string;
|
|
635
|
+
} | {
|
|
636
|
+
type: "absolute-file";
|
|
637
|
+
file: string;
|
|
638
|
+
} | undefined;
|
|
516
639
|
logo?: {
|
|
517
640
|
type: "explicit-base64";
|
|
518
641
|
content: string;
|
|
@@ -554,6 +677,31 @@ export declare const BlockPackMetaEmbedAbsoluteBase64: z.ZodPipeline<z.ZodObject
|
|
|
554
677
|
type: "absolute-file";
|
|
555
678
|
file: string;
|
|
556
679
|
}>>;
|
|
680
|
+
changelog: z.ZodOptional<z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
681
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
682
|
+
content: z.ZodString;
|
|
683
|
+
}, "strict", z.ZodTypeAny, {
|
|
684
|
+
type: "explicit-string";
|
|
685
|
+
content: string;
|
|
686
|
+
}, {
|
|
687
|
+
type: "explicit-string";
|
|
688
|
+
content: string;
|
|
689
|
+
}>, z.ZodObject<{
|
|
690
|
+
type: z.ZodLiteral<"absolute-file">;
|
|
691
|
+
file: z.ZodString;
|
|
692
|
+
}, "strict", z.ZodTypeAny, {
|
|
693
|
+
type: "absolute-file";
|
|
694
|
+
file: string;
|
|
695
|
+
}, {
|
|
696
|
+
type: "absolute-file";
|
|
697
|
+
file: string;
|
|
698
|
+
}>]>, string, {
|
|
699
|
+
type: "explicit-string";
|
|
700
|
+
content: string;
|
|
701
|
+
} | {
|
|
702
|
+
type: "absolute-file";
|
|
703
|
+
file: string;
|
|
704
|
+
}>>;
|
|
557
705
|
logo: z.ZodOptional<z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
558
706
|
type: z.ZodLiteral<"explicit-base64">;
|
|
559
707
|
mimeType: z.ZodString;
|
|
@@ -660,6 +808,7 @@ export declare const BlockPackMetaEmbedAbsoluteBase64: z.ZodPipeline<z.ZodObject
|
|
|
660
808
|
} | undefined;
|
|
661
809
|
};
|
|
662
810
|
longDescription?: string | undefined;
|
|
811
|
+
changelog?: string | undefined;
|
|
663
812
|
logo?: {
|
|
664
813
|
type: "explicit-base64";
|
|
665
814
|
content: string;
|
|
@@ -691,6 +840,13 @@ export declare const BlockPackMetaEmbedAbsoluteBase64: z.ZodPipeline<z.ZodObject
|
|
|
691
840
|
type: "absolute-file";
|
|
692
841
|
file: string;
|
|
693
842
|
} | undefined;
|
|
843
|
+
changelog?: {
|
|
844
|
+
type: "explicit-string";
|
|
845
|
+
content: string;
|
|
846
|
+
} | {
|
|
847
|
+
type: "absolute-file";
|
|
848
|
+
file: string;
|
|
849
|
+
} | undefined;
|
|
694
850
|
logo?: {
|
|
695
851
|
type: "explicit-base64";
|
|
696
852
|
content: string;
|
|
@@ -707,6 +863,7 @@ export declare const BlockPackMetaEmbedAbsoluteBase64: z.ZodPipeline<z.ZodObject
|
|
|
707
863
|
title: z.ZodString;
|
|
708
864
|
description: z.ZodString;
|
|
709
865
|
longDescription: z.ZodOptional<z.ZodString>;
|
|
866
|
+
changelog: z.ZodOptional<z.ZodString>;
|
|
710
867
|
logo: z.ZodOptional<z.ZodObject<{
|
|
711
868
|
type: z.ZodLiteral<"explicit-base64">;
|
|
712
869
|
mimeType: z.ZodString;
|
|
@@ -771,6 +928,7 @@ export declare const BlockPackMetaEmbedAbsoluteBase64: z.ZodPipeline<z.ZodObject
|
|
|
771
928
|
description: string;
|
|
772
929
|
url?: string | undefined;
|
|
773
930
|
longDescription?: string | undefined;
|
|
931
|
+
changelog?: string | undefined;
|
|
774
932
|
logo?: {
|
|
775
933
|
type: "explicit-base64";
|
|
776
934
|
content: string;
|
|
@@ -793,6 +951,7 @@ export declare const BlockPackMetaEmbedAbsoluteBase64: z.ZodPipeline<z.ZodObject
|
|
|
793
951
|
description: string;
|
|
794
952
|
url?: string | undefined;
|
|
795
953
|
longDescription?: string | undefined;
|
|
954
|
+
changelog?: string | undefined;
|
|
796
955
|
logo?: {
|
|
797
956
|
type: "explicit-base64";
|
|
798
957
|
content: string;
|
|
@@ -830,6 +989,31 @@ export declare const BlockPackMetaEmbedAbsoluteBytes: z.ZodPipeline<z.ZodObject<
|
|
|
830
989
|
type: "absolute-file";
|
|
831
990
|
file: string;
|
|
832
991
|
}>>;
|
|
992
|
+
changelog: z.ZodOptional<z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
993
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
994
|
+
content: z.ZodString;
|
|
995
|
+
}, "strict", z.ZodTypeAny, {
|
|
996
|
+
type: "explicit-string";
|
|
997
|
+
content: string;
|
|
998
|
+
}, {
|
|
999
|
+
type: "explicit-string";
|
|
1000
|
+
content: string;
|
|
1001
|
+
}>, z.ZodObject<{
|
|
1002
|
+
type: z.ZodLiteral<"absolute-file">;
|
|
1003
|
+
file: z.ZodString;
|
|
1004
|
+
}, "strict", z.ZodTypeAny, {
|
|
1005
|
+
type: "absolute-file";
|
|
1006
|
+
file: string;
|
|
1007
|
+
}, {
|
|
1008
|
+
type: "absolute-file";
|
|
1009
|
+
file: string;
|
|
1010
|
+
}>]>, string, {
|
|
1011
|
+
type: "explicit-string";
|
|
1012
|
+
content: string;
|
|
1013
|
+
} | {
|
|
1014
|
+
type: "absolute-file";
|
|
1015
|
+
file: string;
|
|
1016
|
+
}>>;
|
|
833
1017
|
logo: z.ZodOptional<z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
834
1018
|
type: z.ZodLiteral<"explicit-base64">;
|
|
835
1019
|
mimeType: z.ZodString;
|
|
@@ -936,6 +1120,7 @@ export declare const BlockPackMetaEmbedAbsoluteBytes: z.ZodPipeline<z.ZodObject<
|
|
|
936
1120
|
} | undefined;
|
|
937
1121
|
};
|
|
938
1122
|
longDescription?: string | undefined;
|
|
1123
|
+
changelog?: string | undefined;
|
|
939
1124
|
logo?: {
|
|
940
1125
|
type: "explicit-bytes";
|
|
941
1126
|
content: Uint8Array;
|
|
@@ -967,6 +1152,13 @@ export declare const BlockPackMetaEmbedAbsoluteBytes: z.ZodPipeline<z.ZodObject<
|
|
|
967
1152
|
type: "absolute-file";
|
|
968
1153
|
file: string;
|
|
969
1154
|
} | undefined;
|
|
1155
|
+
changelog?: {
|
|
1156
|
+
type: "explicit-string";
|
|
1157
|
+
content: string;
|
|
1158
|
+
} | {
|
|
1159
|
+
type: "absolute-file";
|
|
1160
|
+
file: string;
|
|
1161
|
+
} | undefined;
|
|
970
1162
|
logo?: {
|
|
971
1163
|
type: "explicit-base64";
|
|
972
1164
|
content: string;
|
|
@@ -983,6 +1175,7 @@ export declare const BlockPackMetaEmbedAbsoluteBytes: z.ZodPipeline<z.ZodObject<
|
|
|
983
1175
|
title: z.ZodString;
|
|
984
1176
|
description: z.ZodString;
|
|
985
1177
|
longDescription: z.ZodOptional<z.ZodString>;
|
|
1178
|
+
changelog: z.ZodOptional<z.ZodString>;
|
|
986
1179
|
logo: z.ZodOptional<z.ZodObject<{
|
|
987
1180
|
type: z.ZodLiteral<"explicit-bytes">;
|
|
988
1181
|
mimeType: z.ZodString;
|
|
@@ -1047,6 +1240,7 @@ export declare const BlockPackMetaEmbedAbsoluteBytes: z.ZodPipeline<z.ZodObject<
|
|
|
1047
1240
|
description: string;
|
|
1048
1241
|
url?: string | undefined;
|
|
1049
1242
|
longDescription?: string | undefined;
|
|
1243
|
+
changelog?: string | undefined;
|
|
1050
1244
|
logo?: {
|
|
1051
1245
|
type: "explicit-bytes";
|
|
1052
1246
|
content: Uint8Array;
|
|
@@ -1069,6 +1263,7 @@ export declare const BlockPackMetaEmbedAbsoluteBytes: z.ZodPipeline<z.ZodObject<
|
|
|
1069
1263
|
description: string;
|
|
1070
1264
|
url?: string | undefined;
|
|
1071
1265
|
longDescription?: string | undefined;
|
|
1266
|
+
changelog?: string | undefined;
|
|
1072
1267
|
logo?: {
|
|
1073
1268
|
type: "explicit-bytes";
|
|
1074
1269
|
content: Uint8Array;
|
|
@@ -1106,6 +1301,31 @@ export declare function BlockPackMetaEmbedBytes(reader: RelativeContentReader):
|
|
|
1106
1301
|
type: "relative";
|
|
1107
1302
|
path: string;
|
|
1108
1303
|
}>>;
|
|
1304
|
+
changelog: z.ZodOptional<z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1305
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
1306
|
+
content: z.ZodString;
|
|
1307
|
+
}, "strict", z.ZodTypeAny, {
|
|
1308
|
+
type: "explicit-string";
|
|
1309
|
+
content: string;
|
|
1310
|
+
}, {
|
|
1311
|
+
type: "explicit-string";
|
|
1312
|
+
content: string;
|
|
1313
|
+
}>, z.ZodObject<{
|
|
1314
|
+
type: z.ZodLiteral<"relative">;
|
|
1315
|
+
path: z.ZodString;
|
|
1316
|
+
}, "strict", z.ZodTypeAny, {
|
|
1317
|
+
type: "relative";
|
|
1318
|
+
path: string;
|
|
1319
|
+
}, {
|
|
1320
|
+
type: "relative";
|
|
1321
|
+
path: string;
|
|
1322
|
+
}>]>, string, {
|
|
1323
|
+
type: "explicit-string";
|
|
1324
|
+
content: string;
|
|
1325
|
+
} | {
|
|
1326
|
+
type: "relative";
|
|
1327
|
+
path: string;
|
|
1328
|
+
}>>;
|
|
1109
1329
|
logo: z.ZodOptional<z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1110
1330
|
type: z.ZodLiteral<"explicit-base64">;
|
|
1111
1331
|
mimeType: z.ZodString;
|
|
@@ -1212,6 +1432,7 @@ export declare function BlockPackMetaEmbedBytes(reader: RelativeContentReader):
|
|
|
1212
1432
|
} | undefined;
|
|
1213
1433
|
};
|
|
1214
1434
|
longDescription?: string | undefined;
|
|
1435
|
+
changelog?: string | undefined;
|
|
1215
1436
|
logo?: {
|
|
1216
1437
|
type: "explicit-bytes";
|
|
1217
1438
|
content: Uint8Array;
|
|
@@ -1243,6 +1464,13 @@ export declare function BlockPackMetaEmbedBytes(reader: RelativeContentReader):
|
|
|
1243
1464
|
type: "relative";
|
|
1244
1465
|
path: string;
|
|
1245
1466
|
} | undefined;
|
|
1467
|
+
changelog?: {
|
|
1468
|
+
type: "explicit-string";
|
|
1469
|
+
content: string;
|
|
1470
|
+
} | {
|
|
1471
|
+
type: "relative";
|
|
1472
|
+
path: string;
|
|
1473
|
+
} | undefined;
|
|
1246
1474
|
logo?: {
|
|
1247
1475
|
type: "explicit-base64";
|
|
1248
1476
|
content: string;
|
|
@@ -1259,6 +1487,7 @@ export declare function BlockPackMetaEmbedBytes(reader: RelativeContentReader):
|
|
|
1259
1487
|
title: z.ZodString;
|
|
1260
1488
|
description: z.ZodString;
|
|
1261
1489
|
longDescription: z.ZodOptional<z.ZodString>;
|
|
1490
|
+
changelog: z.ZodOptional<z.ZodString>;
|
|
1262
1491
|
logo: z.ZodOptional<z.ZodObject<{
|
|
1263
1492
|
type: z.ZodLiteral<"explicit-bytes">;
|
|
1264
1493
|
mimeType: z.ZodString;
|
|
@@ -1323,6 +1552,7 @@ export declare function BlockPackMetaEmbedBytes(reader: RelativeContentReader):
|
|
|
1323
1552
|
description: string;
|
|
1324
1553
|
url?: string | undefined;
|
|
1325
1554
|
longDescription?: string | undefined;
|
|
1555
|
+
changelog?: string | undefined;
|
|
1326
1556
|
logo?: {
|
|
1327
1557
|
type: "explicit-bytes";
|
|
1328
1558
|
content: Uint8Array;
|
|
@@ -1345,6 +1575,7 @@ export declare function BlockPackMetaEmbedBytes(reader: RelativeContentReader):
|
|
|
1345
1575
|
description: string;
|
|
1346
1576
|
url?: string | undefined;
|
|
1347
1577
|
longDescription?: string | undefined;
|
|
1578
|
+
changelog?: string | undefined;
|
|
1348
1579
|
logo?: {
|
|
1349
1580
|
type: "explicit-bytes";
|
|
1350
1581
|
content: Uint8Array;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block_meta.d.ts","sourceRoot":"","sources":["../../../src/v2/model/block_meta.ts"],"names":[],"mappings":"AAWA,OAAO,EAML,qBAAqB,EAGtB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,MAAM
|
|
1
|
+
{"version":3,"file":"block_meta.d.ts","sourceRoot":"","sources":["../../../src/v2/model/block_meta.ts"],"names":[],"mappings":"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"}
|