@milaboratories/pl-model-middle-layer 1.8.21 → 1.8.22

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.
Files changed (32) hide show
  1. package/dist/block_meta/block_description.cjs +1 -1
  2. package/dist/block_meta/block_description.cjs.map +1 -1
  3. package/dist/block_meta/block_description.d.ts +876 -110
  4. package/dist/block_meta/block_description.d.ts.map +1 -1
  5. package/dist/block_meta/block_description.js +1 -1
  6. package/dist/block_meta/block_description.js.map +1 -1
  7. package/dist/block_meta/block_manifest.cjs +1 -1
  8. package/dist/block_meta/block_manifest.cjs.map +1 -1
  9. package/dist/block_meta/block_manifest.d.ts +3801 -332
  10. package/dist/block_meta/block_manifest.d.ts.map +1 -1
  11. package/dist/block_meta/block_manifest.js +1 -1
  12. package/dist/block_meta/block_manifest.js.map +1 -1
  13. package/dist/block_meta/block_meta.cjs +1 -1
  14. package/dist/block_meta/block_meta.cjs.map +1 -1
  15. package/dist/block_meta/block_meta.d.ts +151 -93
  16. package/dist/block_meta/block_meta.d.ts.map +1 -1
  17. package/dist/block_meta/block_meta.js +1 -1
  18. package/dist/block_meta/block_meta.js.map +1 -1
  19. package/dist/block_registry/overview.cjs +8 -4
  20. package/dist/block_registry/overview.cjs.map +1 -1
  21. package/dist/block_registry/overview.d.ts +10103 -1144
  22. package/dist/block_registry/overview.d.ts.map +1 -1
  23. package/dist/block_registry/overview.js +7 -5
  24. package/dist/block_registry/overview.js.map +1 -1
  25. package/dist/index.cjs +2 -0
  26. package/dist/index.cjs.map +1 -1
  27. package/dist/index.js +1 -1
  28. package/package.json +2 -2
  29. package/src/block_meta/block_description.ts +1 -1
  30. package/src/block_meta/block_manifest.ts +1 -1
  31. package/src/block_meta/block_meta.ts +1 -1
  32. package/src/block_registry/overview.ts +9 -5
@@ -217,29 +217,57 @@ export declare const BlockPackMetaManifest: z.ZodObject<{
217
217
  type: "relative";
218
218
  path: string;
219
219
  }>]>>;
220
- }, "strip", z.ZodTypeAny, {
221
- url: string;
222
- name: string;
223
- logo?: {
220
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
221
+ name: z.ZodString;
222
+ url: z.ZodString;
223
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
224
+ type: z.ZodLiteral<"explicit-base64">;
225
+ mimeType: z.ZodString;
226
+ content: z.ZodString;
227
+ }, "strict", z.ZodTypeAny, {
224
228
  type: "explicit-base64";
225
229
  content: string;
226
230
  mimeType: string;
227
- } | {
231
+ }, {
232
+ type: "explicit-base64";
233
+ content: string;
234
+ mimeType: string;
235
+ }>, z.ZodObject<{
236
+ type: z.ZodLiteral<"relative">;
237
+ path: z.ZodString;
238
+ }, "strict", z.ZodTypeAny, {
228
239
  type: "relative";
229
240
  path: string;
230
- } | undefined;
231
- }, {
232
- url: string;
233
- name: string;
234
- logo?: {
241
+ }, {
242
+ type: "relative";
243
+ path: string;
244
+ }>]>>;
245
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
246
+ name: z.ZodString;
247
+ url: z.ZodString;
248
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
249
+ type: z.ZodLiteral<"explicit-base64">;
250
+ mimeType: z.ZodString;
251
+ content: z.ZodString;
252
+ }, "strict", z.ZodTypeAny, {
235
253
  type: "explicit-base64";
236
254
  content: string;
237
255
  mimeType: string;
238
- } | {
256
+ }, {
257
+ type: "explicit-base64";
258
+ content: string;
259
+ mimeType: string;
260
+ }>, z.ZodObject<{
261
+ type: z.ZodLiteral<"relative">;
262
+ path: z.ZodString;
263
+ }, "strict", z.ZodTypeAny, {
239
264
  type: "relative";
240
265
  path: string;
241
- } | undefined;
242
- }>;
266
+ }, {
267
+ type: "relative";
268
+ path: string;
269
+ }>]>>;
270
+ }, z.ZodTypeAny, "passthrough">>;
243
271
  marketplaceRanking: z.ZodOptional<z.ZodNumber>;
244
272
  deprecated: z.ZodOptional<z.ZodBoolean>;
245
273
  termsOfServiceUrl: z.ZodOptional<z.ZodString>;
@@ -255,6 +283,8 @@ export declare const BlockPackMetaManifest: z.ZodObject<{
255
283
  type: "relative";
256
284
  path: string;
257
285
  } | undefined;
286
+ } & {
287
+ [k: string]: unknown;
258
288
  };
259
289
  title: string;
260
290
  description: string;
@@ -299,6 +329,8 @@ export declare const BlockPackMetaManifest: z.ZodObject<{
299
329
  type: "relative";
300
330
  path: string;
301
331
  } | undefined;
332
+ } & {
333
+ [k: string]: unknown;
302
334
  };
303
335
  title: string;
304
336
  description: string;
@@ -564,29 +596,57 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
564
596
  type: "relative";
565
597
  path: string;
566
598
  }>]>>;
567
- }, "strip", z.ZodTypeAny, {
568
- url: string;
569
- name: string;
570
- logo?: {
599
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
600
+ name: z.ZodString;
601
+ url: z.ZodString;
602
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
603
+ type: z.ZodLiteral<"explicit-base64">;
604
+ mimeType: z.ZodString;
605
+ content: z.ZodString;
606
+ }, "strict", z.ZodTypeAny, {
571
607
  type: "explicit-base64";
572
608
  content: string;
573
609
  mimeType: string;
574
- } | {
610
+ }, {
611
+ type: "explicit-base64";
612
+ content: string;
613
+ mimeType: string;
614
+ }>, z.ZodObject<{
615
+ type: z.ZodLiteral<"relative">;
616
+ path: z.ZodString;
617
+ }, "strict", z.ZodTypeAny, {
575
618
  type: "relative";
576
619
  path: string;
577
- } | undefined;
578
- }, {
579
- url: string;
580
- name: string;
581
- logo?: {
620
+ }, {
621
+ type: "relative";
622
+ path: string;
623
+ }>]>>;
624
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
625
+ name: z.ZodString;
626
+ url: z.ZodString;
627
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
628
+ type: z.ZodLiteral<"explicit-base64">;
629
+ mimeType: z.ZodString;
630
+ content: z.ZodString;
631
+ }, "strict", z.ZodTypeAny, {
582
632
  type: "explicit-base64";
583
633
  content: string;
584
634
  mimeType: string;
585
- } | {
635
+ }, {
636
+ type: "explicit-base64";
637
+ content: string;
638
+ mimeType: string;
639
+ }>, z.ZodObject<{
640
+ type: z.ZodLiteral<"relative">;
641
+ path: z.ZodString;
642
+ }, "strict", z.ZodTypeAny, {
586
643
  type: "relative";
587
644
  path: string;
588
- } | undefined;
589
- }>;
645
+ }, {
646
+ type: "relative";
647
+ path: string;
648
+ }>]>>;
649
+ }, z.ZodTypeAny, "passthrough">>;
590
650
  marketplaceRanking: z.ZodOptional<z.ZodNumber>;
591
651
  deprecated: z.ZodOptional<z.ZodBoolean>;
592
652
  termsOfServiceUrl: z.ZodOptional<z.ZodString>;
@@ -602,6 +662,8 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
602
662
  type: "relative";
603
663
  path: string;
604
664
  } | undefined;
665
+ } & {
666
+ [k: string]: unknown;
605
667
  };
606
668
  title: string;
607
669
  description: string;
@@ -646,6 +708,8 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
646
708
  type: "relative";
647
709
  path: string;
648
710
  } | undefined;
711
+ } & {
712
+ [k: string]: unknown;
649
713
  };
650
714
  title: string;
651
715
  description: string;
@@ -680,77 +744,125 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
680
744
  termsOfServiceUrl?: string | undefined;
681
745
  }>;
682
746
  featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
