@platforma-sdk/block-tools 2.5.67 → 2.5.68
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/v2/model/block_description.d.ts +32 -0
- package/dist/v2/model/block_description.d.ts.map +1 -1
- package/dist/v2/model/block_meta.d.ts +24 -0
- package/dist/v2/model/block_meta.d.ts.map +1 -1
- package/dist/v2/registry/schema_public.d.ts +185 -0
- package/dist/v2/registry/schema_public.d.ts.map +1 -1
- package/package.json +5 -5
|
@@ -265,6 +265,7 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
265
265
|
} | undefined;
|
|
266
266
|
}>;
|
|
267
267
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
268
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
268
269
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
269
270
|
}, "strip", z.ZodTypeAny, {
|
|
270
271
|
organization: {
|
|
@@ -308,6 +309,7 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
308
309
|
support?: string | undefined;
|
|
309
310
|
tags?: string[] | undefined;
|
|
310
311
|
marketplaceRanking?: number | undefined;
|
|
312
|
+
deprecated?: boolean | undefined;
|
|
311
313
|
termsOfServiceUrl?: string | undefined;
|
|
312
314
|
}, {
|
|
313
315
|
organization: {
|
|
@@ -351,6 +353,7 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
351
353
|
support?: string | undefined;
|
|
352
354
|
tags?: string[] | undefined;
|
|
353
355
|
marketplaceRanking?: number | undefined;
|
|
356
|
+
deprecated?: boolean | undefined;
|
|
354
357
|
termsOfServiceUrl?: string | undefined;
|
|
355
358
|
}>;
|
|
356
359
|
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>>>;
|
|
@@ -414,6 +417,7 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
414
417
|
support?: string | undefined;
|
|
415
418
|
tags?: string[] | undefined;
|
|
416
419
|
marketplaceRanking?: number | undefined;
|
|
420
|
+
deprecated?: boolean | undefined;
|
|
417
421
|
termsOfServiceUrl?: string | undefined;
|
|
418
422
|
};
|
|
419
423
|
id: {
|
|
@@ -485,6 +489,7 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
485
489
|
support?: string | undefined;
|
|
486
490
|
tags?: string[] | undefined;
|
|
487
491
|
marketplaceRanking?: number | undefined;
|
|
492
|
+
deprecated?: boolean | undefined;
|
|
488
493
|
termsOfServiceUrl?: string | undefined;
|
|
489
494
|
};
|
|
490
495
|
id: {
|
|
@@ -557,6 +562,7 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
557
562
|
support?: string | undefined;
|
|
558
563
|
tags?: string[] | undefined;
|
|
559
564
|
marketplaceRanking?: number | undefined;
|
|
565
|
+
deprecated?: boolean | undefined;
|
|
560
566
|
termsOfServiceUrl?: string | undefined;
|
|
561
567
|
};
|
|
562
568
|
id: {
|
|
@@ -632,6 +638,7 @@ export declare const PackageOverviewVersionEntry: z.ZodObject<{
|
|
|
632
638
|
support?: string | undefined;
|
|
633
639
|
tags?: string[] | undefined;
|
|
634
640
|
marketplaceRanking?: number | undefined;
|
|
641
|
+
deprecated?: boolean | undefined;
|
|
635
642
|
termsOfServiceUrl?: string | undefined;
|
|
636
643
|
};
|
|
637
644
|
id: {
|
|
@@ -902,6 +909,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
902
909
|
} | undefined;
|
|
903
910
|
}>;
|
|
904
911
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
912
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
905
913
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
906
914
|
}, "strip", z.ZodTypeAny, {
|
|
907
915
|
organization: {
|
|
@@ -945,6 +953,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
945
953
|
support?: string | undefined;
|
|
946
954
|
tags?: string[] | undefined;
|
|
947
955
|
marketplaceRanking?: number | undefined;
|
|
956
|
+
deprecated?: boolean | undefined;
|
|
948
957
|
termsOfServiceUrl?: string | undefined;
|
|
949
958
|
}, {
|
|
950
959
|
organization: {
|
|
@@ -988,6 +997,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
988
997
|
support?: string | undefined;
|
|
989
998
|
tags?: string[] | undefined;
|
|
990
999
|
marketplaceRanking?: number | undefined;
|
|
1000
|
+
deprecated?: boolean | undefined;
|
|
991
1001
|
termsOfServiceUrl?: string | undefined;
|
|
992
1002
|
}>;
|
|
993
1003
|
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>>>;
|
|
@@ -1051,6 +1061,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
1051
1061
|
support?: string | undefined;
|
|
1052
1062
|
tags?: string[] | undefined;
|
|
1053
1063
|
marketplaceRanking?: number | undefined;
|
|
1064
|
+
deprecated?: boolean | undefined;
|
|
1054
1065
|
termsOfServiceUrl?: string | undefined;
|
|
1055
1066
|
};
|
|
1056
1067
|
id: {
|
|
@@ -1122,6 +1133,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
1122
1133
|
support?: string | undefined;
|
|
1123
1134
|
tags?: string[] | undefined;
|
|
1124
1135
|
marketplaceRanking?: number | undefined;
|
|
1136
|
+
deprecated?: boolean | undefined;
|
|
1125
1137
|
termsOfServiceUrl?: string | undefined;
|
|
1126
1138
|
};
|
|
1127
1139
|
id: {
|
|
@@ -1194,6 +1206,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
1194
1206
|
support?: string | undefined;
|
|
1195
1207
|
tags?: string[] | undefined;
|
|
1196
1208
|
marketplaceRanking?: number | undefined;
|
|
1209
|
+
deprecated?: boolean | undefined;
|
|
1197
1210
|
termsOfServiceUrl?: string | undefined;
|
|
1198
1211
|
};
|
|
1199
1212
|
id: {
|
|
@@ -1269,6 +1282,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
1269
1282
|
support?: string | undefined;
|
|
1270
1283
|
tags?: string[] | undefined;
|
|
1271
1284
|
marketplaceRanking?: number | undefined;
|
|
1285
|
+
deprecated?: boolean | undefined;
|
|
1272
1286
|
termsOfServiceUrl?: string | undefined;
|
|
1273
1287
|
};
|
|
1274
1288
|
id: {
|
|
@@ -1344,6 +1358,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
1344
1358
|
support?: string | undefined;
|
|
1345
1359
|
tags?: string[] | undefined;
|
|
1346
1360
|
marketplaceRanking?: number | undefined;
|
|
1361
|
+
deprecated?: boolean | undefined;
|
|
1347
1362
|
termsOfServiceUrl?: string | undefined;
|
|
1348
1363
|
};
|
|
1349
1364
|
id: {
|
|
@@ -1422,6 +1437,7 @@ export declare const PackageOverview: z.ZodObject<{
|
|
|
1422
1437
|
support?: string | undefined;
|
|
1423
1438
|
tags?: string[] | undefined;
|
|
1424
1439
|
marketplaceRanking?: number | undefined;
|
|
1440
|
+
deprecated?: boolean | undefined;
|
|
1425
1441
|
termsOfServiceUrl?: string | undefined;
|
|
1426
1442
|
};
|
|
1427
1443
|
id: {
|
|
@@ -2616,6 +2632,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
2616
2632
|
} | undefined;
|
|
2617
2633
|
}>;
|
|
2618
2634
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
2635
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
2619
2636
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
2620
2637
|
}, "strip", z.ZodTypeAny, {
|
|
2621
2638
|
organization: {
|
|
@@ -2659,6 +2676,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
2659
2676
|
support?: string | undefined;
|
|
2660
2677
|
tags?: string[] | undefined;
|
|
2661
2678
|
marketplaceRanking?: number | undefined;
|
|
2679
|
+
deprecated?: boolean | undefined;
|
|
2662
2680
|
termsOfServiceUrl?: string | undefined;
|
|
2663
2681
|
}, {
|
|
2664
2682
|
organization: {
|
|
@@ -2702,6 +2720,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
2702
2720
|
support?: string | undefined;
|
|
2703
2721
|
tags?: string[] | undefined;
|
|
2704
2722
|
marketplaceRanking?: number | undefined;
|
|
2723
|
+
deprecated?: boolean | undefined;
|
|
2705
2724
|
termsOfServiceUrl?: string | undefined;
|
|
2706
2725
|
}>;
|
|
2707
2726
|
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>>>;
|
|
@@ -2765,6 +2784,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
2765
2784
|
support?: string | undefined;
|
|
2766
2785
|
tags?: string[] | undefined;
|
|
2767
2786
|
marketplaceRanking?: number | undefined;
|
|
2787
|
+
deprecated?: boolean | undefined;
|
|
2768
2788
|
termsOfServiceUrl?: string | undefined;
|
|
2769
2789
|
};
|
|
2770
2790
|
id: {
|
|
@@ -2836,6 +2856,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
2836
2856
|
support?: string | undefined;
|
|
2837
2857
|
tags?: string[] | undefined;
|
|
2838
2858
|
marketplaceRanking?: number | undefined;
|
|
2859
|
+
deprecated?: boolean | undefined;
|
|
2839
2860
|
termsOfServiceUrl?: string | undefined;
|
|
2840
2861
|
};
|
|
2841
2862
|
id: {
|
|
@@ -3102,6 +3123,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3102
3123
|
} | undefined;
|
|
3103
3124
|
}>;
|
|
3104
3125
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
3126
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
3105
3127
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
3106
3128
|
}, "strip", z.ZodTypeAny, {
|
|
3107
3129
|
organization: {
|
|
@@ -3145,6 +3167,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3145
3167
|
support?: string | undefined;
|
|
3146
3168
|
tags?: string[] | undefined;
|
|
3147
3169
|
marketplaceRanking?: number | undefined;
|
|
3170
|
+
deprecated?: boolean | undefined;
|
|
3148
3171
|
termsOfServiceUrl?: string | undefined;
|
|
3149
3172
|
}, {
|
|
3150
3173
|
organization: {
|
|
@@ -3188,6 +3211,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3188
3211
|
support?: string | undefined;
|
|
3189
3212
|
tags?: string[] | undefined;
|
|
3190
3213
|
marketplaceRanking?: number | undefined;
|
|
3214
|
+
deprecated?: boolean | undefined;
|
|
3191
3215
|
termsOfServiceUrl?: string | undefined;
|
|
3192
3216
|
}>;
|
|
3193
3217
|
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>>>;
|
|
@@ -3251,6 +3275,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3251
3275
|
support?: string | undefined;
|
|
3252
3276
|
tags?: string[] | undefined;
|
|
3253
3277
|
marketplaceRanking?: number | undefined;
|
|
3278
|
+
deprecated?: boolean | undefined;
|
|
3254
3279
|
termsOfServiceUrl?: string | undefined;
|
|
3255
3280
|
};
|
|
3256
3281
|
id: {
|
|
@@ -3322,6 +3347,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3322
3347
|
support?: string | undefined;
|
|
3323
3348
|
tags?: string[] | undefined;
|
|
3324
3349
|
marketplaceRanking?: number | undefined;
|
|
3350
|
+
deprecated?: boolean | undefined;
|
|
3325
3351
|
termsOfServiceUrl?: string | undefined;
|
|
3326
3352
|
};
|
|
3327
3353
|
id: {
|
|
@@ -3393,6 +3419,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3393
3419
|
support?: string | undefined;
|
|
3394
3420
|
tags?: string[] | undefined;
|
|
3395
3421
|
marketplaceRanking?: number | undefined;
|
|
3422
|
+
deprecated?: boolean | undefined;
|
|
3396
3423
|
termsOfServiceUrl?: string | undefined;
|
|
3397
3424
|
};
|
|
3398
3425
|
id: {
|
|
@@ -3467,6 +3494,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3467
3494
|
support?: string | undefined;
|
|
3468
3495
|
tags?: string[] | undefined;
|
|
3469
3496
|
marketplaceRanking?: number | undefined;
|
|
3497
|
+
deprecated?: boolean | undefined;
|
|
3470
3498
|
termsOfServiceUrl?: string | undefined;
|
|
3471
3499
|
};
|
|
3472
3500
|
id: {
|
|
@@ -3543,6 +3571,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3543
3571
|
support?: string | undefined;
|
|
3544
3572
|
tags?: string[] | undefined;
|
|
3545
3573
|
marketplaceRanking?: number | undefined;
|
|
3574
|
+
deprecated?: boolean | undefined;
|
|
3546
3575
|
termsOfServiceUrl?: string | undefined;
|
|
3547
3576
|
};
|
|
3548
3577
|
id: {
|
|
@@ -3614,6 +3643,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3614
3643
|
support?: string | undefined;
|
|
3615
3644
|
tags?: string[] | undefined;
|
|
3616
3645
|
marketplaceRanking?: number | undefined;
|
|
3646
|
+
deprecated?: boolean | undefined;
|
|
3617
3647
|
termsOfServiceUrl?: string | undefined;
|
|
3618
3648
|
};
|
|
3619
3649
|
id: {
|
|
@@ -3698,6 +3728,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3698
3728
|
support?: string | undefined;
|
|
3699
3729
|
tags?: string[] | undefined;
|
|
3700
3730
|
marketplaceRanking?: number | undefined;
|
|
3731
|
+
deprecated?: boolean | undefined;
|
|
3701
3732
|
termsOfServiceUrl?: string | undefined;
|
|
3702
3733
|
};
|
|
3703
3734
|
id: {
|
|
@@ -3777,6 +3808,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3777
3808
|
support?: string | undefined;
|
|
3778
3809
|
tags?: string[] | undefined;
|
|
3779
3810
|
marketplaceRanking?: number | undefined;
|
|
3811
|
+
deprecated?: boolean | undefined;
|
|
3780
3812
|
termsOfServiceUrl?: string | undefined;
|
|
3781
3813
|
};
|
|
3782
3814
|
id: {
|
|
@@ -3853,6 +3885,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3853
3885
|
support?: string | undefined;
|
|
3854
3886
|
tags?: string[] | undefined;
|
|
3855
3887
|
marketplaceRanking?: number | undefined;
|
|
3888
|
+
deprecated?: boolean | undefined;
|
|
3856
3889
|
termsOfServiceUrl?: string | undefined;
|
|
3857
3890
|
};
|
|
3858
3891
|
id: {
|
|
@@ -3924,6 +3957,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
3924
3957
|
support?: string | undefined;
|
|
3925
3958
|
tags?: string[] | undefined;
|
|
3926
3959
|
marketplaceRanking?: number | undefined;
|
|
3960
|
+
deprecated?: boolean | undefined;
|
|
3927
3961
|
termsOfServiceUrl?: string | undefined;
|
|
3928
3962
|
};
|
|
3929
3963
|
id: {
|
|
@@ -4008,6 +4042,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
4008
4042
|
support?: string | undefined;
|
|
4009
4043
|
tags?: string[] | undefined;
|
|
4010
4044
|
marketplaceRanking?: number | undefined;
|
|
4045
|
+
deprecated?: boolean | undefined;
|
|
4011
4046
|
termsOfServiceUrl?: string | undefined;
|
|
4012
4047
|
};
|
|
4013
4048
|
id: {
|
|
@@ -4087,6 +4122,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
4087
4122
|
support?: string | undefined;
|
|
4088
4123
|
tags?: string[] | undefined;
|
|
4089
4124
|
marketplaceRanking?: number | undefined;
|
|
4125
|
+
deprecated?: boolean | undefined;
|
|
4090
4126
|
termsOfServiceUrl?: string | undefined;
|
|
4091
4127
|
};
|
|
4092
4128
|
id: {
|
|
@@ -4166,6 +4202,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
4166
4202
|
support?: string | undefined;
|
|
4167
4203
|
tags?: string[] | undefined;
|
|
4168
4204
|
marketplaceRanking?: number | undefined;
|
|
4205
|
+
deprecated?: boolean | undefined;
|
|
4169
4206
|
termsOfServiceUrl?: string | undefined;
|
|
4170
4207
|
};
|
|
4171
4208
|
id: {
|
|
@@ -4245,6 +4282,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
4245
4282
|
support?: string | undefined;
|
|
4246
4283
|
tags?: string[] | undefined;
|
|
4247
4284
|
marketplaceRanking?: number | undefined;
|
|
4285
|
+
deprecated?: boolean | undefined;
|
|
4248
4286
|
termsOfServiceUrl?: string | undefined;
|
|
4249
4287
|
};
|
|
4250
4288
|
id: {
|
|
@@ -4533,6 +4571,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
4533
4571
|
} | undefined;
|
|
4534
4572
|
}>;
|
|
4535
4573
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
4574
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
4536
4575
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
4537
4576
|
}, "strip", z.ZodTypeAny, {
|
|
4538
4577
|
organization: {
|
|
@@ -4576,6 +4615,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
4576
4615
|
support?: string | undefined;
|
|
4577
4616
|
tags?: string[] | undefined;
|
|
4578
4617
|
marketplaceRanking?: number | undefined;
|
|
4618
|
+
deprecated?: boolean | undefined;
|
|
4579
4619
|
termsOfServiceUrl?: string | undefined;
|
|
4580
4620
|
}, {
|
|
4581
4621
|
organization: {
|
|
@@ -4619,6 +4659,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
4619
4659
|
support?: string | undefined;
|
|
4620
4660
|
tags?: string[] | undefined;
|
|
4621
4661
|
marketplaceRanking?: number | undefined;
|
|
4662
|
+
deprecated?: boolean | undefined;
|
|
4622
4663
|
termsOfServiceUrl?: string | undefined;
|
|
4623
4664
|
}>;
|
|
4624
4665
|
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>>>;
|
|
@@ -4682,6 +4723,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
4682
4723
|
support?: string | undefined;
|
|
4683
4724
|
tags?: string[] | undefined;
|
|
4684
4725
|
marketplaceRanking?: number | undefined;
|
|
4726
|
+
deprecated?: boolean | undefined;
|
|
4685
4727
|
termsOfServiceUrl?: string | undefined;
|
|
4686
4728
|
};
|
|
4687
4729
|
id: {
|
|
@@ -4753,6 +4795,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
4753
4795
|
support?: string | undefined;
|
|
4754
4796
|
tags?: string[] | undefined;
|
|
4755
4797
|
marketplaceRanking?: number | undefined;
|
|
4798
|
+
deprecated?: boolean | undefined;
|
|
4756
4799
|
termsOfServiceUrl?: string | undefined;
|
|
4757
4800
|
};
|
|
4758
4801
|
id: {
|
|
@@ -5018,6 +5061,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5018
5061
|
} | undefined;
|
|
5019
5062
|
}>;
|
|
5020
5063
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
5064
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
5021
5065
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
5022
5066
|
}, "strip", z.ZodTypeAny, {
|
|
5023
5067
|
organization: {
|
|
@@ -5061,6 +5105,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5061
5105
|
support?: string | undefined;
|
|
5062
5106
|
tags?: string[] | undefined;
|
|
5063
5107
|
marketplaceRanking?: number | undefined;
|
|
5108
|
+
deprecated?: boolean | undefined;
|
|
5064
5109
|
termsOfServiceUrl?: string | undefined;
|
|
5065
5110
|
}, {
|
|
5066
5111
|
organization: {
|
|
@@ -5104,6 +5149,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5104
5149
|
support?: string | undefined;
|
|
5105
5150
|
tags?: string[] | undefined;
|
|
5106
5151
|
marketplaceRanking?: number | undefined;
|
|
5152
|
+
deprecated?: boolean | undefined;
|
|
5107
5153
|
termsOfServiceUrl?: string | undefined;
|
|
5108
5154
|
}>;
|
|
5109
5155
|
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>>>;
|
|
@@ -5167,6 +5213,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5167
5213
|
support?: string | undefined;
|
|
5168
5214
|
tags?: string[] | undefined;
|
|
5169
5215
|
marketplaceRanking?: number | undefined;
|
|
5216
|
+
deprecated?: boolean | undefined;
|
|
5170
5217
|
termsOfServiceUrl?: string | undefined;
|
|
5171
5218
|
};
|
|
5172
5219
|
id: {
|
|
@@ -5238,6 +5285,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5238
5285
|
support?: string | undefined;
|
|
5239
5286
|
tags?: string[] | undefined;
|
|
5240
5287
|
marketplaceRanking?: number | undefined;
|
|
5288
|
+
deprecated?: boolean | undefined;
|
|
5241
5289
|
termsOfServiceUrl?: string | undefined;
|
|
5242
5290
|
};
|
|
5243
5291
|
id: {
|
|
@@ -5309,6 +5357,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5309
5357
|
support?: string | undefined;
|
|
5310
5358
|
tags?: string[] | undefined;
|
|
5311
5359
|
marketplaceRanking?: number | undefined;
|
|
5360
|
+
deprecated?: boolean | undefined;
|
|
5312
5361
|
termsOfServiceUrl?: string | undefined;
|
|
5313
5362
|
};
|
|
5314
5363
|
id: {
|
|
@@ -5383,6 +5432,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5383
5432
|
support?: string | undefined;
|
|
5384
5433
|
tags?: string[] | undefined;
|
|
5385
5434
|
marketplaceRanking?: number | undefined;
|
|
5435
|
+
deprecated?: boolean | undefined;
|
|
5386
5436
|
termsOfServiceUrl?: string | undefined;
|
|
5387
5437
|
};
|
|
5388
5438
|
id: {
|
|
@@ -5463,6 +5513,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5463
5513
|
support?: string | undefined;
|
|
5464
5514
|
tags?: string[] | undefined;
|
|
5465
5515
|
marketplaceRanking?: number | undefined;
|
|
5516
|
+
deprecated?: boolean | undefined;
|
|
5466
5517
|
termsOfServiceUrl?: string | undefined;
|
|
5467
5518
|
};
|
|
5468
5519
|
id: {
|
|
@@ -5534,6 +5585,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5534
5585
|
support?: string | undefined;
|
|
5535
5586
|
tags?: string[] | undefined;
|
|
5536
5587
|
marketplaceRanking?: number | undefined;
|
|
5588
|
+
deprecated?: boolean | undefined;
|
|
5537
5589
|
termsOfServiceUrl?: string | undefined;
|
|
5538
5590
|
};
|
|
5539
5591
|
id: {
|
|
@@ -5618,6 +5670,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5618
5670
|
support?: string | undefined;
|
|
5619
5671
|
tags?: string[] | undefined;
|
|
5620
5672
|
marketplaceRanking?: number | undefined;
|
|
5673
|
+
deprecated?: boolean | undefined;
|
|
5621
5674
|
termsOfServiceUrl?: string | undefined;
|
|
5622
5675
|
};
|
|
5623
5676
|
id: {
|
|
@@ -5693,6 +5746,7 @@ export declare const GlobalOverviewEntryReg: z.ZodPipeline<z.ZodEffects<z.ZodEff
|
|
|
5693
5746
|
support?: string | undefined;
|
|
5694
5747
|
tags?: string[] | undefined;
|
|
5695
5748
|
marketplaceRanking?: number | undefined;
|
|
5749
|
+
deprecated?: boolean | undefined;
|
|
5696
5750
|
termsOfServiceUrl?: string | undefined;
|
|
5697
5751
|
};
|
|
5698
5752
|
id: {
|
|
@@ -7143,6 +7197,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7143
7197
|
} | undefined;
|
|
7144
7198
|
}>;
|
|
7145
7199
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
7200
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
7146
7201
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
7147
7202
|
}, "strip", z.ZodTypeAny, {
|
|
7148
7203
|
organization: {
|
|
@@ -7186,6 +7241,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7186
7241
|
support?: string | undefined;
|
|
7187
7242
|
tags?: string[] | undefined;
|
|
7188
7243
|
marketplaceRanking?: number | undefined;
|
|
7244
|
+
deprecated?: boolean | undefined;
|
|
7189
7245
|
termsOfServiceUrl?: string | undefined;
|
|
7190
7246
|
}, {
|
|
7191
7247
|
organization: {
|
|
@@ -7229,6 +7285,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7229
7285
|
support?: string | undefined;
|
|
7230
7286
|
tags?: string[] | undefined;
|
|
7231
7287
|
marketplaceRanking?: number | undefined;
|
|
7288
|
+
deprecated?: boolean | undefined;
|
|
7232
7289
|
termsOfServiceUrl?: string | undefined;
|
|
7233
7290
|
}>;
|
|
7234
7291
|
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>>>;
|
|
@@ -7292,6 +7349,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7292
7349
|
support?: string | undefined;
|
|
7293
7350
|
tags?: string[] | undefined;
|
|
7294
7351
|
marketplaceRanking?: number | undefined;
|
|
7352
|
+
deprecated?: boolean | undefined;
|
|
7295
7353
|
termsOfServiceUrl?: string | undefined;
|
|
7296
7354
|
};
|
|
7297
7355
|
id: {
|
|
@@ -7363,6 +7421,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7363
7421
|
support?: string | undefined;
|
|
7364
7422
|
tags?: string[] | undefined;
|
|
7365
7423
|
marketplaceRanking?: number | undefined;
|
|
7424
|
+
deprecated?: boolean | undefined;
|
|
7366
7425
|
termsOfServiceUrl?: string | undefined;
|
|
7367
7426
|
};
|
|
7368
7427
|
id: {
|
|
@@ -7629,6 +7688,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7629
7688
|
} | undefined;
|
|
7630
7689
|
}>;
|
|
7631
7690
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
7691
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
7632
7692
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
7633
7693
|
}, "strip", z.ZodTypeAny, {
|
|
7634
7694
|
organization: {
|
|
@@ -7672,6 +7732,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7672
7732
|
support?: string | undefined;
|
|
7673
7733
|
tags?: string[] | undefined;
|
|
7674
7734
|
marketplaceRanking?: number | undefined;
|
|
7735
|
+
deprecated?: boolean | undefined;
|
|
7675
7736
|
termsOfServiceUrl?: string | undefined;
|
|
7676
7737
|
}, {
|
|
7677
7738
|
organization: {
|
|
@@ -7715,6 +7776,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7715
7776
|
support?: string | undefined;
|
|
7716
7777
|
tags?: string[] | undefined;
|
|
7717
7778
|
marketplaceRanking?: number | undefined;
|
|
7779
|
+
deprecated?: boolean | undefined;
|
|
7718
7780
|
termsOfServiceUrl?: string | undefined;
|
|
7719
7781
|
}>;
|
|
7720
7782
|
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>>>;
|
|
@@ -7778,6 +7840,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7778
7840
|
support?: string | undefined;
|
|
7779
7841
|
tags?: string[] | undefined;
|
|
7780
7842
|
marketplaceRanking?: number | undefined;
|
|
7843
|
+
deprecated?: boolean | undefined;
|
|
7781
7844
|
termsOfServiceUrl?: string | undefined;
|
|
7782
7845
|
};
|
|
7783
7846
|
id: {
|
|
@@ -7849,6 +7912,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7849
7912
|
support?: string | undefined;
|
|
7850
7913
|
tags?: string[] | undefined;
|
|
7851
7914
|
marketplaceRanking?: number | undefined;
|
|
7915
|
+
deprecated?: boolean | undefined;
|
|
7852
7916
|
termsOfServiceUrl?: string | undefined;
|
|
7853
7917
|
};
|
|
7854
7918
|
id: {
|
|
@@ -7920,6 +7984,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7920
7984
|
support?: string | undefined;
|
|
7921
7985
|
tags?: string[] | undefined;
|
|
7922
7986
|
marketplaceRanking?: number | undefined;
|
|
7987
|
+
deprecated?: boolean | undefined;
|
|
7923
7988
|
termsOfServiceUrl?: string | undefined;
|
|
7924
7989
|
};
|
|
7925
7990
|
id: {
|
|
@@ -7994,6 +8059,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
7994
8059
|
support?: string | undefined;
|
|
7995
8060
|
tags?: string[] | undefined;
|
|
7996
8061
|
marketplaceRanking?: number | undefined;
|
|
8062
|
+
deprecated?: boolean | undefined;
|
|
7997
8063
|
termsOfServiceUrl?: string | undefined;
|
|
7998
8064
|
};
|
|
7999
8065
|
id: {
|
|
@@ -8070,6 +8136,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8070
8136
|
support?: string | undefined;
|
|
8071
8137
|
tags?: string[] | undefined;
|
|
8072
8138
|
marketplaceRanking?: number | undefined;
|
|
8139
|
+
deprecated?: boolean | undefined;
|
|
8073
8140
|
termsOfServiceUrl?: string | undefined;
|
|
8074
8141
|
};
|
|
8075
8142
|
id: {
|
|
@@ -8141,6 +8208,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8141
8208
|
support?: string | undefined;
|
|
8142
8209
|
tags?: string[] | undefined;
|
|
8143
8210
|
marketplaceRanking?: number | undefined;
|
|
8211
|
+
deprecated?: boolean | undefined;
|
|
8144
8212
|
termsOfServiceUrl?: string | undefined;
|
|
8145
8213
|
};
|
|
8146
8214
|
id: {
|
|
@@ -8225,6 +8293,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8225
8293
|
support?: string | undefined;
|
|
8226
8294
|
tags?: string[] | undefined;
|
|
8227
8295
|
marketplaceRanking?: number | undefined;
|
|
8296
|
+
deprecated?: boolean | undefined;
|
|
8228
8297
|
termsOfServiceUrl?: string | undefined;
|
|
8229
8298
|
};
|
|
8230
8299
|
id: {
|
|
@@ -8304,6 +8373,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8304
8373
|
support?: string | undefined;
|
|
8305
8374
|
tags?: string[] | undefined;
|
|
8306
8375
|
marketplaceRanking?: number | undefined;
|
|
8376
|
+
deprecated?: boolean | undefined;
|
|
8307
8377
|
termsOfServiceUrl?: string | undefined;
|
|
8308
8378
|
};
|
|
8309
8379
|
id: {
|
|
@@ -8380,6 +8450,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8380
8450
|
support?: string | undefined;
|
|
8381
8451
|
tags?: string[] | undefined;
|
|
8382
8452
|
marketplaceRanking?: number | undefined;
|
|
8453
|
+
deprecated?: boolean | undefined;
|
|
8383
8454
|
termsOfServiceUrl?: string | undefined;
|
|
8384
8455
|
};
|
|
8385
8456
|
id: {
|
|
@@ -8451,6 +8522,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8451
8522
|
support?: string | undefined;
|
|
8452
8523
|
tags?: string[] | undefined;
|
|
8453
8524
|
marketplaceRanking?: number | undefined;
|
|
8525
|
+
deprecated?: boolean | undefined;
|
|
8454
8526
|
termsOfServiceUrl?: string | undefined;
|
|
8455
8527
|
};
|
|
8456
8528
|
id: {
|
|
@@ -8535,6 +8607,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8535
8607
|
support?: string | undefined;
|
|
8536
8608
|
tags?: string[] | undefined;
|
|
8537
8609
|
marketplaceRanking?: number | undefined;
|
|
8610
|
+
deprecated?: boolean | undefined;
|
|
8538
8611
|
termsOfServiceUrl?: string | undefined;
|
|
8539
8612
|
};
|
|
8540
8613
|
id: {
|
|
@@ -8614,6 +8687,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8614
8687
|
support?: string | undefined;
|
|
8615
8688
|
tags?: string[] | undefined;
|
|
8616
8689
|
marketplaceRanking?: number | undefined;
|
|
8690
|
+
deprecated?: boolean | undefined;
|
|
8617
8691
|
termsOfServiceUrl?: string | undefined;
|
|
8618
8692
|
};
|
|
8619
8693
|
id: {
|
|
@@ -8693,6 +8767,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8693
8767
|
support?: string | undefined;
|
|
8694
8768
|
tags?: string[] | undefined;
|
|
8695
8769
|
marketplaceRanking?: number | undefined;
|
|
8770
|
+
deprecated?: boolean | undefined;
|
|
8696
8771
|
termsOfServiceUrl?: string | undefined;
|
|
8697
8772
|
};
|
|
8698
8773
|
id: {
|
|
@@ -8772,6 +8847,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
8772
8847
|
support?: string | undefined;
|
|
8773
8848
|
tags?: string[] | undefined;
|
|
8774
8849
|
marketplaceRanking?: number | undefined;
|
|
8850
|
+
deprecated?: boolean | undefined;
|
|
8775
8851
|
termsOfServiceUrl?: string | undefined;
|
|
8776
8852
|
};
|
|
8777
8853
|
id: {
|
|
@@ -9060,6 +9136,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9060
9136
|
} | undefined;
|
|
9061
9137
|
}>;
|
|
9062
9138
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
9139
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
9063
9140
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
9064
9141
|
}, "strip", z.ZodTypeAny, {
|
|
9065
9142
|
organization: {
|
|
@@ -9103,6 +9180,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9103
9180
|
support?: string | undefined;
|
|
9104
9181
|
tags?: string[] | undefined;
|
|
9105
9182
|
marketplaceRanking?: number | undefined;
|
|
9183
|
+
deprecated?: boolean | undefined;
|
|
9106
9184
|
termsOfServiceUrl?: string | undefined;
|
|
9107
9185
|
}, {
|
|
9108
9186
|
organization: {
|
|
@@ -9146,6 +9224,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9146
9224
|
support?: string | undefined;
|
|
9147
9225
|
tags?: string[] | undefined;
|
|
9148
9226
|
marketplaceRanking?: number | undefined;
|
|
9227
|
+
deprecated?: boolean | undefined;
|
|
9149
9228
|
termsOfServiceUrl?: string | undefined;
|
|
9150
9229
|
}>;
|
|
9151
9230
|
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>>>;
|
|
@@ -9209,6 +9288,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9209
9288
|
support?: string | undefined;
|
|
9210
9289
|
tags?: string[] | undefined;
|
|
9211
9290
|
marketplaceRanking?: number | undefined;
|
|
9291
|
+
deprecated?: boolean | undefined;
|
|
9212
9292
|
termsOfServiceUrl?: string | undefined;
|
|
9213
9293
|
};
|
|
9214
9294
|
id: {
|
|
@@ -9280,6 +9360,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9280
9360
|
support?: string | undefined;
|
|
9281
9361
|
tags?: string[] | undefined;
|
|
9282
9362
|
marketplaceRanking?: number | undefined;
|
|
9363
|
+
deprecated?: boolean | undefined;
|
|
9283
9364
|
termsOfServiceUrl?: string | undefined;
|
|
9284
9365
|
};
|
|
9285
9366
|
id: {
|
|
@@ -9545,6 +9626,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9545
9626
|
} | undefined;
|
|
9546
9627
|
}>;
|
|
9547
9628
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
9629
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
9548
9630
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
9549
9631
|
}, "strip", z.ZodTypeAny, {
|
|
9550
9632
|
organization: {
|
|
@@ -9588,6 +9670,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9588
9670
|
support?: string | undefined;
|
|
9589
9671
|
tags?: string[] | undefined;
|
|
9590
9672
|
marketplaceRanking?: number | undefined;
|
|
9673
|
+
deprecated?: boolean | undefined;
|
|
9591
9674
|
termsOfServiceUrl?: string | undefined;
|
|
9592
9675
|
}, {
|
|
9593
9676
|
organization: {
|
|
@@ -9631,6 +9714,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9631
9714
|
support?: string | undefined;
|
|
9632
9715
|
tags?: string[] | undefined;
|
|
9633
9716
|
marketplaceRanking?: number | undefined;
|
|
9717
|
+
deprecated?: boolean | undefined;
|
|
9634
9718
|
termsOfServiceUrl?: string | undefined;
|
|
9635
9719
|
}>;
|
|
9636
9720
|
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>>>;
|
|
@@ -9694,6 +9778,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9694
9778
|
support?: string | undefined;
|
|
9695
9779
|
tags?: string[] | undefined;
|
|
9696
9780
|
marketplaceRanking?: number | undefined;
|
|
9781
|
+
deprecated?: boolean | undefined;
|
|
9697
9782
|
termsOfServiceUrl?: string | undefined;
|
|
9698
9783
|
};
|
|
9699
9784
|
id: {
|
|
@@ -9765,6 +9850,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9765
9850
|
support?: string | undefined;
|
|
9766
9851
|
tags?: string[] | undefined;
|
|
9767
9852
|
marketplaceRanking?: number | undefined;
|
|
9853
|
+
deprecated?: boolean | undefined;
|
|
9768
9854
|
termsOfServiceUrl?: string | undefined;
|
|
9769
9855
|
};
|
|
9770
9856
|
id: {
|
|
@@ -9836,6 +9922,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9836
9922
|
support?: string | undefined;
|
|
9837
9923
|
tags?: string[] | undefined;
|
|
9838
9924
|
marketplaceRanking?: number | undefined;
|
|
9925
|
+
deprecated?: boolean | undefined;
|
|
9839
9926
|
termsOfServiceUrl?: string | undefined;
|
|
9840
9927
|
};
|
|
9841
9928
|
id: {
|
|
@@ -9910,6 +9997,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9910
9997
|
support?: string | undefined;
|
|
9911
9998
|
tags?: string[] | undefined;
|
|
9912
9999
|
marketplaceRanking?: number | undefined;
|
|
10000
|
+
deprecated?: boolean | undefined;
|
|
9913
10001
|
termsOfServiceUrl?: string | undefined;
|
|
9914
10002
|
};
|
|
9915
10003
|
id: {
|
|
@@ -9990,6 +10078,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
9990
10078
|
support?: string | undefined;
|
|
9991
10079
|
tags?: string[] | undefined;
|
|
9992
10080
|
marketplaceRanking?: number | undefined;
|
|
10081
|
+
deprecated?: boolean | undefined;
|
|
9993
10082
|
termsOfServiceUrl?: string | undefined;
|
|
9994
10083
|
};
|
|
9995
10084
|
id: {
|
|
@@ -10061,6 +10150,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
10061
10150
|
support?: string | undefined;
|
|
10062
10151
|
tags?: string[] | undefined;
|
|
10063
10152
|
marketplaceRanking?: number | undefined;
|
|
10153
|
+
deprecated?: boolean | undefined;
|
|
10064
10154
|
termsOfServiceUrl?: string | undefined;
|
|
10065
10155
|
};
|
|
10066
10156
|
id: {
|
|
@@ -10145,6 +10235,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
10145
10235
|
support?: string | undefined;
|
|
10146
10236
|
tags?: string[] | undefined;
|
|
10147
10237
|
marketplaceRanking?: number | undefined;
|
|
10238
|
+
deprecated?: boolean | undefined;
|
|
10148
10239
|
termsOfServiceUrl?: string | undefined;
|
|
10149
10240
|
};
|
|
10150
10241
|
id: {
|
|
@@ -10220,6 +10311,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
10220
10311
|
support?: string | undefined;
|
|
10221
10312
|
tags?: string[] | undefined;
|
|
10222
10313
|
marketplaceRanking?: number | undefined;
|
|
10314
|
+
deprecated?: boolean | undefined;
|
|
10223
10315
|
termsOfServiceUrl?: string | undefined;
|
|
10224
10316
|
};
|
|
10225
10317
|
id: {
|
|
@@ -10303,6 +10395,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
10303
10395
|
support?: string | undefined;
|
|
10304
10396
|
tags?: string[] | undefined;
|
|
10305
10397
|
marketplaceRanking?: number | undefined;
|
|
10398
|
+
deprecated?: boolean | undefined;
|
|
10306
10399
|
termsOfServiceUrl?: string | undefined;
|
|
10307
10400
|
};
|
|
10308
10401
|
id: {
|
|
@@ -10374,6 +10467,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
10374
10467
|
support?: string | undefined;
|
|
10375
10468
|
tags?: string[] | undefined;
|
|
10376
10469
|
marketplaceRanking?: number | undefined;
|
|
10470
|
+
deprecated?: boolean | undefined;
|
|
10377
10471
|
termsOfServiceUrl?: string | undefined;
|
|
10378
10472
|
};
|
|
10379
10473
|
id: {
|
|
@@ -10457,6 +10551,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
10457
10551
|
support?: string | undefined;
|
|
10458
10552
|
tags?: string[] | undefined;
|
|
10459
10553
|
marketplaceRanking?: number | undefined;
|
|
10554
|
+
deprecated?: boolean | undefined;
|
|
10460
10555
|
termsOfServiceUrl?: string | undefined;
|
|
10461
10556
|
};
|
|
10462
10557
|
id: {
|
|
@@ -10536,6 +10631,7 @@ export declare const GlobalOverviewReg: z.ZodObject<{
|
|
|
10536
10631
|
support?: string | undefined;
|
|
10537
10632
|
tags?: string[] | undefined;
|
|
10538
10633
|
marketplaceRanking?: number | undefined;
|
|
10634
|
+
deprecated?: boolean | undefined;
|
|
10539
10635
|
termsOfServiceUrl?: string | undefined;
|
|
10540
10636
|
};
|
|
10541
10637
|
id: {
|
|
@@ -10841,6 +10937,7 @@ export declare function BlockDescriptionToExplicitBinaryBytes(reader: RelativeCo
|
|
|
10841
10937
|
} | undefined;
|
|
10842
10938
|
}>;
|
|
10843
10939
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
10940
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
10844
10941
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
10845
10942
|
}, "strip", z.ZodTypeAny, {
|
|
10846
10943
|
title: string;
|
|
@@ -10872,6 +10969,7 @@ export declare function BlockDescriptionToExplicitBinaryBytes(reader: RelativeCo
|
|
|
10872
10969
|
support?: string | undefined;
|
|
10873
10970
|
tags?: string[] | undefined;
|
|
10874
10971
|
marketplaceRanking?: number | undefined;
|
|
10972
|
+
deprecated?: boolean | undefined;
|
|
10875
10973
|
termsOfServiceUrl?: string | undefined;
|
|
10876
10974
|
}, {
|
|
10877
10975
|
title: string;
|
|
@@ -10915,6 +11013,7 @@ export declare function BlockDescriptionToExplicitBinaryBytes(reader: RelativeCo
|
|
|
10915
11013
|
support?: string | undefined;
|
|
10916
11014
|
tags?: string[] | undefined;
|
|
10917
11015
|
marketplaceRanking?: number | undefined;
|
|
11016
|
+
deprecated?: boolean | undefined;
|
|
10918
11017
|
termsOfServiceUrl?: string | undefined;
|
|
10919
11018
|
}>;
|
|
10920
11019
|
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>>>;
|
|
@@ -10971,6 +11070,7 @@ export declare function BlockDescriptionToExplicitBinaryBytes(reader: RelativeCo
|
|
|
10971
11070
|
support?: string | undefined;
|
|
10972
11071
|
tags?: string[] | undefined;
|
|
10973
11072
|
marketplaceRanking?: number | undefined;
|
|
11073
|
+
deprecated?: boolean | undefined;
|
|
10974
11074
|
termsOfServiceUrl?: string | undefined;
|
|
10975
11075
|
};
|
|
10976
11076
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -11042,6 +11142,7 @@ export declare function BlockDescriptionToExplicitBinaryBytes(reader: RelativeCo
|
|
|
11042
11142
|
support?: string | undefined;
|
|
11043
11143
|
tags?: string[] | undefined;
|
|
11044
11144
|
marketplaceRanking?: number | undefined;
|
|
11145
|
+
deprecated?: boolean | undefined;
|
|
11045
11146
|
termsOfServiceUrl?: string | undefined;
|
|
11046
11147
|
};
|
|
11047
11148
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -11364,6 +11465,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
11364
11465
|
} | undefined;
|
|
11365
11466
|
}>;
|
|
11366
11467
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
11468
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
11367
11469
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
11368
11470
|
}, "strip", z.ZodTypeAny, {
|
|
11369
11471
|
title: string;
|
|
@@ -11395,6 +11497,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
11395
11497
|
support?: string | undefined;
|
|
11396
11498
|
tags?: string[] | undefined;
|
|
11397
11499
|
marketplaceRanking?: number | undefined;
|
|
11500
|
+
deprecated?: boolean | undefined;
|
|
11398
11501
|
termsOfServiceUrl?: string | undefined;
|
|
11399
11502
|
}, {
|
|
11400
11503
|
title: string;
|
|
@@ -11438,6 +11541,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
11438
11541
|
support?: string | undefined;
|
|
11439
11542
|
tags?: string[] | undefined;
|
|
11440
11543
|
marketplaceRanking?: number | undefined;
|
|
11544
|
+
deprecated?: boolean | undefined;
|
|
11441
11545
|
termsOfServiceUrl?: string | undefined;
|
|
11442
11546
|
}>;
|
|
11443
11547
|
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>>>;
|
|
@@ -11494,6 +11598,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
11494
11598
|
support?: string | undefined;
|
|
11495
11599
|
tags?: string[] | undefined;
|
|
11496
11600
|
marketplaceRanking?: number | undefined;
|
|
11601
|
+
deprecated?: boolean | undefined;
|
|
11497
11602
|
termsOfServiceUrl?: string | undefined;
|
|
11498
11603
|
};
|
|
11499
11604
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -11565,6 +11670,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
11565
11670
|
support?: string | undefined;
|
|
11566
11671
|
tags?: string[] | undefined;
|
|
11567
11672
|
marketplaceRanking?: number | undefined;
|
|
11673
|
+
deprecated?: boolean | undefined;
|
|
11568
11674
|
termsOfServiceUrl?: string | undefined;
|
|
11569
11675
|
};
|
|
11570
11676
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -11863,6 +11969,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
11863
11969
|
} | undefined;
|
|
11864
11970
|
}>;
|
|
11865
11971
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
11972
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
11866
11973
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
11867
11974
|
}, "strip", z.ZodTypeAny, {
|
|
11868
11975
|
title: string;
|
|
@@ -11894,6 +12001,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
11894
12001
|
support?: string | undefined;
|
|
11895
12002
|
tags?: string[] | undefined;
|
|
11896
12003
|
marketplaceRanking?: number | undefined;
|
|
12004
|
+
deprecated?: boolean | undefined;
|
|
11897
12005
|
termsOfServiceUrl?: string | undefined;
|
|
11898
12006
|
}, {
|
|
11899
12007
|
title: string;
|
|
@@ -11937,6 +12045,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
11937
12045
|
support?: string | undefined;
|
|
11938
12046
|
tags?: string[] | undefined;
|
|
11939
12047
|
marketplaceRanking?: number | undefined;
|
|
12048
|
+
deprecated?: boolean | undefined;
|
|
11940
12049
|
termsOfServiceUrl?: string | undefined;
|
|
11941
12050
|
}>;
|
|
11942
12051
|
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>>>;
|
|
@@ -11993,6 +12102,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
11993
12102
|
support?: string | undefined;
|
|
11994
12103
|
tags?: string[] | undefined;
|
|
11995
12104
|
marketplaceRanking?: number | undefined;
|
|
12105
|
+
deprecated?: boolean | undefined;
|
|
11996
12106
|
termsOfServiceUrl?: string | undefined;
|
|
11997
12107
|
};
|
|
11998
12108
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -12064,6 +12174,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12064
12174
|
support?: string | undefined;
|
|
12065
12175
|
tags?: string[] | undefined;
|
|
12066
12176
|
marketplaceRanking?: number | undefined;
|
|
12177
|
+
deprecated?: boolean | undefined;
|
|
12067
12178
|
termsOfServiceUrl?: string | undefined;
|
|
12068
12179
|
};
|
|
12069
12180
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -12123,6 +12234,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12123
12234
|
support?: string | undefined;
|
|
12124
12235
|
tags?: string[] | undefined;
|
|
12125
12236
|
marketplaceRanking?: number | undefined;
|
|
12237
|
+
deprecated?: boolean | undefined;
|
|
12126
12238
|
termsOfServiceUrl?: string | undefined;
|
|
12127
12239
|
};
|
|
12128
12240
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -12197,6 +12309,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12197
12309
|
support?: string | undefined;
|
|
12198
12310
|
tags?: string[] | undefined;
|
|
12199
12311
|
marketplaceRanking?: number | undefined;
|
|
12312
|
+
deprecated?: boolean | undefined;
|
|
12200
12313
|
termsOfServiceUrl?: string | undefined;
|
|
12201
12314
|
};
|
|
12202
12315
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -12261,6 +12374,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12261
12374
|
support?: string | undefined;
|
|
12262
12375
|
tags?: string[] | undefined;
|
|
12263
12376
|
marketplaceRanking?: number | undefined;
|
|
12377
|
+
deprecated?: boolean | undefined;
|
|
12264
12378
|
termsOfServiceUrl?: string | undefined;
|
|
12265
12379
|
};
|
|
12266
12380
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -12320,6 +12434,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12320
12434
|
support?: string | undefined;
|
|
12321
12435
|
tags?: string[] | undefined;
|
|
12322
12436
|
marketplaceRanking?: number | undefined;
|
|
12437
|
+
deprecated?: boolean | undefined;
|
|
12323
12438
|
termsOfServiceUrl?: string | undefined;
|
|
12324
12439
|
};
|
|
12325
12440
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -12404,6 +12519,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12404
12519
|
support?: string | undefined;
|
|
12405
12520
|
tags?: string[] | undefined;
|
|
12406
12521
|
marketplaceRanking?: number | undefined;
|
|
12522
|
+
deprecated?: boolean | undefined;
|
|
12407
12523
|
termsOfServiceUrl?: string | undefined;
|
|
12408
12524
|
};
|
|
12409
12525
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -12483,6 +12599,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12483
12599
|
support?: string | undefined;
|
|
12484
12600
|
tags?: string[] | undefined;
|
|
12485
12601
|
marketplaceRanking?: number | undefined;
|
|
12602
|
+
deprecated?: boolean | undefined;
|
|
12486
12603
|
termsOfServiceUrl?: string | undefined;
|
|
12487
12604
|
};
|
|
12488
12605
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -12547,6 +12664,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12547
12664
|
support?: string | undefined;
|
|
12548
12665
|
tags?: string[] | undefined;
|
|
12549
12666
|
marketplaceRanking?: number | undefined;
|
|
12667
|
+
deprecated?: boolean | undefined;
|
|
12550
12668
|
termsOfServiceUrl?: string | undefined;
|
|
12551
12669
|
};
|
|
12552
12670
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -12606,6 +12724,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12606
12724
|
support?: string | undefined;
|
|
12607
12725
|
tags?: string[] | undefined;
|
|
12608
12726
|
marketplaceRanking?: number | undefined;
|
|
12727
|
+
deprecated?: boolean | undefined;
|
|
12609
12728
|
termsOfServiceUrl?: string | undefined;
|
|
12610
12729
|
};
|
|
12611
12730
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -12690,6 +12809,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12690
12809
|
support?: string | undefined;
|
|
12691
12810
|
tags?: string[] | undefined;
|
|
12692
12811
|
marketplaceRanking?: number | undefined;
|
|
12812
|
+
deprecated?: boolean | undefined;
|
|
12693
12813
|
termsOfServiceUrl?: string | undefined;
|
|
12694
12814
|
};
|
|
12695
12815
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -12769,6 +12889,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12769
12889
|
support?: string | undefined;
|
|
12770
12890
|
tags?: string[] | undefined;
|
|
12771
12891
|
marketplaceRanking?: number | undefined;
|
|
12892
|
+
deprecated?: boolean | undefined;
|
|
12772
12893
|
termsOfServiceUrl?: string | undefined;
|
|
12773
12894
|
};
|
|
12774
12895
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -12848,6 +12969,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12848
12969
|
support?: string | undefined;
|
|
12849
12970
|
tags?: string[] | undefined;
|
|
12850
12971
|
marketplaceRanking?: number | undefined;
|
|
12972
|
+
deprecated?: boolean | undefined;
|
|
12851
12973
|
termsOfServiceUrl?: string | undefined;
|
|
12852
12974
|
};
|
|
12853
12975
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -12927,6 +13049,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
12927
13049
|
support?: string | undefined;
|
|
12928
13050
|
tags?: string[] | undefined;
|
|
12929
13051
|
marketplaceRanking?: number | undefined;
|
|
13052
|
+
deprecated?: boolean | undefined;
|
|
12930
13053
|
termsOfServiceUrl?: string | undefined;
|
|
12931
13054
|
};
|
|
12932
13055
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -13247,6 +13370,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13247
13370
|
} | undefined;
|
|
13248
13371
|
}>;
|
|
13249
13372
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
13373
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
13250
13374
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
13251
13375
|
}, "strip", z.ZodTypeAny, {
|
|
13252
13376
|
title: string;
|
|
@@ -13278,6 +13402,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13278
13402
|
support?: string | undefined;
|
|
13279
13403
|
tags?: string[] | undefined;
|
|
13280
13404
|
marketplaceRanking?: number | undefined;
|
|
13405
|
+
deprecated?: boolean | undefined;
|
|
13281
13406
|
termsOfServiceUrl?: string | undefined;
|
|
13282
13407
|
}, {
|
|
13283
13408
|
title: string;
|
|
@@ -13321,6 +13446,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13321
13446
|
support?: string | undefined;
|
|
13322
13447
|
tags?: string[] | undefined;
|
|
13323
13448
|
marketplaceRanking?: number | undefined;
|
|
13449
|
+
deprecated?: boolean | undefined;
|
|
13324
13450
|
termsOfServiceUrl?: string | undefined;
|
|
13325
13451
|
}>;
|
|
13326
13452
|
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>>>;
|
|
@@ -13377,6 +13503,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13377
13503
|
support?: string | undefined;
|
|
13378
13504
|
tags?: string[] | undefined;
|
|
13379
13505
|
marketplaceRanking?: number | undefined;
|
|
13506
|
+
deprecated?: boolean | undefined;
|
|
13380
13507
|
termsOfServiceUrl?: string | undefined;
|
|
13381
13508
|
};
|
|
13382
13509
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -13448,6 +13575,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13448
13575
|
support?: string | undefined;
|
|
13449
13576
|
tags?: string[] | undefined;
|
|
13450
13577
|
marketplaceRanking?: number | undefined;
|
|
13578
|
+
deprecated?: boolean | undefined;
|
|
13451
13579
|
termsOfServiceUrl?: string | undefined;
|
|
13452
13580
|
};
|
|
13453
13581
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -13745,6 +13873,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13745
13873
|
} | undefined;
|
|
13746
13874
|
}>;
|
|
13747
13875
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
13876
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
13748
13877
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
13749
13878
|
}, "strip", z.ZodTypeAny, {
|
|
13750
13879
|
title: string;
|
|
@@ -13776,6 +13905,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13776
13905
|
support?: string | undefined;
|
|
13777
13906
|
tags?: string[] | undefined;
|
|
13778
13907
|
marketplaceRanking?: number | undefined;
|
|
13908
|
+
deprecated?: boolean | undefined;
|
|
13779
13909
|
termsOfServiceUrl?: string | undefined;
|
|
13780
13910
|
}, {
|
|
13781
13911
|
title: string;
|
|
@@ -13819,6 +13949,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13819
13949
|
support?: string | undefined;
|
|
13820
13950
|
tags?: string[] | undefined;
|
|
13821
13951
|
marketplaceRanking?: number | undefined;
|
|
13952
|
+
deprecated?: boolean | undefined;
|
|
13822
13953
|
termsOfServiceUrl?: string | undefined;
|
|
13823
13954
|
}>;
|
|
13824
13955
|
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>>>;
|
|
@@ -13875,6 +14006,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13875
14006
|
support?: string | undefined;
|
|
13876
14007
|
tags?: string[] | undefined;
|
|
13877
14008
|
marketplaceRanking?: number | undefined;
|
|
14009
|
+
deprecated?: boolean | undefined;
|
|
13878
14010
|
termsOfServiceUrl?: string | undefined;
|
|
13879
14011
|
};
|
|
13880
14012
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -13946,6 +14078,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
13946
14078
|
support?: string | undefined;
|
|
13947
14079
|
tags?: string[] | undefined;
|
|
13948
14080
|
marketplaceRanking?: number | undefined;
|
|
14081
|
+
deprecated?: boolean | undefined;
|
|
13949
14082
|
termsOfServiceUrl?: string | undefined;
|
|
13950
14083
|
};
|
|
13951
14084
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -14005,6 +14138,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14005
14138
|
support?: string | undefined;
|
|
14006
14139
|
tags?: string[] | undefined;
|
|
14007
14140
|
marketplaceRanking?: number | undefined;
|
|
14141
|
+
deprecated?: boolean | undefined;
|
|
14008
14142
|
termsOfServiceUrl?: string | undefined;
|
|
14009
14143
|
};
|
|
14010
14144
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -14079,6 +14213,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14079
14213
|
support?: string | undefined;
|
|
14080
14214
|
tags?: string[] | undefined;
|
|
14081
14215
|
marketplaceRanking?: number | undefined;
|
|
14216
|
+
deprecated?: boolean | undefined;
|
|
14082
14217
|
termsOfServiceUrl?: string | undefined;
|
|
14083
14218
|
};
|
|
14084
14219
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -14147,6 +14282,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14147
14282
|
support?: string | undefined;
|
|
14148
14283
|
tags?: string[] | undefined;
|
|
14149
14284
|
marketplaceRanking?: number | undefined;
|
|
14285
|
+
deprecated?: boolean | undefined;
|
|
14150
14286
|
termsOfServiceUrl?: string | undefined;
|
|
14151
14287
|
};
|
|
14152
14288
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -14206,6 +14342,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14206
14342
|
support?: string | undefined;
|
|
14207
14343
|
tags?: string[] | undefined;
|
|
14208
14344
|
marketplaceRanking?: number | undefined;
|
|
14345
|
+
deprecated?: boolean | undefined;
|
|
14209
14346
|
termsOfServiceUrl?: string | undefined;
|
|
14210
14347
|
};
|
|
14211
14348
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -14290,6 +14427,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14290
14427
|
support?: string | undefined;
|
|
14291
14428
|
tags?: string[] | undefined;
|
|
14292
14429
|
marketplaceRanking?: number | undefined;
|
|
14430
|
+
deprecated?: boolean | undefined;
|
|
14293
14431
|
termsOfServiceUrl?: string | undefined;
|
|
14294
14432
|
};
|
|
14295
14433
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -14365,6 +14503,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14365
14503
|
support?: string | undefined;
|
|
14366
14504
|
tags?: string[] | undefined;
|
|
14367
14505
|
marketplaceRanking?: number | undefined;
|
|
14506
|
+
deprecated?: boolean | undefined;
|
|
14368
14507
|
termsOfServiceUrl?: string | undefined;
|
|
14369
14508
|
};
|
|
14370
14509
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -14436,6 +14575,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14436
14575
|
support?: string | undefined;
|
|
14437
14576
|
tags?: string[] | undefined;
|
|
14438
14577
|
marketplaceRanking?: number | undefined;
|
|
14578
|
+
deprecated?: boolean | undefined;
|
|
14439
14579
|
termsOfServiceUrl?: string | undefined;
|
|
14440
14580
|
};
|
|
14441
14581
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -14495,6 +14635,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14495
14635
|
support?: string | undefined;
|
|
14496
14636
|
tags?: string[] | undefined;
|
|
14497
14637
|
marketplaceRanking?: number | undefined;
|
|
14638
|
+
deprecated?: boolean | undefined;
|
|
14498
14639
|
termsOfServiceUrl?: string | undefined;
|
|
14499
14640
|
};
|
|
14500
14641
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -14578,6 +14719,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14578
14719
|
support?: string | undefined;
|
|
14579
14720
|
tags?: string[] | undefined;
|
|
14580
14721
|
marketplaceRanking?: number | undefined;
|
|
14722
|
+
deprecated?: boolean | undefined;
|
|
14581
14723
|
termsOfServiceUrl?: string | undefined;
|
|
14582
14724
|
};
|
|
14583
14725
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -14657,6 +14799,7 @@ export declare function GlobalOverviewToExplicitBinaryBytes(reader: RelativeCont
|
|
|
14657
14799
|
support?: string | undefined;
|
|
14658
14800
|
tags?: string[] | undefined;
|
|
14659
14801
|
marketplaceRanking?: number | undefined;
|
|
14802
|
+
deprecated?: boolean | undefined;
|
|
14660
14803
|
termsOfServiceUrl?: string | undefined;
|
|
14661
14804
|
};
|
|
14662
14805
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -14984,6 +15127,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
14984
15127
|
} | undefined;
|
|
14985
15128
|
}>;
|
|
14986
15129
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
15130
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
14987
15131
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
14988
15132
|
}, "strip", z.ZodTypeAny, {
|
|
14989
15133
|
title: string;
|
|
@@ -15015,6 +15159,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15015
15159
|
support?: string | undefined;
|
|
15016
15160
|
tags?: string[] | undefined;
|
|
15017
15161
|
marketplaceRanking?: number | undefined;
|
|
15162
|
+
deprecated?: boolean | undefined;
|
|
15018
15163
|
termsOfServiceUrl?: string | undefined;
|
|
15019
15164
|
}, {
|
|
15020
15165
|
title: string;
|
|
@@ -15058,6 +15203,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15058
15203
|
support?: string | undefined;
|
|
15059
15204
|
tags?: string[] | undefined;
|
|
15060
15205
|
marketplaceRanking?: number | undefined;
|
|
15206
|
+
deprecated?: boolean | undefined;
|
|
15061
15207
|
termsOfServiceUrl?: string | undefined;
|
|
15062
15208
|
}>;
|
|
15063
15209
|
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>>>;
|
|
@@ -15114,6 +15260,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15114
15260
|
support?: string | undefined;
|
|
15115
15261
|
tags?: string[] | undefined;
|
|
15116
15262
|
marketplaceRanking?: number | undefined;
|
|
15263
|
+
deprecated?: boolean | undefined;
|
|
15117
15264
|
termsOfServiceUrl?: string | undefined;
|
|
15118
15265
|
};
|
|
15119
15266
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -15185,6 +15332,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15185
15332
|
support?: string | undefined;
|
|
15186
15333
|
tags?: string[] | undefined;
|
|
15187
15334
|
marketplaceRanking?: number | undefined;
|
|
15335
|
+
deprecated?: boolean | undefined;
|
|
15188
15336
|
termsOfServiceUrl?: string | undefined;
|
|
15189
15337
|
};
|
|
15190
15338
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -15483,6 +15631,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15483
15631
|
} | undefined;
|
|
15484
15632
|
}>;
|
|
15485
15633
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
15634
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
15486
15635
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
15487
15636
|
}, "strip", z.ZodTypeAny, {
|
|
15488
15637
|
title: string;
|
|
@@ -15514,6 +15663,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15514
15663
|
support?: string | undefined;
|
|
15515
15664
|
tags?: string[] | undefined;
|
|
15516
15665
|
marketplaceRanking?: number | undefined;
|
|
15666
|
+
deprecated?: boolean | undefined;
|
|
15517
15667
|
termsOfServiceUrl?: string | undefined;
|
|
15518
15668
|
}, {
|
|
15519
15669
|
title: string;
|
|
@@ -15557,6 +15707,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15557
15707
|
support?: string | undefined;
|
|
15558
15708
|
tags?: string[] | undefined;
|
|
15559
15709
|
marketplaceRanking?: number | undefined;
|
|
15710
|
+
deprecated?: boolean | undefined;
|
|
15560
15711
|
termsOfServiceUrl?: string | undefined;
|
|
15561
15712
|
}>;
|
|
15562
15713
|
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>>>;
|
|
@@ -15613,6 +15764,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15613
15764
|
support?: string | undefined;
|
|
15614
15765
|
tags?: string[] | undefined;
|
|
15615
15766
|
marketplaceRanking?: number | undefined;
|
|
15767
|
+
deprecated?: boolean | undefined;
|
|
15616
15768
|
termsOfServiceUrl?: string | undefined;
|
|
15617
15769
|
};
|
|
15618
15770
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -15684,6 +15836,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15684
15836
|
support?: string | undefined;
|
|
15685
15837
|
tags?: string[] | undefined;
|
|
15686
15838
|
marketplaceRanking?: number | undefined;
|
|
15839
|
+
deprecated?: boolean | undefined;
|
|
15687
15840
|
termsOfServiceUrl?: string | undefined;
|
|
15688
15841
|
};
|
|
15689
15842
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -15743,6 +15896,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15743
15896
|
support?: string | undefined;
|
|
15744
15897
|
tags?: string[] | undefined;
|
|
15745
15898
|
marketplaceRanking?: number | undefined;
|
|
15899
|
+
deprecated?: boolean | undefined;
|
|
15746
15900
|
termsOfServiceUrl?: string | undefined;
|
|
15747
15901
|
};
|
|
15748
15902
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -15817,6 +15971,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15817
15971
|
support?: string | undefined;
|
|
15818
15972
|
tags?: string[] | undefined;
|
|
15819
15973
|
marketplaceRanking?: number | undefined;
|
|
15974
|
+
deprecated?: boolean | undefined;
|
|
15820
15975
|
termsOfServiceUrl?: string | undefined;
|
|
15821
15976
|
};
|
|
15822
15977
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -15881,6 +16036,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15881
16036
|
support?: string | undefined;
|
|
15882
16037
|
tags?: string[] | undefined;
|
|
15883
16038
|
marketplaceRanking?: number | undefined;
|
|
16039
|
+
deprecated?: boolean | undefined;
|
|
15884
16040
|
termsOfServiceUrl?: string | undefined;
|
|
15885
16041
|
};
|
|
15886
16042
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -15940,6 +16096,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
15940
16096
|
support?: string | undefined;
|
|
15941
16097
|
tags?: string[] | undefined;
|
|
15942
16098
|
marketplaceRanking?: number | undefined;
|
|
16099
|
+
deprecated?: boolean | undefined;
|
|
15943
16100
|
termsOfServiceUrl?: string | undefined;
|
|
15944
16101
|
};
|
|
15945
16102
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -16024,6 +16181,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16024
16181
|
support?: string | undefined;
|
|
16025
16182
|
tags?: string[] | undefined;
|
|
16026
16183
|
marketplaceRanking?: number | undefined;
|
|
16184
|
+
deprecated?: boolean | undefined;
|
|
16027
16185
|
termsOfServiceUrl?: string | undefined;
|
|
16028
16186
|
};
|
|
16029
16187
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -16103,6 +16261,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16103
16261
|
support?: string | undefined;
|
|
16104
16262
|
tags?: string[] | undefined;
|
|
16105
16263
|
marketplaceRanking?: number | undefined;
|
|
16264
|
+
deprecated?: boolean | undefined;
|
|
16106
16265
|
termsOfServiceUrl?: string | undefined;
|
|
16107
16266
|
};
|
|
16108
16267
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -16167,6 +16326,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16167
16326
|
support?: string | undefined;
|
|
16168
16327
|
tags?: string[] | undefined;
|
|
16169
16328
|
marketplaceRanking?: number | undefined;
|
|
16329
|
+
deprecated?: boolean | undefined;
|
|
16170
16330
|
termsOfServiceUrl?: string | undefined;
|
|
16171
16331
|
};
|
|
16172
16332
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -16226,6 +16386,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16226
16386
|
support?: string | undefined;
|
|
16227
16387
|
tags?: string[] | undefined;
|
|
16228
16388
|
marketplaceRanking?: number | undefined;
|
|
16389
|
+
deprecated?: boolean | undefined;
|
|
16229
16390
|
termsOfServiceUrl?: string | undefined;
|
|
16230
16391
|
};
|
|
16231
16392
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -16310,6 +16471,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16310
16471
|
support?: string | undefined;
|
|
16311
16472
|
tags?: string[] | undefined;
|
|
16312
16473
|
marketplaceRanking?: number | undefined;
|
|
16474
|
+
deprecated?: boolean | undefined;
|
|
16313
16475
|
termsOfServiceUrl?: string | undefined;
|
|
16314
16476
|
};
|
|
16315
16477
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -16389,6 +16551,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16389
16551
|
support?: string | undefined;
|
|
16390
16552
|
tags?: string[] | undefined;
|
|
16391
16553
|
marketplaceRanking?: number | undefined;
|
|
16554
|
+
deprecated?: boolean | undefined;
|
|
16392
16555
|
termsOfServiceUrl?: string | undefined;
|
|
16393
16556
|
};
|
|
16394
16557
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -16468,6 +16631,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16468
16631
|
support?: string | undefined;
|
|
16469
16632
|
tags?: string[] | undefined;
|
|
16470
16633
|
marketplaceRanking?: number | undefined;
|
|
16634
|
+
deprecated?: boolean | undefined;
|
|
16471
16635
|
termsOfServiceUrl?: string | undefined;
|
|
16472
16636
|
};
|
|
16473
16637
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -16547,6 +16711,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16547
16711
|
support?: string | undefined;
|
|
16548
16712
|
tags?: string[] | undefined;
|
|
16549
16713
|
marketplaceRanking?: number | undefined;
|
|
16714
|
+
deprecated?: boolean | undefined;
|
|
16550
16715
|
termsOfServiceUrl?: string | undefined;
|
|
16551
16716
|
};
|
|
16552
16717
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -16867,6 +17032,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16867
17032
|
} | undefined;
|
|
16868
17033
|
}>;
|
|
16869
17034
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
17035
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
16870
17036
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
16871
17037
|
}, "strip", z.ZodTypeAny, {
|
|
16872
17038
|
title: string;
|
|
@@ -16898,6 +17064,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16898
17064
|
support?: string | undefined;
|
|
16899
17065
|
tags?: string[] | undefined;
|
|
16900
17066
|
marketplaceRanking?: number | undefined;
|
|
17067
|
+
deprecated?: boolean | undefined;
|
|
16901
17068
|
termsOfServiceUrl?: string | undefined;
|
|
16902
17069
|
}, {
|
|
16903
17070
|
title: string;
|
|
@@ -16941,6 +17108,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16941
17108
|
support?: string | undefined;
|
|
16942
17109
|
tags?: string[] | undefined;
|
|
16943
17110
|
marketplaceRanking?: number | undefined;
|
|
17111
|
+
deprecated?: boolean | undefined;
|
|
16944
17112
|
termsOfServiceUrl?: string | undefined;
|
|
16945
17113
|
}>;
|
|
16946
17114
|
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>>>;
|
|
@@ -16997,6 +17165,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
16997
17165
|
support?: string | undefined;
|
|
16998
17166
|
tags?: string[] | undefined;
|
|
16999
17167
|
marketplaceRanking?: number | undefined;
|
|
17168
|
+
deprecated?: boolean | undefined;
|
|
17000
17169
|
termsOfServiceUrl?: string | undefined;
|
|
17001
17170
|
};
|
|
17002
17171
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -17068,6 +17237,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17068
17237
|
support?: string | undefined;
|
|
17069
17238
|
tags?: string[] | undefined;
|
|
17070
17239
|
marketplaceRanking?: number | undefined;
|
|
17240
|
+
deprecated?: boolean | undefined;
|
|
17071
17241
|
termsOfServiceUrl?: string | undefined;
|
|
17072
17242
|
};
|
|
17073
17243
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -17365,6 +17535,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17365
17535
|
} | undefined;
|
|
17366
17536
|
}>;
|
|
17367
17537
|
marketplaceRanking: z.ZodOptional<z.ZodNumber>;
|
|
17538
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
17368
17539
|
termsOfServiceUrl: z.ZodOptional<z.ZodString>;
|
|
17369
17540
|
}, "strip", z.ZodTypeAny, {
|
|
17370
17541
|
title: string;
|
|
@@ -17396,6 +17567,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17396
17567
|
support?: string | undefined;
|
|
17397
17568
|
tags?: string[] | undefined;
|
|
17398
17569
|
marketplaceRanking?: number | undefined;
|
|
17570
|
+
deprecated?: boolean | undefined;
|
|
17399
17571
|
termsOfServiceUrl?: string | undefined;
|
|
17400
17572
|
}, {
|
|
17401
17573
|
title: string;
|
|
@@ -17439,6 +17611,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17439
17611
|
support?: string | undefined;
|
|
17440
17612
|
tags?: string[] | undefined;
|
|
17441
17613
|
marketplaceRanking?: number | undefined;
|
|
17614
|
+
deprecated?: boolean | undefined;
|
|
17442
17615
|
termsOfServiceUrl?: string | undefined;
|
|
17443
17616
|
}>;
|
|
17444
17617
|
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>>>;
|
|
@@ -17495,6 +17668,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17495
17668
|
support?: string | undefined;
|
|
17496
17669
|
tags?: string[] | undefined;
|
|
17497
17670
|
marketplaceRanking?: number | undefined;
|
|
17671
|
+
deprecated?: boolean | undefined;
|
|
17498
17672
|
termsOfServiceUrl?: string | undefined;
|
|
17499
17673
|
};
|
|
17500
17674
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -17566,6 +17740,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17566
17740
|
support?: string | undefined;
|
|
17567
17741
|
tags?: string[] | undefined;
|
|
17568
17742
|
marketplaceRanking?: number | undefined;
|
|
17743
|
+
deprecated?: boolean | undefined;
|
|
17569
17744
|
termsOfServiceUrl?: string | undefined;
|
|
17570
17745
|
};
|
|
17571
17746
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -17625,6 +17800,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17625
17800
|
support?: string | undefined;
|
|
17626
17801
|
tags?: string[] | undefined;
|
|
17627
17802
|
marketplaceRanking?: number | undefined;
|
|
17803
|
+
deprecated?: boolean | undefined;
|
|
17628
17804
|
termsOfServiceUrl?: string | undefined;
|
|
17629
17805
|
};
|
|
17630
17806
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -17699,6 +17875,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17699
17875
|
support?: string | undefined;
|
|
17700
17876
|
tags?: string[] | undefined;
|
|
17701
17877
|
marketplaceRanking?: number | undefined;
|
|
17878
|
+
deprecated?: boolean | undefined;
|
|
17702
17879
|
termsOfServiceUrl?: string | undefined;
|
|
17703
17880
|
};
|
|
17704
17881
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -17767,6 +17944,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17767
17944
|
support?: string | undefined;
|
|
17768
17945
|
tags?: string[] | undefined;
|
|
17769
17946
|
marketplaceRanking?: number | undefined;
|
|
17947
|
+
deprecated?: boolean | undefined;
|
|
17770
17948
|
termsOfServiceUrl?: string | undefined;
|
|
17771
17949
|
};
|
|
17772
17950
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -17826,6 +18004,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17826
18004
|
support?: string | undefined;
|
|
17827
18005
|
tags?: string[] | undefined;
|
|
17828
18006
|
marketplaceRanking?: number | undefined;
|
|
18007
|
+
deprecated?: boolean | undefined;
|
|
17829
18008
|
termsOfServiceUrl?: string | undefined;
|
|
17830
18009
|
};
|
|
17831
18010
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -17910,6 +18089,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17910
18089
|
support?: string | undefined;
|
|
17911
18090
|
tags?: string[] | undefined;
|
|
17912
18091
|
marketplaceRanking?: number | undefined;
|
|
18092
|
+
deprecated?: boolean | undefined;
|
|
17913
18093
|
termsOfServiceUrl?: string | undefined;
|
|
17914
18094
|
};
|
|
17915
18095
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -17985,6 +18165,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
17985
18165
|
support?: string | undefined;
|
|
17986
18166
|
tags?: string[] | undefined;
|
|
17987
18167
|
marketplaceRanking?: number | undefined;
|
|
18168
|
+
deprecated?: boolean | undefined;
|
|
17988
18169
|
termsOfServiceUrl?: string | undefined;
|
|
17989
18170
|
};
|
|
17990
18171
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -18056,6 +18237,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
18056
18237
|
support?: string | undefined;
|
|
18057
18238
|
tags?: string[] | undefined;
|
|
18058
18239
|
marketplaceRanking?: number | undefined;
|
|
18240
|
+
deprecated?: boolean | undefined;
|
|
18059
18241
|
termsOfServiceUrl?: string | undefined;
|
|
18060
18242
|
};
|
|
18061
18243
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -18115,6 +18297,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
18115
18297
|
support?: string | undefined;
|
|
18116
18298
|
tags?: string[] | undefined;
|
|
18117
18299
|
marketplaceRanking?: number | undefined;
|
|
18300
|
+
deprecated?: boolean | undefined;
|
|
18118
18301
|
termsOfServiceUrl?: string | undefined;
|
|
18119
18302
|
};
|
|
18120
18303
|
featureFlags?: import('@milaboratories/pl-model-common').BlockCodeKnownFeatureFlags | undefined;
|
|
@@ -18198,6 +18381,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
18198
18381
|
support?: string | undefined;
|
|
18199
18382
|
tags?: string[] | undefined;
|
|
18200
18383
|
marketplaceRanking?: number | undefined;
|
|
18384
|
+
deprecated?: boolean | undefined;
|
|
18201
18385
|
termsOfServiceUrl?: string | undefined;
|
|
18202
18386
|
};
|
|
18203
18387
|
featureFlags?: Record<string, number | boolean> | undefined;
|
|
@@ -18277,6 +18461,7 @@ export declare function GlobalOverviewToExplicitBinaryBase64(reader: RelativeCon
|
|
|
18277
18461
|
support?: string | undefined;
|
|
18278
18462
|
tags?: string[] | undefined;
|
|
18279
18463
|
marketplaceRanking?: number | undefined;
|
|
18464
|
+
deprecated?: boolean | undefined;
|
|
18280
18465
|
termsOfServiceUrl?: string | undefined;
|
|
18281
18466
|
};
|
|
18282
18467
|
featureFlags?: Record<string, number | boolean> | undefined;
|