@milaboratories/pl-model-middle-layer 1.2.20 → 1.3.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_components.d.ts +213 -77
- package/dist/block_meta/block_components.d.ts.map +1 -1
- package/dist/block_meta/block_description.d.ts +872 -0
- package/dist/block_meta/block_description.d.ts.map +1 -0
- package/dist/block_meta/{block_pack_id.d.ts → block_id.d.ts} +1 -1
- package/dist/block_meta/block_id.d.ts.map +1 -0
- package/dist/block_meta/block_manifest.d.ts +1245 -0
- package/dist/block_meta/block_manifest.d.ts.map +1 -0
- package/dist/block_meta/{meta.d.ts → block_meta.d.ts} +1 -167
- package/dist/block_meta/block_meta.d.ts.map +1 -0
- package/dist/block_meta/content_conversion.d.ts +9 -1
- package/dist/block_meta/content_conversion.d.ts.map +1 -1
- package/dist/block_meta/content_types.d.ts +40 -5
- package/dist/block_meta/content_types.d.ts.map +1 -1
- package/dist/block_meta/index.d.ts +6 -1665
- package/dist/block_meta/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +114 -104
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/block_meta/block_components.ts +2 -5
- package/src/block_meta/block_description.ts +29 -0
- package/src/block_meta/block_manifest.ts +38 -0
- package/src/block_meta/{meta.ts → block_meta.ts} +0 -13
- package/src/block_meta/content_conversion.ts +24 -4
- package/src/block_meta/content_types.ts +14 -3
- package/src/block_meta/index.ts +6 -52
- package/dist/block_meta/block_pack_id.d.ts.map +0 -1
- package/dist/block_meta/meta.d.ts.map +0 -1
- /package/src/block_meta/{block_pack_id.ts → block_id.ts} +0 -0
|
@@ -0,0 +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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA4D,CAAC;AAC/F,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,qDAAqD;AACrD,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGxC,CAAC;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAExF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAQ3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI5B,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,qBAAqB,kBAAkB,CAAC"}
|
|
@@ -387,172 +387,6 @@ export declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
387
387
|
tags?: string[] | undefined;
|
|
388
388
|
}>;
|
|
389
389
|
export type BlockPackMetaDescriptionRaw = z.infer<typeof BlockPackMetaDescriptionRaw>;
|
|
390
|
-
export declare const BlockPackMetaManifest: z.ZodObject<{
|
|
391
|
-
title: z.ZodString;
|
|
392
|
-
description: z.ZodString;
|
|
393
|
-
longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
394
|
-
type: z.ZodLiteral<"explicit-string">;
|
|
395
|
-
content: z.ZodString;
|
|
396
|
-
}, "strict", z.ZodTypeAny, {
|
|
397
|
-
type: "explicit-string";
|
|
398
|
-
content: string;
|
|
399
|
-
}, {
|
|
400
|
-
type: "explicit-string";
|
|
401
|
-
content: string;
|
|
402
|
-
}>, z.ZodObject<{
|
|
403
|
-
type: z.ZodLiteral<"relative">;
|
|
404
|
-
path: z.ZodString;
|
|
405
|
-
}, "strict", z.ZodTypeAny, {
|
|
406
|
-
type: "relative";
|
|
407
|
-
path: string;
|
|
408
|
-
}, {
|
|
409
|
-
type: "relative";
|
|
410
|
-
path: string;
|
|
411
|
-
}>]>>;
|
|
412
|
-
logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
413
|
-
type: z.ZodLiteral<"explicit-base64">;
|
|
414
|
-
mimeType: z.ZodString;
|
|
415
|
-
content: z.ZodString;
|
|
416
|
-
}, "strict", z.ZodTypeAny, {
|
|
417
|
-
type: "explicit-base64";
|
|
418
|
-
content: string;
|
|
419
|
-
mimeType: string;
|
|
420
|
-
}, {
|
|
421
|
-
type: "explicit-base64";
|
|
422
|
-
content: string;
|
|
423
|
-
mimeType: string;
|
|
424
|
-
}>, z.ZodObject<{
|
|
425
|
-
type: z.ZodLiteral<"relative">;
|
|
426
|
-
path: z.ZodString;
|
|
427
|
-
}, "strict", z.ZodTypeAny, {
|
|
428
|
-
type: "relative";
|
|
429
|
-
path: string;
|
|
430
|
-
}, {
|
|
431
|
-
type: "relative";
|
|
432
|
-
path: string;
|
|
433
|
-
}>]>>;
|
|
434
|
-
url: z.ZodOptional<z.ZodString>;
|
|
435
|
-
docs: z.ZodOptional<z.ZodString>;
|
|
436
|
-
support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
|
|
437
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
438
|
-
organization: z.ZodObject<{
|
|
439
|
-
name: z.ZodString;
|
|
440
|
-
url: z.ZodString;
|
|
441
|
-
logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
442
|
-
type: z.ZodLiteral<"explicit-base64">;
|
|
443
|
-
mimeType: z.ZodString;
|
|
444
|
-
content: z.ZodString;
|
|
445
|
-
}, "strict", z.ZodTypeAny, {
|
|
446
|
-
type: "explicit-base64";
|
|
447
|
-
content: string;
|
|
448
|
-
mimeType: string;
|
|
449
|
-
}, {
|
|
450
|
-
type: "explicit-base64";
|
|
451
|
-
content: string;
|
|
452
|
-
mimeType: string;
|
|
453
|
-
}>, z.ZodObject<{
|
|
454
|
-
type: z.ZodLiteral<"relative">;
|
|
455
|
-
path: z.ZodString;
|
|
456
|
-
}, "strict", z.ZodTypeAny, {
|
|
457
|
-
type: "relative";
|
|
458
|
-
path: string;
|
|
459
|
-
}, {
|
|
460
|
-
type: "relative";
|
|
461
|
-
path: string;
|
|
462
|
-
}>]>>;
|
|
463
|
-
}, "strip", z.ZodTypeAny, {
|
|
464
|
-
url: string;
|
|
465
|
-
name: string;
|
|
466
|
-
logo?: {
|
|
467
|
-
type: "explicit-base64";
|
|
468
|
-
content: string;
|
|
469
|
-
mimeType: string;
|
|
470
|
-
} | {
|
|
471
|
-
type: "relative";
|
|
472
|
-
path: string;
|
|
473
|
-
} | undefined;
|
|
474
|
-
}, {
|
|
475
|
-
url: string;
|
|
476
|
-
name: string;
|
|
477
|
-
logo?: {
|
|
478
|
-
type: "explicit-base64";
|
|
479
|
-
content: string;
|
|
480
|
-
mimeType: string;
|
|
481
|
-
} | {
|
|
482
|
-
type: "relative";
|
|
483
|
-
path: string;
|
|
484
|
-
} | undefined;
|
|
485
|
-
}>;
|
|
486
|
-
}, "strip", z.ZodTypeAny, {
|
|
487
|
-
organization: {
|
|
488
|
-
url: string;
|
|
489
|
-
name: string;
|
|
490
|
-
logo?: {
|
|
491
|
-
type: "explicit-base64";
|
|
492
|
-
content: string;
|
|
493
|
-
mimeType: string;
|
|
494
|
-
} | {
|
|
495
|
-
type: "relative";
|
|
496
|
-
path: string;
|
|
497
|
-
} | undefined;
|
|
498
|
-
};
|
|
499
|
-
title: string;
|
|
500
|
-
description: string;
|
|
501
|
-
url?: string | undefined;
|
|
502
|
-
longDescription?: {
|
|
503
|
-
type: "explicit-string";
|
|
504
|
-
content: string;
|
|
505
|
-
} | {
|
|
506
|
-
type: "relative";
|
|
507
|
-
path: string;
|
|
508
|
-
} | undefined;
|
|
509
|
-
logo?: {
|
|
510
|
-
type: "explicit-base64";
|
|
511
|
-
content: string;
|
|
512
|
-
mimeType: string;
|
|
513
|
-
} | {
|
|
514
|
-
type: "relative";
|
|
515
|
-
path: string;
|
|
516
|
-
} | undefined;
|
|
517
|
-
docs?: string | undefined;
|
|
518
|
-
support?: string | undefined;
|
|
519
|
-
tags?: string[] | undefined;
|
|
520
|
-
}, {
|
|
521
|
-
organization: {
|
|
522
|
-
url: string;
|
|
523
|
-
name: string;
|
|
524
|
-
logo?: {
|
|
525
|
-
type: "explicit-base64";
|
|
526
|
-
content: string;
|
|
527
|
-
mimeType: string;
|
|
528
|
-
} | {
|
|
529
|
-
type: "relative";
|
|
530
|
-
path: string;
|
|
531
|
-
} | undefined;
|
|
532
|
-
};
|
|
533
|
-
title: string;
|
|
534
|
-
description: string;
|
|
535
|
-
url?: string | undefined;
|
|
536
|
-
longDescription?: {
|
|
537
|
-
type: "explicit-string";
|
|
538
|
-
content: string;
|
|
539
|
-
} | {
|
|
540
|
-
type: "relative";
|
|
541
|
-
path: string;
|
|
542
|
-
} | undefined;
|
|
543
|
-
logo?: {
|
|
544
|
-
type: "explicit-base64";
|
|
545
|
-
content: string;
|
|
546
|
-
mimeType: string;
|
|
547
|
-
} | {
|
|
548
|
-
type: "relative";
|
|
549
|
-
path: string;
|
|
550
|
-
} | undefined;
|
|
551
|
-
docs?: string | undefined;
|
|
552
|
-
support?: string | undefined;
|
|
553
|
-
tags?: string[] | undefined;
|
|
554
|
-
}>;
|
|
555
|
-
export type BlockPackMetaManifest = z.infer<typeof BlockPackMetaManifest>;
|
|
556
390
|
export declare const BlockPackMetaEmbeddedContent: z.ZodObject<{
|
|
557
391
|
title: z.ZodString;
|
|
558
392
|
description: z.ZodString;
|
|
@@ -653,4 +487,4 @@ export declare const BlockPackMetaEmbeddedContent: z.ZodObject<{
|
|
|
653
487
|
tags?: string[] | undefined;
|
|
654
488
|
}>;
|
|
655
489
|
export type BlockPackMetaEmbeddedContent = z.infer<typeof BlockPackMetaEmbeddedContent>;
|
|
656
|
-
//# sourceMappingURL=
|
|
490
|
+
//# sourceMappingURL=block_meta.d.ts.map
|
|
@@ -0,0 +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;AAOxB,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgB/C;AAGD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvC,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAGtF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGxC,CAAC;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC"}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
import { ContentAbsoluteUrl, ContentAnyLocal, ContentRelative } from './content_types';
|
|
1
|
+
import { ContentAbsoluteUrl, ContentAnyLocal, ContentExplicitOrRelative, ContentRelative } from './content_types';
|
|
2
2
|
export declare function mapRemoteToAbsolute(rootUrl: string): <T extends ContentAnyLocal>(value: T) => Exclude<T, ContentRelative> | ContentAbsoluteUrl;
|
|
3
|
+
/**
|
|
4
|
+
* Creates transformer of relative content paths, that adds a specific prefix to the relative path.
|
|
5
|
+
*
|
|
6
|
+
* If prefix = "nested-path/", paths like "somefile.txt" will be transformed to "nested-path/somefile.txt".
|
|
7
|
+
*
|
|
8
|
+
* @param prefix prefix to add to the relaive path, slesh at the end will be added automatically if missed
|
|
9
|
+
*/
|
|
10
|
+
export declare function addPrefixToRelative(prefix: string): <T extends ContentExplicitOrRelative>(value: T) => T;
|
|
3
11
|
//# sourceMappingURL=content_conversion.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"content_conversion.d.ts","sourceRoot":"","sources":["../../src/block_meta/content_conversion.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"content_conversion.d.ts","sourceRoot":"","sources":["../../src/block_meta/content_conversion.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,kBAAkB,EAClB,eAAe,EACf,yBAAyB,EACzB,eAAe,EAChB,MAAM,iBAAiB,CAAC;AAEzB,wBAAgB,mBAAmB,CACjC,OAAO,EAAE,MAAM,GACd,CAAC,CAAC,SAAS,eAAe,EAAE,KAAK,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC,EAAE,eAAe,CAAC,GAAG,kBAAkB,CAM3F;AAED;;;;;;GAMG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,EAAE,MAAM,GACb,CAAC,CAAC,SAAS,yBAAyB,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,CAMtD"}
|
|
@@ -57,17 +57,20 @@ export declare const ContentAbsoluteUrl: z.ZodObject<{
|
|
|
57
57
|
url: string;
|
|
58
58
|
}>;
|
|
59
59
|
export type ContentAbsoluteUrl = z.infer<typeof ContentAbsoluteUrl>;
|
|
60
|
-
export declare const
|
|
61
|
-
type: z.ZodLiteral<"explicit">;
|
|
60
|
+
export declare const ContentExplicitBytes: z.ZodObject<{
|
|
61
|
+
type: z.ZodLiteral<"explicit-bytes">;
|
|
62
|
+
mimeType: z.ZodString;
|
|
62
63
|
content: z.ZodType<Uint8Array, z.ZodTypeDef, Uint8Array>;
|
|
63
64
|
}, "strict", z.ZodTypeAny, {
|
|
64
|
-
type: "explicit";
|
|
65
|
+
type: "explicit-bytes";
|
|
65
66
|
content: Uint8Array;
|
|
67
|
+
mimeType: string;
|
|
66
68
|
}, {
|
|
67
|
-
type: "explicit";
|
|
69
|
+
type: "explicit-bytes";
|
|
68
70
|
content: Uint8Array;
|
|
71
|
+
mimeType: string;
|
|
69
72
|
}>;
|
|
70
|
-
export type
|
|
73
|
+
export type ContentExplicitBytes = z.infer<typeof ContentExplicitBytes>;
|
|
71
74
|
export declare const ContentAbsoluteFolder: z.ZodObject<{
|
|
72
75
|
type: z.ZodLiteral<"absolute-folder">;
|
|
73
76
|
folder: z.ZodString;
|
|
@@ -129,6 +132,38 @@ export declare const ContentAny: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
129
132
|
url: string;
|
|
130
133
|
}>]>;
|
|
131
134
|
export type ContentAny = z.infer<typeof ContentAny>;
|
|
135
|
+
export declare const ContentExplicitOrRelative: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
136
|
+
type: z.ZodLiteral<"explicit-string">;
|
|
137
|
+
content: z.ZodString;
|
|
138
|
+
}, "strict", z.ZodTypeAny, {
|
|
139
|
+
type: "explicit-string";
|
|
140
|
+
content: string;
|
|
141
|
+
}, {
|
|
142
|
+
type: "explicit-string";
|
|
143
|
+
content: string;
|
|
144
|
+
}>, z.ZodObject<{
|
|
145
|
+
type: z.ZodLiteral<"explicit-base64">;
|
|
146
|
+
mimeType: z.ZodString;
|
|
147
|
+
content: z.ZodString;
|
|
148
|
+
}, "strict", z.ZodTypeAny, {
|
|
149
|
+
type: "explicit-base64";
|
|
150
|
+
content: string;
|
|
151
|
+
mimeType: string;
|
|
152
|
+
}, {
|
|
153
|
+
type: "explicit-base64";
|
|
154
|
+
content: string;
|
|
155
|
+
mimeType: string;
|
|
156
|
+
}>, z.ZodObject<{
|
|
157
|
+
type: z.ZodLiteral<"relative">;
|
|
158
|
+
path: z.ZodString;
|
|
159
|
+
}, "strict", z.ZodTypeAny, {
|
|
160
|
+
type: "relative";
|
|
161
|
+
path: string;
|
|
162
|
+
}, {
|
|
163
|
+
type: "relative";
|
|
164
|
+
path: string;
|
|
165
|
+
}>]>;
|
|
166
|
+
export type ContentExplicitOrRelative = z.infer<typeof ContentExplicitOrRelative>;
|
|
132
167
|
export declare const ContentAnyLocal: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
133
168
|
type: z.ZodLiteral<"explicit-string">;
|
|
134
169
|
content: z.ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"content_types.d.ts","sourceRoot":"","sources":["../../src/block_meta/content_types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,qBAAqB;;;;;;;;;EAKvB,CAAC;AACZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,qBAAqB;;;;;;;;;;;;EASvB,CAAC;AACZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,eAAe;;;;;;;;;EASjB,CAAC;AACZ,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,mBAAmB;;;;;;;;;EAKrB,CAAC;AACZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,kBAAkB;;;;;;;;;EAKpB,CAAC;AACZ,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAMpE,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"content_types.d.ts","sourceRoot":"","sources":["../../src/block_meta/content_types.ts"],"names":[],"mappings":"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"}
|