@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
|
@@ -465,9 +465,10 @@ declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
465
465
|
*/
|
|
466
466
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
467
467
|
}, "strip", z.ZodTypeAny, {
|
|
468
|
+
title: string;
|
|
468
469
|
organization: {
|
|
469
|
-
name: string;
|
|
470
470
|
url: string;
|
|
471
|
+
name: string;
|
|
471
472
|
logo?: {
|
|
472
473
|
type: "explicit-base64";
|
|
473
474
|
mimeType: string;
|
|
@@ -482,8 +483,8 @@ declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
482
483
|
} & {
|
|
483
484
|
[k: string]: unknown;
|
|
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;
|
|
@@ -524,9 +524,10 @@ declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
524
524
|
termsOfServiceUrl?: string | undefined;
|
|
525
525
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
526
526
|
}, {
|
|
527
|
+
title: string;
|
|
527
528
|
organization: {
|
|
528
|
-
name: string;
|
|
529
529
|
url: string;
|
|
530
|
+
name: string;
|
|
530
531
|
logo?: string | {
|
|
531
532
|
type: "explicit-base64";
|
|
532
533
|
mimeType: string;
|
|
@@ -541,8 +542,8 @@ declare const BlockPackMetaDescriptionRaw: z.ZodObject<{
|
|
|
541
542
|
} & {
|
|
542
543
|
[k: string]: unknown;
|
|
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;
|
|
@@ -674,9 +674,10 @@ declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
674
674
|
*/
|
|
675
675
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
676
676
|
}, "strip", z.ZodTypeAny, {
|
|
677
|
+
title: string;
|
|
677
678
|
organization: {
|
|
678
|
-
name: string;
|
|
679
679
|
url: string;
|
|
680
|
+
name: string;
|
|
680
681
|
logo?: {
|
|
681
682
|
type: "explicit-base64";
|
|
682
683
|
mimeType: string;
|
|
@@ -685,8 +686,8 @@ declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
685
686
|
} & {
|
|
686
687
|
[k: string]: unknown;
|
|
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;
|
|
@@ -703,9 +703,10 @@ declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
703
703
|
termsOfServiceUrl?: string | undefined;
|
|
704
704
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
705
705
|
}, {
|
|
706
|
+
title: string;
|
|
706
707
|
organization: {
|
|
707
|
-
name: string;
|
|
708
708
|
url: string;
|
|
709
|
+
name: string;
|
|
709
710
|
logo?: {
|
|
710
711
|
type: "explicit-base64";
|
|
711
712
|
mimeType: string;
|
|
@@ -714,8 +715,8 @@ declare const BlockPackMetaEmbeddedBase64: z.ZodObject<{
|
|
|
714
715
|
} & {
|
|
715
716
|
[k: string]: unknown;
|
|
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;
|
|
@@ -823,9 +823,10 @@ declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
823
823
|
*/
|
|
824
824
|
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
825
825
|
}, "strip", z.ZodTypeAny, {
|
|
826
|
+
title: string;
|
|
826
827
|
organization: {
|
|
827
|
-
name: string;
|
|
828
828
|
url: string;
|
|
829
|
+
name: string;
|
|
829
830
|
logo?: {
|
|
830
831
|
type: "explicit-bytes";
|
|
831
832
|
mimeType: string;
|
|
@@ -834,8 +835,8 @@ declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
834
835
|
} & {
|
|
835
836
|
[k: string]: unknown;
|
|
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;
|
|
@@ -852,9 +852,10 @@ declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
852
852
|
termsOfServiceUrl?: string | undefined;
|
|
853
853
|
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
854
854
|
}, {
|
|
855
|
+
title: string;
|
|
855
856
|
organization: {
|
|
856
|
-
name: string;
|
|
857
857
|
url: string;
|
|
858
|
+
name: string;
|
|
858
859
|
logo?: {
|
|
859
860
|
type: "explicit-bytes";
|
|
860
861
|
mimeType: string;
|
|
@@ -863,8 +864,8 @@ declare const BlockPackMetaEmbeddedBytes: z.ZodObject<{
|
|
|
863
864
|
} & {
|
|
864
865
|
[k: string]: unknown;
|
|
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;
|
|
@@ -56,20 +56,20 @@ declare const BlockPackFromRegistryV1: z.ZodObject<{
|
|
|
56
56
|
}>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
58
|
type: "from-registry-v1";
|
|
59
|
-
registryUrl: string;
|
|
60
59
|
id: {
|
|
61
60
|
organization: string;
|
|
62
61
|
name: string;
|
|
63
62
|
version: string;
|
|
64
63
|
};
|
|
64
|
+
registryUrl: string;
|
|
65
65
|
}, {
|
|
66
66
|
type: "from-registry-v1";
|
|
67
|
-
registryUrl: string;
|
|
68
67
|
id: {
|
|
69
68
|
organization: string;
|
|
70
69
|
name: string;
|
|
71
70
|
version: string;
|
|
72
71
|
};
|
|
72
|
+
registryUrl: string;
|
|
73
73
|
}>;
|
|
74
74
|
/** @deprecated don't use */
|
|
75
75
|
type BlockPackFromRegistryV1 = z.infer<typeof BlockPackFromRegistryV1>;
|
|
@@ -94,21 +94,21 @@ declare const BlockPackFromRegistryV2: z.ZodObject<{
|
|
|
94
94
|
channel: z.ZodOptional<z.ZodString>;
|
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
96
|
type: "from-registry-v2";
|
|
97
|
-
registryUrl: string;
|
|
98
97
|
id: {
|
|
99
98
|
organization: string;
|
|
100
99
|
name: string;
|
|
101
100
|
version: string;
|
|
102
101
|
};
|
|
102
|
+
registryUrl: string;
|
|
103
103
|
channel?: string | undefined;
|
|
104
104
|
}, {
|
|
105
105
|
type: "from-registry-v2";
|
|
106
|
-
registryUrl: string;
|
|
107
106
|
id: {
|
|
108
107
|
organization: string;
|
|
109
108
|
name: string;
|
|
110
109
|
version: string;
|
|
111
110
|
};
|
|
111
|
+
registryUrl: string;
|
|
112
112
|
channel?: string | undefined;
|
|
113
113
|
}>;
|
|
114
114
|
type BlockPackFromRegistryV2 = z.infer<typeof BlockPackFromRegistryV2>;
|
|
@@ -155,20 +155,20 @@ declare const BlockPackSpec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
155
155
|
}>;
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
157
|
type: "from-registry-v1";
|
|
158
|
-
registryUrl: string;
|
|
159
158
|
id: {
|
|
160
159
|
organization: string;
|
|
161
160
|
name: string;
|
|
162
161
|
version: string;
|
|
163
162
|
};
|
|
163
|
+
registryUrl: string;
|
|
164
164
|
}, {
|
|
165
165
|
type: "from-registry-v1";
|
|
166
|
-
registryUrl: string;
|
|
167
166
|
id: {
|
|
168
167
|
organization: string;
|
|
169
168
|
name: string;
|
|
170
169
|
version: string;
|
|
171
170
|
};
|
|
171
|
+
registryUrl: string;
|
|
172
172
|
}>, z.ZodObject<{
|
|
173
173
|
type: z.ZodLiteral<"from-registry-v2">;
|
|
174
174
|
registryUrl: z.ZodString;
|
|
@@ -188,21 +188,21 @@ declare const BlockPackSpec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
188
188
|
channel: z.ZodOptional<z.ZodString>;
|
|
189
189
|
}, "strip", z.ZodTypeAny, {
|
|
190
190
|
type: "from-registry-v2";
|
|
191
|
-
registryUrl: string;
|
|
192
191
|
id: {
|
|
193
192
|
organization: string;
|
|
194
193
|
name: string;
|
|
195
194
|
version: string;
|
|
196
195
|
};
|
|
196
|
+
registryUrl: string;
|
|
197
197
|
channel?: string | undefined;
|
|
198
198
|
}, {
|
|
199
199
|
type: "from-registry-v2";
|
|
200
|
-
registryUrl: string;
|
|
201
200
|
id: {
|
|
202
201
|
organization: string;
|
|
203
202
|
name: string;
|
|
204
203
|
version: string;
|
|
205
204
|
};
|
|
205
|
+
registryUrl: string;
|
|
206
206
|
channel?: string | undefined;
|
|
207
207
|
}>]>;
|
|
208
208
|
type BlockPackSpec = z.infer<typeof BlockPackSpec>;
|