683
- }, "strip", z.ZodTypeAny, {
684
- components: {
685
- ui: {
747
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
748
+ id: z.ZodObject<{
749
+ organization: z.ZodString;
750
+ name: z.ZodString;
751
+ version: z.ZodString;
752
+ }, "strict", z.ZodTypeAny, {
753
+ organization: string;
754
+ name: string;
755
+ version: string;
756
+ }, {
757
+ organization: string;
758
+ name: string;
759
+ version: string;
760
+ }>;
761
+ components: z.ZodObject<{
762
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
763
+ type: z.ZodLiteral<"relative">;
764
+ path: z.ZodString;
765
+ }, "strict", z.ZodTypeAny, {
686
766
  type: "relative";
687
767
  path: string;
688
- };
689
- workflow: {
768
+ }, {
769
+ type: "relative";
770
+ path: string;
771
+ }>, {
690
772
  type: "workflow-v1";
691
773
  main: {
692
774
  type: "relative";
693
775
  path: string;
694
776
  };
695
- };
696
- model: {
777
+ }, {
697
778
  type: "relative";
698
779
  path: string;
699
- };
700
- };
701
- meta: {
702
- organization: {
703
- url: string;
704
- name: string;
705
- logo?: {
706
- type: "explicit-base64";
707
- content: string;
708
- mimeType: string;
709
- } | {
780
+ }>, z.ZodObject<{
781
+ type: z.ZodLiteral<"workflow-v1">;
782
+ main: z.ZodObject<{
783
+ type: z.ZodLiteral<"relative">;
784
+ path: z.ZodString;
785
+ }, "strict", z.ZodTypeAny, {
710
786
  type: "relative";
711
787
  path: string;
712
- } | undefined;
713
- };
714
- title: string;
715
- description: string;
716
- url?: string | undefined;
717
- longDescription?: {
718
- type: "explicit-string";
719
- content: string;
720
- } | {
788
+ }, {
789
+ type: "relative";
790
+ path: string;
791
+ }>;
792
+ }, "strip", z.ZodTypeAny, {
793
+ type: "workflow-v1";
794
+ main: {
795
+ type: "relative";
796
+ path: string;
797
+ };
798
+ }, {
799
+ type: "workflow-v1";
800
+ main: {
801
+ type: "relative";
802
+ path: string;
803
+ };
804
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
805
+ type: z.ZodLiteral<"workflow-v1">;
806
+ main: z.ZodObject<{
807
+ type: z.ZodLiteral<"relative">;
808
+ path: z.ZodString;
809
+ }, "strict", z.ZodTypeAny, {
810
+ type: "relative";
811
+ path: string;
812
+ }, {
813
+ type: "relative";
814
+ path: string;
815
+ }>;
816
+ }, "strip", z.ZodTypeAny, {
817
+ type: "workflow-v1";
818
+ main: {
819
+ type: "relative";
820
+ path: string;
821
+ };
822
+ }, {
823
+ type: "workflow-v1";
824
+ main: {
825
+ type: "relative";
826
+ path: string;
827
+ };
828
+ }>]>]>;
829
+ model: z.ZodObject<{
830
+ type: z.ZodLiteral<"relative">;
831
+ path: z.ZodString;
832
+ }, "strict", z.ZodTypeAny, {
721
833
  type: "relative";
722
834
  path: string;
723
- } | undefined;
724
- changelog?: {
725
- type: "explicit-string";
726
- content: string;
727
- } | {
835
+ }, {
728
836
  type: "relative";
729
837
  path: string;
730
- } | undefined;
731
- logo?: {
732
- type: "explicit-base64";
733
- content: string;
734
- mimeType: string;
735
- } | {
838
+ }>;
839
+ ui: z.ZodObject<{
840
+ type: z.ZodLiteral<"relative">;
841
+ path: z.ZodString;
842
+ }, "strict", z.ZodTypeAny, {
736
843
  type: "relative";
737
844
  path: string;
738
- } | undefined;
739
- docs?: string | undefined;
740
- support?: string | undefined;
741
- tags?: string[] | undefined;
742
- marketplaceRanking?: number | undefined;
743
- deprecated?: boolean | undefined;
744
- termsOfServiceUrl?: string | undefined;
745
- };
746
- id: {
747
- organization: string;
748
- name: string;
749
- version: string;
750
- };
751
- featureFlags?: import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags | undefined;
752
- }, {
753
- components: {
845
+ }, {
846
+ type: "relative";
847
+ path: string;
848
+ }>;
849
+ }, "strip", z.ZodTypeAny, {
850
+ ui: {
851
+ type: "relative";
852
+ path: string;
853
+ };
854
+ workflow: {
855
+ type: "workflow-v1";
856
+ main: {
857
+ type: "relative";
858
+ path: string;
859
+ };
860
+ };
861
+ model: {
862
+ type: "relative";
863
+ path: string;
864
+ };
865
+ }, {
754
866
  ui: {
755
867
  type: "relative";
756
868
  path: string;
@@ -769,11 +881,3308 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
769
881
  type: "relative";
770
882
  path: string;
771
883
  };
772
- };
773
- meta: {
774
- organization: {
775
- url: string;
776
- name: string;
884
+ }>;
885
+ meta: z.ZodObject<{
886
+ title: z.ZodString;
887
+ description: z.ZodString;
888
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
889
+ type: z.ZodLiteral<"explicit-string">;
890
+ content: z.ZodString;
891
+ }, "strict", z.ZodTypeAny, {
892
+ type: "explicit-string";
893
+ content: string;
894
+ }, {
895
+ type: "explicit-string";
896
+ content: string;
897
+ }>, z.ZodObject<{
898
+ type: z.ZodLiteral<"relative">;
899
+ path: z.ZodString;
900
+ }, "strict", z.ZodTypeAny, {
901
+ type: "relative";
902
+ path: string;
903
+ }, {
904
+ type: "relative";
905
+ path: string;
906
+ }>]>>;
907
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
908
+ type: z.ZodLiteral<"explicit-string">;
909
+ content: z.ZodString;
910
+ }, "strict", z.ZodTypeAny, {
911
+ type: "explicit-string";
912
+ content: string;
913
+ }, {
914
+ type: "explicit-string";
915
+ content: string;
916
+ }>, z.ZodObject<{
917
+ type: z.ZodLiteral<"relative">;
918
+ path: z.ZodString;
919
+ }, "strict", z.ZodTypeAny, {
920
+ type: "relative";
921
+ path: string;
922
+ }, {
923
+ type: "relative";
924
+ path: string;
925
+ }>]>>;
926
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
927
+ type: z.ZodLiteral<"explicit-base64">;
928
+ mimeType: z.ZodString;
929
+ content: z.ZodString;
930
+ }, "strict", z.ZodTypeAny, {
931
+ type: "explicit-base64";
932
+ content: string;
933
+ mimeType: string;
934
+ }, {
935
+ type: "explicit-base64";
936
+ content: string;
937
+ mimeType: string;
938
+ }>, z.ZodObject<{
939
+ type: z.ZodLiteral<"relative">;
940
+ path: z.ZodString;
941
+ }, "strict", z.ZodTypeAny, {
942
+ type: "relative";
943
+ path: string;
944
+ }, {
945
+ type: "relative";
946
+ path: string;
947
+ }>]>>;
948
+ url: z.ZodOptional<z.ZodString>;
949
+ docs: z.ZodOptional<z.ZodString>;
950
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
951
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
952
+ organization: z.ZodObject<{
953
+ name: z.ZodString;
954
+ url: z.ZodString;
955
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
956
+ type: z.ZodLiteral<"explicit-base64">;
957
+ mimeType: z.ZodString;
958
+ content: z.ZodString;
959
+ }, "strict", z.ZodTypeAny, {
960
+ type: "explicit-base64";
961
+ content: string;
962
+ mimeType: string;
963
+ }, {
964
+ type: "explicit-base64";
965
+ content: string;
966
+ mimeType: string;
967
+ }>, z.ZodObject<{
968
+ type: z.ZodLiteral<"relative">;
969
+ path: z.ZodString;
970
+ }, "strict", z.ZodTypeAny, {
971
+ type: "relative";
972
+ path: string;
973
+ }, {
974
+ type: "relative";
975
+ path: string;
976
+ }>]>>;
977
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
978
+ name: z.ZodString;
979
+ url: z.ZodString;
980
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
981
+ type: z.ZodLiteral<"explicit-base64">;
982
+ mimeType: z.ZodString;
983
+ content: z.ZodString;
984
+ }, "strict", z.ZodTypeAny, {
985
+ type: "explicit-base64";
986
+ content: string;
987
+ mimeType: string;
988
+ }, {
989
+ type: "explicit-base64";
990
+ content: string;
991
+ mimeType: string;
992
+ }>, z.ZodObject<{
993
+ type: z.ZodLiteral<"relative">;
994
+ path: z.ZodString;
995
+ }, "strict", z.ZodTypeAny, {
996
+ type: "relative";
997
+ path: string;
998
+ }, {
999
+ type: "relative";
1000
+ path: string;
1001
+ }>]>>;
1002
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1003
+ name: z.ZodString;
1004
+ url: z.ZodString;
1005
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1006
+ type: z.ZodLiteral<"explicit-base64">;
1007
+ mimeType: z.ZodString;
1008
+ content: z.ZodString;
1009
+ }, "strict", z.ZodTypeAny, {
1010
+ type: "explicit-base64";
1011
+ content: string;
1012
+ mimeType: string;
1013
+ }, {
1014
+ type: "explicit-base64";
1015
+ content: string;
1016
+ mimeType: string;
1017
+ }>, z.ZodObject<{
1018
+ type: z.ZodLiteral<"relative">;
1019
+ path: z.ZodString;
1020
+ }, "strict", z.ZodTypeAny, {
1021
+ type: "relative";
1022
+ path: string;
1023
+ }, {
1024
+ type: "relative";
1025
+ path: string;
1026
+ }>]>>;
1027
+ }, z.ZodTypeAny, "passthrough">>;
1028
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
1029
+ deprecated: z.ZodOptional<z.ZodBoolean>;
1030
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
1031
+ }, "strip", z.ZodTypeAny, {
1032
+ organization: {
1033
+ url: string;
1034
+ name: string;
1035
+ logo?: {
1036
+ type: "explicit-base64";
1037
+ content: string;
1038
+ mimeType: string;
1039
+ } | {
1040
+ type: "relative";
1041
+ path: string;
1042
+ } | undefined;
1043
+ } & {
1044
+ [k: string]: unknown;
1045
+ };
1046
+ title: string;
1047
+ description: string;
1048
+ url?: string | undefined;
1049
+ longDescription?: {
1050
+ type: "explicit-string";
1051
+ content: string;
1052
+ } | {
1053
+ type: "relative";
1054
+ path: string;
1055
+ } | undefined;
1056
+ changelog?: {
1057
+ type: "explicit-string";
1058
+ content: string;
1059
+ } | {
1060
+ type: "relative";
1061
+ path: string;
1062
+ } | undefined;
1063
+ logo?: {
1064
+ type: "explicit-base64";
1065
+ content: string;
1066
+ mimeType: string;
1067
+ } | {
1068
+ type: "relative";
1069
+ path: string;
1070
+ } | undefined;
1071
+ docs?: string | undefined;
1072
+ support?: string | undefined;
1073
+ tags?: string[] | undefined;
1074
+ marketplaceRanking?: number | undefined;
1075
+ deprecated?: boolean | undefined;
1076
+ termsOfServiceUrl?: string | undefined;
1077
+ }, {
1078
+ organization: {
1079
+ url: string;
1080
+ name: string;
1081
+ logo?: {
1082
+ type: "explicit-base64";
1083
+ content: string;
1084
+ mimeType: string;
1085
+ } | {
1086
+ type: "relative";
1087
+ path: string;
1088
+ } | undefined;
1089
+ } & {
1090
+ [k: string]: unknown;
1091
+ };
1092
+ title: string;
1093
+ description: string;
1094
+ url?: string | undefined;
1095
+ longDescription?: {
1096
+ type: "explicit-string";
1097
+ content: string;
1098
+ } | {
1099
+ type: "relative";
1100
+ path: string;
1101
+ } | undefined;
1102
+ changelog?: {
1103
+ type: "explicit-string";
1104
+ content: string;
1105
+ } | {
1106
+ type: "relative";
1107
+ path: string;
1108
+ } | undefined;
1109
+ logo?: {
1110
+ type: "explicit-base64";
1111
+ content: string;
1112
+ mimeType: string;
1113
+ } | {
1114
+ type: "relative";
1115
+ path: string;
1116
+ } | undefined;
1117
+ docs?: string | undefined;
1118
+ support?: string | undefined;
1119
+ tags?: string[] | undefined;
1120
+ marketplaceRanking?: number | undefined;
1121
+ deprecated?: boolean | undefined;
1122
+ termsOfServiceUrl?: string | undefined;
1123
+ }>;
1124
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
1125
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1126
+ id: z.ZodObject<{
1127
+ organization: z.ZodString;
1128
+ name: z.ZodString;
1129
+ version: z.ZodString;
1130
+ }, "strict", z.ZodTypeAny, {
1131
+ organization: string;
1132
+ name: string;
1133
+ version: string;
1134
+ }, {
1135
+ organization: string;
1136
+ name: string;
1137
+ version: string;
1138
+ }>;
1139
+ components: z.ZodObject<{
1140
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
1141
+ type: z.ZodLiteral<"relative">;
1142
+ path: z.ZodString;
1143
+ }, "strict", z.ZodTypeAny, {
1144
+ type: "relative";
1145
+ path: string;
1146
+ }, {
1147
+ type: "relative";
1148
+ path: string;
1149
+ }>, {
1150
+ type: "workflow-v1";
1151
+ main: {
1152
+ type: "relative";
1153
+ path: string;
1154
+ };
1155
+ }, {
1156
+ type: "relative";
1157
+ path: string;
1158
+ }>, z.ZodObject<{
1159
+ type: z.ZodLiteral<"workflow-v1">;
1160
+ main: z.ZodObject<{
1161
+ type: z.ZodLiteral<"relative">;
1162
+ path: z.ZodString;
1163
+ }, "strict", z.ZodTypeAny, {
1164
+ type: "relative";
1165
+ path: string;
1166
+ }, {
1167
+ type: "relative";
1168
+ path: string;
1169
+ }>;
1170
+ }, "strip", z.ZodTypeAny, {
1171
+ type: "workflow-v1";
1172
+ main: {
1173
+ type: "relative";
1174
+ path: string;
1175
+ };
1176
+ }, {
1177
+ type: "workflow-v1";
1178
+ main: {
1179
+ type: "relative";
1180
+ path: string;
1181
+ };
1182
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1183
+ type: z.ZodLiteral<"workflow-v1">;
1184
+ main: z.ZodObject<{
1185
+ type: z.ZodLiteral<"relative">;
1186
+ path: z.ZodString;
1187
+ }, "strict", z.ZodTypeAny, {
1188
+ type: "relative";
1189
+ path: string;
1190
+ }, {
1191
+ type: "relative";
1192
+ path: string;
1193
+ }>;
1194
+ }, "strip", z.ZodTypeAny, {
1195
+ type: "workflow-v1";
1196
+ main: {
1197
+ type: "relative";
1198
+ path: string;
1199
+ };
1200
+ }, {
1201
+ type: "workflow-v1";
1202
+ main: {
1203
+ type: "relative";
1204
+ path: string;
1205
+ };
1206
+ }>]>]>;
1207
+ model: z.ZodObject<{
1208
+ type: z.ZodLiteral<"relative">;
1209
+ path: z.ZodString;
1210
+ }, "strict", z.ZodTypeAny, {
1211
+ type: "relative";
1212
+ path: string;
1213
+ }, {
1214
+ type: "relative";
1215
+ path: string;
1216
+ }>;
1217
+ ui: z.ZodObject<{
1218
+ type: z.ZodLiteral<"relative">;
1219
+ path: z.ZodString;
1220
+ }, "strict", z.ZodTypeAny, {
1221
+ type: "relative";
1222
+ path: string;
1223
+ }, {
1224
+ type: "relative";
1225
+ path: string;
1226
+ }>;
1227
+ }, "strip", z.ZodTypeAny, {
1228
+ ui: {
1229
+ type: "relative";
1230
+ path: string;
1231
+ };
1232
+ workflow: {
1233
+ type: "workflow-v1";
1234
+ main: {
1235
+ type: "relative";
1236
+ path: string;
1237
+ };
1238
+ };
1239
+ model: {
1240
+ type: "relative";
1241
+ path: string;
1242
+ };
1243
+ }, {
1244
+ ui: {
1245
+ type: "relative";
1246
+ path: string;
1247
+ };
1248
+ workflow: {
1249
+ type: "relative";
1250
+ path: string;
1251
+ } | {
1252
+ type: "workflow-v1";
1253
+ main: {
1254
+ type: "relative";
1255
+ path: string;
1256
+ };
1257
+ };
1258
+ model: {
1259
+ type: "relative";
1260
+ path: string;
1261
+ };
1262
+ }>;
1263
+ meta: z.ZodObject<{
1264
+ title: z.ZodString;
1265
+ description: z.ZodString;
1266
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1267
+ type: z.ZodLiteral<"explicit-string">;
1268
+ content: z.ZodString;
1269
+ }, "strict", z.ZodTypeAny, {
1270
+ type: "explicit-string";
1271
+ content: string;
1272
+ }, {
1273
+ type: "explicit-string";
1274
+ content: string;
1275
+ }>, z.ZodObject<{
1276
+ type: z.ZodLiteral<"relative">;
1277
+ path: z.ZodString;
1278
+ }, "strict", z.ZodTypeAny, {
1279
+ type: "relative";
1280
+ path: string;
1281
+ }, {
1282
+ type: "relative";
1283
+ path: string;
1284
+ }>]>>;
1285
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1286
+ type: z.ZodLiteral<"explicit-string">;
1287
+ content: z.ZodString;
1288
+ }, "strict", z.ZodTypeAny, {
1289
+ type: "explicit-string";
1290
+ content: string;
1291
+ }, {
1292
+ type: "explicit-string";
1293
+ content: string;
1294
+ }>, z.ZodObject<{
1295
+ type: z.ZodLiteral<"relative">;
1296
+ path: z.ZodString;
1297
+ }, "strict", z.ZodTypeAny, {
1298
+ type: "relative";
1299
+ path: string;
1300
+ }, {
1301
+ type: "relative";
1302
+ path: string;
1303
+ }>]>>;
1304
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1305
+ type: z.ZodLiteral<"explicit-base64">;
1306
+ mimeType: z.ZodString;
1307
+ content: z.ZodString;
1308
+ }, "strict", z.ZodTypeAny, {
1309
+ type: "explicit-base64";
1310
+ content: string;
1311
+ mimeType: string;
1312
+ }, {
1313
+ type: "explicit-base64";
1314
+ content: string;
1315
+ mimeType: string;
1316
+ }>, z.ZodObject<{
1317
+ type: z.ZodLiteral<"relative">;
1318
+ path: z.ZodString;
1319
+ }, "strict", z.ZodTypeAny, {
1320
+ type: "relative";
1321
+ path: string;
1322
+ }, {
1323
+ type: "relative";
1324
+ path: string;
1325
+ }>]>>;
1326
+ url: z.ZodOptional<z.ZodString>;
1327
+ docs: z.ZodOptional<z.ZodString>;
1328
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
1329
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1330
+ organization: z.ZodObject<{
1331
+ name: z.ZodString;
1332
+ url: z.ZodString;
1333
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1334
+ type: z.ZodLiteral<"explicit-base64">;
1335
+ mimeType: z.ZodString;
1336
+ content: z.ZodString;
1337
+ }, "strict", z.ZodTypeAny, {
1338
+ type: "explicit-base64";
1339
+ content: string;
1340
+ mimeType: string;
1341
+ }, {
1342
+ type: "explicit-base64";
1343
+ content: string;
1344
+ mimeType: string;
1345
+ }>, z.ZodObject<{
1346
+ type: z.ZodLiteral<"relative">;
1347
+ path: z.ZodString;
1348
+ }, "strict", z.ZodTypeAny, {
1349
+ type: "relative";
1350
+ path: string;
1351
+ }, {
1352
+ type: "relative";
1353
+ path: string;
1354
+ }>]>>;
1355
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1356
+ name: z.ZodString;
1357
+ url: z.ZodString;
1358
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1359
+ type: z.ZodLiteral<"explicit-base64">;
1360
+ mimeType: z.ZodString;
1361
+ content: z.ZodString;
1362
+ }, "strict", z.ZodTypeAny, {
1363
+ type: "explicit-base64";
1364
+ content: string;
1365
+ mimeType: string;
1366
+ }, {
1367
+ type: "explicit-base64";
1368
+ content: string;
1369
+ mimeType: string;
1370
+ }>, z.ZodObject<{
1371
+ type: z.ZodLiteral<"relative">;
1372
+ path: z.ZodString;
1373
+ }, "strict", z.ZodTypeAny, {
1374
+ type: "relative";
1375
+ path: string;
1376
+ }, {
1377
+ type: "relative";
1378
+ path: string;
1379
+ }>]>>;
1380
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1381
+ name: z.ZodString;
1382
+ url: z.ZodString;
1383
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1384
+ type: z.ZodLiteral<"explicit-base64">;
1385
+ mimeType: z.ZodString;
1386
+ content: z.ZodString;
1387
+ }, "strict", z.ZodTypeAny, {
1388
+ type: "explicit-base64";
1389
+ content: string;
1390
+ mimeType: string;
1391
+ }, {
1392
+ type: "explicit-base64";
1393
+ content: string;
1394
+ mimeType: string;
1395
+ }>, z.ZodObject<{
1396
+ type: z.ZodLiteral<"relative">;
1397
+ path: z.ZodString;
1398
+ }, "strict", z.ZodTypeAny, {
1399
+ type: "relative";
1400
+ path: string;
1401
+ }, {
1402
+ type: "relative";
1403
+ path: string;
1404
+ }>]>>;
1405
+ }, z.ZodTypeAny, "passthrough">>;
1406
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
1407
+ deprecated: z.ZodOptional<z.ZodBoolean>;
1408
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
1409
+ }, "strip", z.ZodTypeAny, {
1410
+ organization: {
1411
+ url: string;
1412
+ name: string;
1413
+ logo?: {
1414
+ type: "explicit-base64";
1415
+ content: string;
1416
+ mimeType: string;
1417
+ } | {
1418
+ type: "relative";
1419
+ path: string;
1420
+ } | undefined;
1421
+ } & {
1422
+ [k: string]: unknown;
1423
+ };
1424
+ title: string;
1425
+ description: string;
1426
+ url?: string | undefined;
1427
+ longDescription?: {
1428
+ type: "explicit-string";
1429
+ content: string;
1430
+ } | {
1431
+ type: "relative";
1432
+ path: string;
1433
+ } | undefined;
1434
+ changelog?: {
1435
+ type: "explicit-string";
1436
+ content: string;
1437
+ } | {
1438
+ type: "relative";
1439
+ path: string;
1440
+ } | undefined;
1441
+ logo?: {
1442
+ type: "explicit-base64";
1443
+ content: string;
1444
+ mimeType: string;
1445
+ } | {
1446
+ type: "relative";
1447
+ path: string;
1448
+ } | undefined;
1449
+ docs?: string | undefined;
1450
+ support?: string | undefined;
1451
+ tags?: string[] | undefined;
1452
+ marketplaceRanking?: number | undefined;
1453
+ deprecated?: boolean | undefined;
1454
+ termsOfServiceUrl?: string | undefined;
1455
+ }, {
1456
+ organization: {
1457
+ url: string;
1458
+ name: string;
1459
+ logo?: {
1460
+ type: "explicit-base64";
1461
+ content: string;
1462
+ mimeType: string;
1463
+ } | {
1464
+ type: "relative";
1465
+ path: string;
1466
+ } | undefined;
1467
+ } & {
1468
+ [k: string]: unknown;
1469
+ };
1470
+ title: string;
1471
+ description: string;
1472
+ url?: string | undefined;
1473
+ longDescription?: {
1474
+ type: "explicit-string";
1475
+ content: string;
1476
+ } | {
1477
+ type: "relative";
1478
+ path: string;
1479
+ } | undefined;
1480
+ changelog?: {
1481
+ type: "explicit-string";
1482
+ content: string;
1483
+ } | {
1484
+ type: "relative";
1485
+ path: string;
1486
+ } | undefined;
1487
+ logo?: {
1488
+ type: "explicit-base64";
1489
+ content: string;
1490
+ mimeType: string;
1491
+ } | {
1492
+ type: "relative";
1493
+ path: string;
1494
+ } | undefined;
1495
+ docs?: string | undefined;
1496
+ support?: string | undefined;
1497
+ tags?: string[] | undefined;
1498
+ marketplaceRanking?: number | undefined;
1499
+ deprecated?: boolean | undefined;
1500
+ termsOfServiceUrl?: string | undefined;
1501
+ }>;
1502
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
1503
+ }, z.ZodTypeAny, "passthrough">>;
1504
+ export type BlockPackDescriptionManifest = z.infer<typeof BlockPackDescriptionManifest>;
1505
+ export declare const Sha256Schema: z.ZodString;
1506
+ export declare const ManifestFileInfo: z.ZodObject<{
1507
+ name: z.ZodString;
1508
+ size: z.ZodNumber;
1509
+ sha256: z.ZodString;
1510
+ }, "strip", z.ZodTypeAny, {
1511
+ name: string;
1512
+ size: number;
1513
+ sha256: string;
1514
+ }, {
1515
+ name: string;
1516
+ size: number;
1517
+ sha256: string;
1518
+ }>;
1519
+ export type ManifestFileInfo = z.infer<typeof ManifestFileInfo>;
1520
+ export declare const BlockPackManifest: z.ZodObject<{
1521
+ schema: z.ZodLiteral<"v2">;
1522
+ description: z.ZodObject<{
1523
+ id: z.ZodObject<{
1524
+ organization: z.ZodString;
1525
+ name: z.ZodString;
1526
+ version: z.ZodString;
1527
+ }, "strict", z.ZodTypeAny, {
1528
+ organization: string;
1529
+ name: string;
1530
+ version: string;
1531
+ }, {
1532
+ organization: string;
1533
+ name: string;
1534
+ version: string;
1535
+ }>;
1536
+ components: z.ZodObject<{
1537
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
1538
+ type: z.ZodLiteral<"relative">;
1539
+ path: z.ZodString;
1540
+ }, "strict", z.ZodTypeAny, {
1541
+ type: "relative";
1542
+ path: string;
1543
+ }, {
1544
+ type: "relative";
1545
+ path: string;
1546
+ }>, {
1547
+ type: "workflow-v1";
1548
+ main: {
1549
+ type: "relative";
1550
+ path: string;
1551
+ };
1552
+ }, {
1553
+ type: "relative";
1554
+ path: string;
1555
+ }>, z.ZodObject<{
1556
+ type: z.ZodLiteral<"workflow-v1">;
1557
+ main: z.ZodObject<{
1558
+ type: z.ZodLiteral<"relative">;
1559
+ path: z.ZodString;
1560
+ }, "strict", z.ZodTypeAny, {
1561
+ type: "relative";
1562
+ path: string;
1563
+ }, {
1564
+ type: "relative";
1565
+ path: string;
1566
+ }>;
1567
+ }, "strip", z.ZodTypeAny, {
1568
+ type: "workflow-v1";
1569
+ main: {
1570
+ type: "relative";
1571
+ path: string;
1572
+ };
1573
+ }, {
1574
+ type: "workflow-v1";
1575
+ main: {
1576
+ type: "relative";
1577
+ path: string;
1578
+ };
1579
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1580
+ type: z.ZodLiteral<"workflow-v1">;
1581
+ main: z.ZodObject<{
1582
+ type: z.ZodLiteral<"relative">;
1583
+ path: z.ZodString;
1584
+ }, "strict", z.ZodTypeAny, {
1585
+ type: "relative";
1586
+ path: string;
1587
+ }, {
1588
+ type: "relative";
1589
+ path: string;
1590
+ }>;
1591
+ }, "strip", z.ZodTypeAny, {
1592
+ type: "workflow-v1";
1593
+ main: {
1594
+ type: "relative";
1595
+ path: string;
1596
+ };
1597
+ }, {
1598
+ type: "workflow-v1";
1599
+ main: {
1600
+ type: "relative";
1601
+ path: string;
1602
+ };
1603
+ }>]>]>;
1604
+ model: z.ZodObject<{
1605
+ type: z.ZodLiteral<"relative">;
1606
+ path: z.ZodString;
1607
+ }, "strict", z.ZodTypeAny, {
1608
+ type: "relative";
1609
+ path: string;
1610
+ }, {
1611
+ type: "relative";
1612
+ path: string;
1613
+ }>;
1614
+ ui: z.ZodObject<{
1615
+ type: z.ZodLiteral<"relative">;
1616
+ path: z.ZodString;
1617
+ }, "strict", z.ZodTypeAny, {
1618
+ type: "relative";
1619
+ path: string;
1620
+ }, {
1621
+ type: "relative";
1622
+ path: string;
1623
+ }>;
1624
+ }, "strip", z.ZodTypeAny, {
1625
+ ui: {
1626
+ type: "relative";
1627
+ path: string;
1628
+ };
1629
+ workflow: {
1630
+ type: "workflow-v1";
1631
+ main: {
1632
+ type: "relative";
1633
+ path: string;
1634
+ };
1635
+ };
1636
+ model: {
1637
+ type: "relative";
1638
+ path: string;
1639
+ };
1640
+ }, {
1641
+ ui: {
1642
+ type: "relative";
1643
+ path: string;
1644
+ };
1645
+ workflow: {
1646
+ type: "relative";
1647
+ path: string;
1648
+ } | {
1649
+ type: "workflow-v1";
1650
+ main: {
1651
+ type: "relative";
1652
+ path: string;
1653
+ };
1654
+ };
1655
+ model: {
1656
+ type: "relative";
1657
+ path: string;
1658
+ };
1659
+ }>;
1660
+ meta: z.ZodObject<{
1661
+ title: z.ZodString;
1662
+ description: z.ZodString;
1663
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1664
+ type: z.ZodLiteral<"explicit-string">;
1665
+ content: z.ZodString;
1666
+ }, "strict", z.ZodTypeAny, {
1667
+ type: "explicit-string";
1668
+ content: string;
1669
+ }, {
1670
+ type: "explicit-string";
1671
+ content: string;
1672
+ }>, z.ZodObject<{
1673
+ type: z.ZodLiteral<"relative">;
1674
+ path: z.ZodString;
1675
+ }, "strict", z.ZodTypeAny, {
1676
+ type: "relative";
1677
+ path: string;
1678
+ }, {
1679
+ type: "relative";
1680
+ path: string;
1681
+ }>]>>;
1682
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1683
+ type: z.ZodLiteral<"explicit-string">;
1684
+ content: z.ZodString;
1685
+ }, "strict", z.ZodTypeAny, {
1686
+ type: "explicit-string";
1687
+ content: string;
1688
+ }, {
1689
+ type: "explicit-string";
1690
+ content: string;
1691
+ }>, z.ZodObject<{
1692
+ type: z.ZodLiteral<"relative">;
1693
+ path: z.ZodString;
1694
+ }, "strict", z.ZodTypeAny, {
1695
+ type: "relative";
1696
+ path: string;
1697
+ }, {
1698
+ type: "relative";
1699
+ path: string;
1700
+ }>]>>;
1701
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1702
+ type: z.ZodLiteral<"explicit-base64">;
1703
+ mimeType: z.ZodString;
1704
+ content: z.ZodString;
1705
+ }, "strict", z.ZodTypeAny, {
1706
+ type: "explicit-base64";
1707
+ content: string;
1708
+ mimeType: string;
1709
+ }, {
1710
+ type: "explicit-base64";
1711
+ content: string;
1712
+ mimeType: string;
1713
+ }>, z.ZodObject<{
1714
+ type: z.ZodLiteral<"relative">;
1715
+ path: z.ZodString;
1716
+ }, "strict", z.ZodTypeAny, {
1717
+ type: "relative";
1718
+ path: string;
1719
+ }, {
1720
+ type: "relative";
1721
+ path: string;
1722
+ }>]>>;
1723
+ url: z.ZodOptional<z.ZodString>;
1724
+ docs: z.ZodOptional<z.ZodString>;
1725
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
1726
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1727
+ organization: z.ZodObject<{
1728
+ name: z.ZodString;
1729
+ url: z.ZodString;
1730
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1731
+ type: z.ZodLiteral<"explicit-base64">;
1732
+ mimeType: z.ZodString;
1733
+ content: z.ZodString;
1734
+ }, "strict", z.ZodTypeAny, {
1735
+ type: "explicit-base64";
1736
+ content: string;
1737
+ mimeType: string;
1738
+ }, {
1739
+ type: "explicit-base64";
1740
+ content: string;
1741
+ mimeType: string;
1742
+ }>, z.ZodObject<{
1743
+ type: z.ZodLiteral<"relative">;
1744
+ path: z.ZodString;
1745
+ }, "strict", z.ZodTypeAny, {
1746
+ type: "relative";
1747
+ path: string;
1748
+ }, {
1749
+ type: "relative";
1750
+ path: string;
1751
+ }>]>>;
1752
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1753
+ name: z.ZodString;
1754
+ url: z.ZodString;
1755
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1756
+ type: z.ZodLiteral<"explicit-base64">;
1757
+ mimeType: z.ZodString;
1758
+ content: z.ZodString;
1759
+ }, "strict", z.ZodTypeAny, {
1760
+ type: "explicit-base64";
1761
+ content: string;
1762
+ mimeType: string;
1763
+ }, {
1764
+ type: "explicit-base64";
1765
+ content: string;
1766
+ mimeType: string;
1767
+ }>, z.ZodObject<{
1768
+ type: z.ZodLiteral<"relative">;
1769
+ path: z.ZodString;
1770
+ }, "strict", z.ZodTypeAny, {
1771
+ type: "relative";
1772
+ path: string;
1773
+ }, {
1774
+ type: "relative";
1775
+ path: string;
1776
+ }>]>>;
1777
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1778
+ name: z.ZodString;
1779
+ url: z.ZodString;
1780
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1781
+ type: z.ZodLiteral<"explicit-base64">;
1782
+ mimeType: z.ZodString;
1783
+ content: z.ZodString;
1784
+ }, "strict", z.ZodTypeAny, {
1785
+ type: "explicit-base64";
1786
+ content: string;
1787
+ mimeType: string;
1788
+ }, {
1789
+ type: "explicit-base64";
1790
+ content: string;
1791
+ mimeType: string;
1792
+ }>, z.ZodObject<{
1793
+ type: z.ZodLiteral<"relative">;
1794
+ path: z.ZodString;
1795
+ }, "strict", z.ZodTypeAny, {
1796
+ type: "relative";
1797
+ path: string;
1798
+ }, {
1799
+ type: "relative";
1800
+ path: string;
1801
+ }>]>>;
1802
+ }, z.ZodTypeAny, "passthrough">>;
1803
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
1804
+ deprecated: z.ZodOptional<z.ZodBoolean>;
1805
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
1806
+ }, "strip", z.ZodTypeAny, {
1807
+ organization: {
1808
+ url: string;
1809
+ name: string;
1810
+ logo?: {
1811
+ type: "explicit-base64";
1812
+ content: string;
1813
+ mimeType: string;
1814
+ } | {
1815
+ type: "relative";
1816
+ path: string;
1817
+ } | undefined;
1818
+ } & {
1819
+ [k: string]: unknown;
1820
+ };
1821
+ title: string;
1822
+ description: string;
1823
+ url?: string | undefined;
1824
+ longDescription?: {
1825
+ type: "explicit-string";
1826
+ content: string;
1827
+ } | {
1828
+ type: "relative";
1829
+ path: string;
1830
+ } | undefined;
1831
+ changelog?: {
1832
+ type: "explicit-string";
1833
+ content: string;
1834
+ } | {
1835
+ type: "relative";
1836
+ path: string;
1837
+ } | undefined;
1838
+ logo?: {
1839
+ type: "explicit-base64";
1840
+ content: string;
1841
+ mimeType: string;
1842
+ } | {
1843
+ type: "relative";
1844
+ path: string;
1845
+ } | undefined;
1846
+ docs?: string | undefined;
1847
+ support?: string | undefined;
1848
+ tags?: string[] | undefined;
1849
+ marketplaceRanking?: number | undefined;
1850
+ deprecated?: boolean | undefined;
1851
+ termsOfServiceUrl?: string | undefined;
1852
+ }, {
1853
+ organization: {
1854
+ url: string;
1855
+ name: string;
1856
+ logo?: {
1857
+ type: "explicit-base64";
1858
+ content: string;
1859
+ mimeType: string;
1860
+ } | {
1861
+ type: "relative";
1862
+ path: string;
1863
+ } | undefined;
1864
+ } & {
1865
+ [k: string]: unknown;
1866
+ };
1867
+ title: string;
1868
+ description: string;
1869
+ url?: string | undefined;
1870
+ longDescription?: {
1871
+ type: "explicit-string";
1872
+ content: string;
1873
+ } | {
1874
+ type: "relative";
1875
+ path: string;
1876
+ } | undefined;
1877
+ changelog?: {
1878
+ type: "explicit-string";
1879
+ content: string;
1880
+ } | {
1881
+ type: "relative";
1882
+ path: string;
1883
+ } | undefined;
1884
+ logo?: {
1885
+ type: "explicit-base64";
1886
+ content: string;
1887
+ mimeType: string;
1888
+ } | {
1889
+ type: "relative";
1890
+ path: string;
1891
+ } | undefined;
1892
+ docs?: string | undefined;
1893
+ support?: string | undefined;
1894
+ tags?: string[] | undefined;
1895
+ marketplaceRanking?: number | undefined;
1896
+ deprecated?: boolean | undefined;
1897
+ termsOfServiceUrl?: string | undefined;
1898
+ }>;
1899
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
1900
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1901
+ id: z.ZodObject<{
1902
+ organization: z.ZodString;
1903
+ name: z.ZodString;
1904
+ version: z.ZodString;
1905
+ }, "strict", z.ZodTypeAny, {
1906
+ organization: string;
1907
+ name: string;
1908
+ version: string;
1909
+ }, {
1910
+ organization: string;
1911
+ name: string;
1912
+ version: string;
1913
+ }>;
1914
+ components: z.ZodObject<{
1915
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
1916
+ type: z.ZodLiteral<"relative">;
1917
+ path: z.ZodString;
1918
+ }, "strict", z.ZodTypeAny, {
1919
+ type: "relative";
1920
+ path: string;
1921
+ }, {
1922
+ type: "relative";
1923
+ path: string;
1924
+ }>, {
1925
+ type: "workflow-v1";
1926
+ main: {
1927
+ type: "relative";
1928
+ path: string;
1929
+ };
1930
+ }, {
1931
+ type: "relative";
1932
+ path: string;
1933
+ }>, z.ZodObject<{
1934
+ type: z.ZodLiteral<"workflow-v1">;
1935
+ main: z.ZodObject<{
1936
+ type: z.ZodLiteral<"relative">;
1937
+ path: z.ZodString;
1938
+ }, "strict", z.ZodTypeAny, {
1939
+ type: "relative";
1940
+ path: string;
1941
+ }, {
1942
+ type: "relative";
1943
+ path: string;
1944
+ }>;
1945
+ }, "strip", z.ZodTypeAny, {
1946
+ type: "workflow-v1";
1947
+ main: {
1948
+ type: "relative";
1949
+ path: string;
1950
+ };
1951
+ }, {
1952
+ type: "workflow-v1";
1953
+ main: {
1954
+ type: "relative";
1955
+ path: string;
1956
+ };
1957
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1958
+ type: z.ZodLiteral<"workflow-v1">;
1959
+ main: z.ZodObject<{
1960
+ type: z.ZodLiteral<"relative">;
1961
+ path: z.ZodString;
1962
+ }, "strict", z.ZodTypeAny, {
1963
+ type: "relative";
1964
+ path: string;
1965
+ }, {
1966
+ type: "relative";
1967
+ path: string;
1968
+ }>;
1969
+ }, "strip", z.ZodTypeAny, {
1970
+ type: "workflow-v1";
1971
+ main: {
1972
+ type: "relative";
1973
+ path: string;
1974
+ };
1975
+ }, {
1976
+ type: "workflow-v1";
1977
+ main: {
1978
+ type: "relative";
1979
+ path: string;
1980
+ };
1981
+ }>]>]>;
1982
+ model: z.ZodObject<{
1983
+ type: z.ZodLiteral<"relative">;
1984
+ path: z.ZodString;
1985
+ }, "strict", z.ZodTypeAny, {
1986
+ type: "relative";
1987
+ path: string;
1988
+ }, {
1989
+ type: "relative";
1990
+ path: string;
1991
+ }>;
1992
+ ui: z.ZodObject<{
1993
+ type: z.ZodLiteral<"relative">;
1994
+ path: z.ZodString;
1995
+ }, "strict", z.ZodTypeAny, {
1996
+ type: "relative";
1997
+ path: string;
1998
+ }, {
1999
+ type: "relative";
2000
+ path: string;
2001
+ }>;
2002
+ }, "strip", z.ZodTypeAny, {
2003
+ ui: {
2004
+ type: "relative";
2005
+ path: string;
2006
+ };
2007
+ workflow: {
2008
+ type: "workflow-v1";
2009
+ main: {
2010
+ type: "relative";
2011
+ path: string;
2012
+ };
2013
+ };
2014
+ model: {
2015
+ type: "relative";
2016
+ path: string;
2017
+ };
2018
+ }, {
2019
+ ui: {
2020
+ type: "relative";
2021
+ path: string;
2022
+ };
2023
+ workflow: {
2024
+ type: "relative";
2025
+ path: string;
2026
+ } | {
2027
+ type: "workflow-v1";
2028
+ main: {
2029
+ type: "relative";
2030
+ path: string;
2031
+ };
2032
+ };
2033
+ model: {
2034
+ type: "relative";
2035
+ path: string;
2036
+ };
2037
+ }>;
2038
+ meta: z.ZodObject<{
2039
+ title: z.ZodString;
2040
+ description: z.ZodString;
2041
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2042
+ type: z.ZodLiteral<"explicit-string">;
2043
+ content: z.ZodString;
2044
+ }, "strict", z.ZodTypeAny, {
2045
+ type: "explicit-string";
2046
+ content: string;
2047
+ }, {
2048
+ type: "explicit-string";
2049
+ content: string;
2050
+ }>, z.ZodObject<{
2051
+ type: z.ZodLiteral<"relative">;
2052
+ path: z.ZodString;
2053
+ }, "strict", z.ZodTypeAny, {
2054
+ type: "relative";
2055
+ path: string;
2056
+ }, {
2057
+ type: "relative";
2058
+ path: string;
2059
+ }>]>>;
2060
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2061
+ type: z.ZodLiteral<"explicit-string">;
2062
+ content: z.ZodString;
2063
+ }, "strict", z.ZodTypeAny, {
2064
+ type: "explicit-string";
2065
+ content: string;
2066
+ }, {
2067
+ type: "explicit-string";
2068
+ content: string;
2069
+ }>, z.ZodObject<{
2070
+ type: z.ZodLiteral<"relative">;
2071
+ path: z.ZodString;
2072
+ }, "strict", z.ZodTypeAny, {
2073
+ type: "relative";
2074
+ path: string;
2075
+ }, {
2076
+ type: "relative";
2077
+ path: string;
2078
+ }>]>>;
2079
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2080
+ type: z.ZodLiteral<"explicit-base64">;
2081
+ mimeType: z.ZodString;
2082
+ content: z.ZodString;
2083
+ }, "strict", z.ZodTypeAny, {
2084
+ type: "explicit-base64";
2085
+ content: string;
2086
+ mimeType: string;
2087
+ }, {
2088
+ type: "explicit-base64";
2089
+ content: string;
2090
+ mimeType: string;
2091
+ }>, z.ZodObject<{
2092
+ type: z.ZodLiteral<"relative">;
2093
+ path: z.ZodString;
2094
+ }, "strict", z.ZodTypeAny, {
2095
+ type: "relative";
2096
+ path: string;
2097
+ }, {
2098
+ type: "relative";
2099
+ path: string;
2100
+ }>]>>;
2101
+ url: z.ZodOptional<z.ZodString>;
2102
+ docs: z.ZodOptional<z.ZodString>;
2103
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
2104
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2105
+ organization: z.ZodObject<{
2106
+ name: z.ZodString;
2107
+ url: z.ZodString;
2108
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2109
+ type: z.ZodLiteral<"explicit-base64">;
2110
+ mimeType: z.ZodString;
2111
+ content: z.ZodString;
2112
+ }, "strict", z.ZodTypeAny, {
2113
+ type: "explicit-base64";
2114
+ content: string;
2115
+ mimeType: string;
2116
+ }, {
2117
+ type: "explicit-base64";
2118
+ content: string;
2119
+ mimeType: string;
2120
+ }>, z.ZodObject<{
2121
+ type: z.ZodLiteral<"relative">;
2122
+ path: z.ZodString;
2123
+ }, "strict", z.ZodTypeAny, {
2124
+ type: "relative";
2125
+ path: string;
2126
+ }, {
2127
+ type: "relative";
2128
+ path: string;
2129
+ }>]>>;
2130
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2131
+ name: z.ZodString;
2132
+ url: z.ZodString;
2133
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2134
+ type: z.ZodLiteral<"explicit-base64">;
2135
+ mimeType: z.ZodString;
2136
+ content: z.ZodString;
2137
+ }, "strict", z.ZodTypeAny, {
2138
+ type: "explicit-base64";
2139
+ content: string;
2140
+ mimeType: string;
2141
+ }, {
2142
+ type: "explicit-base64";
2143
+ content: string;
2144
+ mimeType: string;
2145
+ }>, z.ZodObject<{
2146
+ type: z.ZodLiteral<"relative">;
2147
+ path: z.ZodString;
2148
+ }, "strict", z.ZodTypeAny, {
2149
+ type: "relative";
2150
+ path: string;
2151
+ }, {
2152
+ type: "relative";
2153
+ path: string;
2154
+ }>]>>;
2155
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2156
+ name: z.ZodString;
2157
+ url: z.ZodString;
2158
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2159
+ type: z.ZodLiteral<"explicit-base64">;
2160
+ mimeType: z.ZodString;
2161
+ content: z.ZodString;
2162
+ }, "strict", z.ZodTypeAny, {
2163
+ type: "explicit-base64";
2164
+ content: string;
2165
+ mimeType: string;
2166
+ }, {
2167
+ type: "explicit-base64";
2168
+ content: string;
2169
+ mimeType: string;
2170
+ }>, z.ZodObject<{
2171
+ type: z.ZodLiteral<"relative">;
2172
+ path: z.ZodString;
2173
+ }, "strict", z.ZodTypeAny, {
2174
+ type: "relative";
2175
+ path: string;
2176
+ }, {
2177
+ type: "relative";
2178
+ path: string;
2179
+ }>]>>;
2180
+ }, z.ZodTypeAny, "passthrough">>;
2181
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
2182
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2183
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
2184
+ }, "strip", z.ZodTypeAny, {
2185
+ organization: {
2186
+ url: string;
2187
+ name: string;
2188
+ logo?: {
2189
+ type: "explicit-base64";
2190
+ content: string;
2191
+ mimeType: string;
2192
+ } | {
2193
+ type: "relative";
2194
+ path: string;
2195
+ } | undefined;
2196
+ } & {
2197
+ [k: string]: unknown;
2198
+ };
2199
+ title: string;
2200
+ description: string;
2201
+ url?: string | undefined;
2202
+ longDescription?: {
2203
+ type: "explicit-string";
2204
+ content: string;
2205
+ } | {
2206
+ type: "relative";
2207
+ path: string;
2208
+ } | undefined;
2209
+ changelog?: {
2210
+ type: "explicit-string";
2211
+ content: string;
2212
+ } | {
2213
+ type: "relative";
2214
+ path: string;
2215
+ } | undefined;
2216
+ logo?: {
2217
+ type: "explicit-base64";
2218
+ content: string;
2219
+ mimeType: string;
2220
+ } | {
2221
+ type: "relative";
2222
+ path: string;
2223
+ } | undefined;
2224
+ docs?: string | undefined;
2225
+ support?: string | undefined;
2226
+ tags?: string[] | undefined;
2227
+ marketplaceRanking?: number | undefined;
2228
+ deprecated?: boolean | undefined;
2229
+ termsOfServiceUrl?: string | undefined;
2230
+ }, {
2231
+ organization: {
2232
+ url: string;
2233
+ name: string;
2234
+ logo?: {
2235
+ type: "explicit-base64";
2236
+ content: string;
2237
+ mimeType: string;
2238
+ } | {
2239
+ type: "relative";
2240
+ path: string;
2241
+ } | undefined;
2242
+ } & {
2243
+ [k: string]: unknown;
2244
+ };
2245
+ title: string;
2246
+ description: string;
2247
+ url?: string | undefined;
2248
+ longDescription?: {
2249
+ type: "explicit-string";
2250
+ content: string;
2251
+ } | {
2252
+ type: "relative";
2253
+ path: string;
2254
+ } | undefined;
2255
+ changelog?: {
2256
+ type: "explicit-string";
2257
+ content: string;
2258
+ } | {
2259
+ type: "relative";
2260
+ path: string;
2261
+ } | undefined;
2262
+ logo?: {
2263
+ type: "explicit-base64";
2264
+ content: string;
2265
+ mimeType: string;
2266
+ } | {
2267
+ type: "relative";
2268
+ path: string;
2269
+ } | undefined;
2270
+ docs?: string | undefined;
2271
+ support?: string | undefined;
2272
+ tags?: string[] | undefined;
2273
+ marketplaceRanking?: number | undefined;
2274
+ deprecated?: boolean | undefined;
2275
+ termsOfServiceUrl?: string | undefined;
2276
+ }>;
2277
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
2278
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2279
+ id: z.ZodObject<{
2280
+ organization: z.ZodString;
2281
+ name: z.ZodString;
2282
+ version: z.ZodString;
2283
+ }, "strict", z.ZodTypeAny, {
2284
+ organization: string;
2285
+ name: string;
2286
+ version: string;
2287
+ }, {
2288
+ organization: string;
2289
+ name: string;
2290
+ version: string;
2291
+ }>;
2292
+ components: z.ZodObject<{
2293
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
2294
+ type: z.ZodLiteral<"relative">;
2295
+ path: z.ZodString;
2296
+ }, "strict", z.ZodTypeAny, {
2297
+ type: "relative";
2298
+ path: string;
2299
+ }, {
2300
+ type: "relative";
2301
+ path: string;
2302
+ }>, {
2303
+ type: "workflow-v1";
2304
+ main: {
2305
+ type: "relative";
2306
+ path: string;
2307
+ };
2308
+ }, {
2309
+ type: "relative";
2310
+ path: string;
2311
+ }>, z.ZodObject<{
2312
+ type: z.ZodLiteral<"workflow-v1">;
2313
+ main: z.ZodObject<{
2314
+ type: z.ZodLiteral<"relative">;
2315
+ path: z.ZodString;
2316
+ }, "strict", z.ZodTypeAny, {
2317
+ type: "relative";
2318
+ path: string;
2319
+ }, {
2320
+ type: "relative";
2321
+ path: string;
2322
+ }>;
2323
+ }, "strip", z.ZodTypeAny, {
2324
+ type: "workflow-v1";
2325
+ main: {
2326
+ type: "relative";
2327
+ path: string;
2328
+ };
2329
+ }, {
2330
+ type: "workflow-v1";
2331
+ main: {
2332
+ type: "relative";
2333
+ path: string;
2334
+ };
2335
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2336
+ type: z.ZodLiteral<"workflow-v1">;
2337
+ main: z.ZodObject<{
2338
+ type: z.ZodLiteral<"relative">;
2339
+ path: z.ZodString;
2340
+ }, "strict", z.ZodTypeAny, {
2341
+ type: "relative";
2342
+ path: string;
2343
+ }, {
2344
+ type: "relative";
2345
+ path: string;
2346
+ }>;
2347
+ }, "strip", z.ZodTypeAny, {
2348
+ type: "workflow-v1";
2349
+ main: {
2350
+ type: "relative";
2351
+ path: string;
2352
+ };
2353
+ }, {
2354
+ type: "workflow-v1";
2355
+ main: {
2356
+ type: "relative";
2357
+ path: string;
2358
+ };
2359
+ }>]>]>;
2360
+ model: z.ZodObject<{
2361
+ type: z.ZodLiteral<"relative">;
2362
+ path: z.ZodString;
2363
+ }, "strict", z.ZodTypeAny, {
2364
+ type: "relative";
2365
+ path: string;
2366
+ }, {
2367
+ type: "relative";
2368
+ path: string;
2369
+ }>;
2370
+ ui: z.ZodObject<{
2371
+ type: z.ZodLiteral<"relative">;
2372
+ path: z.ZodString;
2373
+ }, "strict", z.ZodTypeAny, {
2374
+ type: "relative";
2375
+ path: string;
2376
+ }, {
2377
+ type: "relative";
2378
+ path: string;
2379
+ }>;
2380
+ }, "strip", z.ZodTypeAny, {
2381
+ ui: {
2382
+ type: "relative";
2383
+ path: string;
2384
+ };
2385
+ workflow: {
2386
+ type: "workflow-v1";
2387
+ main: {
2388
+ type: "relative";
2389
+ path: string;
2390
+ };
2391
+ };
2392
+ model: {
2393
+ type: "relative";
2394
+ path: string;
2395
+ };
2396
+ }, {
2397
+ ui: {
2398
+ type: "relative";
2399
+ path: string;
2400
+ };
2401
+ workflow: {
2402
+ type: "relative";
2403
+ path: string;
2404
+ } | {
2405
+ type: "workflow-v1";
2406
+ main: {
2407
+ type: "relative";
2408
+ path: string;
2409
+ };
2410
+ };
2411
+ model: {
2412
+ type: "relative";
2413
+ path: string;
2414
+ };
2415
+ }>;
2416
+ meta: z.ZodObject<{
2417
+ title: z.ZodString;
2418
+ description: z.ZodString;
2419
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2420
+ type: z.ZodLiteral<"explicit-string">;
2421
+ content: z.ZodString;
2422
+ }, "strict", z.ZodTypeAny, {
2423
+ type: "explicit-string";
2424
+ content: string;
2425
+ }, {
2426
+ type: "explicit-string";
2427
+ content: string;
2428
+ }>, z.ZodObject<{
2429
+ type: z.ZodLiteral<"relative">;
2430
+ path: z.ZodString;
2431
+ }, "strict", z.ZodTypeAny, {
2432
+ type: "relative";
2433
+ path: string;
2434
+ }, {
2435
+ type: "relative";
2436
+ path: string;
2437
+ }>]>>;
2438
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2439
+ type: z.ZodLiteral<"explicit-string">;
2440
+ content: z.ZodString;
2441
+ }, "strict", z.ZodTypeAny, {
2442
+ type: "explicit-string";
2443
+ content: string;
2444
+ }, {
2445
+ type: "explicit-string";
2446
+ content: string;
2447
+ }>, z.ZodObject<{
2448
+ type: z.ZodLiteral<"relative">;
2449
+ path: z.ZodString;
2450
+ }, "strict", z.ZodTypeAny, {
2451
+ type: "relative";
2452
+ path: string;
2453
+ }, {
2454
+ type: "relative";
2455
+ path: string;
2456
+ }>]>>;
2457
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2458
+ type: z.ZodLiteral<"explicit-base64">;
2459
+ mimeType: z.ZodString;
2460
+ content: z.ZodString;
2461
+ }, "strict", z.ZodTypeAny, {
2462
+ type: "explicit-base64";
2463
+ content: string;
2464
+ mimeType: string;
2465
+ }, {
2466
+ type: "explicit-base64";
2467
+ content: string;
2468
+ mimeType: string;
2469
+ }>, z.ZodObject<{
2470
+ type: z.ZodLiteral<"relative">;
2471
+ path: z.ZodString;
2472
+ }, "strict", z.ZodTypeAny, {
2473
+ type: "relative";
2474
+ path: string;
2475
+ }, {
2476
+ type: "relative";
2477
+ path: string;
2478
+ }>]>>;
2479
+ url: z.ZodOptional<z.ZodString>;
2480
+ docs: z.ZodOptional<z.ZodString>;
2481
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
2482
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2483
+ organization: z.ZodObject<{
2484
+ name: z.ZodString;
2485
+ url: z.ZodString;
2486
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2487
+ type: z.ZodLiteral<"explicit-base64">;
2488
+ mimeType: z.ZodString;
2489
+ content: z.ZodString;
2490
+ }, "strict", z.ZodTypeAny, {
2491
+ type: "explicit-base64";
2492
+ content: string;
2493
+ mimeType: string;
2494
+ }, {
2495
+ type: "explicit-base64";
2496
+ content: string;
2497
+ mimeType: string;
2498
+ }>, z.ZodObject<{
2499
+ type: z.ZodLiteral<"relative">;
2500
+ path: z.ZodString;
2501
+ }, "strict", z.ZodTypeAny, {
2502
+ type: "relative";
2503
+ path: string;
2504
+ }, {
2505
+ type: "relative";
2506
+ path: string;
2507
+ }>]>>;
2508
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2509
+ name: z.ZodString;
2510
+ url: z.ZodString;
2511
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2512
+ type: z.ZodLiteral<"explicit-base64">;
2513
+ mimeType: z.ZodString;
2514
+ content: z.ZodString;
2515
+ }, "strict", z.ZodTypeAny, {
2516
+ type: "explicit-base64";
2517
+ content: string;
2518
+ mimeType: string;
2519
+ }, {
2520
+ type: "explicit-base64";
2521
+ content: string;
2522
+ mimeType: string;
2523
+ }>, z.ZodObject<{
2524
+ type: z.ZodLiteral<"relative">;
2525
+ path: z.ZodString;
2526
+ }, "strict", z.ZodTypeAny, {
2527
+ type: "relative";
2528
+ path: string;
2529
+ }, {
2530
+ type: "relative";
2531
+ path: string;
2532
+ }>]>>;
2533
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2534
+ name: z.ZodString;
2535
+ url: z.ZodString;
2536
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2537
+ type: z.ZodLiteral<"explicit-base64">;
2538
+ mimeType: z.ZodString;
2539
+ content: z.ZodString;
2540
+ }, "strict", z.ZodTypeAny, {
2541
+ type: "explicit-base64";
2542
+ content: string;
2543
+ mimeType: string;
2544
+ }, {
2545
+ type: "explicit-base64";
2546
+ content: string;
2547
+ mimeType: string;
2548
+ }>, z.ZodObject<{
2549
+ type: z.ZodLiteral<"relative">;
2550
+ path: z.ZodString;
2551
+ }, "strict", z.ZodTypeAny, {
2552
+ type: "relative";
2553
+ path: string;
2554
+ }, {
2555
+ type: "relative";
2556
+ path: string;
2557
+ }>]>>;
2558
+ }, z.ZodTypeAny, "passthrough">>;
2559
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
2560
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2561
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
2562
+ }, "strip", z.ZodTypeAny, {
2563
+ organization: {
2564
+ url: string;
2565
+ name: string;
2566
+ logo?: {
2567
+ type: "explicit-base64";
2568
+ content: string;
2569
+ mimeType: string;
2570
+ } | {
2571
+ type: "relative";
2572
+ path: string;
2573
+ } | undefined;
2574
+ } & {
2575
+ [k: string]: unknown;
2576
+ };
2577
+ title: string;
2578
+ description: string;
2579
+ url?: string | undefined;
2580
+ longDescription?: {
2581
+ type: "explicit-string";
2582
+ content: string;
2583
+ } | {
2584
+ type: "relative";
2585
+ path: string;
2586
+ } | undefined;
2587
+ changelog?: {
2588
+ type: "explicit-string";
2589
+ content: string;
2590
+ } | {
2591
+ type: "relative";
2592
+ path: string;
2593
+ } | undefined;
2594
+ logo?: {
2595
+ type: "explicit-base64";
2596
+ content: string;
2597
+ mimeType: string;
2598
+ } | {
2599
+ type: "relative";
2600
+ path: string;
2601
+ } | undefined;
2602
+ docs?: string | undefined;
2603
+ support?: string | undefined;
2604
+ tags?: string[] | undefined;
2605
+ marketplaceRanking?: number | undefined;
2606
+ deprecated?: boolean | undefined;
2607
+ termsOfServiceUrl?: string | undefined;
2608
+ }, {
2609
+ organization: {
2610
+ url: string;
2611
+ name: string;
2612
+ logo?: {
2613
+ type: "explicit-base64";
2614
+ content: string;
2615
+ mimeType: string;
2616
+ } | {
2617
+ type: "relative";
2618
+ path: string;
2619
+ } | undefined;
2620
+ } & {
2621
+ [k: string]: unknown;
2622
+ };
2623
+ title: string;
2624
+ description: string;
2625
+ url?: string | undefined;
2626
+ longDescription?: {
2627
+ type: "explicit-string";
2628
+ content: string;
2629
+ } | {
2630
+ type: "relative";
2631
+ path: string;
2632
+ } | undefined;
2633
+ changelog?: {
2634
+ type: "explicit-string";
2635
+ content: string;
2636
+ } | {
2637
+ type: "relative";
2638
+ path: string;
2639
+ } | undefined;
2640
+ logo?: {
2641
+ type: "explicit-base64";
2642
+ content: string;
2643
+ mimeType: string;
2644
+ } | {
2645
+ type: "relative";
2646
+ path: string;
2647
+ } | undefined;
2648
+ docs?: string | undefined;
2649
+ support?: string | undefined;
2650
+ tags?: string[] | undefined;
2651
+ marketplaceRanking?: number | undefined;
2652
+ deprecated?: boolean | undefined;
2653
+ termsOfServiceUrl?: string | undefined;
2654
+ }>;
2655
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
2656
+ }, z.ZodTypeAny, "passthrough">>;
2657
+ timestamp: z.ZodOptional<z.ZodNumber>;
2658
+ files: z.ZodArray<z.ZodObject<{
2659
+ name: z.ZodString;
2660
+ size: z.ZodNumber;
2661
+ sha256: z.ZodString;
2662
+ }, "strip", z.ZodTypeAny, {
2663
+ name: string;
2664
+ size: number;
2665
+ sha256: string;
2666
+ }, {
2667
+ name: string;
2668
+ size: number;
2669
+ sha256: string;
2670
+ }>, "many">;
2671
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2672
+ schema: z.ZodLiteral<"v2">;
2673
+ description: z.ZodObject<{
2674
+ id: z.ZodObject<{
2675
+ organization: z.ZodString;
2676
+ name: z.ZodString;
2677
+ version: z.ZodString;
2678
+ }, "strict", z.ZodTypeAny, {
2679
+ organization: string;
2680
+ name: string;
2681
+ version: string;
2682
+ }, {
2683
+ organization: string;
2684
+ name: string;
2685
+ version: string;
2686
+ }>;
2687
+ components: z.ZodObject<{
2688
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
2689
+ type: z.ZodLiteral<"relative">;
2690
+ path: z.ZodString;
2691
+ }, "strict", z.ZodTypeAny, {
2692
+ type: "relative";
2693
+ path: string;
2694
+ }, {
2695
+ type: "relative";
2696
+ path: string;
2697
+ }>, {
2698
+ type: "workflow-v1";
2699
+ main: {
2700
+ type: "relative";
2701
+ path: string;
2702
+ };
2703
+ }, {
2704
+ type: "relative";
2705
+ path: string;
2706
+ }>, z.ZodObject<{
2707
+ type: z.ZodLiteral<"workflow-v1">;
2708
+ main: z.ZodObject<{
2709
+ type: z.ZodLiteral<"relative">;
2710
+ path: z.ZodString;
2711
+ }, "strict", z.ZodTypeAny, {
2712
+ type: "relative";
2713
+ path: string;
2714
+ }, {
2715
+ type: "relative";
2716
+ path: string;
2717
+ }>;
2718
+ }, "strip", z.ZodTypeAny, {
2719
+ type: "workflow-v1";
2720
+ main: {
2721
+ type: "relative";
2722
+ path: string;
2723
+ };
2724
+ }, {
2725
+ type: "workflow-v1";
2726
+ main: {
2727
+ type: "relative";
2728
+ path: string;
2729
+ };
2730
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2731
+ type: z.ZodLiteral<"workflow-v1">;
2732
+ main: z.ZodObject<{
2733
+ type: z.ZodLiteral<"relative">;
2734
+ path: z.ZodString;
2735
+ }, "strict", z.ZodTypeAny, {
2736
+ type: "relative";
2737
+ path: string;
2738
+ }, {
2739
+ type: "relative";
2740
+ path: string;
2741
+ }>;
2742
+ }, "strip", z.ZodTypeAny, {
2743
+ type: "workflow-v1";
2744
+ main: {
2745
+ type: "relative";
2746
+ path: string;
2747
+ };
2748
+ }, {
2749
+ type: "workflow-v1";
2750
+ main: {
2751
+ type: "relative";
2752
+ path: string;
2753
+ };
2754
+ }>]>]>;
2755
+ model: z.ZodObject<{
2756
+ type: z.ZodLiteral<"relative">;
2757
+ path: z.ZodString;
2758
+ }, "strict", z.ZodTypeAny, {
2759
+ type: "relative";
2760
+ path: string;
2761
+ }, {
2762
+ type: "relative";
2763
+ path: string;
2764
+ }>;
2765
+ ui: z.ZodObject<{
2766
+ type: z.ZodLiteral<"relative">;
2767
+ path: z.ZodString;
2768
+ }, "strict", z.ZodTypeAny, {
2769
+ type: "relative";
2770
+ path: string;
2771
+ }, {
2772
+ type: "relative";
2773
+ path: string;
2774
+ }>;
2775
+ }, "strip", z.ZodTypeAny, {
2776
+ ui: {
2777
+ type: "relative";
2778
+ path: string;
2779
+ };
2780
+ workflow: {
2781
+ type: "workflow-v1";
2782
+ main: {
2783
+ type: "relative";
2784
+ path: string;
2785
+ };
2786
+ };
2787
+ model: {
2788
+ type: "relative";
2789
+ path: string;
2790
+ };
2791
+ }, {
2792
+ ui: {
2793
+ type: "relative";
2794
+ path: string;
2795
+ };
2796
+ workflow: {
2797
+ type: "relative";
2798
+ path: string;
2799
+ } | {
2800
+ type: "workflow-v1";
2801
+ main: {
2802
+ type: "relative";
2803
+ path: string;
2804
+ };
2805
+ };
2806
+ model: {
2807
+ type: "relative";
2808
+ path: string;
2809
+ };
2810
+ }>;
2811
+ meta: z.ZodObject<{
2812
+ title: z.ZodString;
2813
+ description: z.ZodString;
2814
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2815
+ type: z.ZodLiteral<"explicit-string">;
2816
+ content: z.ZodString;
2817
+ }, "strict", z.ZodTypeAny, {
2818
+ type: "explicit-string";
2819
+ content: string;
2820
+ }, {
2821
+ type: "explicit-string";
2822
+ content: string;
2823
+ }>, z.ZodObject<{
2824
+ type: z.ZodLiteral<"relative">;
2825
+ path: z.ZodString;
2826
+ }, "strict", z.ZodTypeAny, {
2827
+ type: "relative";
2828
+ path: string;
2829
+ }, {
2830
+ type: "relative";
2831
+ path: string;
2832
+ }>]>>;
2833
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2834
+ type: z.ZodLiteral<"explicit-string">;
2835
+ content: z.ZodString;
2836
+ }, "strict", z.ZodTypeAny, {
2837
+ type: "explicit-string";
2838
+ content: string;
2839
+ }, {
2840
+ type: "explicit-string";
2841
+ content: string;
2842
+ }>, z.ZodObject<{
2843
+ type: z.ZodLiteral<"relative">;
2844
+ path: z.ZodString;
2845
+ }, "strict", z.ZodTypeAny, {
2846
+ type: "relative";
2847
+ path: string;
2848
+ }, {
2849
+ type: "relative";
2850
+ path: string;
2851
+ }>]>>;
2852
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2853
+ type: z.ZodLiteral<"explicit-base64">;
2854
+ mimeType: z.ZodString;
2855
+ content: z.ZodString;
2856
+ }, "strict", z.ZodTypeAny, {
2857
+ type: "explicit-base64";
2858
+ content: string;
2859
+ mimeType: string;
2860
+ }, {
2861
+ type: "explicit-base64";
2862
+ content: string;
2863
+ mimeType: string;
2864
+ }>, z.ZodObject<{
2865
+ type: z.ZodLiteral<"relative">;
2866
+ path: z.ZodString;
2867
+ }, "strict", z.ZodTypeAny, {
2868
+ type: "relative";
2869
+ path: string;
2870
+ }, {
2871
+ type: "relative";
2872
+ path: string;
2873
+ }>]>>;
2874
+ url: z.ZodOptional<z.ZodString>;
2875
+ docs: z.ZodOptional<z.ZodString>;
2876
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
2877
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2878
+ organization: z.ZodObject<{
2879
+ name: z.ZodString;
2880
+ url: z.ZodString;
2881
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2882
+ type: z.ZodLiteral<"explicit-base64">;
2883
+ mimeType: z.ZodString;
2884
+ content: z.ZodString;
2885
+ }, "strict", z.ZodTypeAny, {
2886
+ type: "explicit-base64";
2887
+ content: string;
2888
+ mimeType: string;
2889
+ }, {
2890
+ type: "explicit-base64";
2891
+ content: string;
2892
+ mimeType: string;
2893
+ }>, z.ZodObject<{
2894
+ type: z.ZodLiteral<"relative">;
2895
+ path: z.ZodString;
2896
+ }, "strict", z.ZodTypeAny, {
2897
+ type: "relative";
2898
+ path: string;
2899
+ }, {
2900
+ type: "relative";
2901
+ path: string;
2902
+ }>]>>;
2903
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2904
+ name: z.ZodString;
2905
+ url: z.ZodString;
2906
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2907
+ type: z.ZodLiteral<"explicit-base64">;
2908
+ mimeType: z.ZodString;
2909
+ content: z.ZodString;
2910
+ }, "strict", z.ZodTypeAny, {
2911
+ type: "explicit-base64";
2912
+ content: string;
2913
+ mimeType: string;
2914
+ }, {
2915
+ type: "explicit-base64";
2916
+ content: string;
2917
+ mimeType: string;
2918
+ }>, z.ZodObject<{
2919
+ type: z.ZodLiteral<"relative">;
2920
+ path: z.ZodString;
2921
+ }, "strict", z.ZodTypeAny, {
2922
+ type: "relative";
2923
+ path: string;
2924
+ }, {
2925
+ type: "relative";
2926
+ path: string;
2927
+ }>]>>;
2928
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2929
+ name: z.ZodString;
2930
+ url: z.ZodString;
2931
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2932
+ type: z.ZodLiteral<"explicit-base64">;
2933
+ mimeType: z.ZodString;
2934
+ content: z.ZodString;
2935
+ }, "strict", z.ZodTypeAny, {
2936
+ type: "explicit-base64";
2937
+ content: string;
2938
+ mimeType: string;
2939
+ }, {
2940
+ type: "explicit-base64";
2941
+ content: string;
2942
+ mimeType: string;
2943
+ }>, z.ZodObject<{
2944
+ type: z.ZodLiteral<"relative">;
2945
+ path: z.ZodString;
2946
+ }, "strict", z.ZodTypeAny, {
2947
+ type: "relative";
2948
+ path: string;
2949
+ }, {
2950
+ type: "relative";
2951
+ path: string;
2952
+ }>]>>;
2953
+ }, z.ZodTypeAny, "passthrough">>;
2954
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
2955
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2956
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
2957
+ }, "strip", z.ZodTypeAny, {
2958
+ organization: {
2959
+ url: string;
2960
+ name: string;
2961
+ logo?: {
2962
+ type: "explicit-base64";
2963
+ content: string;
2964
+ mimeType: string;
2965
+ } | {
2966
+ type: "relative";
2967
+ path: string;
2968
+ } | undefined;
2969
+ } & {
2970
+ [k: string]: unknown;
2971
+ };
2972
+ title: string;
2973
+ description: string;
2974
+ url?: string | undefined;
2975
+ longDescription?: {
2976
+ type: "explicit-string";
2977
+ content: string;
2978
+ } | {
2979
+ type: "relative";
2980
+ path: string;
2981
+ } | undefined;
2982
+ changelog?: {
2983
+ type: "explicit-string";
2984
+ content: string;
2985
+ } | {
2986
+ type: "relative";
2987
+ path: string;
2988
+ } | undefined;
2989
+ logo?: {
2990
+ type: "explicit-base64";
2991
+ content: string;
2992
+ mimeType: string;
2993
+ } | {
2994
+ type: "relative";
2995
+ path: string;
2996
+ } | undefined;
2997
+ docs?: string | undefined;
2998
+ support?: string | undefined;
2999
+ tags?: string[] | undefined;
3000
+ marketplaceRanking?: number | undefined;
3001
+ deprecated?: boolean | undefined;
3002
+ termsOfServiceUrl?: string | undefined;
3003
+ }, {
3004
+ organization: {
3005
+ url: string;
3006
+ name: string;
3007
+ logo?: {
3008
+ type: "explicit-base64";
3009
+ content: string;
3010
+ mimeType: string;
3011
+ } | {
3012
+ type: "relative";
3013
+ path: string;
3014
+ } | undefined;
3015
+ } & {
3016
+ [k: string]: unknown;
3017
+ };
3018
+ title: string;
3019
+ description: string;
3020
+ url?: string | undefined;
3021
+ longDescription?: {
3022
+ type: "explicit-string";
3023
+ content: string;
3024
+ } | {
3025
+ type: "relative";
3026
+ path: string;
3027
+ } | undefined;
3028
+ changelog?: {
3029
+ type: "explicit-string";
3030
+ content: string;
3031
+ } | {
3032
+ type: "relative";
3033
+ path: string;
3034
+ } | undefined;
3035
+ logo?: {
3036
+ type: "explicit-base64";
3037
+ content: string;
3038
+ mimeType: string;
3039
+ } | {
3040
+ type: "relative";
3041
+ path: string;
3042
+ } | undefined;
3043
+ docs?: string | undefined;
3044
+ support?: string | undefined;
3045
+ tags?: string[] | undefined;
3046
+ marketplaceRanking?: number | undefined;
3047
+ deprecated?: boolean | undefined;
3048
+ termsOfServiceUrl?: string | undefined;
3049
+ }>;
3050
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
3051
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3052
+ id: z.ZodObject<{
3053
+ organization: z.ZodString;
3054
+ name: z.ZodString;
3055
+ version: z.ZodString;
3056
+ }, "strict", z.ZodTypeAny, {
3057
+ organization: string;
3058
+ name: string;
3059
+ version: string;
3060
+ }, {
3061
+ organization: string;
3062
+ name: string;
3063
+ version: string;
3064
+ }>;
3065
+ components: z.ZodObject<{
3066
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
3067
+ type: z.ZodLiteral<"relative">;
3068
+ path: z.ZodString;
3069
+ }, "strict", z.ZodTypeAny, {
3070
+ type: "relative";
3071
+ path: string;
3072
+ }, {
3073
+ type: "relative";
3074
+ path: string;
3075
+ }>, {
3076
+ type: "workflow-v1";
3077
+ main: {
3078
+ type: "relative";
3079
+ path: string;
3080
+ };
3081
+ }, {
3082
+ type: "relative";
3083
+ path: string;
3084
+ }>, z.ZodObject<{
3085
+ type: z.ZodLiteral<"workflow-v1">;
3086
+ main: z.ZodObject<{
3087
+ type: z.ZodLiteral<"relative">;
3088
+ path: z.ZodString;
3089
+ }, "strict", z.ZodTypeAny, {
3090
+ type: "relative";
3091
+ path: string;
3092
+ }, {
3093
+ type: "relative";
3094
+ path: string;
3095
+ }>;
3096
+ }, "strip", z.ZodTypeAny, {
3097
+ type: "workflow-v1";
3098
+ main: {
3099
+ type: "relative";
3100
+ path: string;
3101
+ };
3102
+ }, {
3103
+ type: "workflow-v1";
3104
+ main: {
3105
+ type: "relative";
3106
+ path: string;
3107
+ };
3108
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3109
+ type: z.ZodLiteral<"workflow-v1">;
3110
+ main: z.ZodObject<{
3111
+ type: z.ZodLiteral<"relative">;
3112
+ path: z.ZodString;
3113
+ }, "strict", z.ZodTypeAny, {
3114
+ type: "relative";
3115
+ path: string;
3116
+ }, {
3117
+ type: "relative";
3118
+ path: string;
3119
+ }>;
3120
+ }, "strip", z.ZodTypeAny, {
3121
+ type: "workflow-v1";
3122
+ main: {
3123
+ type: "relative";
3124
+ path: string;
3125
+ };
3126
+ }, {
3127
+ type: "workflow-v1";
3128
+ main: {
3129
+ type: "relative";
3130
+ path: string;
3131
+ };
3132
+ }>]>]>;
3133
+ model: z.ZodObject<{
3134
+ type: z.ZodLiteral<"relative">;
3135
+ path: z.ZodString;
3136
+ }, "strict", z.ZodTypeAny, {
3137
+ type: "relative";
3138
+ path: string;
3139
+ }, {
3140
+ type: "relative";
3141
+ path: string;
3142
+ }>;
3143
+ ui: z.ZodObject<{
3144
+ type: z.ZodLiteral<"relative">;
3145
+ path: z.ZodString;
3146
+ }, "strict", z.ZodTypeAny, {
3147
+ type: "relative";
3148
+ path: string;
3149
+ }, {
3150
+ type: "relative";
3151
+ path: string;
3152
+ }>;
3153
+ }, "strip", z.ZodTypeAny, {
3154
+ ui: {
3155
+ type: "relative";
3156
+ path: string;
3157
+ };
3158
+ workflow: {
3159
+ type: "workflow-v1";
3160
+ main: {
3161
+ type: "relative";
3162
+ path: string;
3163
+ };
3164
+ };
3165
+ model: {
3166
+ type: "relative";
3167
+ path: string;
3168
+ };
3169
+ }, {
3170
+ ui: {
3171
+ type: "relative";
3172
+ path: string;
3173
+ };
3174
+ workflow: {
3175
+ type: "relative";
3176
+ path: string;
3177
+ } | {
3178
+ type: "workflow-v1";
3179
+ main: {
3180
+ type: "relative";
3181
+ path: string;
3182
+ };
3183
+ };
3184
+ model: {
3185
+ type: "relative";
3186
+ path: string;
3187
+ };
3188
+ }>;
3189
+ meta: z.ZodObject<{
3190
+ title: z.ZodString;
3191
+ description: z.ZodString;
3192
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3193
+ type: z.ZodLiteral<"explicit-string">;
3194
+ content: z.ZodString;
3195
+ }, "strict", z.ZodTypeAny, {
3196
+ type: "explicit-string";
3197
+ content: string;
3198
+ }, {
3199
+ type: "explicit-string";
3200
+ content: string;
3201
+ }>, z.ZodObject<{
3202
+ type: z.ZodLiteral<"relative">;
3203
+ path: z.ZodString;
3204
+ }, "strict", z.ZodTypeAny, {
3205
+ type: "relative";
3206
+ path: string;
3207
+ }, {
3208
+ type: "relative";
3209
+ path: string;
3210
+ }>]>>;
3211
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3212
+ type: z.ZodLiteral<"explicit-string">;
3213
+ content: z.ZodString;
3214
+ }, "strict", z.ZodTypeAny, {
3215
+ type: "explicit-string";
3216
+ content: string;
3217
+ }, {
3218
+ type: "explicit-string";
3219
+ content: string;
3220
+ }>, z.ZodObject<{
3221
+ type: z.ZodLiteral<"relative">;
3222
+ path: z.ZodString;
3223
+ }, "strict", z.ZodTypeAny, {
3224
+ type: "relative";
3225
+ path: string;
3226
+ }, {
3227
+ type: "relative";
3228
+ path: string;
3229
+ }>]>>;
3230
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3231
+ type: z.ZodLiteral<"explicit-base64">;
3232
+ mimeType: z.ZodString;
3233
+ content: z.ZodString;
3234
+ }, "strict", z.ZodTypeAny, {
3235
+ type: "explicit-base64";
3236
+ content: string;
3237
+ mimeType: string;
3238
+ }, {
3239
+ type: "explicit-base64";
3240
+ content: string;
3241
+ mimeType: string;
3242
+ }>, z.ZodObject<{
3243
+ type: z.ZodLiteral<"relative">;
3244
+ path: z.ZodString;
3245
+ }, "strict", z.ZodTypeAny, {
3246
+ type: "relative";
3247
+ path: string;
3248
+ }, {
3249
+ type: "relative";
3250
+ path: string;
3251
+ }>]>>;
3252
+ url: z.ZodOptional<z.ZodString>;
3253
+ docs: z.ZodOptional<z.ZodString>;
3254
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
3255
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3256
+ organization: z.ZodObject<{
3257
+ name: z.ZodString;
3258
+ url: z.ZodString;
3259
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3260
+ type: z.ZodLiteral<"explicit-base64">;
3261
+ mimeType: z.ZodString;
3262
+ content: z.ZodString;
3263
+ }, "strict", z.ZodTypeAny, {
3264
+ type: "explicit-base64";
3265
+ content: string;
3266
+ mimeType: string;
3267
+ }, {
3268
+ type: "explicit-base64";
3269
+ content: string;
3270
+ mimeType: string;
3271
+ }>, z.ZodObject<{
3272
+ type: z.ZodLiteral<"relative">;
3273
+ path: z.ZodString;
3274
+ }, "strict", z.ZodTypeAny, {
3275
+ type: "relative";
3276
+ path: string;
3277
+ }, {
3278
+ type: "relative";
3279
+ path: string;
3280
+ }>]>>;
3281
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3282
+ name: z.ZodString;
3283
+ url: z.ZodString;
3284
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3285
+ type: z.ZodLiteral<"explicit-base64">;
3286
+ mimeType: z.ZodString;
3287
+ content: z.ZodString;
3288
+ }, "strict", z.ZodTypeAny, {
3289
+ type: "explicit-base64";
3290
+ content: string;
3291
+ mimeType: string;
3292
+ }, {
3293
+ type: "explicit-base64";
3294
+ content: string;
3295
+ mimeType: string;
3296
+ }>, z.ZodObject<{
3297
+ type: z.ZodLiteral<"relative">;
3298
+ path: z.ZodString;
3299
+ }, "strict", z.ZodTypeAny, {
3300
+ type: "relative";
3301
+ path: string;
3302
+ }, {
3303
+ type: "relative";
3304
+ path: string;
3305
+ }>]>>;
3306
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3307
+ name: z.ZodString;
3308
+ url: z.ZodString;
3309
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3310
+ type: z.ZodLiteral<"explicit-base64">;
3311
+ mimeType: z.ZodString;
3312
+ content: z.ZodString;
3313
+ }, "strict", z.ZodTypeAny, {
3314
+ type: "explicit-base64";
3315
+ content: string;
3316
+ mimeType: string;
3317
+ }, {
3318
+ type: "explicit-base64";
3319
+ content: string;
3320
+ mimeType: string;
3321
+ }>, z.ZodObject<{
3322
+ type: z.ZodLiteral<"relative">;
3323
+ path: z.ZodString;
3324
+ }, "strict", z.ZodTypeAny, {
3325
+ type: "relative";
3326
+ path: string;
3327
+ }, {
3328
+ type: "relative";
3329
+ path: string;
3330
+ }>]>>;
3331
+ }, z.ZodTypeAny, "passthrough">>;
3332
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
3333
+ deprecated: z.ZodOptional<z.ZodBoolean>;
3334
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
3335
+ }, "strip", z.ZodTypeAny, {
3336
+ organization: {
3337
+ url: string;
3338
+ name: string;
3339
+ logo?: {
3340
+ type: "explicit-base64";
3341
+ content: string;
3342
+ mimeType: string;
3343
+ } | {
3344
+ type: "relative";
3345
+ path: string;
3346
+ } | undefined;
3347
+ } & {
3348
+ [k: string]: unknown;
3349
+ };
3350
+ title: string;
3351
+ description: string;
3352
+ url?: string | undefined;
3353
+ longDescription?: {
3354
+ type: "explicit-string";
3355
+ content: string;
3356
+ } | {
3357
+ type: "relative";
3358
+ path: string;
3359
+ } | undefined;
3360
+ changelog?: {
3361
+ type: "explicit-string";
3362
+ content: string;
3363
+ } | {
3364
+ type: "relative";
3365
+ path: string;
3366
+ } | undefined;
3367
+ logo?: {
3368
+ type: "explicit-base64";
3369
+ content: string;
3370
+ mimeType: string;
3371
+ } | {
3372
+ type: "relative";
3373
+ path: string;
3374
+ } | undefined;
3375
+ docs?: string | undefined;
3376
+ support?: string | undefined;
3377
+ tags?: string[] | undefined;
3378
+ marketplaceRanking?: number | undefined;
3379
+ deprecated?: boolean | undefined;
3380
+ termsOfServiceUrl?: string | undefined;
3381
+ }, {
3382
+ organization: {
3383
+ url: string;
3384
+ name: string;
3385
+ logo?: {
3386
+ type: "explicit-base64";
3387
+ content: string;
3388
+ mimeType: string;
3389
+ } | {
3390
+ type: "relative";
3391
+ path: string;
3392
+ } | undefined;
3393
+ } & {
3394
+ [k: string]: unknown;
3395
+ };
3396
+ title: string;
3397
+ description: string;
3398
+ url?: string | undefined;
3399
+ longDescription?: {
3400
+ type: "explicit-string";
3401
+ content: string;
3402
+ } | {
3403
+ type: "relative";
3404
+ path: string;
3405
+ } | undefined;
3406
+ changelog?: {
3407
+ type: "explicit-string";
3408
+ content: string;
3409
+ } | {
3410
+ type: "relative";
3411
+ path: string;
3412
+ } | undefined;
3413
+ logo?: {
3414
+ type: "explicit-base64";
3415
+ content: string;
3416
+ mimeType: string;
3417
+ } | {
3418
+ type: "relative";
3419
+ path: string;
3420
+ } | undefined;
3421
+ docs?: string | undefined;
3422
+ support?: string | undefined;
3423
+ tags?: string[] | undefined;
3424
+ marketplaceRanking?: number | undefined;
3425
+ deprecated?: boolean | undefined;
3426
+ termsOfServiceUrl?: string | undefined;
3427
+ }>;
3428
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
3429
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3430
+ id: z.ZodObject<{
3431
+ organization: z.ZodString;
3432
+ name: z.ZodString;
3433
+ version: z.ZodString;
3434
+ }, "strict", z.ZodTypeAny, {
3435
+ organization: string;
3436
+ name: string;
3437
+ version: string;
3438
+ }, {
3439
+ organization: string;
3440
+ name: string;
3441
+ version: string;
3442
+ }>;
3443
+ components: z.ZodObject<{
3444
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
3445
+ type: z.ZodLiteral<"relative">;
3446
+ path: z.ZodString;
3447
+ }, "strict", z.ZodTypeAny, {
3448
+ type: "relative";
3449
+ path: string;
3450
+ }, {
3451
+ type: "relative";
3452
+ path: string;
3453
+ }>, {
3454
+ type: "workflow-v1";
3455
+ main: {
3456
+ type: "relative";
3457
+ path: string;
3458
+ };
3459
+ }, {
3460
+ type: "relative";
3461
+ path: string;
3462
+ }>, z.ZodObject<{
3463
+ type: z.ZodLiteral<"workflow-v1">;
3464
+ main: z.ZodObject<{
3465
+ type: z.ZodLiteral<"relative">;
3466
+ path: z.ZodString;
3467
+ }, "strict", z.ZodTypeAny, {
3468
+ type: "relative";
3469
+ path: string;
3470
+ }, {
3471
+ type: "relative";
3472
+ path: string;
3473
+ }>;
3474
+ }, "strip", z.ZodTypeAny, {
3475
+ type: "workflow-v1";
3476
+ main: {
3477
+ type: "relative";
3478
+ path: string;
3479
+ };
3480
+ }, {
3481
+ type: "workflow-v1";
3482
+ main: {
3483
+ type: "relative";
3484
+ path: string;
3485
+ };
3486
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3487
+ type: z.ZodLiteral<"workflow-v1">;
3488
+ main: z.ZodObject<{
3489
+ type: z.ZodLiteral<"relative">;
3490
+ path: z.ZodString;
3491
+ }, "strict", z.ZodTypeAny, {
3492
+ type: "relative";
3493
+ path: string;
3494
+ }, {
3495
+ type: "relative";
3496
+ path: string;
3497
+ }>;
3498
+ }, "strip", z.ZodTypeAny, {
3499
+ type: "workflow-v1";
3500
+ main: {
3501
+ type: "relative";
3502
+ path: string;
3503
+ };
3504
+ }, {
3505
+ type: "workflow-v1";
3506
+ main: {
3507
+ type: "relative";
3508
+ path: string;
3509
+ };
3510
+ }>]>]>;
3511
+ model: z.ZodObject<{
3512
+ type: z.ZodLiteral<"relative">;
3513
+ path: z.ZodString;
3514
+ }, "strict", z.ZodTypeAny, {
3515
+ type: "relative";
3516
+ path: string;
3517
+ }, {
3518
+ type: "relative";
3519
+ path: string;
3520
+ }>;
3521
+ ui: z.ZodObject<{
3522
+ type: z.ZodLiteral<"relative">;
3523
+ path: z.ZodString;
3524
+ }, "strict", z.ZodTypeAny, {
3525
+ type: "relative";
3526
+ path: string;
3527
+ }, {
3528
+ type: "relative";
3529
+ path: string;
3530
+ }>;
3531
+ }, "strip", z.ZodTypeAny, {
3532
+ ui: {
3533
+ type: "relative";
3534
+ path: string;
3535
+ };
3536
+ workflow: {
3537
+ type: "workflow-v1";
3538
+ main: {
3539
+ type: "relative";
3540
+ path: string;
3541
+ };
3542
+ };
3543
+ model: {
3544
+ type: "relative";
3545
+ path: string;
3546
+ };
3547
+ }, {
3548
+ ui: {
3549
+ type: "relative";
3550
+ path: string;
3551
+ };
3552
+ workflow: {
3553
+ type: "relative";
3554
+ path: string;
3555
+ } | {
3556
+ type: "workflow-v1";
3557
+ main: {
3558
+ type: "relative";
3559
+ path: string;
3560
+ };
3561
+ };
3562
+ model: {
3563
+ type: "relative";
3564
+ path: string;
3565
+ };
3566
+ }>;
3567
+ meta: z.ZodObject<{
3568
+ title: z.ZodString;
3569
+ description: z.ZodString;
3570
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3571
+ type: z.ZodLiteral<"explicit-string">;
3572
+ content: z.ZodString;
3573
+ }, "strict", z.ZodTypeAny, {
3574
+ type: "explicit-string";
3575
+ content: string;
3576
+ }, {
3577
+ type: "explicit-string";
3578
+ content: string;
3579
+ }>, z.ZodObject<{
3580
+ type: z.ZodLiteral<"relative">;
3581
+ path: z.ZodString;
3582
+ }, "strict", z.ZodTypeAny, {
3583
+ type: "relative";
3584
+ path: string;
3585
+ }, {
3586
+ type: "relative";
3587
+ path: string;
3588
+ }>]>>;
3589
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3590
+ type: z.ZodLiteral<"explicit-string">;
3591
+ content: z.ZodString;
3592
+ }, "strict", z.ZodTypeAny, {
3593
+ type: "explicit-string";
3594
+ content: string;
3595
+ }, {
3596
+ type: "explicit-string";
3597
+ content: string;
3598
+ }>, z.ZodObject<{
3599
+ type: z.ZodLiteral<"relative">;
3600
+ path: z.ZodString;
3601
+ }, "strict", z.ZodTypeAny, {
3602
+ type: "relative";
3603
+ path: string;
3604
+ }, {
3605
+ type: "relative";
3606
+ path: string;
3607
+ }>]>>;
3608
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3609
+ type: z.ZodLiteral<"explicit-base64">;
3610
+ mimeType: z.ZodString;
3611
+ content: z.ZodString;
3612
+ }, "strict", z.ZodTypeAny, {
3613
+ type: "explicit-base64";
3614
+ content: string;
3615
+ mimeType: string;
3616
+ }, {
3617
+ type: "explicit-base64";
3618
+ content: string;
3619
+ mimeType: string;
3620
+ }>, z.ZodObject<{
3621
+ type: z.ZodLiteral<"relative">;
3622
+ path: z.ZodString;
3623
+ }, "strict", z.ZodTypeAny, {
3624
+ type: "relative";
3625
+ path: string;
3626
+ }, {
3627
+ type: "relative";
3628
+ path: string;
3629
+ }>]>>;
3630
+ url: z.ZodOptional<z.ZodString>;
3631
+ docs: z.ZodOptional<z.ZodString>;
3632
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
3633
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3634
+ organization: z.ZodObject<{
3635
+ name: z.ZodString;
3636
+ url: z.ZodString;
3637
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3638
+ type: z.ZodLiteral<"explicit-base64">;
3639
+ mimeType: z.ZodString;
3640
+ content: z.ZodString;
3641
+ }, "strict", z.ZodTypeAny, {
3642
+ type: "explicit-base64";
3643
+ content: string;
3644
+ mimeType: string;
3645
+ }, {
3646
+ type: "explicit-base64";
3647
+ content: string;
3648
+ mimeType: string;
3649
+ }>, z.ZodObject<{
3650
+ type: z.ZodLiteral<"relative">;
3651
+ path: z.ZodString;
3652
+ }, "strict", z.ZodTypeAny, {
3653
+ type: "relative";
3654
+ path: string;
3655
+ }, {
3656
+ type: "relative";
3657
+ path: string;
3658
+ }>]>>;
3659
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3660
+ name: z.ZodString;
3661
+ url: z.ZodString;
3662
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3663
+ type: z.ZodLiteral<"explicit-base64">;
3664
+ mimeType: z.ZodString;
3665
+ content: z.ZodString;
3666
+ }, "strict", z.ZodTypeAny, {
3667
+ type: "explicit-base64";
3668
+ content: string;
3669
+ mimeType: string;
3670
+ }, {
3671
+ type: "explicit-base64";
3672
+ content: string;
3673
+ mimeType: string;
3674
+ }>, z.ZodObject<{
3675
+ type: z.ZodLiteral<"relative">;
3676
+ path: z.ZodString;
3677
+ }, "strict", z.ZodTypeAny, {
3678
+ type: "relative";
3679
+ path: string;
3680
+ }, {
3681
+ type: "relative";
3682
+ path: string;
3683
+ }>]>>;
3684
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3685
+ name: z.ZodString;
3686
+ url: z.ZodString;
3687
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3688
+ type: z.ZodLiteral<"explicit-base64">;
3689
+ mimeType: z.ZodString;
3690
+ content: z.ZodString;
3691
+ }, "strict", z.ZodTypeAny, {
3692
+ type: "explicit-base64";
3693
+ content: string;
3694
+ mimeType: string;
3695
+ }, {
3696
+ type: "explicit-base64";
3697
+ content: string;
3698
+ mimeType: string;
3699
+ }>, z.ZodObject<{
3700
+ type: z.ZodLiteral<"relative">;
3701
+ path: z.ZodString;
3702
+ }, "strict", z.ZodTypeAny, {
3703
+ type: "relative";
3704
+ path: string;
3705
+ }, {
3706
+ type: "relative";
3707
+ path: string;
3708
+ }>]>>;
3709
+ }, z.ZodTypeAny, "passthrough">>;
3710
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
3711
+ deprecated: z.ZodOptional<z.ZodBoolean>;
3712
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
3713
+ }, "strip", z.ZodTypeAny, {
3714
+ organization: {
3715
+ url: string;
3716
+ name: string;
3717
+ logo?: {
3718
+ type: "explicit-base64";
3719
+ content: string;
3720
+ mimeType: string;
3721
+ } | {
3722
+ type: "relative";
3723
+ path: string;
3724
+ } | undefined;
3725
+ } & {
3726
+ [k: string]: unknown;
3727
+ };
3728
+ title: string;
3729
+ description: string;
3730
+ url?: string | undefined;
3731
+ longDescription?: {
3732
+ type: "explicit-string";
3733
+ content: string;
3734
+ } | {
3735
+ type: "relative";
3736
+ path: string;
3737
+ } | undefined;
3738
+ changelog?: {
3739
+ type: "explicit-string";
3740
+ content: string;
3741
+ } | {
3742
+ type: "relative";
3743
+ path: string;
3744
+ } | undefined;
3745
+ logo?: {
3746
+ type: "explicit-base64";
3747
+ content: string;
3748
+ mimeType: string;
3749
+ } | {
3750
+ type: "relative";
3751
+ path: string;
3752
+ } | undefined;
3753
+ docs?: string | undefined;
3754
+ support?: string | undefined;
3755
+ tags?: string[] | undefined;
3756
+ marketplaceRanking?: number | undefined;
3757
+ deprecated?: boolean | undefined;
3758
+ termsOfServiceUrl?: string | undefined;
3759
+ }, {
3760
+ organization: {
3761
+ url: string;
3762
+ name: string;
3763
+ logo?: {
3764
+ type: "explicit-base64";
3765
+ content: string;
3766
+ mimeType: string;
3767
+ } | {
3768
+ type: "relative";
3769
+ path: string;
3770
+ } | undefined;
3771
+ } & {
3772
+ [k: string]: unknown;
3773
+ };
3774
+ title: string;
3775
+ description: string;
3776
+ url?: string | undefined;
3777
+ longDescription?: {
3778
+ type: "explicit-string";
3779
+ content: string;
3780
+ } | {
3781
+ type: "relative";
3782
+ path: string;
3783
+ } | undefined;
3784
+ changelog?: {
3785
+ type: "explicit-string";
3786
+ content: string;
3787
+ } | {
3788
+ type: "relative";
3789
+ path: string;
3790
+ } | undefined;
3791
+ logo?: {
3792
+ type: "explicit-base64";
3793
+ content: string;
3794
+ mimeType: string;
3795
+ } | {
3796
+ type: "relative";
3797
+ path: string;
3798
+ } | undefined;
3799
+ docs?: string | undefined;
3800
+ support?: string | undefined;
3801
+ tags?: string[] | undefined;
3802
+ marketplaceRanking?: number | undefined;
3803
+ deprecated?: boolean | undefined;
3804
+ termsOfServiceUrl?: string | undefined;
3805
+ }>;
3806
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
3807
+ }, z.ZodTypeAny, "passthrough">>;
3808
+ timestamp: z.ZodOptional<z.ZodNumber>;
3809
+ files: z.ZodArray<z.ZodObject<{
3810
+ name: z.ZodString;
3811
+ size: z.ZodNumber;
3812
+ sha256: z.ZodString;
3813
+ }, "strip", z.ZodTypeAny, {
3814
+ name: string;
3815
+ size: number;
3816
+ sha256: string;
3817
+ }, {
3818
+ name: string;
3819
+ size: number;
3820
+ sha256: string;
3821
+ }>, "many">;
3822
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3823
+ schema: z.ZodLiteral<"v2">;
3824
+ description: z.ZodObject<{
3825
+ id: z.ZodObject<{
3826
+ organization: z.ZodString;
3827
+ name: z.ZodString;
3828
+ version: z.ZodString;
3829
+ }, "strict", z.ZodTypeAny, {
3830
+ organization: string;
3831
+ name: string;
3832
+ version: string;
3833
+ }, {
3834
+ organization: string;
3835
+ name: string;
3836
+ version: string;
3837
+ }>;
3838
+ components: z.ZodObject<{
3839
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
3840
+ type: z.ZodLiteral<"relative">;
3841
+ path: z.ZodString;
3842
+ }, "strict", z.ZodTypeAny, {
3843
+ type: "relative";
3844
+ path: string;
3845
+ }, {
3846
+ type: "relative";
3847
+ path: string;
3848
+ }>, {
3849
+ type: "workflow-v1";
3850
+ main: {
3851
+ type: "relative";
3852
+ path: string;
3853
+ };
3854
+ }, {
3855
+ type: "relative";
3856
+ path: string;
3857
+ }>, z.ZodObject<{
3858
+ type: z.ZodLiteral<"workflow-v1">;
3859
+ main: z.ZodObject<{
3860
+ type: z.ZodLiteral<"relative">;
3861
+ path: z.ZodString;
3862
+ }, "strict", z.ZodTypeAny, {
3863
+ type: "relative";
3864
+ path: string;
3865
+ }, {
3866
+ type: "relative";
3867
+ path: string;
3868
+ }>;
3869
+ }, "strip", z.ZodTypeAny, {
3870
+ type: "workflow-v1";
3871
+ main: {
3872
+ type: "relative";
3873
+ path: string;
3874
+ };
3875
+ }, {
3876
+ type: "workflow-v1";
3877
+ main: {
3878
+ type: "relative";
3879
+ path: string;
3880
+ };
3881
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3882
+ type: z.ZodLiteral<"workflow-v1">;
3883
+ main: z.ZodObject<{
3884
+ type: z.ZodLiteral<"relative">;
3885
+ path: z.ZodString;
3886
+ }, "strict", z.ZodTypeAny, {
3887
+ type: "relative";
3888
+ path: string;
3889
+ }, {
3890
+ type: "relative";
3891
+ path: string;
3892
+ }>;
3893
+ }, "strip", z.ZodTypeAny, {
3894
+ type: "workflow-v1";
3895
+ main: {
3896
+ type: "relative";
3897
+ path: string;
3898
+ };
3899
+ }, {
3900
+ type: "workflow-v1";
3901
+ main: {
3902
+ type: "relative";
3903
+ path: string;
3904
+ };
3905
+ }>]>]>;
3906
+ model: z.ZodObject<{
3907
+ type: z.ZodLiteral<"relative">;
3908
+ path: z.ZodString;
3909
+ }, "strict", z.ZodTypeAny, {
3910
+ type: "relative";
3911
+ path: string;
3912
+ }, {
3913
+ type: "relative";
3914
+ path: string;
3915
+ }>;
3916
+ ui: z.ZodObject<{
3917
+ type: z.ZodLiteral<"relative">;
3918
+ path: z.ZodString;
3919
+ }, "strict", z.ZodTypeAny, {
3920
+ type: "relative";
3921
+ path: string;
3922
+ }, {
3923
+ type: "relative";
3924
+ path: string;
3925
+ }>;
3926
+ }, "strip", z.ZodTypeAny, {
3927
+ ui: {
3928
+ type: "relative";
3929
+ path: string;
3930
+ };
3931
+ workflow: {
3932
+ type: "workflow-v1";
3933
+ main: {
3934
+ type: "relative";
3935
+ path: string;
3936
+ };
3937
+ };
3938
+ model: {
3939
+ type: "relative";
3940
+ path: string;
3941
+ };
3942
+ }, {
3943
+ ui: {
3944
+ type: "relative";
3945
+ path: string;
3946
+ };
3947
+ workflow: {
3948
+ type: "relative";
3949
+ path: string;
3950
+ } | {
3951
+ type: "workflow-v1";
3952
+ main: {
3953
+ type: "relative";
3954
+ path: string;
3955
+ };
3956
+ };
3957
+ model: {
3958
+ type: "relative";
3959
+ path: string;
3960
+ };
3961
+ }>;
3962
+ meta: z.ZodObject<{
3963
+ title: z.ZodString;
3964
+ description: z.ZodString;
3965
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3966
+ type: z.ZodLiteral<"explicit-string">;
3967
+ content: z.ZodString;
3968
+ }, "strict", z.ZodTypeAny, {
3969
+ type: "explicit-string";
3970
+ content: string;
3971
+ }, {
3972
+ type: "explicit-string";
3973
+ content: string;
3974
+ }>, z.ZodObject<{
3975
+ type: z.ZodLiteral<"relative">;
3976
+ path: z.ZodString;
3977
+ }, "strict", z.ZodTypeAny, {
3978
+ type: "relative";
3979
+ path: string;
3980
+ }, {
3981
+ type: "relative";
3982
+ path: string;
3983
+ }>]>>;
3984
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3985
+ type: z.ZodLiteral<"explicit-string">;
3986
+ content: z.ZodString;
3987
+ }, "strict", z.ZodTypeAny, {
3988
+ type: "explicit-string";
3989
+ content: string;
3990
+ }, {
3991
+ type: "explicit-string";
3992
+ content: string;
3993
+ }>, z.ZodObject<{
3994
+ type: z.ZodLiteral<"relative">;
3995
+ path: z.ZodString;
3996
+ }, "strict", z.ZodTypeAny, {
3997
+ type: "relative";
3998
+ path: string;
3999
+ }, {
4000
+ type: "relative";
4001
+ path: string;
4002
+ }>]>>;
4003
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4004
+ type: z.ZodLiteral<"explicit-base64">;
4005
+ mimeType: z.ZodString;
4006
+ content: z.ZodString;
4007
+ }, "strict", z.ZodTypeAny, {
4008
+ type: "explicit-base64";
4009
+ content: string;
4010
+ mimeType: string;
4011
+ }, {
4012
+ type: "explicit-base64";
4013
+ content: string;
4014
+ mimeType: string;
4015
+ }>, z.ZodObject<{
4016
+ type: z.ZodLiteral<"relative">;
4017
+ path: z.ZodString;
4018
+ }, "strict", z.ZodTypeAny, {
4019
+ type: "relative";
4020
+ path: string;
4021
+ }, {
4022
+ type: "relative";
4023
+ path: string;
4024
+ }>]>>;
4025
+ url: z.ZodOptional<z.ZodString>;
4026
+ docs: z.ZodOptional<z.ZodString>;
4027
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
4028
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4029
+ organization: z.ZodObject<{
4030
+ name: z.ZodString;
4031
+ url: z.ZodString;
4032
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4033
+ type: z.ZodLiteral<"explicit-base64">;
4034
+ mimeType: z.ZodString;
4035
+ content: z.ZodString;
4036
+ }, "strict", z.ZodTypeAny, {
4037
+ type: "explicit-base64";
4038
+ content: string;
4039
+ mimeType: string;
4040
+ }, {
4041
+ type: "explicit-base64";
4042
+ content: string;
4043
+ mimeType: string;
4044
+ }>, z.ZodObject<{
4045
+ type: z.ZodLiteral<"relative">;
4046
+ path: z.ZodString;
4047
+ }, "strict", z.ZodTypeAny, {
4048
+ type: "relative";
4049
+ path: string;
4050
+ }, {
4051
+ type: "relative";
4052
+ path: string;
4053
+ }>]>>;
4054
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4055
+ name: z.ZodString;
4056
+ url: z.ZodString;
4057
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4058
+ type: z.ZodLiteral<"explicit-base64">;
4059
+ mimeType: z.ZodString;
4060
+ content: z.ZodString;
4061
+ }, "strict", z.ZodTypeAny, {
4062
+ type: "explicit-base64";
4063
+ content: string;
4064
+ mimeType: string;
4065
+ }, {
4066
+ type: "explicit-base64";
4067
+ content: string;
4068
+ mimeType: string;
4069
+ }>, z.ZodObject<{
4070
+ type: z.ZodLiteral<"relative">;
4071
+ path: z.ZodString;
4072
+ }, "strict", z.ZodTypeAny, {
4073
+ type: "relative";
4074
+ path: string;
4075
+ }, {
4076
+ type: "relative";
4077
+ path: string;
4078
+ }>]>>;
4079
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4080
+ name: z.ZodString;
4081
+ url: z.ZodString;
4082
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4083
+ type: z.ZodLiteral<"explicit-base64">;
4084
+ mimeType: z.ZodString;
4085
+ content: z.ZodString;
4086
+ }, "strict", z.ZodTypeAny, {
4087
+ type: "explicit-base64";
4088
+ content: string;
4089
+ mimeType: string;
4090
+ }, {
4091
+ type: "explicit-base64";
4092
+ content: string;
4093
+ mimeType: string;
4094
+ }>, z.ZodObject<{
4095
+ type: z.ZodLiteral<"relative">;
4096
+ path: z.ZodString;
4097
+ }, "strict", z.ZodTypeAny, {
4098
+ type: "relative";
4099
+ path: string;
4100
+ }, {
4101
+ type: "relative";
4102
+ path: string;
4103
+ }>]>>;
4104
+ }, z.ZodTypeAny, "passthrough">>;
4105
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
4106
+ deprecated: z.ZodOptional<z.ZodBoolean>;
4107
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
4108
+ }, "strip", z.ZodTypeAny, {
4109
+ organization: {
4110
+ url: string;
4111
+ name: string;
4112
+ logo?: {
4113
+ type: "explicit-base64";
4114
+ content: string;
4115
+ mimeType: string;
4116
+ } | {
4117
+ type: "relative";
4118
+ path: string;
4119
+ } | undefined;
4120
+ } & {
4121
+ [k: string]: unknown;
4122
+ };
4123
+ title: string;
4124
+ description: string;
4125
+ url?: string | undefined;
4126
+ longDescription?: {
4127
+ type: "explicit-string";
4128
+ content: string;
4129
+ } | {
4130
+ type: "relative";
4131
+ path: string;
4132
+ } | undefined;
4133
+ changelog?: {
4134
+ type: "explicit-string";
4135
+ content: string;
4136
+ } | {
4137
+ type: "relative";
4138
+ path: string;
4139
+ } | undefined;
4140
+ logo?: {
4141
+ type: "explicit-base64";
4142
+ content: string;
4143
+ mimeType: string;
4144
+ } | {
4145
+ type: "relative";
4146
+ path: string;
4147
+ } | undefined;
4148
+ docs?: string | undefined;
4149
+ support?: string | undefined;
4150
+ tags?: string[] | undefined;
4151
+ marketplaceRanking?: number | undefined;
4152
+ deprecated?: boolean | undefined;
4153
+ termsOfServiceUrl?: string | undefined;
4154
+ }, {
4155
+ organization: {
4156
+ url: string;
4157
+ name: string;
4158
+ logo?: {
4159
+ type: "explicit-base64";
4160
+ content: string;
4161
+ mimeType: string;
4162
+ } | {
4163
+ type: "relative";
4164
+ path: string;
4165
+ } | undefined;
4166
+ } & {
4167
+ [k: string]: unknown;
4168
+ };
4169
+ title: string;
4170
+ description: string;
4171
+ url?: string | undefined;
4172
+ longDescription?: {
4173
+ type: "explicit-string";
4174
+ content: string;
4175
+ } | {
4176
+ type: "relative";
4177
+ path: string;
4178
+ } | undefined;
4179
+ changelog?: {
4180
+ type: "explicit-string";
4181
+ content: string;
4182
+ } | {
4183
+ type: "relative";
4184
+ path: string;
4185
+ } | undefined;
777
4186
  logo?: {
778
4187
  type: "explicit-base64";
779
4188
  content: string;
@@ -782,65 +4191,15 @@ export declare const BlockPackDescriptionManifest: z.ZodObject<{
782
4191
  type: "relative";
783
4192
  path: string;
784
4193
  } | undefined;
785
- };
786
- title: string;
787
- description: string;
788
- url?: string | undefined;
789
- longDescription?: {
790
- type: "explicit-string";
791
- content: string;
792
- } | {
793
- type: "relative";
794
- path: string;
795
- } | undefined;
796
- changelog?: {
797
- type: "explicit-string";
798
- content: string;
799
- } | {
800
- type: "relative";
801
- path: string;
802
- } | undefined;
803
- logo?: {
804
- type: "explicit-base64";
805
- content: string;
806
- mimeType: string;
807
- } | {
808
- type: "relative";
809
- path: string;
810
- } | undefined;
811
- docs?: string | undefined;
812
- support?: string | undefined;
813
- tags?: string[] | undefined;
814
- marketplaceRanking?: number | undefined;
815
- deprecated?: boolean | undefined;
816
- termsOfServiceUrl?: string | undefined;
817
- };
818
- id: {
819
- organization: string;
820
- name: string;
821
- version: string;
822
- };
823
- featureFlags?: Record<string, number | boolean> | undefined;
824
- }>;
825
- export type BlockPackDescriptionManifest = z.infer<typeof BlockPackDescriptionManifest>;
826
- export declare const Sha256Schema: z.ZodString;
827
- export declare const ManifestFileInfo: z.ZodObject<{
828
- name: z.ZodString;
829
- size: z.ZodNumber;
830
- sha256: z.ZodString;
831
- }, "strip", z.ZodTypeAny, {
832
- name: string;
833
- size: number;
834
- sha256: string;
835
- }, {
836
- name: string;
837
- size: number;
838
- sha256: string;
839
- }>;
840
- export type ManifestFileInfo = z.infer<typeof ManifestFileInfo>;
841
- export declare const BlockPackManifest: z.ZodObject<{
842
- schema: z.ZodLiteral<"v2">;
843
- description: z.ZodObject<{
4194
+ docs?: string | undefined;
4195
+ support?: string | undefined;
4196
+ tags?: string[] | undefined;
4197
+ marketplaceRanking?: number | undefined;
4198
+ deprecated?: boolean | undefined;
4199
+ termsOfServiceUrl?: string | undefined;
4200
+ }>;
4201
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
4202
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
844
4203
  id: z.ZodObject<{
845
4204
  organization: z.ZodString;
846
4205
  name: z.ZodString;
@@ -1070,29 +4429,57 @@ export declare const BlockPackManifest: z.ZodObject<{
1070
4429
  type: "relative";
1071
4430
  path: string;
1072
4431
  }>]>>;
1073
- }, "strip", z.ZodTypeAny, {
1074
- url: string;
1075
- name: string;
1076
- logo?: {
4432
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4433
+ name: z.ZodString;
4434
+ url: z.ZodString;
4435
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4436
+ type: z.ZodLiteral<"explicit-base64">;
4437
+ mimeType: z.ZodString;
4438
+ content: z.ZodString;
4439
+ }, "strict", z.ZodTypeAny, {
1077
4440
  type: "explicit-base64";
1078
4441
  content: string;
1079
4442
  mimeType: string;
1080
- } | {
4443
+ }, {
4444
+ type: "explicit-base64";
4445
+ content: string;
4446
+ mimeType: string;
4447
+ }>, z.ZodObject<{
4448
+ type: z.ZodLiteral<"relative">;
4449
+ path: z.ZodString;
4450
+ }, "strict", z.ZodTypeAny, {
1081
4451
  type: "relative";
1082
4452
  path: string;
1083
- } | undefined;
1084
- }, {
1085
- url: string;
1086
- name: string;
1087
- logo?: {
4453
+ }, {
4454
+ type: "relative";
4455
+ path: string;
4456
+ }>]>>;
4457
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4458
+ name: z.ZodString;
4459
+ url: z.ZodString;
4460
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4461
+ type: z.ZodLiteral<"explicit-base64">;
4462
+ mimeType: z.ZodString;
4463
+ content: z.ZodString;
4464
+ }, "strict", z.ZodTypeAny, {
1088
4465
  type: "explicit-base64";
1089
4466
  content: string;
1090
4467
  mimeType: string;
1091
- } | {
4468
+ }, {
4469
+ type: "explicit-base64";
4470
+ content: string;
4471
+ mimeType: string;
4472
+ }>, z.ZodObject<{
4473
+ type: z.ZodLiteral<"relative">;
4474
+ path: z.ZodString;
4475
+ }, "strict", z.ZodTypeAny, {
1092
4476
  type: "relative";
1093
4477
  path: string;
1094
- } | undefined;
1095
- }>;
4478
+ }, {
4479
+ type: "relative";
4480
+ path: string;
4481
+ }>]>>;
4482
+ }, z.ZodTypeAny, "passthrough">>;
1096
4483
  marketplaceRanking: z.ZodOptional<z.ZodNumber>;
