@milaboratories/pl-model-middle-layer 1.14.0 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/block_meta/block_description.d.ts +10 -10
- package/dist/block_meta/block_manifest.d.ts +26 -26
- package/dist/block_meta/block_meta.d.ts +6 -6
- package/dist/block_registry/overview.d.ts +106 -106
- package/dist/block_registry/registry_spec.d.ts +12 -12
- package/dist/pframe/internal_api/api_wasm.d.ts +57 -2
- package/dist/pframe/internal_api/discover_columns.d.ts +17 -2
- package/dist/pframe/internal_api/index.d.ts +3 -3
- package/package.json +4 -4
- package/src/pframe/internal_api/api_wasm.ts +70 -1
- package/src/pframe/internal_api/discover_columns.ts +23 -1
|
@@ -308,6 +308,7 @@ declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
308
308
|
};
|
|
309
309
|
title: string;
|
|
310
310
|
description: string;
|
|
311
|
+
url?: string | undefined;
|
|
311
312
|
longDescription?: {
|
|
312
313
|
type: "explicit-string";
|
|
313
314
|
content: string;
|
|
@@ -339,7 +340,6 @@ declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
339
340
|
type: "absolute-file";
|
|
340
341
|
file: string;
|
|
341
342
|
} | undefined;
|
|
342
|
-
url?: string | undefined;
|
|
343
343
|
docs?: string | undefined;
|
|
344
344
|
support?: string | undefined;
|
|
345
345
|
tags?: string[] | undefined;
|
|
@@ -367,6 +367,7 @@ declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
367
367
|
};
|
|
368
368
|
title: string;
|
|
369
369
|
description: string;
|
|
370
|
+
url?: string | undefined;
|
|
370
371
|
longDescription?: string | {
|
|
371
372
|
type: "explicit-string";
|
|
372
373
|
content: string;
|
|
@@ -398,7 +399,6 @@ declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
398
399
|
type: "absolute-file";
|
|
399
400
|
file: string;
|
|
400
401
|
} | undefined;
|
|
401
|
-
url?: string | undefined;
|
|
402
402
|
docs?: string | undefined;
|
|
403
403
|
support?: string | undefined;
|
|
404
404
|
tags?: string[] | undefined;
|
|
@@ -428,6 +428,7 @@ declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
428
428
|
};
|
|
429
429
|
title: string;
|
|
430
430
|
description: string;
|
|
431
|
+
url?: string | undefined;
|
|
431
432
|
longDescription?: {
|
|
432
433
|
type: "explicit-string";
|
|
433
434
|
content: string;
|
|
@@ -459,7 +460,6 @@ declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
459
460
|
type: "absolute-file";
|
|
460
461
|
file: string;
|
|
461
462
|
} | undefined;
|
|
462
|
-
url?: string | undefined;
|
|
463
463
|
docs?: string | undefined;
|
|
464
464
|
support?: string | undefined;
|
|
465
465
|
tags?: string[] | undefined;
|
|
@@ -497,6 +497,7 @@ declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
497
497
|
};
|
|
498
498
|
title: string;
|
|
499
499
|
description: string;
|
|
500
|
+
url?: string | undefined;
|
|
500
501
|
longDescription?: string | {
|
|
501
502
|
type: "explicit-string";
|
|
502
503
|
content: string;
|
|
@@ -528,7 +529,6 @@ declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
528
529
|
type: "absolute-file";
|
|
529
530
|
file: string;
|
|
530
531
|
} | undefined;
|
|
531
|
-
url?: string | undefined;
|
|
532
532
|
docs?: string | undefined;
|
|
533
533
|
support?: string | undefined;
|
|
534
534
|
tags?: string[] | undefined;
|
|
@@ -914,6 +914,7 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
914
914
|
};
|
|
915
915
|
title: string;
|
|
916
916
|
description: string;
|
|
917
|
+
url?: string | undefined;
|
|
917
918
|
longDescription?: {
|
|
918
919
|
type: "explicit-string";
|
|
919
920
|
content: string;
|
|
@@ -945,7 +946,6 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
945
946
|
type: "absolute-file";
|
|
946
947
|
file: string;
|
|
947
948
|
} | undefined;
|
|
948
|
-
url?: string | undefined;
|
|
949
949
|
docs?: string | undefined;
|
|
950
950
|
support?: string | undefined;
|
|
951
951
|
tags?: string[] | undefined;
|
|
@@ -973,6 +973,7 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
973
973
|
};
|
|
974
974
|
title: string;
|
|
975
975
|
description: string;
|
|
976
|
+
url?: string | undefined;
|
|
976
977
|
longDescription?: string | {
|
|
977
978
|
type: "explicit-string";
|
|
978
979
|
content: string;
|
|
@@ -1004,7 +1005,6 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
1004
1005
|
type: "absolute-file";
|
|
1005
1006
|
file: string;
|
|
1006
1007
|
} | undefined;
|
|
1007
|
-
url?: string | undefined;
|
|
1008
1008
|
docs?: string | undefined;
|
|
1009
1009
|
support?: string | undefined;
|
|
1010
1010
|
tags?: string[] | undefined;
|
|
@@ -1329,6 +1329,7 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
1329
1329
|
};
|
|
1330
1330
|
title: string;
|
|
1331
1331
|
description: string;
|
|
1332
|
+
url?: string | undefined;
|
|
1332
1333
|
longDescription?: {
|
|
1333
1334
|
type: "explicit-string";
|
|
1334
1335
|
content: string;
|
|
@@ -1360,7 +1361,6 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
1360
1361
|
type: "absolute-file";
|
|
1361
1362
|
file: string;
|
|
1362
1363
|
} | undefined;
|
|
1363
|
-
url?: string | undefined;
|
|
1364
1364
|
docs?: string | undefined;
|
|
1365
1365
|
support?: string | undefined;
|
|
1366
1366
|
tags?: string[] | undefined;
|
|
@@ -1388,6 +1388,7 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
1388
1388
|
};
|
|
1389
1389
|
title: string;
|
|
1390
1390
|
description: string;
|
|
1391
|
+
url?: string | undefined;
|
|
1391
1392
|
longDescription?: string | {
|
|
1392
1393
|
type: "explicit-string";
|
|
1393
1394
|
content: string;
|
|
@@ -1419,7 +1420,6 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
1419
1420
|
type: "absolute-file";
|
|
1420
1421
|
file: string;
|
|
1421
1422
|
} | undefined;
|
|
1422
|
-
url?: string | undefined;
|
|
1423
1423
|
docs?: string | undefined;
|
|
1424
1424
|
support?: string | undefined;
|
|
1425
1425
|
tags?: string[] | undefined;
|
|
@@ -1744,6 +1744,7 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
1744
1744
|
};
|
|
1745
1745
|
title: string;
|
|
1746
1746
|
description: string;
|
|
1747
|
+
url?: string | undefined;
|
|
1747
1748
|
longDescription?: {
|
|
1748
1749
|
type: "explicit-string";
|
|
1749
1750
|
content: string;
|
|
@@ -1775,7 +1776,6 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
1775
1776
|
type: "absolute-file";
|
|
1776
1777
|
file: string;
|
|
1777
1778
|
} | undefined;
|
|
1778
|
-
url?: string | undefined;
|
|
1779
1779
|
docs?: string | undefined;
|
|
1780
1780
|
support?: string | undefined;
|
|
1781
1781
|
tags?: string[] | undefined;
|
|
@@ -1803,6 +1803,7 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
1803
1803
|
};
|
|
1804
1804
|
title: string;
|
|
1805
1805
|
description: string;
|
|
1806
|
+
url?: string | undefined;
|
|
1806
1807
|
longDescription?: string | {
|
|
1807
1808
|
type: "explicit-string";
|
|
1808
1809
|
content: string;
|
|
@@ -1834,7 +1835,6 @@ declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
1834
1835
|
type: "absolute-file";
|
|
1835
1836
|
file: string;
|
|
1836
1837
|
} | undefined;
|
|
1837
|
-
url?: string | undefined;
|
|
1838
1838
|
docs?: string | undefined;
|
|
1839
1839
|
support?: string | undefined;
|
|
1840
1840
|
tags?: string[] | undefined;
|
|
@@ -292,6 +292,7 @@ declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
292
292
|
};
|
|
293
293
|
title: string;
|
|
294
294
|
description: string;
|
|
295
|
+
url?: string | undefined;
|
|
295
296
|
longDescription?: {
|
|
296
297
|
type: "explicit-string";
|
|
297
298
|
content: string;
|
|
@@ -314,7 +315,6 @@ declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
314
315
|
type: "relative";
|
|
315
316
|
path: string;
|
|
316
317
|
} | undefined;
|
|
317
|
-
url?: string | undefined;
|
|
318
318
|
docs?: string | undefined;
|
|
319
319
|
support?: string | undefined;
|
|
320
320
|
tags?: string[] | undefined;
|
|
@@ -339,6 +339,7 @@ declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
339
339
|
};
|
|
340
340
|
title: string;
|
|
341
341
|
description: string;
|
|
342
|
+
url?: string | undefined;
|
|
342
343
|
longDescription?: {
|
|
343
344
|
type: "explicit-string";
|
|
344
345
|
content: string;
|
|
@@ -361,7 +362,6 @@ declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
361
362
|
type: "relative";
|
|
362
363
|
path: string;
|
|
363
364
|
} | undefined;
|
|
364
|
-
url?: string | undefined;
|
|
365
365
|
docs?: string | undefined;
|
|
366
366
|
support?: string | undefined;
|
|
367
367
|
tags?: string[] | undefined;
|
|
@@ -674,6 +674,7 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
674
674
|
};
|
|
675
675
|
title: string;
|
|
676
676
|
description: string;
|
|
677
|
+
url?: string | undefined;
|
|
677
678
|
longDescription?: {
|
|
678
679
|
type: "explicit-string";
|
|
679
680
|
content: string;
|
|
@@ -696,7 +697,6 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
696
697
|
type: "relative";
|
|
697
698
|
path: string;
|
|
698
699
|
} | undefined;
|
|
699
|
-
url?: string | undefined;
|
|
700
700
|
docs?: string | undefined;
|
|
701
701
|
support?: string | undefined;
|
|
702
702
|
tags?: string[] | undefined;
|
|
@@ -721,6 +721,7 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
721
721
|
};
|
|
722
722
|
title: string;
|
|
723
723
|
description: string;
|
|
724
|
+
url?: string | undefined;
|
|
724
725
|
longDescription?: {
|
|
725
726
|
type: "explicit-string";
|
|
726
727
|
content: string;
|
|
@@ -743,7 +744,6 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
743
744
|
type: "relative";
|
|
744
745
|
path: string;
|
|
745
746
|
} | undefined;
|
|
746
|
-
url?: string | undefined;
|
|
747
747
|
docs?: string | undefined;
|
|
748
748
|
support?: string | undefined;
|
|
749
749
|
tags?: string[] | undefined;
|
|
@@ -1055,6 +1055,7 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1055
1055
|
};
|
|
1056
1056
|
title: string;
|
|
1057
1057
|
description: string;
|
|
1058
|
+
url?: string | undefined;
|
|
1058
1059
|
longDescription?: {
|
|
1059
1060
|
type: "explicit-string";
|
|
1060
1061
|
content: string;
|
|
@@ -1077,7 +1078,6 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1077
1078
|
type: "relative";
|
|
1078
1079
|
path: string;
|
|
1079
1080
|
} | undefined;
|
|
1080
|
-
url?: string | undefined;
|
|
1081
1081
|
docs?: string | undefined;
|
|
1082
1082
|
support?: string | undefined;
|
|
1083
1083
|
tags?: string[] | undefined;
|
|
@@ -1102,6 +1102,7 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1102
1102
|
};
|
|
1103
1103
|
title: string;
|
|
1104
1104
|
description: string;
|
|
1105
|
+
url?: string | undefined;
|
|
1105
1106
|
longDescription?: {
|
|
1106
1107
|
type: "explicit-string";
|
|
1107
1108
|
content: string;
|
|
@@ -1124,7 +1125,6 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1124
1125
|
type: "relative";
|
|
1125
1126
|
path: string;
|
|
1126
1127
|
} | undefined;
|
|
1127
|
-
url?: string | undefined;
|
|
1128
1128
|
docs?: string | undefined;
|
|
1129
1129
|
support?: string | undefined;
|
|
1130
1130
|
tags?: string[] | undefined;
|
|
@@ -1436,6 +1436,7 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1436
1436
|
};
|
|
1437
1437
|
title: string;
|
|
1438
1438
|
description: string;
|
|
1439
|
+
url?: string | undefined;
|
|
1439
1440
|
longDescription?: {
|
|
1440
1441
|
type: "explicit-string";
|
|
1441
1442
|
content: string;
|
|
@@ -1458,7 +1459,6 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1458
1459
|
type: "relative";
|
|
1459
1460
|
path: string;
|
|
1460
1461
|
} | undefined;
|
|
1461
|
-
url?: string | undefined;
|
|
1462
1462
|
docs?: string | undefined;
|
|
1463
1463
|
support?: string | undefined;
|
|
1464
1464
|
tags?: string[] | undefined;
|
|
@@ -1483,6 +1483,7 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1483
1483
|
};
|
|
1484
1484
|
title: string;
|
|
1485
1485
|
description: string;
|
|
1486
|
+
url?: string | undefined;
|
|
1486
1487
|
longDescription?: {
|
|
1487
1488
|
type: "explicit-string";
|
|
1488
1489
|
content: string;
|
|
@@ -1505,7 +1506,6 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1505
1506
|
type: "relative";
|
|
1506
1507
|
path: string;
|
|
1507
1508
|
} | undefined;
|
|
1508
|
-
url?: string | undefined;
|
|
1509
1509
|
docs?: string | undefined;
|
|
1510
1510
|
support?: string | undefined;
|
|
1511
1511
|
tags?: string[] | undefined;
|
|
@@ -1836,6 +1836,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
1836
1836
|
};
|
|
1837
1837
|
title: string;
|
|
1838
1838
|
description: string;
|
|
1839
|
+
url?: string | undefined;
|
|
1839
1840
|
longDescription?: {
|
|
1840
1841
|
type: "explicit-string";
|
|
1841
1842
|
content: string;
|
|
@@ -1858,7 +1859,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
1858
1859
|
type: "relative";
|
|
1859
1860
|
path: string;
|
|
1860
1861
|
} | undefined;
|
|
1861
|
-
url?: string | undefined;
|
|
1862
1862
|
docs?: string | undefined;
|
|
1863
1863
|
support?: string | undefined;
|
|
1864
1864
|
tags?: string[] | undefined;
|
|
@@ -1883,6 +1883,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
1883
1883
|
};
|
|
1884
1884
|
title: string;
|
|
1885
1885
|
description: string;
|
|
1886
|
+
url?: string | undefined;
|
|
1886
1887
|
longDescription?: {
|
|
1887
1888
|
type: "explicit-string";
|
|
1888
1889
|
content: string;
|
|
@@ -1905,7 +1906,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
1905
1906
|
type: "relative";
|
|
1906
1907
|
path: string;
|
|
1907
1908
|
} | undefined;
|
|
1908
|
-
url?: string | undefined;
|
|
1909
1909
|
docs?: string | undefined;
|
|
1910
1910
|
support?: string | undefined;
|
|
1911
1911
|
tags?: string[] | undefined;
|
|
@@ -2217,6 +2217,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2217
2217
|
};
|
|
2218
2218
|
title: string;
|
|
2219
2219
|
description: string;
|
|
2220
|
+
url?: string | undefined;
|
|
2220
2221
|
longDescription?: {
|
|
2221
2222
|
type: "explicit-string";
|
|
2222
2223
|
content: string;
|
|
@@ -2239,7 +2240,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2239
2240
|
type: "relative";
|
|
2240
2241
|
path: string;
|
|
2241
2242
|
} | undefined;
|
|
2242
|
-
url?: string | undefined;
|
|
2243
2243
|
docs?: string | undefined;
|
|
2244
2244
|
support?: string | undefined;
|
|
2245
2245
|
tags?: string[] | undefined;
|
|
@@ -2264,6 +2264,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2264
2264
|
};
|
|
2265
2265
|
title: string;
|
|
2266
2266
|
description: string;
|
|
2267
|
+
url?: string | undefined;
|
|
2267
2268
|
longDescription?: {
|
|
2268
2269
|
type: "explicit-string";
|
|
2269
2270
|
content: string;
|
|
@@ -2286,7 +2287,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2286
2287
|
type: "relative";
|
|
2287
2288
|
path: string;
|
|
2288
2289
|
} | undefined;
|
|
2289
|
-
url?: string | undefined;
|
|
2290
2290
|
docs?: string | undefined;
|
|
2291
2291
|
support?: string | undefined;
|
|
2292
2292
|
tags?: string[] | undefined;
|
|
@@ -2598,6 +2598,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2598
2598
|
};
|
|
2599
2599
|
title: string;
|
|
2600
2600
|
description: string;
|
|
2601
|
+
url?: string | undefined;
|
|
2601
2602
|
longDescription?: {
|
|
2602
2603
|
type: "explicit-string";
|
|
2603
2604
|
content: string;
|
|
@@ -2620,7 +2621,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2620
2621
|
type: "relative";
|
|
2621
2622
|
path: string;
|
|
2622
2623
|
} | undefined;
|
|
2623
|
-
url?: string | undefined;
|
|
2624
2624
|
docs?: string | undefined;
|
|
2625
2625
|
support?: string | undefined;
|
|
2626
2626
|
tags?: string[] | undefined;
|
|
@@ -2645,6 +2645,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2645
2645
|
};
|
|
2646
2646
|
title: string;
|
|
2647
2647
|
description: string;
|
|
2648
|
+
url?: string | undefined;
|
|
2648
2649
|
longDescription?: {
|
|
2649
2650
|
type: "explicit-string";
|
|
2650
2651
|
content: string;
|
|
@@ -2667,7 +2668,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2667
2668
|
type: "relative";
|
|
2668
2669
|
path: string;
|
|
2669
2670
|
} | undefined;
|
|
2670
|
-
url?: string | undefined;
|
|
2671
2671
|
docs?: string | undefined;
|
|
2672
2672
|
support?: string | undefined;
|
|
2673
2673
|
tags?: string[] | undefined;
|
|
@@ -2996,6 +2996,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2996
2996
|
};
|
|
2997
2997
|
title: string;
|
|
2998
2998
|
description: string;
|
|
2999
|
+
url?: string | undefined;
|
|
2999
3000
|
longDescription?: {
|
|
3000
3001
|
type: "explicit-string";
|
|
3001
3002
|
content: string;
|
|
@@ -3018,7 +3019,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3018
3019
|
type: "relative";
|
|
3019
3020
|
path: string;
|
|
3020
3021
|
} | undefined;
|
|
3021
|
-
url?: string | undefined;
|
|
3022
3022
|
docs?: string | undefined;
|
|
3023
3023
|
support?: string | undefined;
|
|
3024
3024
|
tags?: string[] | undefined;
|
|
@@ -3043,6 +3043,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3043
3043
|
};
|
|
3044
3044
|
title: string;
|
|
3045
3045
|
description: string;
|
|
3046
|
+
url?: string | undefined;
|
|
3046
3047
|
longDescription?: {
|
|
3047
3048
|
type: "explicit-string";
|
|
3048
3049
|
content: string;
|
|
@@ -3065,7 +3066,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3065
3066
|
type: "relative";
|
|
3066
3067
|
path: string;
|
|
3067
3068
|
} | undefined;
|
|
3068
|
-
url?: string | undefined;
|
|
3069
3069
|
docs?: string | undefined;
|
|
3070
3070
|
support?: string | undefined;
|
|
3071
3071
|
tags?: string[] | undefined;
|
|
@@ -3377,6 +3377,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3377
3377
|
};
|
|
3378
3378
|
title: string;
|
|
3379
3379
|
description: string;
|
|
3380
|
+
url?: string | undefined;
|
|
3380
3381
|
longDescription?: {
|
|
3381
3382
|
type: "explicit-string";
|
|
3382
3383
|
content: string;
|
|
@@ -3399,7 +3400,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3399
3400
|
type: "relative";
|
|
3400
3401
|
path: string;
|
|
3401
3402
|
} | undefined;
|
|
3402
|
-
url?: string | undefined;
|
|
3403
3403
|
docs?: string | undefined;
|
|
3404
3404
|
support?: string | undefined;
|
|
3405
3405
|
tags?: string[] | undefined;
|
|
@@ -3424,6 +3424,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3424
3424
|
};
|
|
3425
3425
|
title: string;
|
|
3426
3426
|
description: string;
|
|
3427
|
+
url?: string | undefined;
|
|
3427
3428
|
longDescription?: {
|
|
3428
3429
|
type: "explicit-string";
|
|
3429
3430
|
content: string;
|
|
@@ -3446,7 +3447,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3446
3447
|
type: "relative";
|
|
3447
3448
|
path: string;
|
|
3448
3449
|
} | undefined;
|
|
3449
|
-
url?: string | undefined;
|
|
3450
3450
|
docs?: string | undefined;
|
|
3451
3451
|
support?: string | undefined;
|
|
3452
3452
|
tags?: string[] | undefined;
|
|
@@ -3758,6 +3758,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3758
3758
|
};
|
|
3759
3759
|
title: string;
|
|
3760
3760
|
description: string;
|
|
3761
|
+
url?: string | undefined;
|
|
3761
3762
|
longDescription?: {
|
|
3762
3763
|
type: "explicit-string";
|
|
3763
3764
|
content: string;
|
|
@@ -3780,7 +3781,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3780
3781
|
type: "relative";
|
|
3781
3782
|
path: string;
|
|
3782
3783
|
} | undefined;
|
|
3783
|
-
url?: string | undefined;
|
|
3784
3784
|
docs?: string | undefined;
|
|
3785
3785
|
support?: string | undefined;
|
|
3786
3786
|
tags?: string[] | undefined;
|
|
@@ -3805,6 +3805,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3805
3805
|
};
|
|
3806
3806
|
title: string;
|
|
3807
3807
|
description: string;
|
|
3808
|
+
url?: string | undefined;
|
|
3808
3809
|
longDescription?: {
|
|
3809
3810
|
type: "explicit-string";
|
|
3810
3811
|
content: string;
|
|
@@ -3827,7 +3828,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3827
3828
|
type: "relative";
|
|
3828
3829
|
path: string;
|
|
3829
3830
|
} | undefined;
|
|
3830
|
-
url?: string | undefined;
|
|
3831
3831
|
docs?: string | undefined;
|
|
3832
3832
|
support?: string | undefined;
|
|
3833
3833
|
tags?: string[] | undefined;
|
|
@@ -4156,6 +4156,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4156
4156
|
};
|
|
4157
4157
|
title: string;
|
|
4158
4158
|
description: string;
|
|
4159
|
+
url?: string | undefined;
|
|
4159
4160
|
longDescription?: {
|
|
4160
4161
|
type: "explicit-string";
|
|
4161
4162
|
content: string;
|
|
@@ -4178,7 +4179,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4178
4179
|
type: "relative";
|
|
4179
4180
|
path: string;
|
|
4180
4181
|
} | undefined;
|
|
4181
|
-
url?: string | undefined;
|
|
4182
4182
|
docs?: string | undefined;
|
|
4183
4183
|
support?: string | undefined;
|
|
4184
4184
|
tags?: string[] | undefined;
|
|
@@ -4203,6 +4203,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4203
4203
|
};
|
|
4204
4204
|
title: string;
|
|
4205
4205
|
description: string;
|
|
4206
|
+
url?: string | undefined;
|
|
4206
4207
|
longDescription?: {
|
|
4207
4208
|
type: "explicit-string";
|
|
4208
4209
|
content: string;
|
|
@@ -4225,7 +4226,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4225
4226
|
type: "relative";
|
|
4226
4227
|
path: string;
|
|
4227
4228
|
} | undefined;
|
|
4228
|
-
url?: string | undefined;
|
|
4229
4229
|
docs?: string | undefined;
|
|
4230
4230
|
support?: string | undefined;
|
|
4231
4231
|
tags?: string[] | undefined;
|
|
@@ -4537,6 +4537,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4537
4537
|
};
|
|
4538
4538
|
title: string;
|
|
4539
4539
|
description: string;
|
|
4540
|
+
url?: string | undefined;
|
|
4540
4541
|
longDescription?: {
|
|
4541
4542
|
type: "explicit-string";
|
|
4542
4543
|
content: string;
|
|
@@ -4559,7 +4560,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4559
4560
|
type: "relative";
|
|
4560
4561
|
path: string;
|
|
4561
4562
|
} | undefined;
|
|
4562
|
-
url?: string | undefined;
|
|
4563
4563
|
docs?: string | undefined;
|
|
4564
4564
|
support?: string | undefined;
|
|
4565
4565
|
tags?: string[] | undefined;
|
|
@@ -4584,6 +4584,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4584
4584
|
};
|
|
4585
4585
|
title: string;
|
|
4586
4586
|
description: string;
|
|
4587
|
+
url?: string | undefined;
|
|
4587
4588
|
longDescription?: {
|
|
4588
4589
|
type: "explicit-string";
|
|
4589
4590
|
content: string;
|
|
@@ -4606,7 +4607,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4606
4607
|
type: "relative";
|
|
4607
4608
|
path: string;
|
|
4608
4609
|
} | undefined;
|
|
4609
|
-
url?: string | undefined;
|
|
4610
4610
|
docs?: string | undefined;
|
|
4611
4611
|
support?: string | undefined;
|
|
4612
4612
|
tags?: string[] | undefined;
|
|
@@ -4918,6 +4918,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4918
4918
|
};
|
|
4919
4919
|
title: string;
|
|
4920
4920
|
description: string;
|
|
4921
|
+
url?: string | undefined;
|
|
4921
4922
|
longDescription?: {
|
|
4922
4923
|
type: "explicit-string";
|
|
4923
4924
|
content: string;
|
|
@@ -4940,7 +4941,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4940
4941
|
type: "relative";
|
|
4941
4942
|
path: string;
|
|
4942
4943
|
} | undefined;
|
|
4943
|
-
url?: string | undefined;
|
|
4944
4944
|
docs?: string | undefined;
|
|
4945
4945
|
support?: string | undefined;
|
|
4946
4946
|
tags?: string[] | undefined;
|
|
@@ -4965,6 +4965,7 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4965
4965
|
};
|
|
4966
4966
|
title: string;
|
|
4967
4967
|
description: string;
|
|
4968
|
+
url?: string | undefined;
|
|
4968
4969
|
longDescription?: {
|
|
4969
4970
|
type: "explicit-string";
|
|
4970
4971
|
content: string;
|
|
@@ -4987,7 +4988,6 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4987
4988
|
type: "relative";
|
|
4988
4989
|
path: string;
|
|
4989
4990
|
} | undefined;
|
|
4990
|
-
url?: string | undefined;
|
|
4991
4991
|
docs?: string | undefined;
|
|
4992
4992
|
support?: string | undefined;
|
|
4993
4993
|
tags?: string[] | undefined;
|
|
@@ -484,6 +484,7 @@ declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
484
484
|
};
|
|
485
485
|
title: string;
|
|
486
486
|
description: string;
|
|
487
|
+
url?: string | undefined;
|
|
487
488
|
longDescription?: {
|
|
488
489
|
type: "explicit-string";
|
|
489
490
|
content: string;
|
|
@@ -515,7 +516,6 @@ declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
515
516
|
type: "absolute-file";
|
|
516
517
|
file: string;
|
|
517
518
|
} | undefined;
|
|
518
|
-
url?: string | undefined;
|
|
519
519
|
docs?: string | undefined;
|
|
520
520
|
support?: string | undefined;
|
|
521
521
|
tags?: string[] | undefined;
|
|
@@ -543,6 +543,7 @@ declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
543
543
|
};
|
|
544
544
|
title: string;
|
|
545
545
|
description: string;
|
|
546
|
+
url?: string | undefined;
|
|
546
547
|
longDescription?: string | {
|
|
547
548
|
type: "explicit-string";
|
|
548
549
|
content: string;
|
|
@@ -574,7 +575,6 @@ declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
574
575
|
type: "absolute-file";
|
|
575
576
|
file: string;
|
|
576
577
|
} | undefined;
|
|
577
|
-
url?: string | undefined;
|
|
578
578
|
docs?: string | undefined;
|
|
579
579
|
support?: string | undefined;
|
|
580
580
|
tags?: string[] | undefined;
|
|
@@ -687,6 +687,7 @@ declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
687
687
|
};
|
|
688
688
|
title: string;
|
|
689
689
|
description: string;
|
|
690
|
+
url?: string | undefined;
|
|
690
691
|
longDescription?: string | undefined;
|
|
691
692
|
changelog?: string | undefined;
|
|
692
693
|
logo?: {
|
|
@@ -694,7 +695,6 @@ declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
694
695
|
mimeType: string;
|
|
695
696
|
content: string;
|
|
696
697
|
} | undefined;
|
|
697
|
-
url?: string | undefined;
|
|
698
698
|
docs?: string | undefined;
|
|
699
699
|
support?: string | undefined;
|
|
700
700
|
tags?: string[] | undefined;
|
|
@@ -716,6 +716,7 @@ declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
716
716
|
};
|
|
717
717
|
title: string;
|
|
718
718
|
description: string;
|
|
719
|
+
url?: string | undefined;
|
|
719
720
|
longDescription?: string | undefined;
|
|
720
721
|
changelog?: string | undefined;
|
|
721
722
|
logo?: {
|
|
@@ -723,7 +724,6 @@ declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
723
724
|
mimeType: string;
|
|
724
725
|
content: string;
|
|
725
726
|
} | undefined;
|
|
726
|
-
url?: string | undefined;
|
|
727
727
|
docs?: string | undefined;
|
|
728
728
|
support?: string | undefined;
|
|
729
729
|
tags?: string[] | undefined;
|
|
@@ -836,6 +836,7 @@ declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
836
836
|
};
|
|
837
837
|
title: string;
|
|
838
838
|
description: string;
|
|
839
|
+
url?: string | undefined;
|
|
839
840
|
longDescription?: string | undefined;
|
|
840
841
|
changelog?: string | undefined;
|
|
841
842
|
logo?: {
|
|
@@ -843,7 +844,6 @@ declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
843
844
|
mimeType: string;
|
|
844
845
|
content: Uint8Array<ArrayBuffer>;
|
|
845
846
|
} | undefined;
|
|
846
|
-
url?: string | undefined;
|
|
847
847
|
docs?: string | undefined;
|
|
848
848
|
support?: string | undefined;
|
|
849
849
|
tags?: string[] | undefined;
|
|
@@ -865,6 +865,7 @@ declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
865
865
|
};
|
|
866
866
|
title: string;
|
|
867
867
|
description: string;
|
|
868
|
+
url?: string | undefined;
|
|
868
869
|
longDescription?: string | undefined;
|
|
869
870
|
changelog?: string | undefined;
|
|
870
871
|
logo?: {
|
|
@@ -872,7 +873,6 @@ declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
872
873
|
mimeType: string;
|
|
873
874
|
content: Uint8Array<ArrayBuffer>;
|
|
874
875
|
} | undefined;
|
|
875
|
-
url?: string | undefined;
|
|
876
876
|
docs?: string | undefined;
|
|
877
877
|
support?: string | undefined;
|
|
878
878
|
tags?: string[] | undefined;
|