@milaboratories/pl-model-middle-layer 1.4.1 → 1.4.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 +148 -0
- package/dist/block_meta/block_description.d.ts.map +1 -1
- package/dist/block_meta/block_id.d.ts +2 -0
- package/dist/block_meta/block_id.d.ts.map +1 -1
- package/dist/block_meta/block_manifest.d.ts +141 -0
- package/dist/block_meta/block_manifest.d.ts.map +1 -1
- package/dist/block_meta/block_meta.d.ts +65 -0
- package/dist/block_meta/block_meta.d.ts.map +1 -1
- package/dist/block_registry/overview.d.ts +12 -0
- package/dist/block_registry/overview.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +105 -96
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/block_meta/block_id.ts +20 -0
- package/src/block_meta/block_meta.ts +1 -0
|
@@ -80,6 +80,40 @@ export declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
80
80
|
type: "absolute-file";
|
|
81
81
|
file: string;
|
|
82
82
|
}>]>]>>;
|
|
83
|
+
changelog: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, {
|
|
84
|
+
type: "explicit-string";
|
|
85
|
+
content: string;
|
|
86
|
+
} | {
|
|
87
|
+
type: "relative";
|
|
88
|
+
path: string;
|
|
89
|
+
}, string>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
90
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
91
|
+
content: z.ZodString;
|
|
92
|
+
}, "strict", z.ZodTypeAny, {
|
|
93
|
+
type: "explicit-string";
|
|
94
|
+
content: string;
|
|
95
|
+
}, {
|
|
96
|
+
type: "explicit-string";
|
|
97
|
+
content: string;
|
|
98
|
+
}>, z.ZodObject<{
|
|
99
|
+
type: z.ZodLiteral<"relative">;
|
|
100
|
+
path: z.ZodString;
|
|
101
|
+
}, "strict", z.ZodTypeAny, {
|
|
102
|
+
type: "relative";
|
|
103
|
+
path: string;
|
|
104
|
+
}, {
|
|
105
|
+
type: "relative";
|
|
106
|
+
path: string;
|
|
107
|
+
}>, z.ZodObject<{
|
|
108
|
+
type: z.ZodLiteral<"absolute-file">;
|
|
109
|
+
file: z.ZodString;
|
|
110
|
+
}, "strict", z.ZodTypeAny, {
|
|
111
|
+
type: "absolute-file";
|
|
112
|
+
file: string;
|
|
113
|
+
}, {
|
|
114
|
+
type: "absolute-file";
|
|
115
|
+
file: string;
|
|
116
|
+
}>]>]>>;
|
|
83
117
|
logo: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, {
|
|
84
118
|
type: "explicit-base64";
|
|
85
119
|
content: string;
|
|
@@ -221,6 +255,16 @@ export declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
221
255
|
type: "absolute-file";
|
|
222
256
|
file: string;
|
|
223
257
|
} | undefined;
|
|
258
|
+
changelog?: {
|
|
259
|
+
type: "explicit-string";
|
|
260
|
+
content: string;
|
|
261
|
+
} | {
|
|
262
|
+
type: "relative";
|
|
263
|
+
path: string;
|
|
264
|
+
} | {
|
|
265
|
+
type: "absolute-file";
|
|
266
|
+
file: string;
|
|
267
|
+
} | undefined;
|
|
224
268
|
logo?: {
|
|
225
269
|
type: "explicit-base64";
|
|
226
270
|
content: string;
|
|
@@ -264,6 +308,16 @@ export declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
264
308
|
type: "absolute-file";
|
|
265
309
|
file: string;
|
|
266
310
|
} | undefined;
|
|
311
|
+
changelog?: string | {
|
|
312
|
+
type: "explicit-string";
|
|
313
|
+
content: string;
|
|
314
|
+
} | {
|
|
315
|
+
type: "relative";
|
|
316
|
+
path: string;
|
|
317
|
+
} | {
|
|
318
|
+
type: "absolute-file";
|
|
319
|
+
file: string;
|
|
320
|
+
} | undefined;
|
|
267
321
|
logo?: string | {
|
|
268
322
|
type: "explicit-base64";
|
|
269
323
|
content: string;
|
|
@@ -317,6 +371,16 @@ export declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
317
371
|
type: "absolute-file";
|
|
318
372
|
file: string;
|
|
319
373
|
} | undefined;
|
|
374
|
+
changelog?: {
|
|
375
|
+
type: "explicit-string";
|
|
376
|
+
content: string;
|
|
377
|
+
} | {
|
|
378
|
+
type: "relative";
|
|
379
|
+
path: string;
|
|
380
|
+
} | {
|
|
381
|
+
type: "absolute-file";
|
|
382
|
+
file: string;
|
|
383
|
+
} | undefined;
|
|
320
384
|
logo?: {
|
|
321
385
|
type: "explicit-base64";
|
|
322
386
|
content: string;
|
|
@@ -370,6 +434,16 @@ export declare const BlockPackDescriptionFromPackageJsonRaw: z.ZodObject<{
|
|
|
370
434
|
type: "absolute-file";
|
|
371
435
|
file: string;
|
|
372
436
|
} | undefined;
|
|
437
|
+
changelog?: string | {
|
|
438
|
+
type: "explicit-string";
|
|
439
|
+
content: string;
|
|
440
|
+
} | {
|
|
441
|
+
type: "relative";
|
|
442
|
+
path: string;
|
|
443
|
+
} | {
|
|
444
|
+
type: "absolute-file";
|
|
445
|
+
file: string;
|
|
446
|
+
} | undefined;
|
|
373
447
|
logo?: string | {
|
|
374
448
|
type: "explicit-base64";
|
|
375
449
|
content: string;
|
|
@@ -558,6 +632,40 @@ export declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
558
632
|
type: "absolute-file";
|
|
559
633
|
file: string;
|
|
560
634
|
}>]>]>>;
|
|
635
|
+
changelog: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, {
|
|
636
|
+
type: "explicit-string";
|
|
637
|
+
content: string;
|
|
638
|
+
} | {
|
|
639
|
+
type: "relative";
|
|
640
|
+
path: string;
|
|
641
|
+
}, string>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
642
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
643
|
+
content: z.ZodString;
|
|
644
|
+
}, "strict", z.ZodTypeAny, {
|
|
645
|
+
type: "explicit-string";
|
|
646
|
+
content: string;
|
|
647
|
+
}, {
|
|
648
|
+
type: "explicit-string";
|
|
649
|
+
content: string;
|
|
650
|
+
}>, z.ZodObject<{
|
|
651
|
+
type: z.ZodLiteral<"relative">;
|
|
652
|
+
path: z.ZodString;
|
|
653
|
+
}, "strict", z.ZodTypeAny, {
|
|
654
|
+
type: "relative";
|
|
655
|
+
path: string;
|
|
656
|
+
}, {
|
|
657
|
+
type: "relative";
|
|
658
|
+
path: string;
|
|
659
|
+
}>, z.ZodObject<{
|
|
660
|
+
type: z.ZodLiteral<"absolute-file">;
|
|
661
|
+
file: z.ZodString;
|
|
662
|
+
}, "strict", z.ZodTypeAny, {
|
|
663
|
+
type: "absolute-file";
|
|
664
|
+
file: string;
|
|
665
|
+
}, {
|
|
666
|
+
type: "absolute-file";
|
|
667
|
+
file: string;
|
|
668
|
+
}>]>]>>;
|
|
561
669
|
logo: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, {
|
|
562
670
|
type: "explicit-base64";
|
|
563
671
|
content: string;
|
|
@@ -699,6 +807,16 @@ export declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
699
807
|
type: "absolute-file";
|
|
700
808
|
file: string;
|
|
701
809
|
} | undefined;
|
|
810
|
+
changelog?: {
|
|
811
|
+
type: "explicit-string";
|
|
812
|
+
content: string;
|
|
813
|
+
} | {
|
|
814
|
+
type: "relative";
|
|
815
|
+
path: string;
|
|
816
|
+
} | {
|
|
817
|
+
type: "absolute-file";
|
|
818
|
+
file: string;
|
|
819
|
+
} | undefined;
|
|
702
820
|
logo?: {
|
|
703
821
|
type: "explicit-base64";
|
|
704
822
|
content: string;
|
|
@@ -742,6 +860,16 @@ export declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
742
860
|
type: "absolute-file";
|
|
743
861
|
file: string;
|
|
744
862
|
} | undefined;
|
|
863
|
+
changelog?: string | {
|
|
864
|
+
type: "explicit-string";
|
|
865
|
+
content: string;
|
|
866
|
+
} | {
|
|
867
|
+
type: "relative";
|
|
868
|
+
path: string;
|
|
869
|
+
} | {
|
|
870
|
+
type: "absolute-file";
|
|
871
|
+
file: string;
|
|
872
|
+
} | undefined;
|
|
745
873
|
logo?: string | {
|
|
746
874
|
type: "explicit-base64";
|
|
747
875
|
content: string;
|
|
@@ -795,6 +923,16 @@ export declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
795
923
|
type: "absolute-file";
|
|
796
924
|
file: string;
|
|
797
925
|
} | undefined;
|
|
926
|
+
changelog?: {
|
|
927
|
+
type: "explicit-string";
|
|
928
|
+
content: string;
|
|
929
|
+
} | {
|
|
930
|
+
type: "relative";
|
|
931
|
+
path: string;
|
|
932
|
+
} | {
|
|
933
|
+
type: "absolute-file";
|
|
934
|
+
file: string;
|
|
935
|
+
} | undefined;
|
|
798
936
|
logo?: {
|
|
799
937
|
type: "explicit-base64";
|
|
800
938
|
content: string;
|
|
@@ -853,6 +991,16 @@ export declare const BlockPackDescriptionRaw: z.ZodObject<{
|
|
|
853
991
|
type: "absolute-file";
|
|
854
992
|
file: string;
|
|
855
993
|
} | undefined;
|
|
994
|
+
changelog?: string | {
|
|
995
|
+
type: "explicit-string";
|
|
996
|
+
content: string;
|
|
997
|
+
} | {
|
|
998
|
+
type: "relative";
|
|
999
|
+
path: string;
|
|
1000
|
+
} | {
|
|
1001
|
+
type: "absolute-file";
|
|
1002
|
+
file: string;
|
|
1003
|
+
} | undefined;
|
|
856
1004
|
logo?: string | {
|
|
857
1005
|
type: "explicit-base64";
|
|
858
1006
|
content: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block_description.d.ts","sourceRoot":"","sources":["../../src/block_meta/block_description.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAKpC;;qDAEqD;AACrD,eAAO,MAAM,sCAAsC
|
|
1
|
+
{"version":3,"file":"block_description.d.ts","sourceRoot":"","sources":["../../src/block_meta/block_description.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAKpC;;qDAEqD;AACrD,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGjD,CAAC;AAEH,wBAAgB,gCAAgC,CAC9C,UAAU,SAAS,UAAU,EAC7B,IAAI,SAAS,UAAU,EACvB,UAAU,EAAE,UAAU,EAAE,IAAI,EAAE,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAMnC;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGnC,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
|
|
@@ -26,4 +26,6 @@ export declare const BlockPackIdNoVersion: z.ZodObject<Omit<{
|
|
|
26
26
|
name: string;
|
|
27
27
|
}>;
|
|
28
28
|
export type BlockPackIdNoVersion = z.infer<typeof BlockPackIdNoVersion>;
|
|
29
|
+
export declare function blockPackIdEquals(bp1: BlockPackId | undefined, bp2: BlockPackId | undefined): boolean;
|
|
30
|
+
export declare function blockPackIdNoVersionEquals(bp1: BlockPackIdNoVersion | undefined, bp2: BlockPackIdNoVersion | undefined): boolean;
|
|
29
31
|
//# sourceMappingURL=block_id.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block_id.d.ts","sourceRoot":"","sources":["../../src/block_meta/block_id.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,qCAAqC;AACrC,eAAO,MAAM,WAAW;;;;;;;;;;;;EAMb,CAAC;AACZ,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,oBAAoB;;;;;;;;;;EAAsC,CAAC;AACxE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"block_id.d.ts","sourceRoot":"","sources":["../../src/block_meta/block_id.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,qCAAqC;AACrC,eAAO,MAAM,WAAW;;;;;;;;;;;;EAMb,CAAC;AACZ,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,oBAAoB;;;;;;;;;;EAAsC,CAAC;AACxE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,wBAAgB,iBAAiB,CAC/B,GAAG,EAAE,WAAW,GAAG,SAAS,EAC5B,GAAG,EAAE,WAAW,GAAG,SAAS,GAC3B,OAAO,CAMT;AAED,wBAAgB,0BAA0B,CACxC,GAAG,EAAE,oBAAoB,GAAG,SAAS,EACrC,GAAG,EAAE,oBAAoB,GAAG,SAAS,GACpC,OAAO,CAIT"}
|
|
@@ -146,6 +146,25 @@ export declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
146
146
|
type: "relative";
|
|
147
147
|
path: string;
|
|
148
148
|
}>]>>;
|
|
149
|
+
changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
150
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
151
|
+
content: z.ZodString;
|
|
152
|
+
}, "strict", z.ZodTypeAny, {
|
|
153
|
+
type: "explicit-string";
|
|
154
|
+
content: string;
|
|
155
|
+
}, {
|
|
156
|
+
type: "explicit-string";
|
|
157
|
+
content: string;
|
|
158
|
+
}>, z.ZodObject<{
|
|
159
|
+
type: z.ZodLiteral<"relative">;
|
|
160
|
+
path: z.ZodString;
|
|
161
|
+
}, "strict", z.ZodTypeAny, {
|
|
162
|
+
type: "relative";
|
|
163
|
+
path: string;
|
|
164
|
+
}, {
|
|
165
|
+
type: "relative";
|
|
166
|
+
path: string;
|
|
167
|
+
}>]>>;
|
|
149
168
|
logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
150
169
|
type: z.ZodLiteral<"explicit-base64">;
|
|
151
170
|
mimeType: z.ZodString;
|
|
@@ -243,6 +262,13 @@ export declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
243
262
|
type: "relative";
|
|
244
263
|
path: string;
|
|
245
264
|
} | undefined;
|
|
265
|
+
changelog?: {
|
|
266
|
+
type: "explicit-string";
|
|
267
|
+
content: string;
|
|
268
|
+
} | {
|
|
269
|
+
type: "relative";
|
|
270
|
+
path: string;
|
|
271
|
+
} | undefined;
|
|
246
272
|
logo?: {
|
|
247
273
|
type: "explicit-base64";
|
|
248
274
|
content: string;
|
|
@@ -277,6 +303,13 @@ export declare const BlockPackMetaManifest: z.ZodObject<{
|
|
|
277
303
|
type: "relative";
|
|
278
304
|
path: string;
|
|
279
305
|
} | undefined;
|
|
306
|
+
changelog?: {
|
|
307
|
+
type: "explicit-string";
|
|
308
|
+
content: string;
|
|
309
|
+
} | {
|
|
310
|
+
type: "relative";
|
|
311
|
+
path: string;
|
|
312
|
+
} | undefined;
|
|
280
313
|
logo?: {
|
|
281
314
|
type: "explicit-base64";
|
|
282
315
|
content: string;
|
|
@@ -451,6 +484,25 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
451
484
|
type: "relative";
|
|
452
485
|
path: string;
|
|
453
486
|
}>]>>;
|
|
487
|
+
changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
488
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
489
|
+
content: z.ZodString;
|
|
490
|
+
}, "strict", z.ZodTypeAny, {
|
|
491
|
+
type: "explicit-string";
|
|
492
|
+
content: string;
|
|
493
|
+
}, {
|
|
494
|
+
type: "explicit-string";
|
|
495
|
+
content: string;
|
|
496
|
+
}>, z.ZodObject<{
|
|
497
|
+
type: z.ZodLiteral<"relative">;
|
|
498
|
+
path: z.ZodString;
|
|
499
|
+
}, "strict", z.ZodTypeAny, {
|
|
500
|
+
type: "relative";
|
|
501
|
+
path: string;
|
|
502
|
+
}, {
|
|
503
|
+
type: "relative";
|
|
504
|
+
path: string;
|
|
505
|
+
}>]>>;
|
|
454
506
|
logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
455
507
|
type: z.ZodLiteral<"explicit-base64">;
|
|
456
508
|
mimeType: z.ZodString;
|
|
@@ -548,6 +600,13 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
548
600
|
type: "relative";
|
|
549
601
|
path: string;
|
|
550
602
|
} | undefined;
|
|
603
|
+
changelog?: {
|
|
604
|
+
type: "explicit-string";
|
|
605
|
+
content: string;
|
|
606
|
+
} | {
|
|
607
|
+
type: "relative";
|
|
608
|
+
path: string;
|
|
609
|
+
} | undefined;
|
|
551
610
|
logo?: {
|
|
552
611
|
type: "explicit-base64";
|
|
553
612
|
content: string;
|
|
@@ -582,6 +641,13 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
582
641
|
type: "relative";
|
|
583
642
|
path: string;
|
|
584
643
|
} | undefined;
|
|
644
|
+
changelog?: {
|
|
645
|
+
type: "explicit-string";
|
|
646
|
+
content: string;
|
|
647
|
+
} | {
|
|
648
|
+
type: "relative";
|
|
649
|
+
path: string;
|
|
650
|
+
} | undefined;
|
|
585
651
|
logo?: {
|
|
586
652
|
type: "explicit-base64";
|
|
587
653
|
content: string;
|
|
@@ -635,6 +701,13 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
635
701
|
type: "relative";
|
|
636
702
|
path: string;
|
|
637
703
|
} | undefined;
|
|
704
|
+
changelog?: {
|
|
705
|
+
type: "explicit-string";
|
|
706
|
+
content: string;
|
|
707
|
+
} | {
|
|
708
|
+
type: "relative";
|
|
709
|
+
path: string;
|
|
710
|
+
} | undefined;
|
|
638
711
|
logo?: {
|
|
639
712
|
type: "explicit-base64";
|
|
640
713
|
content: string;
|
|
@@ -696,6 +769,13 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
|
|
|
696
769
|
type: "relative";
|
|
697
770
|
path: string;
|
|
698
771
|
} | undefined;
|
|
772
|
+
changelog?: {
|
|
773
|
+
type: "explicit-string";
|
|
774
|
+
content: string;
|
|
775
|
+
} | {
|
|
776
|
+
type: "relative";
|
|
777
|
+
path: string;
|
|
778
|
+
} | undefined;
|
|
699
779
|
logo?: {
|
|
700
780
|
type: "explicit-base64";
|
|
701
781
|
content: string;
|
|
@@ -892,6 +972,25 @@ export declare const BlockPackManifest: z.ZodObject<{
|
|
|
892
972
|
type: "relative";
|
|
893
973
|
path: string;
|
|
894
974
|
}>]>>;
|
|
975
|
+
changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
976
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
977
|
+
content: z.ZodString;
|
|
978
|
+
}, "strict", z.ZodTypeAny, {
|
|
979
|
+
type: "explicit-string";
|
|
980
|
+
content: string;
|
|
981
|
+
}, {
|
|
982
|
+
type: "explicit-string";
|
|
983
|
+
content: string;
|
|
984
|
+
}>, z.ZodObject<{
|
|
985
|
+
type: z.ZodLiteral<"relative">;
|
|
986
|
+
path: z.ZodString;
|
|
987
|
+
}, "strict", z.ZodTypeAny, {
|
|
988
|
+
type: "relative";
|
|
989
|
+
path: string;
|
|
990
|
+
}, {
|
|
991
|
+
type: "relative";
|
|
992
|
+
path: string;
|
|
993
|
+
}>]>>;
|
|
895
994
|
logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
896
995
|
type: z.ZodLiteral<"explicit-base64">;
|
|
897
996
|
mimeType: z.ZodString;
|
|
@@ -989,6 +1088,13 @@ export declare const BlockPackManifest: z.ZodObject<{
|
|
|
989
1088
|
type: "relative";
|
|
990
1089
|
path: string;
|
|
991
1090
|
} | undefined;
|
|
1091
|
+
changelog?: {
|
|
1092
|
+
type: "explicit-string";
|
|
1093
|
+
content: string;
|
|
1094
|
+
} | {
|
|
1095
|
+
type: "relative";
|
|
1096
|
+
path: string;
|
|
1097
|
+
} | undefined;
|
|
992
1098
|
logo?: {
|
|
993
1099
|
type: "explicit-base64";
|
|
994
1100
|
content: string;
|
|
@@ -1023,6 +1129,13 @@ export declare const BlockPackManifest: z.ZodObject<{
|
|
|
1023
1129
|
type: "relative";
|
|
1024
1130
|
path: string;
|
|
1025
1131
|
} | undefined;
|
|
1132
|
+
changelog?: {
|
|
1133
|
+
type: "explicit-string";
|
|
1134
|
+
content: string;
|
|
1135
|
+
} | {
|
|
1136
|
+
type: "relative";
|
|
1137
|
+
path: string;
|
|
1138
|
+
} | undefined;
|
|
1026
1139
|
logo?: {
|
|
1027
1140
|
type: "explicit-base64";
|
|
1028
1141
|
content: string;
|
|
@@ -1076,6 +1189,13 @@ export declare const BlockPackManifest: z.ZodObject<{
|
|
|
1076
1189
|
type: "relative";
|
|
1077
1190
|
path: string;
|
|
1078
1191
|
} | undefined;
|
|
1192
|
+
changelog?: {
|
|
1193
|
+
type: "explicit-string";
|
|
1194
|
+
content: string;
|
|
1195
|
+
} | {
|
|
1196
|
+
type: "relative";
|
|
1197
|
+
path: string;
|
|
1198
|
+
} | undefined;
|
|
1079
1199
|
logo?: {
|
|
1080
1200
|
type: "explicit-base64";
|
|
1081
1201
|
content: string;
|
|
@@ -1137,6 +1257,13 @@ export declare const BlockPackManifest: z.ZodObject<{
|
|
|
1137
1257
|
type: "relative";
|
|
1138
1258
|
path: string;
|
|
1139
1259
|
} | undefined;
|
|
1260
|
+
changelog?: {
|
|
1261
|
+
type: "explicit-string";
|
|
1262
|
+
content: string;
|
|
1263
|
+
} | {
|
|
1264
|
+
type: "relative";
|
|
1265
|
+
path: string;
|
|
1266
|
+
} | undefined;
|
|
1140
1267
|
logo?: {
|
|
1141
1268
|
type: "explicit-base64";
|
|
1142
1269
|
content: string;
|
|
@@ -1210,6 +1337,13 @@ export declare const BlockPackManifest: z.ZodObject<{
|
|
|
1210
1337
|
type: "relative";
|
|
1211
1338
|
path: string;
|
|
1212
1339
|
} | undefined;
|
|
1340
|
+
changelog?: {
|
|
1341
|
+
type: "explicit-string";
|
|
1342
|
+
content: string;
|
|
1343
|
+
} | {
|
|
1344
|
+
type: "relative";
|
|
1345
|
+
path: string;
|
|
1346
|
+
} | undefined;
|
|
1213
1347
|
logo?: {
|
|
1214
1348
|
type: "explicit-base64";
|
|
1215
1349
|
content: string;
|
|
@@ -1279,6 +1413,13 @@ export declare const BlockPackManifest: z.ZodObject<{
|
|
|
1279
1413
|
type: "relative";
|
|
1280
1414
|
path: string;
|
|
1281
1415
|
} | undefined;
|
|
1416
|
+
changelog?: {
|
|
1417
|
+
type: "explicit-string";
|
|
1418
|
+
content: string;
|
|
1419
|
+
} | {
|
|
1420
|
+
type: "relative";
|
|
1421
|
+
path: string;
|
|
1422
|
+
} | undefined;
|
|
1282
1423
|
logo?: {
|
|
1283
1424
|
type: "explicit-base64";
|
|
1284
1425
|
content: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block_manifest.d.ts","sourceRoot":"","sources":["../../src/block_meta/block_manifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAoD,CAAC;AACzF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"block_manifest.d.ts","sourceRoot":"","sources":["../../src/block_meta/block_manifest.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,6 +3,7 @@ export declare function BlockPackMeta<const LongStringType extends z.ZodTypeAny,
|
|
|
3
3
|
title: z.ZodString;
|
|
4
4
|
description: z.ZodString;
|
|
5
5
|
longDescription: z.ZodOptional<LongStringType>;
|
|
6
|
+
changelog: z.ZodOptional<LongStringType>;
|
|
6
7
|
logo: z.ZodOptional<BinaryType>;
|
|
7
8
|
url: z.ZodOptional<z.ZodString>;
|
|
8
9
|
docs: z.ZodOptional<z.ZodString>;
|
|
@@ -33,6 +34,7 @@ export declare function BlockPackMeta<const LongStringType extends z.ZodTypeAny,
|
|
|
33
34
|
title: z.ZodString;
|
|
34
35
|
description: z.ZodString;
|
|
35
36
|
longDescription: z.ZodOptional<LongStringType>;
|
|
37
|
+
changelog: z.ZodOptional<LongStringType>;
|
|
36
38
|
logo: z.ZodOptional<BinaryType>;
|
|
37
39
|
url: z.ZodOptional<z.ZodString>;
|
|
38
40
|
docs: z.ZodOptional<z.ZodString>;
|
|
@@ -63,6 +65,7 @@ export declare function BlockPackMeta<const LongStringType extends z.ZodTypeAny,
|
|
|
63
65
|
title: z.ZodString;
|
|
64
66
|
description: z.ZodString;
|
|
65
67
|
longDescription: z.ZodOptional<LongStringType>;
|
|
68
|
+
changelog: z.ZodOptional<LongStringType>;
|
|
66
69
|
logo: z.ZodOptional<BinaryType>;
|
|
67
70
|
url: z.ZodOptional<z.ZodString>;
|
|
68
71
|
docs: z.ZodOptional<z.ZodString>;
|
|
@@ -93,6 +96,7 @@ export declare function BlockPackMeta<const LongStringType extends z.ZodTypeAny,
|
|
|
93
96
|
title: z.ZodString;
|
|
94
97
|
description: z.ZodString;
|
|
95
98
|
longDescription: z.ZodOptional<LongStringType>;
|
|
99
|
+
changelog: z.ZodOptional<LongStringType>;
|
|
96
100
|
logo: z.ZodOptional<BinaryType>;
|
|
97
101
|
url: z.ZodOptional<z.ZodString>;
|
|
98
102
|
docs: z.ZodOptional<z.ZodString>;
|
|
@@ -123,6 +127,7 @@ export declare function BlockPackMeta<const LongStringType extends z.ZodTypeAny,
|
|
|
123
127
|
title: z.ZodString;
|
|
124
128
|
description: z.ZodString;
|
|
125
129
|
longDescription: z.ZodOptional<LongStringType>;
|
|
130
|
+
changelog: z.ZodOptional<LongStringType>;
|
|
126
131
|
logo: z.ZodOptional<BinaryType>;
|
|
127
132
|
url: z.ZodOptional<z.ZodString>;
|
|
128
133
|
docs: z.ZodOptional<z.ZodString>;
|
|
@@ -187,6 +192,40 @@ export declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
187
192
|
type: "absolute-file";
|
|
188
193
|
file: string;
|
|
189
194
|
}>]>]>>;
|
|
195
|
+
changelog: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, {
|
|
196
|
+
type: "explicit-string";
|
|
197
|
+
content: string;
|
|
198
|
+
} | {
|
|
199
|
+
type: "relative";
|
|
200
|
+
path: string;
|
|
201
|
+
}, string>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
202
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
203
|
+
content: z.ZodString;
|
|
204
|
+
}, "strict", z.ZodTypeAny, {
|
|
205
|
+
type: "explicit-string";
|
|
206
|
+
content: string;
|
|
207
|
+
}, {
|
|
208
|
+
type: "explicit-string";
|
|
209
|
+
content: string;
|
|
210
|
+
}>, z.ZodObject<{
|
|
211
|
+
type: z.ZodLiteral<"relative">;
|
|
212
|
+
path: z.ZodString;
|
|
213
|
+
}, "strict", z.ZodTypeAny, {
|
|
214
|
+
type: "relative";
|
|
215
|
+
path: string;
|
|
216
|
+
}, {
|
|
217
|
+
type: "relative";
|
|
218
|
+
path: string;
|
|
219
|
+
}>, z.ZodObject<{
|
|
220
|
+
type: z.ZodLiteral<"absolute-file">;
|
|
221
|
+
file: z.ZodString;
|
|
222
|
+
}, "strict", z.ZodTypeAny, {
|
|
223
|
+
type: "absolute-file";
|
|
224
|
+
file: string;
|
|
225
|
+
}, {
|
|
226
|
+
type: "absolute-file";
|
|
227
|
+
file: string;
|
|
228
|
+
}>]>]>>;
|
|
190
229
|
logo: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, {
|
|
191
230
|
type: "explicit-base64";
|
|
192
231
|
content: string;
|
|
@@ -328,6 +367,16 @@ export declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
328
367
|
type: "absolute-file";
|
|
329
368
|
file: string;
|
|
330
369
|
} | undefined;
|
|
370
|
+
changelog?: {
|
|
371
|
+
type: "explicit-string";
|
|
372
|
+
content: string;
|
|
373
|
+
} | {
|
|
374
|
+
type: "relative";
|
|
375
|
+
path: string;
|
|
376
|
+
} | {
|
|
377
|
+
type: "absolute-file";
|
|
378
|
+
file: string;
|
|
379
|
+
} | undefined;
|
|
331
380
|
logo?: {
|
|
332
381
|
type: "explicit-base64";
|
|
333
382
|
content: string;
|
|
@@ -371,6 +420,16 @@ export declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
371
420
|
type: "absolute-file";
|
|
372
421
|
file: string;
|
|
373
422
|
} | undefined;
|
|
423
|
+
changelog?: string | {
|
|
424
|
+
type: "explicit-string";
|
|
425
|
+
content: string;
|
|
426
|
+
} | {
|
|
427
|
+
type: "relative";
|
|
428
|
+
path: string;
|
|
429
|
+
} | {
|
|
430
|
+
type: "absolute-file";
|
|
431
|
+
file: string;
|
|
432
|
+
} | undefined;
|
|
374
433
|
logo?: string | {
|
|
375
434
|
type: "explicit-base64";
|
|
376
435
|
content: string;
|
|
@@ -391,6 +450,7 @@ export declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
391
450
|
title: z.ZodString;
|
|
392
451
|
description: z.ZodString;
|
|
393
452
|
longDescription: z.ZodOptional<z.ZodString>;
|
|
453
|
+
changelog: z.ZodOptional<z.ZodString>;
|
|
394
454
|
logo: z.ZodOptional<z.ZodObject<{
|
|
395
455
|
type: z.ZodLiteral<"explicit-base64">;
|
|
396
456
|
mimeType: z.ZodString;
|
|
@@ -455,6 +515,7 @@ export declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
455
515
|
description: string;
|
|
456
516
|
url?: string | undefined;
|
|
457
517
|
longDescription?: string | undefined;
|
|
518
|
+
changelog?: string | undefined;
|
|
458
519
|
logo?: {
|
|
459
520
|
type: "explicit-base64";
|
|
460
521
|
content: string;
|
|
@@ -477,6 +538,7 @@ export declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
477
538
|
description: string;
|
|
478
539
|
url?: string | undefined;
|
|
479
540
|
longDescription?: string | undefined;
|
|
541
|
+
changelog?: string | undefined;
|
|
480
542
|
logo?: {
|
|
481
543
|
type: "explicit-base64";
|
|
482
544
|
content: string;
|
|
@@ -491,6 +553,7 @@ export declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
491
553
|
title: z.ZodString;
|
|
492
554
|
description: z.ZodString;
|
|
493
555
|
longDescription: z.ZodOptional<z.ZodString>;
|
|
556
|
+
changelog: z.ZodOptional<z.ZodString>;
|
|
494
557
|
logo: z.ZodOptional<z.ZodObject<{
|
|
495
558
|
type: z.ZodLiteral<"explicit-bytes">;
|
|
496
559
|
mimeType: z.ZodString;
|
|
@@ -555,6 +618,7 @@ export declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
555
618
|
description: string;
|
|
556
619
|
url?: string | undefined;
|
|
557
620
|
longDescription?: string | undefined;
|
|
621
|
+
changelog?: string | undefined;
|
|
558
622
|
logo?: {
|
|
559
623
|
type: "explicit-bytes";
|
|
560
624
|
content: Uint8Array;
|
|
@@ -577,6 +641,7 @@ export declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
577
641
|
description: string;
|
|
578
642
|
url?: string | undefined;
|
|
579
643
|
longDescription?: string | undefined;
|
|
644
|
+
changelog?: string | undefined;
|
|
580
645
|
logo?: {
|
|
581
646
|
type: "explicit-bytes";
|
|
582
647
|
content: Uint8Array;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"block_meta.d.ts","sourceRoot":"","sources":["../../src/block_meta/block_meta.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB,wBAAgB,aAAa,CAC3B,KAAK,CAAC,cAAc,SAAS,CAAC,CAAC,UAAU,EACzC,KAAK,CAAC,UAAU,SAAS,CAAC,CAAC,UAAU,EACrC,UAAU,EAAE,cAAc,EAAE,MAAM,EAAE,UAAU
|
|
1
|
+
{"version":3,"file":"block_meta.d.ts","sourceRoot":"","sources":["../../src/block_meta/block_meta.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB,wBAAgB,aAAa,CAC3B,KAAK,CAAC,cAAc,SAAS,CAAC,CAAC,UAAU,EACzC,KAAK,CAAC,UAAU,SAAS,CAAC,CAAC,UAAU,EACrC,UAAU,EAAE,cAAc,EAAE,MAAM,EAAE,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiB/C;AAGD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvC,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAGtF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvC,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAGtF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGtC,CAAC;AACF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}
|