1097
4484
  deprecated: z.ZodOptional<z.ZodBoolean>;
1098
4485
  termsOfServiceUrl: z.ZodOptional<z.ZodString>;
@@ -1108,6 +4495,8 @@ export declare const BlockPackManifest: z.ZodObject<{
1108
4495
  type: "relative";
1109
4496
  path: string;
1110
4497
  } | undefined;
4498
+ } & {
4499
+ [k: string]: unknown;
1111
4500
  };
1112
4501
  title: string;
1113
4502
  description: string;
@@ -1152,6 +4541,8 @@ export declare const BlockPackManifest: z.ZodObject<{
1152
4541
  type: "relative";
1153
4542
  path: string;
1154
4543
  } | undefined;
4544
+ } & {
4545
+ [k: string]: unknown;
1155
4546
  };
1156
4547
  title: string;
1157
4548
  description: string;
@@ -1186,77 +4577,125 @@ export declare const BlockPackManifest: z.ZodObject<{
1186
4577
  termsOfServiceUrl?: string | undefined;
1187
4578
  }>;
1188
4579
  featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
1189
- }, "strip", z.ZodTypeAny, {
1190
- components: {
1191
- ui: {
4580
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4581
+ id: z.ZodObject<{
4582
+ organization: z.ZodString;
4583
+ name: z.ZodString;
4584
+ version: z.ZodString;
4585
+ }, "strict", z.ZodTypeAny, {
4586
+ organization: string;
4587
+ name: string;
4588
+ version: string;
4589
+ }, {
4590
+ organization: string;
4591
+ name: string;
4592
+ version: string;
4593
+ }>;
4594
+ components: z.ZodObject<{
4595
+ workflow: z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodObject<{
4596
+ type: z.ZodLiteral<"relative">;
4597
+ path: z.ZodString;
4598
+ }, "strict", z.ZodTypeAny, {
1192
4599
  type: "relative";
1193
4600
  path: string;
1194
- };
1195
- workflow: {
4601
+ }, {
4602
+ type: "relative";
4603
+ path: string;
4604
+ }>, {
1196
4605
  type: "workflow-v1";
1197
4606
  main: {
1198
4607
  type: "relative";
1199
4608
  path: string;
1200
4609
  };
1201
- };
1202
- model: {
4610
+ }, {
1203
4611
  type: "relative";
1204
4612
  path: string;
1205
- };
1206
- };
1207
- meta: {
1208
- organization: {
1209
- url: string;
1210
- name: string;
1211
- logo?: {
1212
- type: "explicit-base64";
1213
- content: string;
1214
- mimeType: string;
1215
- } | {
4613
+ }>, z.ZodObject<{
4614
+ type: z.ZodLiteral<"workflow-v1">;
4615
+ main: z.ZodObject<{
4616
+ type: z.ZodLiteral<"relative">;
4617
+ path: z.ZodString;
4618
+ }, "strict", z.ZodTypeAny, {
1216
4619
  type: "relative";
1217
4620
  path: string;
1218
- } | undefined;
1219
- };
1220
- title: string;
1221
- description: string;
1222
- url?: string | undefined;
1223
- longDescription?: {
1224
- type: "explicit-string";
1225
- content: string;
1226
- } | {
4621
+ }, {
4622
+ type: "relative";
4623
+ path: string;
4624
+ }>;
4625
+ }, "strip", z.ZodTypeAny, {
4626
+ type: "workflow-v1";
4627
+ main: {
4628
+ type: "relative";
4629
+ path: string;
4630
+ };
4631
+ }, {
4632
+ type: "workflow-v1";
4633
+ main: {
4634
+ type: "relative";
4635
+ path: string;
4636
+ };
4637
+ }>>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4638
+ type: z.ZodLiteral<"workflow-v1">;
4639
+ main: z.ZodObject<{
4640
+ type: z.ZodLiteral<"relative">;
4641
+ path: z.ZodString;
4642
+ }, "strict", z.ZodTypeAny, {
4643
+ type: "relative";
4644
+ path: string;
4645
+ }, {
4646
+ type: "relative";
4647
+ path: string;
4648
+ }>;
4649
+ }, "strip", z.ZodTypeAny, {
4650
+ type: "workflow-v1";
4651
+ main: {
4652
+ type: "relative";
4653
+ path: string;
4654
+ };
4655
+ }, {
4656
+ type: "workflow-v1";
4657
+ main: {
4658
+ type: "relative";
4659
+ path: string;
4660
+ };
4661
+ }>]>]>;
4662
+ model: z.ZodObject<{
4663
+ type: z.ZodLiteral<"relative">;
4664
+ path: z.ZodString;
4665
+ }, "strict", z.ZodTypeAny, {
1227
4666
  type: "relative";
1228
4667
  path: string;
1229
- } | undefined;
1230
- changelog?: {
1231
- type: "explicit-string";
1232
- content: string;
1233
- } | {
4668
+ }, {
1234
4669
  type: "relative";
1235
4670
  path: string;
1236
- } | undefined;
1237
- logo?: {
1238
- type: "explicit-base64";
1239
- content: string;
1240
- mimeType: string;
1241
- } | {
4671
+ }>;
4672
+ ui: z.ZodObject<{
4673
+ type: z.ZodLiteral<"relative">;
4674
+ path: z.ZodString;
4675
+ }, "strict", z.ZodTypeAny, {
1242
4676
  type: "relative";
1243
4677
  path: string;
1244
- } | undefined;
1245
- docs?: string | undefined;
1246
- support?: string | undefined;
1247
- tags?: string[] | undefined;
1248
- marketplaceRanking?: number | undefined;
1249
- deprecated?: boolean | undefined;
1250
- termsOfServiceUrl?: string | undefined;
1251
- };
1252
- id: {
1253
- organization: string;
1254
- name: string;
1255
- version: string;
1256
- };
1257
- featureFlags?: import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags | undefined;
1258
- }, {
1259
- components: {
4678
+ }, {
4679
+ type: "relative";
4680
+ path: string;
4681
+ }>;
4682
+ }, "strip", z.ZodTypeAny, {
4683
+ ui: {
4684
+ type: "relative";
4685
+ path: string;
4686
+ };
4687
+ workflow: {
4688
+ type: "workflow-v1";
4689
+ main: {
4690
+ type: "relative";
4691
+ path: string;
4692
+ };
4693
+ };
4694
+ model: {
4695
+ type: "relative";
4696
+ path: string;
4697
+ };
4698
+ }, {
1260
4699
  ui: {
1261
4700
  type: "relative";
1262
4701
  path: string;
@@ -1275,93 +4714,154 @@ export declare const BlockPackManifest: z.ZodObject<{
1275
4714
  type: "relative";
1276
4715
  path: string;
1277
4716
  };
1278
- };
1279
- meta: {
1280
- organization: {
1281
- url: string;
1282
- name: string;
1283
- logo?: {
1284
- type: "explicit-base64";
1285
- content: string;
1286
- mimeType: string;
1287
- } | {
1288
- type: "relative";
1289
- path: string;
1290
- } | undefined;
1291
- };
1292
- title: string;
1293
- description: string;
1294
- url?: string | undefined;
1295
- longDescription?: {
4717
+ }>;
4718
+ meta: z.ZodObject<{
4719
+ title: z.ZodString;
4720
+ description: z.ZodString;
4721
+ longDescription: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4722
+ type: z.ZodLiteral<"explicit-string">;
4723
+ content: z.ZodString;
4724
+ }, "strict", z.ZodTypeAny, {
1296
4725
  type: "explicit-string";
1297
4726
  content: string;
1298
- } | {
4727
+ }, {
4728
+ type: "explicit-string";
4729
+ content: string;
4730
+ }>, z.ZodObject<{
4731
+ type: z.ZodLiteral<"relative">;
4732
+ path: z.ZodString;
4733
+ }, "strict", z.ZodTypeAny, {
1299
4734
  type: "relative";
1300
4735
  path: string;
1301
- } | undefined;
1302
- changelog?: {
4736
+ }, {
4737
+ type: "relative";
4738
+ path: string;
4739
+ }>]>>;
4740
+ changelog: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4741
+ type: z.ZodLiteral<"explicit-string">;
4742
+ content: z.ZodString;
4743
+ }, "strict", z.ZodTypeAny, {
1303
4744
  type: "explicit-string";
1304
4745
  content: string;
1305
- } | {
4746
+ }, {
4747
+ type: "explicit-string";
4748
+ content: string;
4749
+ }>, z.ZodObject<{
4750
+ type: z.ZodLiteral<"relative">;
4751
+ path: z.ZodString;
4752
+ }, "strict", z.ZodTypeAny, {
1306
4753
  type: "relative";
1307
4754
  path: string;
1308
- } | undefined;
1309
- logo?: {
4755
+ }, {
4756
+ type: "relative";
4757
+ path: string;
4758
+ }>]>>;
4759
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4760
+ type: z.ZodLiteral<"explicit-base64">;
4761
+ mimeType: z.ZodString;
4762
+ content: z.ZodString;
4763
+ }, "strict", z.ZodTypeAny, {
1310
4764
  type: "explicit-base64";
1311
4765
  content: string;
1312
4766
  mimeType: string;
1313
- } | {
4767
+ }, {
4768
+ type: "explicit-base64";
4769
+ content: string;
4770
+ mimeType: string;
4771
+ }>, z.ZodObject<{
4772
+ type: z.ZodLiteral<"relative">;
4773
+ path: z.ZodString;
4774
+ }, "strict", z.ZodTypeAny, {
1314
4775
  type: "relative";
1315
4776
  path: string;
1316
- } | undefined;
1317
- docs?: string | undefined;
1318
- support?: string | undefined;
1319
- tags?: string[] | undefined;
1320
- marketplaceRanking?: number | undefined;
1321
- deprecated?: boolean | undefined;
1322
- termsOfServiceUrl?: string | undefined;
1323
- };
1324
- id: {
1325
- organization: string;
1326
- name: string;
1327
- version: string;
1328
- };
1329
- featureFlags?: Record<string, number | boolean> | undefined;
1330
- }>;
1331
- timestamp: z.ZodOptional<z.ZodNumber>;
1332
- files: z.ZodArray<z.ZodObject<{
1333
- name: z.ZodString;
1334
- size: z.ZodNumber;
1335
- sha256: z.ZodString;
1336
- }, "strip", z.ZodTypeAny, {
1337
- name: string;
1338
- size: number;
1339
- sha256: string;
1340
- }, {
1341
- name: string;
1342
- size: number;
1343
- sha256: string;
1344
- }>, "many">;
1345
- }, "strip", z.ZodTypeAny, {
1346
- description: {
1347
- components: {
1348
- ui: {
4777
+ }, {
1349
4778
  type: "relative";
1350
4779
  path: string;
1351
- };
1352
- workflow: {
1353
- type: "workflow-v1";
1354
- main: {
4780
+ }>]>>;
4781
+ url: z.ZodOptional<z.ZodString>;
4782
+ docs: z.ZodOptional<z.ZodString>;
4783
+ support: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString]>>;
4784
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4785
+ organization: z.ZodObject<{
4786
+ name: z.ZodString;
4787
+ url: z.ZodString;
4788
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4789
+ type: z.ZodLiteral<"explicit-base64">;
4790
+ mimeType: z.ZodString;
4791
+ content: z.ZodString;
4792
+ }, "strict", z.ZodTypeAny, {
4793
+ type: "explicit-base64";
4794
+ content: string;
4795
+ mimeType: string;
4796
+ }, {
4797
+ type: "explicit-base64";
4798
+ content: string;
4799
+ mimeType: string;
4800
+ }>, z.ZodObject<{
4801
+ type: z.ZodLiteral<"relative">;
4802
+ path: z.ZodString;
4803
+ }, "strict", z.ZodTypeAny, {
1355
4804
  type: "relative";
1356
4805
  path: string;
1357
- };
1358
- };
1359
- model: {
1360
- type: "relative";
1361
- path: string;
1362
- };
1363
- };
1364
- meta: {
4806
+ }, {
4807
+ type: "relative";
4808
+ path: string;
4809
+ }>]>>;
4810
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4811
+ name: z.ZodString;
4812
+ url: z.ZodString;
4813
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4814
+ type: z.ZodLiteral<"explicit-base64">;
4815
+ mimeType: z.ZodString;
4816
+ content: z.ZodString;
4817
+ }, "strict", z.ZodTypeAny, {
4818
+ type: "explicit-base64";
4819
+ content: string;
4820
+ mimeType: string;
4821
+ }, {
4822
+ type: "explicit-base64";
4823
+ content: string;
4824
+ mimeType: string;
4825
+ }>, z.ZodObject<{
4826
+ type: z.ZodLiteral<"relative">;
4827
+ path: z.ZodString;
4828
+ }, "strict", z.ZodTypeAny, {
4829
+ type: "relative";
4830
+ path: string;
4831
+ }, {
4832
+ type: "relative";
4833
+ path: string;
4834
+ }>]>>;
4835
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4836
+ name: z.ZodString;
4837
+ url: z.ZodString;
4838
+ logo: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4839
+ type: z.ZodLiteral<"explicit-base64">;
4840
+ mimeType: z.ZodString;
4841
+ content: z.ZodString;
4842
+ }, "strict", z.ZodTypeAny, {
4843
+ type: "explicit-base64";
4844
+ content: string;
4845
+ mimeType: string;
4846
+ }, {
4847
+ type: "explicit-base64";
4848
+ content: string;
4849
+ mimeType: string;
4850
+ }>, z.ZodObject<{
4851
+ type: z.ZodLiteral<"relative">;
4852
+ path: z.ZodString;
4853
+ }, "strict", z.ZodTypeAny, {
4854
+ type: "relative";
4855
+ path: string;
4856
+ }, {
4857
+ type: "relative";
4858
+ path: string;
4859
+ }>]>>;
4860
+ }, z.ZodTypeAny, "passthrough">>;
4861
+ marketplaceRanking: z.ZodOptional<z.ZodNumber>;
4862
+ deprecated: z.ZodOptional<z.ZodBoolean>;
4863
+ termsOfServiceUrl: z.ZodOptional<z.ZodString>;
4864
+ }, "strip", z.ZodTypeAny, {
1365
4865
  organization: {
1366
4866
  url: string;
1367
4867
  name: string;
@@ -1373,6 +4873,8 @@ export declare const BlockPackManifest: z.ZodObject<{
1373
4873
  type: "relative";
1374
4874
  path: string;
1375
4875
  } | undefined;
4876
+ } & {
4877
+ [k: string]: unknown;
1376
4878
  };
1377
4879
  title: string;
1378
4880
  description: string;
@@ -1405,44 +4907,7 @@ export declare const BlockPackManifest: z.ZodObject<{
1405
4907
  marketplaceRanking?: number | undefined;
1406
4908
  deprecated?: boolean | undefined;
1407
4909
  termsOfServiceUrl?: string | undefined;
1408
- };
1409
- id: {
1410
- organization: string;
1411
- name: string;
1412
- version: string;
1413
- };
1414
- featureFlags?: import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags | undefined;
1415
- };
1416
- schema: "v2";
1417
- files: {
1418
- name: string;
1419
- size: number;
1420
- sha256: string;
1421
- }[];
1422
- timestamp?: number | undefined;
1423
- }, {
1424
- description: {
1425
- components: {
1426
- ui: {
1427
- type: "relative";
1428
- path: string;
1429
- };
1430
- workflow: {
1431
- type: "relative";
1432
- path: string;
1433
- } | {
1434
- type: "workflow-v1";
1435
- main: {
1436
- type: "relative";
1437
- path: string;
1438
- };
1439
- };
1440
- model: {
1441
- type: "relative";
1442
- path: string;
1443
- };
1444
- };
1445
- meta: {
4910
+ }, {
1446
4911
  organization: {
1447
4912
  url: string;
1448
4913
  name: string;
@@ -1454,6 +4919,8 @@ export declare const BlockPackManifest: z.ZodObject<{
1454
4919
  type: "relative";
1455
4920
  path: string;
1456
4921
  } | undefined;
4922
+ } & {
4923
+ [k: string]: unknown;
1457
4924
  };
1458
4925
  title: string;
1459
4926
  description: string;
@@ -1486,22 +4953,24 @@ export declare const BlockPackManifest: z.ZodObject<{
1486
4953
  marketplaceRanking?: number | undefined;
1487
4954
  deprecated?: boolean | undefined;
1488
4955
  termsOfServiceUrl?: string | undefined;
1489
- };
1490
- id: {
1491
- organization: string;
1492
- name: string;
1493
- version: string;
1494
- };
1495
- featureFlags?: Record<string, number | boolean> | undefined;
1496
- };
1497
- schema: "v2";
1498
- files: {
4956
+ }>;
4957
+ featureFlags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>, import("@milaboratories/pl-model-common").BlockCodeKnownFeatureFlags, Record<string, number | boolean>>>;
4958
+ }, z.ZodTypeAny, "passthrough">>;
4959
+ timestamp: z.ZodOptional<z.ZodNumber>;
4960
+ files: z.ZodArray<z.ZodObject<{
4961
+ name: z.ZodString;
4962
+ size: z.ZodNumber;
4963
+ sha256: z.ZodString;
4964
+ }, "strip", z.ZodTypeAny, {
1499
4965
  name: string;
1500
4966
  size: number;
1501
4967
  sha256: string;
1502
- }[];
1503
- timestamp?: number | undefined;
1504
- }>;
4968
+ }, {
4969
+ name: string;
4970
+ size: number;
4971
+ sha256: string;
4972
+ }>, "many">;
4973
+ }, z.ZodTypeAny, "passthrough">>;
1505
4974
  export type BlockPackManifest = z.infer<typeof BlockPackManifest>;
1506
4975
  export declare const BlockPackManifestFile = "manifest.json";
1507
4976
  export declare function overrideManifestVersion<T extends {