@milaboratories/pl-model-middle-layer 1.16.2 → 1.16.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/block_meta/block_description.d.ts +30 -30
- package/dist/block_meta/block_manifest.d.ts +78 -78
- package/dist/block_meta/block_meta.d.ts +18 -18
- package/dist/block_registry/block_pack_spec.d.ts +8 -8
- package/dist/block_registry/overview.d.ts +458 -458
- package/dist/block_registry/registry_spec.d.ts +12 -12
- package/package.json +5 -5
|
@@ -276,9 +276,10 @@ declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
276
276
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
277
277
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
278
278
|
}, "strip", z.ZodTypeAny, {
|
|
279
|
+
title: string;
|
|
279
280
|
organization: {
|
|
280
|
-
name: string;
|
|
281
281
|
url: string;
|
|
282
|
+
name: string;
|
|
282
283
|
logo?: {
|
|
283
284
|
type: "explicit-base64";
|
|
284
285
|
mimeType: string;
|
|
@@ -290,8 +291,8 @@ declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
290
291
|
} & {
|
|
291
292
|
[k: string]: unknown;
|
|
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;
|
|
@@ -323,9 +323,10 @@ declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
323
323
|
termsOfServiceUrl?: string | undefined;
|
|
324
324
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
325
325
|
}, {
|
|
326
|
+
title: string;
|
|
326
327
|
organization: {
|
|
327
|
-
name: string;
|
|
328
328
|
url: string;
|
|
329
|
+
name: string;
|
|
329
330
|
logo?: {
|
|
330
331
|
type: "explicit-base64";
|
|
331
332
|
mimeType: string;
|
|
@@ -337,8 +338,8 @@ declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
337
338
|
} & {
|
|
338
339
|
[k: string]: unknown;
|
|
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;
|
|
@@ -658,9 +658,10 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
658
658
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
659
659
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
660
660
|
}, "strip", z.ZodTypeAny, {
|
|
661
|
+
title: string;
|
|
661
662
|
organization: {
|
|
662
|
-
name: string;
|
|
663
663
|
url: string;
|
|
664
|
+
name: string;
|
|
664
665
|
logo?: {
|
|
665
666
|
type: "explicit-base64";
|
|
666
667
|
mimeType: string;
|
|
@@ -672,8 +673,8 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
672
673
|
} & {
|
|
673
674
|
[k: string]: unknown;
|
|
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;
|
|
@@ -705,9 +705,10 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
705
705
|
termsOfServiceUrl?: string | undefined;
|
|
706
706
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
707
707
|
}, {
|
|
708
|
+
title: string;
|
|
708
709
|
organization: {
|
|
709
|
-
name: string;
|
|
710
710
|
url: string;
|
|
711
|
+
name: string;
|
|
711
712
|
logo?: {
|
|
712
713
|
type: "explicit-base64";
|
|
713
714
|
mimeType: string;
|
|
@@ -719,8 +720,8 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
719
720
|
} & {
|
|
720
721
|
[k: string]: unknown;
|
|
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;
|
|
@@ -1039,9 +1039,10 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1039
1039
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
1040
1040
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
1041
1041
|
}, "strip", z.ZodTypeAny, {
|
|
1042
|
+
title: string;
|
|
1042
1043
|
organization: {
|
|
1043
|
-
name: string;
|
|
1044
1044
|
url: string;
|
|
1045
|
+
name: string;
|
|
1045
1046
|
logo?: {
|
|
1046
1047
|
type: "explicit-base64";
|
|
1047
1048
|
mimeType: string;
|
|
@@ -1053,8 +1054,8 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1053
1054
|
} & {
|
|
1054
1055
|
[k: string]: unknown;
|
|
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;
|
|
@@ -1086,9 +1086,10 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1086
1086
|
termsOfServiceUrl?: string | undefined;
|
|
1087
1087
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1088
1088
|
}, {
|
|
1089
|
+
title: string;
|
|
1089
1090
|
organization: {
|
|
1090
|
-
name: string;
|
|
1091
1091
|
url: string;
|
|
1092
|
+
name: string;
|
|
1092
1093
|
logo?: {
|
|
1093
1094
|
type: "explicit-base64";
|
|
1094
1095
|
mimeType: string;
|
|
@@ -1100,8 +1101,8 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1100
1101
|
} & {
|
|
1101
1102
|
[k: string]: unknown;
|
|
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;
|
|
@@ -1420,9 +1420,10 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1420
1420
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
1421
1421
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
1422
1422
|
}, "strip", z.ZodTypeAny, {
|
|
1423
|
+
title: string;
|
|
1423
1424
|
organization: {
|
|
1424
|
-
name: string;
|
|
1425
1425
|
url: string;
|
|
1426
|
+
name: string;
|
|
1426
1427
|
logo?: {
|
|
1427
1428
|
type: "explicit-base64";
|
|
1428
1429
|
mimeType: string;
|
|
@@ -1434,8 +1435,8 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1434
1435
|
} & {
|
|
1435
1436
|
[k: string]: unknown;
|
|
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;
|
|
@@ -1467,9 +1467,10 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1467
1467
|
termsOfServiceUrl?: string | undefined;
|
|
1468
1468
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1469
1469
|
}, {
|
|
1470
|
+
title: string;
|
|
1470
1471
|
organization: {
|
|
1471
|
-
name: string;
|
|
1472
1472
|
url: string;
|
|
1473
|
+
name: string;
|
|
1473
1474
|
logo?: {
|
|
1474
1475
|
type: "explicit-base64";
|
|
1475
1476
|
mimeType: string;
|
|
@@ -1481,8 +1482,8 @@ declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
1481
1482
|
} & {
|
|
1482
1483
|
[k: string]: unknown;
|
|
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;
|
|
@@ -1820,9 +1820,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
1820
1820
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
1821
1821
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
1822
1822
|
}, "strip", z.ZodTypeAny, {
|
|
1823
|
+
title: string;
|
|
1823
1824
|
organization: {
|
|
1824
|
-
name: string;
|
|
1825
1825
|
url: string;
|
|
1826
|
+
name: string;
|
|
1826
1827
|
logo?: {
|
|
1827
1828
|
type: "explicit-base64";
|
|
1828
1829
|
mimeType: string;
|
|
@@ -1834,8 +1835,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
1834
1835
|
} & {
|
|
1835
1836
|
[k: string]: unknown;
|
|
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;
|
|
@@ -1867,9 +1867,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
1867
1867
|
termsOfServiceUrl?: string | undefined;
|
|
1868
1868
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1869
1869
|
}, {
|
|
1870
|
+
title: string;
|
|
1870
1871
|
organization: {
|
|
1871
|
-
name: string;
|
|
1872
1872
|
url: string;
|
|
1873
|
+
name: string;
|
|
1873
1874
|
logo?: {
|
|
1874
1875
|
type: "explicit-base64";
|
|
1875
1876
|
mimeType: string;
|
|
@@ -1881,8 +1882,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
1881
1882
|
} & {
|
|
1882
1883
|
[k: string]: unknown;
|
|
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;
|
|
@@ -2201,9 +2201,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2201
2201
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2202
2202
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
2203
2203
|
}, "strip", z.ZodTypeAny, {
|
|
2204
|
+
title: string;
|
|
2204
2205
|
organization: {
|
|
2205
|
-
name: string;
|
|
2206
2206
|
url: string;
|
|
2207
|
+
name: string;
|
|
2207
2208
|
logo?: {
|
|
2208
2209
|
type: "explicit-base64";
|
|
2209
2210
|
mimeType: string;
|
|
@@ -2215,8 +2216,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2215
2216
|
} & {
|
|
2216
2217
|
[k: string]: unknown;
|
|
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;
|
|
@@ -2248,9 +2248,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2248
2248
|
termsOfServiceUrl?: string | undefined;
|
|
2249
2249
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2250
2250
|
}, {
|
|
2251
|
+
title: string;
|
|
2251
2252
|
organization: {
|
|
2252
|
-
name: string;
|
|
2253
2253
|
url: string;
|
|
2254
|
+
name: string;
|
|
2254
2255
|
logo?: {
|
|
2255
2256
|
type: "explicit-base64";
|
|
2256
2257
|
mimeType: string;
|
|
@@ -2262,8 +2263,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2262
2263
|
} & {
|
|
2263
2264
|
[k: string]: unknown;
|
|
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;
|
|
@@ -2582,9 +2582,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2582
2582
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2583
2583
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
2584
2584
|
}, "strip", z.ZodTypeAny, {
|
|
2585
|
+
title: string;
|
|
2585
2586
|
organization: {
|
|
2586
|
-
name: string;
|
|
2587
2587
|
url: string;
|
|
2588
|
+
name: string;
|
|
2588
2589
|
logo?: {
|
|
2589
2590
|
type: "explicit-base64";
|
|
2590
2591
|
mimeType: string;
|
|
@@ -2596,8 +2597,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2596
2597
|
} & {
|
|
2597
2598
|
[k: string]: unknown;
|
|
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;
|
|
@@ -2629,9 +2629,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2629
2629
|
termsOfServiceUrl?: string | undefined;
|
|
2630
2630
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2631
2631
|
}, {
|
|
2632
|
+
title: string;
|
|
2632
2633
|
organization: {
|
|
2633
|
-
name: string;
|
|
2634
2634
|
url: string;
|
|
2635
|
+
name: string;
|
|
2635
2636
|
logo?: {
|
|
2636
2637
|
type: "explicit-base64";
|
|
2637
2638
|
mimeType: string;
|
|
@@ -2643,8 +2644,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2643
2644
|
} & {
|
|
2644
2645
|
[k: string]: unknown;
|
|
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;
|
|
@@ -2980,9 +2980,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2980
2980
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2981
2981
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
2982
2982
|
}, "strip", z.ZodTypeAny, {
|
|
2983
|
+
title: string;
|
|
2983
2984
|
organization: {
|
|
2984
|
-
name: string;
|
|
2985
2985
|
url: string;
|
|
2986
|
+
name: string;
|
|
2986
2987
|
logo?: {
|
|
2987
2988
|
type: "explicit-base64";
|
|
2988
2989
|
mimeType: string;
|
|
@@ -2994,8 +2995,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
2994
2995
|
} & {
|
|
2995
2996
|
[k: string]: unknown;
|
|
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;
|
|
@@ -3027,9 +3027,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3027
3027
|
termsOfServiceUrl?: string | undefined;
|
|
3028
3028
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3029
3029
|
}, {
|
|
3030
|
+
title: string;
|
|
3030
3031
|
organization: {
|
|
3031
|
-
name: string;
|
|
3032
3032
|
url: string;
|
|
3033
|
+
name: string;
|
|
3033
3034
|
logo?: {
|
|
3034
3035
|
type: "explicit-base64";
|
|
3035
3036
|
mimeType: string;
|
|
@@ -3041,8 +3042,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3041
3042
|
} & {
|
|
3042
3043
|
[k: string]: unknown;
|
|
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;
|
|
@@ -3361,9 +3361,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3361
3361
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
3362
3362
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
3363
3363
|
}, "strip", z.ZodTypeAny, {
|
|
3364
|
+
title: string;
|
|
3364
3365
|
organization: {
|
|
3365
|
-
name: string;
|
|
3366
3366
|
url: string;
|
|
3367
|
+
name: string;
|
|
3367
3368
|
logo?: {
|
|
3368
3369
|
type: "explicit-base64";
|
|
3369
3370
|
mimeType: string;
|
|
@@ -3375,8 +3376,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3375
3376
|
} & {
|
|
3376
3377
|
[k: string]: unknown;
|
|
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;
|
|
@@ -3408,9 +3408,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3408
3408
|
termsOfServiceUrl?: string | undefined;
|
|
3409
3409
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3410
3410
|
}, {
|
|
3411
|
+
title: string;
|
|
3411
3412
|
organization: {
|
|
3412
|
-
name: string;
|
|
3413
3413
|
url: string;
|
|
3414
|
+
name: string;
|
|
3414
3415
|
logo?: {
|
|
3415
3416
|
type: "explicit-base64";
|
|
3416
3417
|
mimeType: string;
|
|
@@ -3422,8 +3423,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3422
3423
|
} & {
|
|
3423
3424
|
[k: string]: unknown;
|
|
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;
|
|
@@ -3742,9 +3742,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3742
3742
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
3743
3743
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
3744
3744
|
}, "strip", z.ZodTypeAny, {
|
|
3745
|
+
title: string;
|
|
3745
3746
|
organization: {
|
|
3746
|
-
name: string;
|
|
3747
3747
|
url: string;
|
|
3748
|
+
name: string;
|
|
3748
3749
|
logo?: {
|
|
3749
3750
|
type: "explicit-base64";
|
|
3750
3751
|
mimeType: string;
|
|
@@ -3756,8 +3757,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3756
3757
|
} & {
|
|
3757
3758
|
[k: string]: unknown;
|
|
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;
|
|
@@ -3789,9 +3789,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3789
3789
|
termsOfServiceUrl?: string | undefined;
|
|
3790
3790
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3791
3791
|
}, {
|
|
3792
|
+
title: string;
|
|
3792
3793
|
organization: {
|
|
3793
|
-
name: string;
|
|
3794
3794
|
url: string;
|
|
3795
|
+
name: string;
|
|
3795
3796
|
logo?: {
|
|
3796
3797
|
type: "explicit-base64";
|
|
3797
3798
|
mimeType: string;
|
|
@@ -3803,8 +3804,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
3803
3804
|
} & {
|
|
3804
3805
|
[k: string]: unknown;
|
|
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;
|
|
@@ -4140,9 +4140,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4140
4140
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4141
4141
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
4142
4142
|
}, "strip", z.ZodTypeAny, {
|
|
4143
|
+
title: string;
|
|
4143
4144
|
organization: {
|
|
4144
|
-
name: string;
|
|
4145
4145
|
url: string;
|
|
4146
|
+
name: string;
|
|
4146
4147
|
logo?: {
|
|
4147
4148
|
type: "explicit-base64";
|
|
4148
4149
|
mimeType: string;
|
|
@@ -4154,8 +4155,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4154
4155
|
} & {
|
|
4155
4156
|
[k: string]: unknown;
|
|
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;
|
|
@@ -4187,9 +4187,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4187
4187
|
termsOfServiceUrl?: string | undefined;
|
|
4188
4188
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4189
4189
|
}, {
|
|
4190
|
+
title: string;
|
|
4190
4191
|
organization: {
|
|
4191
|
-
name: string;
|
|
4192
4192
|
url: string;
|
|
4193
|
+
name: string;
|
|
4193
4194
|
logo?: {
|
|
4194
4195
|
type: "explicit-base64";
|
|
4195
4196
|
mimeType: string;
|
|
@@ -4201,8 +4202,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4201
4202
|
} & {
|
|
4202
4203
|
[k: string]: unknown;
|
|
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;
|
|
@@ -4521,9 +4521,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4521
4521
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4522
4522
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
4523
4523
|
}, "strip", z.ZodTypeAny, {
|
|
4524
|
+
title: string;
|
|
4524
4525
|
organization: {
|
|
4525
|
-
name: string;
|
|
4526
4526
|
url: string;
|
|
4527
|
+
name: string;
|
|
4527
4528
|
logo?: {
|
|
4528
4529
|
type: "explicit-base64";
|
|
4529
4530
|
mimeType: string;
|
|
@@ -4535,8 +4536,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4535
4536
|
} & {
|
|
4536
4537
|
[k: string]: unknown;
|
|
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;
|
|
@@ -4568,9 +4568,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4568
4568
|
termsOfServiceUrl?: string | undefined;
|
|
4569
4569
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4570
4570
|
}, {
|
|
4571
|
+
title: string;
|
|
4571
4572
|
organization: {
|
|
4572
|
-
name: string;
|
|
4573
4573
|
url: string;
|
|
4574
|
+
name: string;
|
|
4574
4575
|
logo?: {
|
|
4575
4576
|
type: "explicit-base64";
|
|
4576
4577
|
mimeType: string;
|
|
@@ -4582,8 +4583,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4582
4583
|
} & {
|
|
4583
4584
|
[k: string]: unknown;
|
|
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;
|
|
@@ -4902,9 +4902,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4902
4902
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4903
4903
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
4904
4904
|
}, "strip", z.ZodTypeAny, {
|
|
4905
|
+
title: string;
|
|
4905
4906
|
organization: {
|
|
4906
|
-
name: string;
|
|
4907
4907
|
url: string;
|
|
4908
|
+
name: string;
|
|
4908
4909
|
logo?: {
|
|
4909
4910
|
type: "explicit-base64";
|
|
4910
4911
|
mimeType: string;
|
|
@@ -4916,8 +4917,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4916
4917
|
} & {
|
|
4917
4918
|
[k: string]: unknown;
|
|
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;
|
|
@@ -4949,9 +4949,10 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4949
4949
|
termsOfServiceUrl?: string | undefined;
|
|
4950
4950
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4951
4951
|
}, {
|
|
4952
|
+
title: string;
|
|
4952
4953
|
organization: {
|
|
4953
|
-
name: string;
|
|
4954
4954
|
url: string;
|
|
4955
|
+
name: string;
|
|
4955
4956
|
logo?: {
|
|
4956
4957
|
type: "explicit-base64";
|
|
4957
4958
|
mimeType: string;
|
|
@@ -4963,8 +4964,8 @@ declare const BlockPackManifest: z.ZodObject<{
|
|
|
4963
4964
|
} & {
|
|
4964
4965
|
[k: string]: unknown;
|
|
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;
|