@platforma-sdk/block-tools 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/{config-YukCegnp.mjs → config-BbxbO3Iw.mjs} +514 -500
- package/dist/config-BbxbO3Iw.mjs.map +1 -0
- package/dist/config-BczgUC2N.js +3 -0
- package/dist/config-BczgUC2N.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +113 -99
- package/dist/index.mjs.map +1 -1
- package/dist/io/folder_reader.d.ts +1 -15
- package/dist/io/folder_reader.d.ts.map +1 -1
- package/dist/util.d.ts +1 -0
- package/dist/util.d.ts.map +1 -1
- package/dist/v2/build_dist.d.ts.map +1 -1
- package/dist/v2/model/block_components.d.ts +297 -19
- package/dist/v2/model/block_components.d.ts.map +1 -1
- package/dist/v2/model/block_description.d.ts +281 -62
- package/dist/v2/model/block_description.d.ts.map +1 -1
- package/dist/v2/registry/registry.d.ts.map +1 -1
- package/dist/v2/registry/registry_reader.d.ts +6 -4
- package/dist/v2/registry/registry_reader.d.ts.map +1 -1
- package/dist/v2/registry/schema_public.d.ts +218 -100
- package/dist/v2/registry/schema_public.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/io/folder_reader.ts +17 -9
- package/src/util.ts +6 -0
- package/src/v2/build_dist.ts +2 -1
- package/src/v2/model/block_components.ts +10 -8
- package/src/v2/registry/registry.ts +3 -6
- package/src/v2/registry/registry_reader.ts +25 -15
- package/src/v2/registry/schema_public.ts +5 -1
- package/dist/config-B1U40s2a.js +0 -3
- package/dist/config-B1U40s2a.js.map +0 -1
- package/dist/config-YukCegnp.mjs.map +0 -1
|
@@ -5,6 +5,7 @@ export declare const MainPrefix = "v2/";
|
|
|
5
5
|
export declare const GlobalOverviewFileName = "overview.json";
|
|
6
6
|
export declare const PackageOverviewFileName = "overview.json";
|
|
7
7
|
export declare const ManifestFileName = "manifest.json";
|
|
8
|
+
export declare function packageContentPrefixInsideV2(bp: BlockPackId): string;
|
|
8
9
|
export declare function packageContentPrefix(bp: BlockPackId): string;
|
|
9
10
|
export declare const ManifestSuffix: string;
|
|
10
11
|
export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
@@ -23,7 +24,7 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
23
24
|
version: string;
|
|
24
25
|
}>;
|
|
25
26
|
components: z.ZodObject<{
|
|
26
|
-
workflow: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
27
|
+
workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
|
|
27
28
|
type: z.ZodLiteral<"relative">;
|
|
28
29
|
path: z.ZodString;
|
|
29
30
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -33,12 +34,39 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
33
34
|
type: "relative";
|
|
34
35
|
path: string;
|
|
35
36
|
}>, {
|
|
36
|
-
type:
|
|
37
|
-
main:
|
|
37
|
+
type: "workflow-v1";
|
|
38
|
+
main: {
|
|
39
|
+
type: "relative";
|
|
40
|
+
path: string;
|
|
41
|
+
};
|
|
38
42
|
}, {
|
|
39
43
|
type: "relative";
|
|
40
44
|
path: string;
|
|
41
|
-
}>, z.
|
|
45
|
+
}>, z.ZodObject<{
|
|
46
|
+
type: z.ZodLiteral<"workflow-v1">;
|
|
47
|
+
main: z.ZodObject<{
|
|
48
|
+
type: z.ZodLiteral<"relative">;
|
|
49
|
+
path: z.ZodString;
|
|
50
|
+
}, "strict", z.ZodTypeAny, {
|
|
51
|
+
type: "relative";
|
|
52
|
+
path: string;
|
|
53
|
+
}, {
|
|
54
|
+
type: "relative";
|
|
55
|
+
path: string;
|
|
56
|
+
}>;
|
|
57
|
+
}, "strip", z.ZodTypeAny, {
|
|
58
|
+
type: "workflow-v1";
|
|
59
|
+
main: {
|
|
60
|
+
type: "relative";
|
|
61
|
+
path: string;
|
|
62
|
+
};
|
|
63
|
+
}, {
|
|
64
|
+
type: "workflow-v1";
|
|
65
|
+
main: {
|
|
66
|
+
type: "relative";
|
|
67
|
+
path: string;
|
|
68
|
+
};
|
|
69
|
+
}>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
42
70
|
type: z.ZodLiteral<"workflow-v1">;
|
|
43
71
|
main: z.ZodObject<{
|
|
44
72
|
type: z.ZodLiteral<"relative">;
|
|
@@ -85,9 +113,6 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
85
113
|
}>;
|
|
86
114
|
}, "strip", z.ZodTypeAny, {
|
|
87
115
|
workflow: {
|
|
88
|
-
type: string;
|
|
89
|
-
main: any;
|
|
90
|
-
} | {
|
|
91
116
|
type: "workflow-v1";
|
|
92
117
|
main: {
|
|
93
118
|
type: "relative";
|
|
@@ -290,9 +315,6 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
290
315
|
}, "strip", z.ZodTypeAny, {
|
|
291
316
|
components: {
|
|
292
317
|
workflow: {
|
|
293
|
-
type: string;
|
|
294
|
-
main: any;
|
|
295
|
-
} | {
|
|
296
318
|
type: "workflow-v1";
|
|
297
319
|
main: {
|
|
298
320
|
type: "relative";
|
|
@@ -415,9 +437,6 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
415
437
|
description: {
|
|
416
438
|
components: {
|
|
417
439
|
workflow: {
|
|
418
|
-
type: string;
|
|
419
|
-
main: any;
|
|
420
|
-
} | {
|
|
421
440
|
type: "workflow-v1";
|
|
422
441
|
main: {
|
|
423
442
|
type: "relative";
|
|
@@ -559,7 +578,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
559
578
|
version: string;
|
|
560
579
|
}>;
|
|
561
580
|
components: z.ZodObject<{
|
|
562
|
-
workflow: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
581
|
+
workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
|
|
563
582
|
type: z.ZodLiteral<"relative">;
|
|
564
583
|
path: z.ZodString;
|
|
565
584
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -569,12 +588,39 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
569
588
|
type: "relative";
|
|
570
589
|
path: string;
|
|
571
590
|
}>, {
|
|
572
|
-
type:
|
|
573
|
-
main:
|
|
591
|
+
type: "workflow-v1";
|
|
592
|
+
main: {
|
|
593
|
+
type: "relative";
|
|
594
|
+
path: string;
|
|
595
|
+
};
|
|
574
596
|
}, {
|
|
575
597
|
type: "relative";
|
|
576
598
|
path: string;
|
|
577
|
-
}>, z.
|
|
599
|
+
}>, z.ZodObject<{
|
|
600
|
+
type: z.ZodLiteral<"workflow-v1">;
|
|
601
|
+
main: z.ZodObject<{
|
|
602
|
+
type: z.ZodLiteral<"relative">;
|
|
603
|
+
path: z.ZodString;
|
|
604
|
+
}, "strict", z.ZodTypeAny, {
|
|
605
|
+
type: "relative";
|
|
606
|
+
path: string;
|
|
607
|
+
}, {
|
|
608
|
+
type: "relative";
|
|
609
|
+
path: string;
|
|
610
|
+
}>;
|
|
611
|
+
}, "strip", z.ZodTypeAny, {
|
|
612
|
+
type: "workflow-v1";
|
|
613
|
+
main: {
|
|
614
|
+
type: "relative";
|
|
615
|
+
path: string;
|
|
616
|
+
};
|
|
617
|
+
}, {
|
|
618
|
+
type: "workflow-v1";
|
|
619
|
+
main: {
|
|
620
|
+
type: "relative";
|
|
621
|
+
path: string;
|
|
622
|
+
};
|
|
623
|
+
}>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
578
624
|
type: z.ZodLiteral<"workflow-v1">;
|
|
579
625
|
main: z.ZodObject<{
|
|
580
626
|
type: z.ZodLiteral<"relative">;
|
|
@@ -621,9 +667,6 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
621
667
|
}>;
|
|
622
668
|
}, "strip", z.ZodTypeAny, {
|
|
623
669
|
workflow: {
|
|
624
|
-
type: string;
|
|
625
|
-
main: any;
|
|
626
|
-
} | {
|
|
627
670
|
type: "workflow-v1";
|
|
628
671
|
main: {
|
|
629
672
|
type: "relative";
|
|
@@ -826,9 +869,6 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
826
869
|
}, "strip", z.ZodTypeAny, {
|
|
827
870
|
components: {
|
|
828
871
|
workflow: {
|
|
829
|
-
type: string;
|
|
830
|
-
main: any;
|
|
831
|
-
} | {
|
|
832
872
|
type: "workflow-v1";
|
|
833
873
|
main: {
|
|
834
874
|
type: "relative";
|
|
@@ -951,9 +991,6 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
951
991
|
description: {
|
|
952
992
|
components: {
|
|
953
993
|
workflow: {
|
|
954
|
-
type: string;
|
|
955
|
-
main: any;
|
|
956
|
-
} | {
|
|
957
994
|
type: "workflow-v1";
|
|
958
995
|
main: {
|
|
959
996
|
type: "relative";
|
|
@@ -1082,9 +1119,6 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
1082
1119
|
description: {
|
|
1083
1120
|
components: {
|
|
1084
1121
|
workflow: {
|
|
1085
|
-
type: string;
|
|
1086
|
-
main: any;
|
|
1087
|
-
} | {
|
|
1088
1122
|
type: "workflow-v1";
|
|
1089
1123
|
main: {
|
|
1090
1124
|
type: "relative";
|
|
@@ -1318,7 +1352,7 @@ export declare const GlobalOverviewEntryReg: z.ZodObject<{
|
|
|
1318
1352
|
version: string;
|
|
1319
1353
|
}>;
|
|
1320
1354
|
components: z.ZodObject<{
|
|
1321
|
-
workflow: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
1355
|
+
workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
|
|
1322
1356
|
type: z.ZodLiteral<"relative">;
|
|
1323
1357
|
path: z.ZodString;
|
|
1324
1358
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1328,12 +1362,39 @@ export declare const GlobalOverviewEntryReg: z.ZodObject<{
|
|
|
1328
1362
|
type: "relative";
|
|
1329
1363
|
path: string;
|
|
1330
1364
|
}>, {
|
|
1331
|
-
type:
|
|
1332
|
-
main:
|
|
1365
|
+
type: "workflow-v1";
|
|
1366
|
+
main: {
|
|
1367
|
+
type: "relative";
|
|
1368
|
+
path: string;
|
|
1369
|
+
};
|
|
1333
1370
|
}, {
|
|
1334
1371
|
type: "relative";
|
|
1335
1372
|
path: string;
|
|
1336
|
-
}>, z.
|
|
1373
|
+
}>, z.ZodObject<{
|
|
1374
|
+
type: z.ZodLiteral<"workflow-v1">;
|
|
1375
|
+
main: z.ZodObject<{
|
|
1376
|
+
type: z.ZodLiteral<"relative">;
|
|
1377
|
+
path: z.ZodString;
|
|
1378
|
+
}, "strict", z.ZodTypeAny, {
|
|
1379
|
+
type: "relative";
|
|
1380
|
+
path: string;
|
|
1381
|
+
}, {
|
|
1382
|
+
type: "relative";
|
|
1383
|
+
path: string;
|
|
1384
|
+
}>;
|
|
1385
|
+
}, "strip", z.ZodTypeAny, {
|
|
1386
|
+
type: "workflow-v1";
|
|
1387
|
+
main: {
|
|
1388
|
+
type: "relative";
|
|
1389
|
+
path: string;
|
|
1390
|
+
};
|
|
1391
|
+
}, {
|
|
1392
|
+
type: "workflow-v1";
|
|
1393
|
+
main: {
|
|
1394
|
+
type: "relative";
|
|
1395
|
+
path: string;
|
|
1396
|
+
};
|
|
1397
|
+
}>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1337
1398
|
type: z.ZodLiteral<"workflow-v1">;
|
|
1338
1399
|
main: z.ZodObject<{
|
|
1339
1400
|
type: z.ZodLiteral<"relative">;
|
|
@@ -1380,9 +1441,6 @@ export declare const GlobalOverviewEntryReg: z.ZodObject<{
|
|
|
1380
1441
|
}>;
|
|
1381
1442
|
}, "strip", z.ZodTypeAny, {
|
|
1382
1443
|
workflow: {
|
|
1383
|
-
type: string;
|
|
1384
|
-
main: any;
|
|
1385
|
-
} | {
|
|
1386
1444
|
type: "workflow-v1";
|
|
1387
1445
|
main: {
|
|
1388
1446
|
type: "relative";
|
|
@@ -1585,9 +1643,6 @@ export declare const GlobalOverviewEntryReg: z.ZodObject<{
|
|
|
1585
1643
|
}, "strip", z.ZodTypeAny, {
|
|
1586
1644
|
components: {
|
|
1587
1645
|
workflow: {
|
|
1588
|
-
type: string;
|
|
1589
|
-
main: any;
|
|
1590
|
-
} | {
|
|
1591
1646
|
type: "workflow-v1";
|
|
1592
1647
|
main: {
|
|
1593
1648
|
type: "relative";
|
|
@@ -1715,9 +1770,6 @@ export declare const GlobalOverviewEntryReg: z.ZodObject<{
|
|
|
1715
1770
|
latest: {
|
|
1716
1771
|
components: {
|
|
1717
1772
|
workflow: {
|
|
1718
|
-
type: string;
|
|
1719
|
-
main: any;
|
|
1720
|
-
} | {
|
|
1721
1773
|
type: "workflow-v1";
|
|
1722
1774
|
main: {
|
|
1723
1775
|
type: "relative";
|
|
@@ -2021,7 +2073,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
2021
2073
|
version: string;
|
|
2022
2074
|
}>;
|
|
2023
2075
|
components: z.ZodObject<{
|
|
2024
|
-
workflow: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
2076
|
+
workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
|
|
2025
2077
|
type: z.ZodLiteral<"relative">;
|
|
2026
2078
|
path: z.ZodString;
|
|
2027
2079
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -2031,12 +2083,39 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
2031
2083
|
type: "relative";
|
|
2032
2084
|
path: string;
|
|
2033
2085
|
}>, {
|
|
2034
|
-
type:
|
|
2035
|
-
main:
|
|
2086
|
+
type: "workflow-v1";
|
|
2087
|
+
main: {
|
|
2088
|
+
type: "relative";
|
|
2089
|
+
path: string;
|
|
2090
|
+
};
|
|
2036
2091
|
}, {
|
|
2037
2092
|
type: "relative";
|
|
2038
2093
|
path: string;
|
|
2039
|
-
}>, z.
|
|
2094
|
+
}>, z.ZodObject<{
|
|
2095
|
+
type: z.ZodLiteral<"workflow-v1">;
|
|
2096
|
+
main: z.ZodObject<{
|
|
2097
|
+
type: z.ZodLiteral<"relative">;
|
|
2098
|
+
path: z.ZodString;
|
|
2099
|
+
}, "strict", z.ZodTypeAny, {
|
|
2100
|
+
type: "relative";
|
|
2101
|
+
path: string;
|
|
2102
|
+
}, {
|
|
2103
|
+
type: "relative";
|
|
2104
|
+
path: string;
|
|
2105
|
+
}>;
|
|
2106
|
+
}, "strip", z.ZodTypeAny, {
|
|
2107
|
+
type: "workflow-v1";
|
|
2108
|
+
main: {
|
|
2109
|
+
type: "relative";
|
|
2110
|
+
path: string;
|
|
2111
|
+
};
|
|
2112
|
+
}, {
|
|
2113
|
+
type: "workflow-v1";
|
|
2114
|
+
main: {
|
|
2115
|
+
type: "relative";
|
|
2116
|
+
path: string;
|
|
2117
|
+
};
|
|
2118
|
+
}>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2040
2119
|
type: z.ZodLiteral<"workflow-v1">;
|
|
2041
2120
|
main: z.ZodObject<{
|
|
2042
2121
|
type: z.ZodLiteral<"relative">;
|
|
@@ -2083,9 +2162,6 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
2083
2162
|
}>;
|
|
2084
2163
|
}, "strip", z.ZodTypeAny, {
|
|
2085
2164
|
workflow: {
|
|
2086
|
-
type: string;
|
|
2087
|
-
main: any;
|
|
2088
|
-
} | {
|
|
2089
2165
|
type: "workflow-v1";
|
|
2090
2166
|
main: {
|
|
2091
2167
|
type: "relative";
|
|
@@ -2288,9 +2364,6 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
2288
2364
|
}, "strip", z.ZodTypeAny, {
|
|
2289
2365
|
components: {
|
|
2290
2366
|
workflow: {
|
|
2291
|
-
type: string;
|
|
2292
|
-
main: any;
|
|
2293
|
-
} | {
|
|
2294
2367
|
type: "workflow-v1";
|
|
2295
2368
|
main: {
|
|
2296
2369
|
type: "relative";
|
|
@@ -2418,9 +2491,6 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
2418
2491
|
latest: {
|
|
2419
2492
|
components: {
|
|
2420
2493
|
workflow: {
|
|
2421
|
-
type: string;
|
|
2422
|
-
main: any;
|
|
2423
|
-
} | {
|
|
2424
2494
|
type: "workflow-v1";
|
|
2425
2495
|
main: {
|
|
2426
2496
|
type: "relative";
|
|
@@ -2559,9 +2629,6 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
2559
2629
|
latest: {
|
|
2560
2630
|
components: {
|
|
2561
2631
|
workflow: {
|
|
2562
|
-
type: string;
|
|
2563
|
-
main: any;
|
|
2564
|
-
} | {
|
|
2565
2632
|
type: "workflow-v1";
|
|
2566
2633
|
main: {
|
|
2567
2634
|
type: "relative";
|
|
@@ -2709,7 +2776,7 @@ export declare function BlockDescriptionToExplicitBinaryBytes(reader: RelativeCo
|
|
|
2709
2776
|
version: string;
|
|
2710
2777
|
}>;
|
|
2711
2778
|
components: z.ZodObject<{
|
|
2712
|
-
workflow: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
2779
|
+
workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
|
|
2713
2780
|
type: z.ZodLiteral<"relative">;
|
|
2714
2781
|
path: z.ZodString;
|
|
2715
2782
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -2719,12 +2786,39 @@ export declare function BlockDescriptionToExplicitBinaryBytes(reader: RelativeCo
|
|
|
2719
2786
|
type: "relative";
|
|
2720
2787
|
path: string;
|
|
2721
2788
|
}>, {
|
|
2722
|
-
type:
|
|
2723
|
-
main:
|
|
2789
|
+
type: "workflow-v1";
|
|
2790
|
+
main: {
|
|
2791
|
+
type: "relative";
|
|
2792
|
+
path: string;
|
|
2793
|
+
};
|
|
2724
2794
|
}, {
|
|
2725
2795
|
type: "relative";
|
|
2726
2796
|
path: string;
|
|
2727
|
-
}>, z.
|
|
2797
|
+
}>, z.ZodObject<{
|
|
2798
|
+
type: z.ZodLiteral<"workflow-v1">;
|
|
2799
|
+
main: z.ZodObject<{
|
|
2800
|
+
type: z.ZodLiteral<"relative">;
|
|
2801
|
+
path: z.ZodString;
|
|
2802
|
+
}, "strict", z.ZodTypeAny, {
|
|
2803
|
+
type: "relative";
|
|
2804
|
+
path: string;
|
|
2805
|
+
}, {
|
|
2806
|
+
type: "relative";
|
|
2807
|
+
path: string;
|
|
2808
|
+
}>;
|
|
2809
|
+
}, "strip", z.ZodTypeAny, {
|
|
2810
|
+
type: "workflow-v1";
|
|
2811
|
+
main: {
|
|
2812
|
+
type: "relative";
|
|
2813
|
+
path: string;
|
|
2814
|
+
};
|
|
2815
|
+
}, {
|
|
2816
|
+
type: "workflow-v1";
|
|
2817
|
+
main: {
|
|
2818
|
+
type: "relative";
|
|
2819
|
+
path: string;
|
|
2820
|
+
};
|
|
2821
|
+
}>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2728
2822
|
type: z.ZodLiteral<"workflow-v1">;
|
|
2729
2823
|
main: z.ZodObject<{
|
|
2730
2824
|
type: z.ZodLiteral<"relative">;
|
|
@@ -2771,9 +2865,6 @@ export declare function BlockDescriptionToExplicitBinaryBytes(reader: RelativeCo
|
|
|
2771
2865
|
}>;
|
|
2772
2866
|
}, "strip", z.ZodTypeAny, {
|
|
2773
2867
|
workflow: {
|
|
2774
|
-
type: string;
|
|
2775
|
-
main: any;
|
|
2776
|
-
} | {
|
|
2777
2868
|
type: "workflow-v1";
|
|
2778
2869
|
main: {
|
|
2779
2870
|
type: "relative";
|
|
@@ -3000,9 +3091,6 @@ export declare function BlockDescriptionToExplicitBinaryBytes(reader: RelativeCo
|
|
|
3000
3091
|
};
|
|
3001
3092
|
components: {
|
|
3002
3093
|
workflow: {
|
|
3003
|
-
type: string;
|
|
3004
|
-
main: any;
|
|
3005
|
-
} | {
|
|
3006
3094
|
type: "workflow-v1";
|
|
3007
3095
|
main: {
|
|
3008
3096
|
type: "relative";
|
|
@@ -3136,7 +3224,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
3136
3224
|
version: string;
|
|
3137
3225
|
}>;
|
|
3138
3226
|
components: z.ZodObject<{
|
|
3139
|
-
workflow: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
3227
|
+
workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
|
|
3140
3228
|
type: z.ZodLiteral<"relative">;
|
|
3141
3229
|
path: z.ZodString;
|
|
3142
3230
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3146,12 +3234,39 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
3146
3234
|
type: "relative";
|
|
3147
3235
|
path: string;
|
|
3148
3236
|
}>, {
|
|
3149
|
-
type:
|
|
3150
|
-
main:
|
|
3237
|
+
type: "workflow-v1";
|
|
3238
|
+
main: {
|
|
3239
|
+
type: "relative";
|
|
3240
|
+
path: string;
|
|
3241
|
+
};
|
|
3151
3242
|
}, {
|
|
3152
3243
|
type: "relative";
|
|
3153
3244
|
path: string;
|
|
3154
|
-
}>, z.
|
|
3245
|
+
}>, z.ZodObject<{
|
|
3246
|
+
type: z.ZodLiteral<"workflow-v1">;
|
|
3247
|
+
main: z.ZodObject<{
|
|
3248
|
+
type: z.ZodLiteral<"relative">;
|
|
3249
|
+
path: z.ZodString;
|
|
3250
|
+
}, "strict", z.ZodTypeAny, {
|
|
3251
|
+
type: "relative";
|
|
3252
|
+
path: string;
|
|
3253
|
+
}, {
|
|
3254
|
+
type: "relative";
|
|
3255
|
+
path: string;
|
|
3256
|
+
}>;
|
|
3257
|
+
}, "strip", z.ZodTypeAny, {
|
|
3258
|
+
type: "workflow-v1";
|
|
3259
|
+
main: {
|
|
3260
|
+
type: "relative";
|
|
3261
|
+
path: string;
|
|
3262
|
+
};
|
|
3263
|
+
}, {
|
|
3264
|
+
type: "workflow-v1";
|
|
3265
|
+
main: {
|
|
3266
|
+
type: "relative";
|
|
3267
|
+
path: string;
|
|
3268
|
+
};
|
|
3269
|
+
}>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3155
3270
|
type: z.ZodLiteral<"workflow-v1">;
|
|
3156
3271
|
main: z.ZodObject<{
|
|
3157
3272
|
type: z.ZodLiteral<"relative">;
|
|
@@ -3198,9 +3313,6 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
3198
3313
|
}>;
|
|
3199
3314
|
}, "strip", z.ZodTypeAny, {
|
|
3200
3315
|
workflow: {
|
|
3201
|
-
type: string;
|
|
3202
|
-
main: any;
|
|
3203
|
-
} | {
|
|
3204
3316
|
type: "workflow-v1";
|
|
3205
3317
|
main: {
|
|
3206
3318
|
type: "relative";
|
|
@@ -3427,9 +3539,6 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
3427
3539
|
};
|
|
3428
3540
|
components: {
|
|
3429
3541
|
workflow: {
|
|
3430
|
-
type: string;
|
|
3431
|
-
main: any;
|
|
3432
|
-
} | {
|
|
3433
3542
|
type: "workflow-v1";
|
|
3434
3543
|
main: {
|
|
3435
3544
|
type: "relative";
|
|
@@ -3548,9 +3657,6 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
3548
3657
|
};
|
|
3549
3658
|
components: {
|
|
3550
3659
|
workflow: {
|
|
3551
|
-
type: string;
|
|
3552
|
-
main: any;
|
|
3553
|
-
} | {
|
|
3554
3660
|
type: "workflow-v1";
|
|
3555
3661
|
main: {
|
|
3556
3662
|
type: "relative";
|
|
@@ -3680,9 +3786,6 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
3680
3786
|
};
|
|
3681
3787
|
components: {
|
|
3682
3788
|
workflow: {
|
|
3683
|
-
type: string;
|
|
3684
|
-
main: any;
|
|
3685
|
-
} | {
|
|
3686
3789
|
type: "workflow-v1";
|
|
3687
3790
|
main: {
|
|
3688
3791
|
type: "relative";
|
|
@@ -3831,7 +3934,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
3831
3934
|
version: string;
|
|
3832
3935
|
}>;
|
|
3833
3936
|
components: z.ZodObject<{
|
|
3834
|
-
workflow: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
3937
|
+
workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
|
|
3835
3938
|
type: z.ZodLiteral<"relative">;
|
|
3836
3939
|
path: z.ZodString;
|
|
3837
3940
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3841,12 +3944,39 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
3841
3944
|
type: "relative";
|
|
3842
3945
|
path: string;
|
|
3843
3946
|
}>, {
|
|
3844
|
-
type:
|
|
3845
|
-
main:
|
|
3947
|
+
type: "workflow-v1";
|
|
3948
|
+
main: {
|
|
3949
|
+
type: "relative";
|
|
3950
|
+
path: string;
|
|
3951
|
+
};
|
|
3846
3952
|
}, {
|
|
3847
3953
|
type: "relative";
|
|
3848
3954
|
path: string;
|
|
3849
|
-
}>, z.
|
|
3955
|
+
}>, z.ZodObject<{
|
|
3956
|
+
type: z.ZodLiteral<"workflow-v1">;
|
|
3957
|
+
main: z.ZodObject<{
|
|
3958
|
+
type: z.ZodLiteral<"relative">;
|
|
3959
|
+
path: z.ZodString;
|
|
3960
|
+
}, "strict", z.ZodTypeAny, {
|
|
3961
|
+
type: "relative";
|
|
3962
|
+
path: string;
|
|
3963
|
+
}, {
|
|
3964
|
+
type: "relative";
|
|
3965
|
+
path: string;
|
|
3966
|
+
}>;
|
|
3967
|
+
}, "strip", z.ZodTypeAny, {
|
|
3968
|
+
type: "workflow-v1";
|
|
3969
|
+
main: {
|
|
3970
|
+
type: "relative";
|
|
3971
|
+
path: string;
|
|
3972
|
+
};
|
|
3973
|
+
}, {
|
|
3974
|
+
type: "workflow-v1";
|
|
3975
|
+
main: {
|
|
3976
|
+
type: "relative";
|
|
3977
|
+
path: string;
|
|
3978
|
+
};
|
|
3979
|
+
}>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3850
3980
|
type: z.ZodLiteral<"workflow-v1">;
|
|
3851
3981
|
main: z.ZodObject<{
|
|
3852
3982
|
type: z.ZodLiteral<"relative">;
|
|
@@ -3893,9 +4023,6 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
3893
4023
|
}>;
|
|
3894
4024
|
}, "strip", z.ZodTypeAny, {
|
|
3895
4025
|
workflow: {
|
|
3896
|
-
type: string;
|
|
3897
|
-
main: any;
|
|
3898
|
-
} | {
|
|
3899
4026
|
type: "workflow-v1";
|
|
3900
4027
|
main: {
|
|
3901
4028
|
type: "relative";
|
|
@@ -4122,9 +4249,6 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
4122
4249
|
};
|
|
4123
4250
|
components: {
|
|
4124
4251
|
workflow: {
|
|
4125
|
-
type: string;
|
|
4126
|
-
main: any;
|
|
4127
|
-
} | {
|
|
4128
4252
|
type: "workflow-v1";
|
|
4129
4253
|
main: {
|
|
4130
4254
|
type: "relative";
|
|
@@ -4243,9 +4367,6 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
4243
4367
|
};
|
|
4244
4368
|
components: {
|
|
4245
4369
|
workflow: {
|
|
4246
|
-
type: string;
|
|
4247
|
-
main: any;
|
|
4248
|
-
} | {
|
|
4249
4370
|
type: "workflow-v1";
|
|
4250
4371
|
main: {
|
|
4251
4372
|
type: "relative";
|
|
@@ -4375,9 +4496,6 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
4375
4496
|
};
|
|
4376
4497
|
components: {
|
|
4377
4498
|
workflow: {
|
|
4378
|
-
type: string;
|
|
4379
|
-
main: any;
|
|
4380
|
-
} | {
|
|
4381
4499
|
type: "workflow-v1";
|
|
4382
4500
|
main: {
|
|
4383
4501
|
type: "relative";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema_public.d.ts","sourceRoot":"","sources":["../../../src/v2/registry/schema_public.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,WAAW,EACX,oBAAoB,EAOrB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,qBAAqB,EAAqD,MAAM,UAAU,CAAC;AAEpG,eAAO,MAAM,UAAU,QAAQ,CAAC;AAEhC,eAAO,MAAM,sBAAsB,kBAAkB,CAAC;AACtD,eAAO,MAAM,uBAAuB,kBAAkB,CAAC;AACvD,eAAO,MAAM,gBAAgB,kBAAkB,CAAC;AAEhD,wBAAgB,oBAAoB,CAAC,EAAE,EAAE,WAAW,GAAG,MAAM,CAE5D;AAED,eAAO,MAAM,cAAc,QAAyB,CAAC;AAMrD,eAAO,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"schema_public.d.ts","sourceRoot":"","sources":["../../../src/v2/registry/schema_public.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-sdk/block-tools",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "Utility to manipulate Platforma Blocks and Block Registry",
|
|
5
5
|
"types": "./dist/lib.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"yaml": "^2.5.1",
|
|
33
33
|
"zod": "^3.23.8",
|
|
34
34
|
"@milaboratories/resolve-helper": "^1.0.1",
|
|
35
|
-
"@milaboratories/pl-model-middle-layer": "^1.4.
|
|
35
|
+
"@milaboratories/pl-model-middle-layer": "^1.4.1",
|
|
36
36
|
"@milaboratories/ts-helpers": "^1.0.27",
|
|
37
37
|
"@milaboratories/ts-helpers-oclif": "^1.1.5"
|
|
38
38
|
},
|