@milaboratories/pl-model-middle-layer 1.8.26 → 1.8.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/block_meta/block_description.d.ts +14 -0
- package/dist/block_meta/block_description.d.ts.map +1 -1
- package/dist/block_meta/block_manifest.d.ts +39 -0
- package/dist/block_meta/block_manifest.d.ts.map +1 -1
- package/dist/block_meta/block_meta.cjs +15 -1
- package/dist/block_meta/block_meta.cjs.map +1 -1
- package/dist/block_meta/block_meta.d.ts +48 -0
- package/dist/block_meta/block_meta.d.ts.map +1 -1
- package/dist/block_meta/block_meta.js +15 -2
- package/dist/block_meta/block_meta.js.map +1 -1
- package/dist/block_registry/overview.d.ts +132 -0
- package/dist/block_registry/overview.d.ts.map +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/pframe/internal_api/api_read.d.ts +1 -28
- package/dist/pframe/internal_api/api_read.d.ts.map +1 -1
- package/dist/pframe/internal_api/create_table.d.ts +0 -18
- package/dist/pframe/internal_api/create_table.d.ts.map +1 -1
- package/dist/pframe/internal_api/pframe.d.ts +1 -19
- package/dist/pframe/internal_api/pframe.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/block_meta/block_meta.ts +16 -1
- package/src/pframe/internal_api/api_read.ts +1 -41
- package/src/pframe/internal_api/create_table.ts +0 -33
- package/src/pframe/internal_api/pframe.ts +1 -29
|
@@ -91,6 +91,7 @@ export declare const BlockPackOverviewLegacy: z.ZodObject<{
|
|
|
91
91
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
92
92
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
93
93
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
94
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
94
95
|
}, "strip", z.ZodTypeAny, {
|
|
95
96
|
organization: {
|
|
96
97
|
url: string;
|
|
@@ -119,6 +120,7 @@ export declare const BlockPackOverviewLegacy: z.ZodObject<{
|
|
|
119
120
|
marketplaceRanking?: number | undefined;
|
|
120
121
|
deprecated?: boolean | undefined;
|
|
121
122
|
termsOfServiceUrl?: string | undefined;
|
|
123
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
122
124
|
}, {
|
|
123
125
|
organization: {
|
|
124
126
|
url: string;
|
|
@@ -147,6 +149,7 @@ export declare const BlockPackOverviewLegacy: z.ZodObject<{
|
|
|
147
149
|
marketplaceRanking?: number | undefined;
|
|
148
150
|
deprecated?: boolean | undefined;
|
|
149
151
|
termsOfServiceUrl?: string | undefined;
|
|
152
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
150
153
|
}>;
|
|
151
154
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
152
155
|
type: z.ZodLiteral<"dev-v1">;
|
|
@@ -330,6 +333,7 @@ export declare const BlockPackOverviewLegacy: z.ZodObject<{
|
|
|
330
333
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
331
334
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
332
335
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
336
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
333
337
|
}, "strip", z.ZodTypeAny, {
|
|
334
338
|
organization: {
|
|
335
339
|
url: string;
|
|
@@ -358,6 +362,7 @@ export declare const BlockPackOverviewLegacy: z.ZodObject<{
|
|
|
358
362
|
marketplaceRanking?: number | undefined;
|
|
359
363
|
deprecated?: boolean | undefined;
|
|
360
364
|
termsOfServiceUrl?: string | undefined;
|
|
365
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
361
366
|
}, {
|
|
362
367
|
organization: {
|
|
363
368
|
url: string;
|
|
@@ -386,6 +391,7 @@ export declare const BlockPackOverviewLegacy: z.ZodObject<{
|
|
|
386
391
|
marketplaceRanking?: number | undefined;
|
|
387
392
|
deprecated?: boolean | undefined;
|
|
388
393
|
termsOfServiceUrl?: string | undefined;
|
|
394
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
389
395
|
}>;
|
|
390
396
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
391
397
|
type: z.ZodLiteral<"dev-v1">;
|
|
@@ -569,6 +575,7 @@ export declare const BlockPackOverviewLegacy: z.ZodObject<{
|
|
|
569
575
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
570
576
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
571
577
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
578
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
572
579
|
}, "strip", z.ZodTypeAny, {
|
|
573
580
|
organization: {
|
|
574
581
|
url: string;
|
|
@@ -597,6 +604,7 @@ export declare const BlockPackOverviewLegacy: z.ZodObject<{
|
|
|
597
604
|
marketplaceRanking?: number | undefined;
|
|
598
605
|
deprecated?: boolean | undefined;
|
|
599
606
|
termsOfServiceUrl?: string | undefined;
|
|
607
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
600
608
|
}, {
|
|
601
609
|
organization: {
|
|
602
610
|
url: string;
|
|
@@ -625,6 +633,7 @@ export declare const BlockPackOverviewLegacy: z.ZodObject<{
|
|
|
625
633
|
marketplaceRanking?: number | undefined;
|
|
626
634
|
deprecated?: boolean | undefined;
|
|
627
635
|
termsOfServiceUrl?: string | undefined;
|
|
636
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
628
637
|
}>;
|
|
629
638
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
630
639
|
type: z.ZodLiteral<"dev-v1">;
|
|
@@ -824,6 +833,7 @@ export declare const SingleBlockPackOverview: z.ZodObject<{
|
|
|
824
833
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
825
834
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
826
835
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
836
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
827
837
|
}, "strip", z.ZodTypeAny, {
|
|
828
838
|
organization: {
|
|
829
839
|
url: string;
|
|
@@ -852,6 +862,7 @@ export declare const SingleBlockPackOverview: z.ZodObject<{
|
|
|
852
862
|
marketplaceRanking?: number | undefined;
|
|
853
863
|
deprecated?: boolean | undefined;
|
|
854
864
|
termsOfServiceUrl?: string | undefined;
|
|
865
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
855
866
|
}, {
|
|
856
867
|
organization: {
|
|
857
868
|
url: string;
|
|
@@ -880,6 +891,7 @@ export declare const SingleBlockPackOverview: z.ZodObject<{
|
|
|
880
891
|
marketplaceRanking?: number | undefined;
|
|
881
892
|
deprecated?: boolean | undefined;
|
|
882
893
|
termsOfServiceUrl?: string | undefined;
|
|
894
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
883
895
|
}>;
|
|
884
896
|
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>>>;
|
|
885
897
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -1062,6 +1074,7 @@ export declare const SingleBlockPackOverview: z.ZodObject<{
|
|
|
1062
1074
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
1063
1075
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
1064
1076
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
1077
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
1065
1078
|
}, "strip", z.ZodTypeAny, {
|
|
1066
1079
|
organization: {
|
|
1067
1080
|
url: string;
|
|
@@ -1090,6 +1103,7 @@ export declare const SingleBlockPackOverview: z.ZodObject<{
|
|
|
1090
1103
|
marketplaceRanking?: number | undefined;
|
|
1091
1104
|
deprecated?: boolean | undefined;
|
|
1092
1105
|
termsOfServiceUrl?: string | undefined;
|
|
1106
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1093
1107
|
}, {
|
|
1094
1108
|
organization: {
|
|
1095
1109
|
url: string;
|
|
@@ -1118,6 +1132,7 @@ export declare const SingleBlockPackOverview: z.ZodObject<{
|
|
|
1118
1132
|
marketplaceRanking?: number | undefined;
|
|
1119
1133
|
deprecated?: boolean | undefined;
|
|
1120
1134
|
termsOfServiceUrl?: string | undefined;
|
|
1135
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1121
1136
|
}>;
|
|
1122
1137
|
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>>>;
|
|
1123
1138
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -1300,6 +1315,7 @@ export declare const SingleBlockPackOverview: z.ZodObject<{
|
|
|
1300
1315
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
1301
1316
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
1302
1317
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
1318
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
1303
1319
|
}, "strip", z.ZodTypeAny, {
|
|
1304
1320
|
organization: {
|
|
1305
1321
|
url: string;
|
|
@@ -1328,6 +1344,7 @@ export declare const SingleBlockPackOverview: z.ZodObject<{
|
|
|
1328
1344
|
marketplaceRanking?: number | undefined;
|
|
1329
1345
|
deprecated?: boolean | undefined;
|
|
1330
1346
|
termsOfServiceUrl?: string | undefined;
|
|
1347
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1331
1348
|
}, {
|
|
1332
1349
|
organization: {
|
|
1333
1350
|
url: string;
|
|
@@ -1356,6 +1373,7 @@ export declare const SingleBlockPackOverview: z.ZodObject<{
|
|
|
1356
1373
|
marketplaceRanking?: number | undefined;
|
|
1357
1374
|
deprecated?: boolean | undefined;
|
|
1358
1375
|
termsOfServiceUrl?: string | undefined;
|
|
1376
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1359
1377
|
}>;
|
|
1360
1378
|
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>>>;
|
|
1361
1379
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -1555,6 +1573,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
1555
1573
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
1556
1574
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
1557
1575
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
1576
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
1558
1577
|
}, "strip", z.ZodTypeAny, {
|
|
1559
1578
|
organization: {
|
|
1560
1579
|
url: string;
|
|
@@ -1583,6 +1602,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
1583
1602
|
marketplaceRanking?: number | undefined;
|
|
1584
1603
|
deprecated?: boolean | undefined;
|
|
1585
1604
|
termsOfServiceUrl?: string | undefined;
|
|
1605
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1586
1606
|
}, {
|
|
1587
1607
|
organization: {
|
|
1588
1608
|
url: string;
|
|
@@ -1611,6 +1631,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
1611
1631
|
marketplaceRanking?: number | undefined;
|
|
1612
1632
|
deprecated?: boolean | undefined;
|
|
1613
1633
|
termsOfServiceUrl?: string | undefined;
|
|
1634
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1614
1635
|
}>;
|
|
1615
1636
|
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>>>;
|
|
1616
1637
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -1793,6 +1814,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
1793
1814
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
1794
1815
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
1795
1816
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
1817
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
1796
1818
|
}, "strip", z.ZodTypeAny, {
|
|
1797
1819
|
organization: {
|
|
1798
1820
|
url: string;
|
|
@@ -1821,6 +1843,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
1821
1843
|
marketplaceRanking?: number | undefined;
|
|
1822
1844
|
deprecated?: boolean | undefined;
|
|
1823
1845
|
termsOfServiceUrl?: string | undefined;
|
|
1846
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1824
1847
|
}, {
|
|
1825
1848
|
organization: {
|
|
1826
1849
|
url: string;
|
|
@@ -1849,6 +1872,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
1849
1872
|
marketplaceRanking?: number | undefined;
|
|
1850
1873
|
deprecated?: boolean | undefined;
|
|
1851
1874
|
termsOfServiceUrl?: string | undefined;
|
|
1875
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
1852
1876
|
}>;
|
|
1853
1877
|
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>>>;
|
|
1854
1878
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -2031,6 +2055,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
2031
2055
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
2032
2056
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
2033
2057
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2058
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
2034
2059
|
}, "strip", z.ZodTypeAny, {
|
|
2035
2060
|
organization: {
|
|
2036
2061
|
url: string;
|
|
@@ -2059,6 +2084,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
2059
2084
|
marketplaceRanking?: number | undefined;
|
|
2060
2085
|
deprecated?: boolean | undefined;
|
|
2061
2086
|
termsOfServiceUrl?: string | undefined;
|
|
2087
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2062
2088
|
}, {
|
|
2063
2089
|
organization: {
|
|
2064
2090
|
url: string;
|
|
@@ -2087,6 +2113,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
2087
2113
|
marketplaceRanking?: number | undefined;
|
|
2088
2114
|
deprecated?: boolean | undefined;
|
|
2089
2115
|
termsOfServiceUrl?: string | undefined;
|
|
2116
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2090
2117
|
}>;
|
|
2091
2118
|
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>>>;
|
|
2092
2119
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -2287,6 +2314,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
2287
2314
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
2288
2315
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
2289
2316
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2317
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
2290
2318
|
}, "strip", z.ZodTypeAny, {
|
|
2291
2319
|
organization: {
|
|
2292
2320
|
url: string;
|
|
@@ -2315,6 +2343,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
2315
2343
|
marketplaceRanking?: number | undefined;
|
|
2316
2344
|
deprecated?: boolean | undefined;
|
|
2317
2345
|
termsOfServiceUrl?: string | undefined;
|
|
2346
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2318
2347
|
}, {
|
|
2319
2348
|
organization: {
|
|
2320
2349
|
url: string;
|
|
@@ -2343,6 +2372,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
2343
2372
|
marketplaceRanking?: number | undefined;
|
|
2344
2373
|
deprecated?: boolean | undefined;
|
|
2345
2374
|
termsOfServiceUrl?: string | undefined;
|
|
2375
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2346
2376
|
}>;
|
|
2347
2377
|
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>>>;
|
|
2348
2378
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -2536,6 +2566,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
2536
2566
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
2537
2567
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
2538
2568
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2569
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
2539
2570
|
}, "strip", z.ZodTypeAny, {
|
|
2540
2571
|
organization: {
|
|
2541
2572
|
url: string;
|
|
@@ -2564,6 +2595,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
2564
2595
|
marketplaceRanking?: number | undefined;
|
|
2565
2596
|
deprecated?: boolean | undefined;
|
|
2566
2597
|
termsOfServiceUrl?: string | undefined;
|
|
2598
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2567
2599
|
}, {
|
|
2568
2600
|
organization: {
|
|
2569
2601
|
url: string;
|
|
@@ -2592,6 +2624,7 @@ export declare const BlockPackOverviewRaw: z.ZodObject<{
|
|
|
2592
2624
|
marketplaceRanking?: number | undefined;
|
|
2593
2625
|
deprecated?: boolean | undefined;
|
|
2594
2626
|
termsOfServiceUrl?: string | undefined;
|
|
2627
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2595
2628
|
}>;
|
|
2596
2629
|
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>>>;
|
|
2597
2630
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -2792,6 +2825,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
2792
2825
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
2793
2826
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
2794
2827
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2828
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
2795
2829
|
}, "strip", z.ZodTypeAny, {
|
|
2796
2830
|
organization: {
|
|
2797
2831
|
url: string;
|
|
@@ -2820,6 +2854,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
2820
2854
|
marketplaceRanking?: number | undefined;
|
|
2821
2855
|
deprecated?: boolean | undefined;
|
|
2822
2856
|
termsOfServiceUrl?: string | undefined;
|
|
2857
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2823
2858
|
}, {
|
|
2824
2859
|
organization: {
|
|
2825
2860
|
url: string;
|
|
@@ -2848,6 +2883,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
2848
2883
|
marketplaceRanking?: number | undefined;
|
|
2849
2884
|
deprecated?: boolean | undefined;
|
|
2850
2885
|
termsOfServiceUrl?: string | undefined;
|
|
2886
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
2851
2887
|
}>;
|
|
2852
2888
|
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>>>;
|
|
2853
2889
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -3030,6 +3066,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3030
3066
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
3031
3067
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
3032
3068
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
3069
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
3033
3070
|
}, "strip", z.ZodTypeAny, {
|
|
3034
3071
|
organization: {
|
|
3035
3072
|
url: string;
|
|
@@ -3058,6 +3095,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3058
3095
|
marketplaceRanking?: number | undefined;
|
|
3059
3096
|
deprecated?: boolean | undefined;
|
|
3060
3097
|
termsOfServiceUrl?: string | undefined;
|
|
3098
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3061
3099
|
}, {
|
|
3062
3100
|
organization: {
|
|
3063
3101
|
url: string;
|
|
@@ -3086,6 +3124,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3086
3124
|
marketplaceRanking?: number | undefined;
|
|
3087
3125
|
deprecated?: boolean | undefined;
|
|
3088
3126
|
termsOfServiceUrl?: string | undefined;
|
|
3127
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3089
3128
|
}>;
|
|
3090
3129
|
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>>>;
|
|
3091
3130
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -3268,6 +3307,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3268
3307
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
3269
3308
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
3270
3309
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
3310
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
3271
3311
|
}, "strip", z.ZodTypeAny, {
|
|
3272
3312
|
organization: {
|
|
3273
3313
|
url: string;
|
|
@@ -3296,6 +3336,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3296
3336
|
marketplaceRanking?: number | undefined;
|
|
3297
3337
|
deprecated?: boolean | undefined;
|
|
3298
3338
|
termsOfServiceUrl?: string | undefined;
|
|
3339
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3299
3340
|
}, {
|
|
3300
3341
|
organization: {
|
|
3301
3342
|
url: string;
|
|
@@ -3324,6 +3365,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3324
3365
|
marketplaceRanking?: number | undefined;
|
|
3325
3366
|
deprecated?: boolean | undefined;
|
|
3326
3367
|
termsOfServiceUrl?: string | undefined;
|
|
3368
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3327
3369
|
}>;
|
|
3328
3370
|
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>>>;
|
|
3329
3371
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -3530,6 +3572,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3530
3572
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
3531
3573
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
3532
3574
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
3575
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
3533
3576
|
}, "strip", z.ZodTypeAny, {
|
|
3534
3577
|
organization: {
|
|
3535
3578
|
url: string;
|
|
@@ -3558,6 +3601,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3558
3601
|
marketplaceRanking?: number | undefined;
|
|
3559
3602
|
deprecated?: boolean | undefined;
|
|
3560
3603
|
termsOfServiceUrl?: string | undefined;
|
|
3604
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3561
3605
|
}, {
|
|
3562
3606
|
organization: {
|
|
3563
3607
|
url: string;
|
|
@@ -3586,6 +3630,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3586
3630
|
marketplaceRanking?: number | undefined;
|
|
3587
3631
|
deprecated?: boolean | undefined;
|
|
3588
3632
|
termsOfServiceUrl?: string | undefined;
|
|
3633
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3589
3634
|
}>;
|
|
3590
3635
|
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>>>;
|
|
3591
3636
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -3768,6 +3813,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3768
3813
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
3769
3814
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
3770
3815
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
3816
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
3771
3817
|
}, "strip", z.ZodTypeAny, {
|
|
3772
3818
|
organization: {
|
|
3773
3819
|
url: string;
|
|
@@ -3796,6 +3842,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3796
3842
|
marketplaceRanking?: number | undefined;
|
|
3797
3843
|
deprecated?: boolean | undefined;
|
|
3798
3844
|
termsOfServiceUrl?: string | undefined;
|
|
3845
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3799
3846
|
}, {
|
|
3800
3847
|
organization: {
|
|
3801
3848
|
url: string;
|
|
@@ -3824,6 +3871,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
3824
3871
|
marketplaceRanking?: number | undefined;
|
|
3825
3872
|
deprecated?: boolean | undefined;
|
|
3826
3873
|
termsOfServiceUrl?: string | undefined;
|
|
3874
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
3827
3875
|
}>;
|
|
3828
3876
|
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>>>;
|
|
3829
3877
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -4006,6 +4054,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4006
4054
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
4007
4055
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
4008
4056
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4057
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
4009
4058
|
}, "strip", z.ZodTypeAny, {
|
|
4010
4059
|
organization: {
|
|
4011
4060
|
url: string;
|
|
@@ -4034,6 +4083,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4034
4083
|
marketplaceRanking?: number | undefined;
|
|
4035
4084
|
deprecated?: boolean | undefined;
|
|
4036
4085
|
termsOfServiceUrl?: string | undefined;
|
|
4086
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4037
4087
|
}, {
|
|
4038
4088
|
organization: {
|
|
4039
4089
|
url: string;
|
|
@@ -4062,6 +4112,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4062
4112
|
marketplaceRanking?: number | undefined;
|
|
4063
4113
|
deprecated?: boolean | undefined;
|
|
4064
4114
|
termsOfServiceUrl?: string | undefined;
|
|
4115
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4065
4116
|
}>;
|
|
4066
4117
|
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>>>;
|
|
4067
4118
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -4268,6 +4319,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4268
4319
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
4269
4320
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
4270
4321
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4322
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
4271
4323
|
}, "strip", z.ZodTypeAny, {
|
|
4272
4324
|
organization: {
|
|
4273
4325
|
url: string;
|
|
@@ -4296,6 +4348,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4296
4348
|
marketplaceRanking?: number | undefined;
|
|
4297
4349
|
deprecated?: boolean | undefined;
|
|
4298
4350
|
termsOfServiceUrl?: string | undefined;
|
|
4351
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4299
4352
|
}, {
|
|
4300
4353
|
organization: {
|
|
4301
4354
|
url: string;
|
|
@@ -4324,6 +4377,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4324
4377
|
marketplaceRanking?: number | undefined;
|
|
4325
4378
|
deprecated?: boolean | undefined;
|
|
4326
4379
|
termsOfServiceUrl?: string | undefined;
|
|
4380
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4327
4381
|
}>;
|
|
4328
4382
|
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>>>;
|
|
4329
4383
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -4506,6 +4560,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4506
4560
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
4507
4561
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
4508
4562
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4563
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
4509
4564
|
}, "strip", z.ZodTypeAny, {
|
|
4510
4565
|
organization: {
|
|
4511
4566
|
url: string;
|
|
@@ -4534,6 +4589,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4534
4589
|
marketplaceRanking?: number | undefined;
|
|
4535
4590
|
deprecated?: boolean | undefined;
|
|
4536
4591
|
termsOfServiceUrl?: string | undefined;
|
|
4592
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4537
4593
|
}, {
|
|
4538
4594
|
organization: {
|
|
4539
4595
|
url: string;
|
|
@@ -4562,6 +4618,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4562
4618
|
marketplaceRanking?: number | undefined;
|
|
4563
4619
|
deprecated?: boolean | undefined;
|
|
4564
4620
|
termsOfServiceUrl?: string | undefined;
|
|
4621
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4565
4622
|
}>;
|
|
4566
4623
|
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>>>;
|
|
4567
4624
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -4744,6 +4801,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4744
4801
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
4745
4802
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
4746
4803
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4804
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
4747
4805
|
}, "strip", z.ZodTypeAny, {
|
|
4748
4806
|
organization: {
|
|
4749
4807
|
url: string;
|
|
@@ -4772,6 +4830,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4772
4830
|
marketplaceRanking?: number | undefined;
|
|
4773
4831
|
deprecated?: boolean | undefined;
|
|
4774
4832
|
termsOfServiceUrl?: string | undefined;
|
|
4833
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4775
4834
|
}, {
|
|
4776
4835
|
organization: {
|
|
4777
4836
|
url: string;
|
|
@@ -4800,6 +4859,7 @@ export declare const BlockPackOverview: z.ZodObject<{
|
|
|
4800
4859
|
marketplaceRanking?: number | undefined;
|
|
4801
4860
|
deprecated?: boolean | undefined;
|
|
4802
4861
|
termsOfServiceUrl?: string | undefined;
|
|
4862
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
4803
4863
|
}>;
|
|
4804
4864
|
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>>>;
|
|
4805
4865
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -5008,6 +5068,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5008
5068
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
5009
5069
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
5010
5070
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
5071
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
5011
5072
|
}, "strip", z.ZodTypeAny, {
|
|
5012
5073
|
organization: {
|
|
5013
5074
|
url: string;
|
|
@@ -5036,6 +5097,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5036
5097
|
marketplaceRanking?: number | undefined;
|
|
5037
5098
|
deprecated?: boolean | undefined;
|
|
5038
5099
|
termsOfServiceUrl?: string | undefined;
|
|
5100
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
5039
5101
|
}, {
|
|
5040
5102
|
organization: {
|
|
5041
5103
|
url: string;
|
|
@@ -5064,6 +5126,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5064
5126
|
marketplaceRanking?: number | undefined;
|
|
5065
5127
|
deprecated?: boolean | undefined;
|
|
5066
5128
|
termsOfServiceUrl?: string | undefined;
|
|
5129
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
5067
5130
|
}>;
|
|
5068
5131
|
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>>>;
|
|
5069
5132
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -5246,6 +5309,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5246
5309
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
5247
5310
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
5248
5311
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
5312
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
5249
5313
|
}, "strip", z.ZodTypeAny, {
|
|
5250
5314
|
organization: {
|
|
5251
5315
|
url: string;
|
|
@@ -5274,6 +5338,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5274
5338
|
marketplaceRanking?: number | undefined;
|
|
5275
5339
|
deprecated?: boolean | undefined;
|
|
5276
5340
|
termsOfServiceUrl?: string | undefined;
|
|
5341
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
5277
5342
|
}, {
|
|
5278
5343
|
organization: {
|
|
5279
5344
|
url: string;
|
|
@@ -5302,6 +5367,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5302
5367
|
marketplaceRanking?: number | undefined;
|
|
5303
5368
|
deprecated?: boolean | undefined;
|
|
5304
5369
|
termsOfServiceUrl?: string | undefined;
|
|
5370
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
5305
5371
|
}>;
|
|
5306
5372
|
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>>>;
|
|
5307
5373
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -5484,6 +5550,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5484
5550
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
5485
5551
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
5486
5552
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
5553
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
5487
5554
|
}, "strip", z.ZodTypeAny, {
|
|
5488
5555
|
organization: {
|
|
5489
5556
|
url: string;
|
|
@@ -5512,6 +5579,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5512
5579
|
marketplaceRanking?: number | undefined;
|
|
5513
5580
|
deprecated?: boolean | undefined;
|
|
5514
5581
|
termsOfServiceUrl?: string | undefined;
|
|
5582
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
5515
5583
|
}, {
|
|
5516
5584
|
organization: {
|
|
5517
5585
|
url: string;
|
|
@@ -5540,6 +5608,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5540
5608
|
marketplaceRanking?: number | undefined;
|
|
5541
5609
|
deprecated?: boolean | undefined;
|
|
5542
5610
|
termsOfServiceUrl?: string | undefined;
|
|
5611
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
5543
5612
|
}>;
|
|
5544
5613
|
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>>>;
|
|
5545
5614
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -5746,6 +5815,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5746
5815
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
5747
5816
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
5748
5817
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
5818
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
5749
5819
|
}, "strip", z.ZodTypeAny, {
|
|
5750
5820
|
organization: {
|
|
5751
5821
|
url: string;
|
|
@@ -5774,6 +5844,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5774
5844
|
marketplaceRanking?: number | undefined;
|
|
5775
5845
|
deprecated?: boolean | undefined;
|
|
5776
5846
|
termsOfServiceUrl?: string | undefined;
|
|
5847
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
5777
5848
|
}, {
|
|
5778
5849
|
organization: {
|
|
5779
5850
|
url: string;
|
|
@@ -5802,6 +5873,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5802
5873
|
marketplaceRanking?: number | undefined;
|
|
5803
5874
|
deprecated?: boolean | undefined;
|
|
5804
5875
|
termsOfServiceUrl?: string | undefined;
|
|
5876
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
5805
5877
|
}>;
|
|
5806
5878
|
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>>>;
|
|
5807
5879
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -5984,6 +6056,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
5984
6056
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
5985
6057
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
5986
6058
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
6059
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
5987
6060
|
}, "strip", z.ZodTypeAny, {
|
|
5988
6061
|
organization: {
|
|
5989
6062
|
url: string;
|
|
@@ -6012,6 +6085,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6012
6085
|
marketplaceRanking?: number | undefined;
|
|
6013
6086
|
deprecated?: boolean | undefined;
|
|
6014
6087
|
termsOfServiceUrl?: string | undefined;
|
|
6088
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
6015
6089
|
}, {
|
|
6016
6090
|
organization: {
|
|
6017
6091
|
url: string;
|
|
@@ -6040,6 +6114,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6040
6114
|
marketplaceRanking?: number | undefined;
|
|
6041
6115
|
deprecated?: boolean | undefined;
|
|
6042
6116
|
termsOfServiceUrl?: string | undefined;
|
|
6117
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
6043
6118
|
}>;
|
|
6044
6119
|
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>>>;
|
|
6045
6120
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -6222,6 +6297,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6222
6297
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
6223
6298
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
6224
6299
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
6300
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
6225
6301
|
}, "strip", z.ZodTypeAny, {
|
|
6226
6302
|
organization: {
|
|
6227
6303
|
url: string;
|
|
@@ -6250,6 +6326,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6250
6326
|
marketplaceRanking?: number | undefined;
|
|
6251
6327
|
deprecated?: boolean | undefined;
|
|
6252
6328
|
termsOfServiceUrl?: string | undefined;
|
|
6329
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
6253
6330
|
}, {
|
|
6254
6331
|
organization: {
|
|
6255
6332
|
url: string;
|
|
@@ -6278,6 +6355,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6278
6355
|
marketplaceRanking?: number | undefined;
|
|
6279
6356
|
deprecated?: boolean | undefined;
|
|
6280
6357
|
termsOfServiceUrl?: string | undefined;
|
|
6358
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
6281
6359
|
}>;
|
|
6282
6360
|
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>>>;
|
|
6283
6361
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -6484,6 +6562,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6484
6562
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
6485
6563
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
6486
6564
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
6565
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
6487
6566
|
}, "strip", z.ZodTypeAny, {
|
|
6488
6567
|
organization: {
|
|
6489
6568
|
url: string;
|
|
@@ -6512,6 +6591,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6512
6591
|
marketplaceRanking?: number | undefined;
|
|
6513
6592
|
deprecated?: boolean | undefined;
|
|
6514
6593
|
termsOfServiceUrl?: string | undefined;
|
|
6594
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
6515
6595
|
}, {
|
|
6516
6596
|
organization: {
|
|
6517
6597
|
url: string;
|
|
@@ -6540,6 +6620,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6540
6620
|
marketplaceRanking?: number | undefined;
|
|
6541
6621
|
deprecated?: boolean | undefined;
|
|
6542
6622
|
termsOfServiceUrl?: string | undefined;
|
|
6623
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
6543
6624
|
}>;
|
|
6544
6625
|
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>>>;
|
|
6545
6626
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -6722,6 +6803,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6722
6803
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
6723
6804
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
6724
6805
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
6806
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
6725
6807
|
}, "strip", z.ZodTypeAny, {
|
|
6726
6808
|
organization: {
|
|
6727
6809
|
url: string;
|
|
@@ -6750,6 +6832,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6750
6832
|
marketplaceRanking?: number | undefined;
|
|
6751
6833
|
deprecated?: boolean | undefined;
|
|
6752
6834
|
termsOfServiceUrl?: string | undefined;
|
|
6835
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
6753
6836
|
}, {
|
|
6754
6837
|
organization: {
|
|
6755
6838
|
url: string;
|
|
@@ -6778,6 +6861,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6778
6861
|
marketplaceRanking?: number | undefined;
|
|
6779
6862
|
deprecated?: boolean | undefined;
|
|
6780
6863
|
termsOfServiceUrl?: string | undefined;
|
|
6864
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
6781
6865
|
}>;
|
|
6782
6866
|
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>>>;
|
|
6783
6867
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -6960,6 +7044,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6960
7044
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
6961
7045
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
6962
7046
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
7047
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
6963
7048
|
}, "strip", z.ZodTypeAny, {
|
|
6964
7049
|
organization: {
|
|
6965
7050
|
url: string;
|
|
@@ -6988,6 +7073,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
6988
7073
|
marketplaceRanking?: number | undefined;
|
|
6989
7074
|
deprecated?: boolean | undefined;
|
|
6990
7075
|
termsOfServiceUrl?: string | undefined;
|
|
7076
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
6991
7077
|
}, {
|
|
6992
7078
|
organization: {
|
|
6993
7079
|
url: string;
|
|
@@ -7016,6 +7102,7 @@ export declare const BlockPackOverviewNoRegistryId: z.ZodObject<Omit<{
|
|
|
7016
7102
|
marketplaceRanking?: number | undefined;
|
|
7017
7103
|
deprecated?: boolean | undefined;
|
|
7018
7104
|
termsOfServiceUrl?: string | undefined;
|
|
7105
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
7019
7106
|
}>;
|
|
7020
7107
|
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>>>;
|
|
7021
7108
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -7350,6 +7437,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
7350
7437
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
7351
7438
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
7352
7439
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
7440
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
7353
7441
|
}, "strip", z.ZodTypeAny, {
|
|
7354
7442
|
organization: {
|
|
7355
7443
|
url: string;
|
|
@@ -7378,6 +7466,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
7378
7466
|
marketplaceRanking?: number | undefined;
|
|
7379
7467
|
deprecated?: boolean | undefined;
|
|
7380
7468
|
termsOfServiceUrl?: string | undefined;
|
|
7469
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
7381
7470
|
}, {
|
|
7382
7471
|
organization: {
|
|
7383
7472
|
url: string;
|
|
@@ -7406,6 +7495,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
7406
7495
|
marketplaceRanking?: number | undefined;
|
|
7407
7496
|
deprecated?: boolean | undefined;
|
|
7408
7497
|
termsOfServiceUrl?: string | undefined;
|
|
7498
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
7409
7499
|
}>;
|
|
7410
7500
|
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>>>;
|
|
7411
7501
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -7588,6 +7678,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
7588
7678
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
7589
7679
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
7590
7680
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
7681
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
7591
7682
|
}, "strip", z.ZodTypeAny, {
|
|
7592
7683
|
organization: {
|
|
7593
7684
|
url: string;
|
|
@@ -7616,6 +7707,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
7616
7707
|
marketplaceRanking?: number | undefined;
|
|
7617
7708
|
deprecated?: boolean | undefined;
|
|
7618
7709
|
termsOfServiceUrl?: string | undefined;
|
|
7710
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
7619
7711
|
}, {
|
|
7620
7712
|
organization: {
|
|
7621
7713
|
url: string;
|
|
@@ -7644,6 +7736,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
7644
7736
|
marketplaceRanking?: number | undefined;
|
|
7645
7737
|
deprecated?: boolean | undefined;
|
|
7646
7738
|
termsOfServiceUrl?: string | undefined;
|
|
7739
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
7647
7740
|
}>;
|
|
7648
7741
|
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>>>;
|
|
7649
7742
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -7826,6 +7919,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
7826
7919
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
7827
7920
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
7828
7921
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
7922
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
7829
7923
|
}, "strip", z.ZodTypeAny, {
|
|
7830
7924
|
organization: {
|
|
7831
7925
|
url: string;
|
|
@@ -7854,6 +7948,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
7854
7948
|
marketplaceRanking?: number | undefined;
|
|
7855
7949
|
deprecated?: boolean | undefined;
|
|
7856
7950
|
termsOfServiceUrl?: string | undefined;
|
|
7951
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
7857
7952
|
}, {
|
|
7858
7953
|
organization: {
|
|
7859
7954
|
url: string;
|
|
@@ -7882,6 +7977,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
7882
7977
|
marketplaceRanking?: number | undefined;
|
|
7883
7978
|
deprecated?: boolean | undefined;
|
|
7884
7979
|
termsOfServiceUrl?: string | undefined;
|
|
7980
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
7885
7981
|
}>;
|
|
7886
7982
|
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>>>;
|
|
7887
7983
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -8088,6 +8184,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8088
8184
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
8089
8185
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
8090
8186
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
8187
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
8091
8188
|
}, "strip", z.ZodTypeAny, {
|
|
8092
8189
|
organization: {
|
|
8093
8190
|
url: string;
|
|
@@ -8116,6 +8213,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8116
8213
|
marketplaceRanking?: number | undefined;
|
|
8117
8214
|
deprecated?: boolean | undefined;
|
|
8118
8215
|
termsOfServiceUrl?: string | undefined;
|
|
8216
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
8119
8217
|
}, {
|
|
8120
8218
|
organization: {
|
|
8121
8219
|
url: string;
|
|
@@ -8144,6 +8242,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8144
8242
|
marketplaceRanking?: number | undefined;
|
|
8145
8243
|
deprecated?: boolean | undefined;
|
|
8146
8244
|
termsOfServiceUrl?: string | undefined;
|
|
8245
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
8147
8246
|
}>;
|
|
8148
8247
|
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>>>;
|
|
8149
8248
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -8326,6 +8425,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8326
8425
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
8327
8426
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
8328
8427
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
8428
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
8329
8429
|
}, "strip", z.ZodTypeAny, {
|
|
8330
8430
|
organization: {
|
|
8331
8431
|
url: string;
|
|
@@ -8354,6 +8454,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8354
8454
|
marketplaceRanking?: number | undefined;
|
|
8355
8455
|
deprecated?: boolean | undefined;
|
|
8356
8456
|
termsOfServiceUrl?: string | undefined;
|
|
8457
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
8357
8458
|
}, {
|
|
8358
8459
|
organization: {
|
|
8359
8460
|
url: string;
|
|
@@ -8382,6 +8483,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8382
8483
|
marketplaceRanking?: number | undefined;
|
|
8383
8484
|
deprecated?: boolean | undefined;
|
|
8384
8485
|
termsOfServiceUrl?: string | undefined;
|
|
8486
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
8385
8487
|
}>;
|
|
8386
8488
|
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>>>;
|
|
8387
8489
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -8564,6 +8666,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8564
8666
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
8565
8667
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
8566
8668
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
8669
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
8567
8670
|
}, "strip", z.ZodTypeAny, {
|
|
8568
8671
|
organization: {
|
|
8569
8672
|
url: string;
|
|
@@ -8592,6 +8695,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8592
8695
|
marketplaceRanking?: number | undefined;
|
|
8593
8696
|
deprecated?: boolean | undefined;
|
|
8594
8697
|
termsOfServiceUrl?: string | undefined;
|
|
8698
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
8595
8699
|
}, {
|
|
8596
8700
|
organization: {
|
|
8597
8701
|
url: string;
|
|
@@ -8620,6 +8724,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8620
8724
|
marketplaceRanking?: number | undefined;
|
|
8621
8725
|
deprecated?: boolean | undefined;
|
|
8622
8726
|
termsOfServiceUrl?: string | undefined;
|
|
8727
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
8623
8728
|
}>;
|
|
8624
8729
|
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>>>;
|
|
8625
8730
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -8826,6 +8931,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8826
8931
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
8827
8932
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
8828
8933
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
8934
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
8829
8935
|
}, "strip", z.ZodTypeAny, {
|
|
8830
8936
|
organization: {
|
|
8831
8937
|
url: string;
|
|
@@ -8854,6 +8960,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8854
8960
|
marketplaceRanking?: number | undefined;
|
|
8855
8961
|
deprecated?: boolean | undefined;
|
|
8856
8962
|
termsOfServiceUrl?: string | undefined;
|
|
8963
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
8857
8964
|
}, {
|
|
8858
8965
|
organization: {
|
|
8859
8966
|
url: string;
|
|
@@ -8882,6 +8989,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
8882
8989
|
marketplaceRanking?: number | undefined;
|
|
8883
8990
|
deprecated?: boolean | undefined;
|
|
8884
8991
|
termsOfServiceUrl?: string | undefined;
|
|
8992
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
8885
8993
|
}>;
|
|
8886
8994
|
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>>>;
|
|
8887
8995
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -9064,6 +9172,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9064
9172
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
9065
9173
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
9066
9174
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
9175
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
9067
9176
|
}, "strip", z.ZodTypeAny, {
|
|
9068
9177
|
organization: {
|
|
9069
9178
|
url: string;
|
|
@@ -9092,6 +9201,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9092
9201
|
marketplaceRanking?: number | undefined;
|
|
9093
9202
|
deprecated?: boolean | undefined;
|
|
9094
9203
|
termsOfServiceUrl?: string | undefined;
|
|
9204
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
9095
9205
|
}, {
|
|
9096
9206
|
organization: {
|
|
9097
9207
|
url: string;
|
|
@@ -9120,6 +9230,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9120
9230
|
marketplaceRanking?: number | undefined;
|
|
9121
9231
|
deprecated?: boolean | undefined;
|
|
9122
9232
|
termsOfServiceUrl?: string | undefined;
|
|
9233
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
9123
9234
|
}>;
|
|
9124
9235
|
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>>>;
|
|
9125
9236
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -9302,6 +9413,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9302
9413
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
9303
9414
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
9304
9415
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
9416
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
9305
9417
|
}, "strip", z.ZodTypeAny, {
|
|
9306
9418
|
organization: {
|
|
9307
9419
|
url: string;
|
|
@@ -9330,6 +9442,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9330
9442
|
marketplaceRanking?: number | undefined;
|
|
9331
9443
|
deprecated?: boolean | undefined;
|
|
9332
9444
|
termsOfServiceUrl?: string | undefined;
|
|
9445
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
9333
9446
|
}, {
|
|
9334
9447
|
organization: {
|
|
9335
9448
|
url: string;
|
|
@@ -9358,6 +9471,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9358
9471
|
marketplaceRanking?: number | undefined;
|
|
9359
9472
|
deprecated?: boolean | undefined;
|
|
9360
9473
|
termsOfServiceUrl?: string | undefined;
|
|
9474
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
9361
9475
|
}>;
|
|
9362
9476
|
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>>>;
|
|
9363
9477
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -9581,6 +9695,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9581
9695
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
9582
9696
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
9583
9697
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
9698
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
9584
9699
|
}, "strip", z.ZodTypeAny, {
|
|
9585
9700
|
organization: {
|
|
9586
9701
|
url: string;
|
|
@@ -9609,6 +9724,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9609
9724
|
marketplaceRanking?: number | undefined;
|
|
9610
9725
|
deprecated?: boolean | undefined;
|
|
9611
9726
|
termsOfServiceUrl?: string | undefined;
|
|
9727
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
9612
9728
|
}, {
|
|
9613
9729
|
organization: {
|
|
9614
9730
|
url: string;
|
|
@@ -9637,6 +9753,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9637
9753
|
marketplaceRanking?: number | undefined;
|
|
9638
9754
|
deprecated?: boolean | undefined;
|
|
9639
9755
|
termsOfServiceUrl?: string | undefined;
|
|
9756
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
9640
9757
|
}>;
|
|
9641
9758
|
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>>>;
|
|
9642
9759
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -9819,6 +9936,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9819
9936
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
9820
9937
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
9821
9938
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
9939
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
9822
9940
|
}, "strip", z.ZodTypeAny, {
|
|
9823
9941
|
organization: {
|
|
9824
9942
|
url: string;
|
|
@@ -9847,6 +9965,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9847
9965
|
marketplaceRanking?: number | undefined;
|
|
9848
9966
|
deprecated?: boolean | undefined;
|
|
9849
9967
|
termsOfServiceUrl?: string | undefined;
|
|
9968
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
9850
9969
|
}, {
|
|
9851
9970
|
organization: {
|
|
9852
9971
|
url: string;
|
|
@@ -9875,6 +9994,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
9875
9994
|
marketplaceRanking?: number | undefined;
|
|
9876
9995
|
deprecated?: boolean | undefined;
|
|
9877
9996
|
termsOfServiceUrl?: string | undefined;
|
|
9997
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
9878
9998
|
}>;
|
|
9879
9999
|
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>>>;
|
|
9880
10000
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -10057,6 +10177,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10057
10177
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
10058
10178
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
10059
10179
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
10180
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
10060
10181
|
}, "strip", z.ZodTypeAny, {
|
|
10061
10182
|
organization: {
|
|
10062
10183
|
url: string;
|
|
@@ -10085,6 +10206,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10085
10206
|
marketplaceRanking?: number | undefined;
|
|
10086
10207
|
deprecated?: boolean | undefined;
|
|
10087
10208
|
termsOfServiceUrl?: string | undefined;
|
|
10209
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
10088
10210
|
}, {
|
|
10089
10211
|
organization: {
|
|
10090
10212
|
url: string;
|
|
@@ -10113,6 +10235,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10113
10235
|
marketplaceRanking?: number | undefined;
|
|
10114
10236
|
deprecated?: boolean | undefined;
|
|
10115
10237
|
termsOfServiceUrl?: string | undefined;
|
|
10238
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
10116
10239
|
}>;
|
|
10117
10240
|
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>>>;
|
|
10118
10241
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -10336,6 +10459,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10336
10459
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
10337
10460
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
10338
10461
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
10462
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
10339
10463
|
}, "strip", z.ZodTypeAny, {
|
|
10340
10464
|
organization: {
|
|
10341
10465
|
url: string;
|
|
@@ -10364,6 +10488,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10364
10488
|
marketplaceRanking?: number | undefined;
|
|
10365
10489
|
deprecated?: boolean | undefined;
|
|
10366
10490
|
termsOfServiceUrl?: string | undefined;
|
|
10491
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
10367
10492
|
}, {
|
|
10368
10493
|
organization: {
|
|
10369
10494
|
url: string;
|
|
@@ -10392,6 +10517,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10392
10517
|
marketplaceRanking?: number | undefined;
|
|
10393
10518
|
deprecated?: boolean | undefined;
|
|
10394
10519
|
termsOfServiceUrl?: string | undefined;
|
|
10520
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
10395
10521
|
}>;
|
|
10396
10522
|
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>>>;
|
|
10397
10523
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -10574,6 +10700,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10574
10700
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
10575
10701
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
10576
10702
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
10703
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
10577
10704
|
}, "strip", z.ZodTypeAny, {
|
|
10578
10705
|
organization: {
|
|
10579
10706
|
url: string;
|
|
@@ -10602,6 +10729,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10602
10729
|
marketplaceRanking?: number | undefined;
|
|
10603
10730
|
deprecated?: boolean | undefined;
|
|
10604
10731
|
termsOfServiceUrl?: string | undefined;
|
|
10732
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
10605
10733
|
}, {
|
|
10606
10734
|
organization: {
|
|
10607
10735
|
url: string;
|
|
@@ -10630,6 +10758,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10630
10758
|
marketplaceRanking?: number | undefined;
|
|
10631
10759
|
deprecated?: boolean | undefined;
|
|
10632
10760
|
termsOfServiceUrl?: string | undefined;
|
|
10761
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
10633
10762
|
}>;
|
|
10634
10763
|
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>>>;
|
|
10635
10764
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -10812,6 +10941,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10812
10941
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
10813
10942
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
10814
10943
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
10944
|
+
supportedPlatforms: z.ZodOptional<z.ZodArray<z.ZodEnum<["windows-x64", "windows-aarch64", "macosx-x64", "macosx-aarch64", "linux-x64", "linux-aarch64"]>, "many">>;
|
|
10815
10945
|
}, "strip", z.ZodTypeAny, {
|
|
10816
10946
|
organization: {
|
|
10817
10947
|
url: string;
|
|
@@ -10840,6 +10970,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10840
10970
|
marketplaceRanking?: number | undefined;
|
|
10841
10971
|
deprecated?: boolean | undefined;
|
|
10842
10972
|
termsOfServiceUrl?: string | undefined;
|
|
10973
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
10843
10974
|
}, {
|
|
10844
10975
|
organization: {
|
|
10845
10976
|
url: string;
|
|
@@ -10868,6 +10999,7 @@ export declare const BlockPackListing: z.ZodObject<{
|
|
|
10868
10999
|
marketplaceRanking?: number | undefined;
|
|
10869
11000
|
deprecated?: boolean | undefined;
|
|
10870
11001
|
termsOfServiceUrl?: string | undefined;
|
|
11002
|
+
supportedPlatforms?: ("windows-x64" | "windows-aarch64" | "macosx-x64" | "macosx-aarch64" | "linux-x64" | "linux-aarch64")[] | undefined;
|
|
10871
11003
|
}>;
|
|
10872
11004
|
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>>>;
|
|
10873
11005
|
spec: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|