@mintlify/validation 0.1.675 → 0.1.677

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.
@@ -50,10 +50,13 @@ export declare const apiSchema: z.ZodObject<{
50
50
  maintainOrder: z.ZodOptional<z.ZodBoolean>;
51
51
  paramFields: z.ZodOptional<z.ZodObject<{
52
52
  expanded: z.ZodOptional<z.ZodEnum<["all", "topLevel", "topLevelOneOfs", "none"]>>;
53
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
53
54
  }, "strip", z.ZodTypeAny, {
54
55
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
56
+ post?: string[] | undefined;
55
57
  }, {
56
58
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
59
+ post?: string[] | undefined;
57
60
  }>>;
58
61
  }, "strict", z.ZodTypeAny, {
59
62
  baseUrl?: string | string[] | undefined;
@@ -75,6 +78,7 @@ export declare const apiSchema: z.ZodObject<{
75
78
  maintainOrder?: boolean | undefined;
76
79
  paramFields?: {
77
80
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
81
+ post?: string[] | undefined;
78
82
  } | undefined;
79
83
  }, {
80
84
  baseUrl?: string | string[] | undefined;
@@ -96,5 +100,6 @@ export declare const apiSchema: z.ZodObject<{
96
100
  maintainOrder?: boolean | undefined;
97
101
  paramFields?: {
98
102
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
103
+ post?: string[] | undefined;
99
104
  } | undefined;
100
105
  }>;
@@ -35,6 +35,7 @@ export const apiSchema = z
35
35
  paramFields: z
36
36
  .object({
37
37
  expanded: z.enum(apiParamFieldOptions).optional(),
38
+ post: z.array(z.string()).optional(),
38
39
  })
39
40
  .optional(),
40
41
  })
@@ -85,10 +85,13 @@ export declare const mintConfigSchema: z.ZodObject<{
85
85
  maintainOrder: z.ZodOptional<z.ZodBoolean>;
86
86
  paramFields: z.ZodOptional<z.ZodObject<{
87
87
  expanded: z.ZodOptional<z.ZodEnum<["all", "topLevel", "topLevelOneOfs", "none"]>>;
88
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
88
89
  }, "strip", z.ZodTypeAny, {
89
90
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
91
+ post?: string[] | undefined;
90
92
  }, {
91
93
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
94
+ post?: string[] | undefined;
92
95
  }>>;
93
96
  }, "strict", z.ZodTypeAny, {
94
97
  baseUrl?: string | string[] | undefined;
@@ -110,6 +113,7 @@ export declare const mintConfigSchema: z.ZodObject<{
110
113
  maintainOrder?: boolean | undefined;
111
114
  paramFields?: {
112
115
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
116
+ post?: string[] | undefined;
113
117
  } | undefined;
114
118
  }, {
115
119
  baseUrl?: string | string[] | undefined;
@@ -131,6 +135,7 @@ export declare const mintConfigSchema: z.ZodObject<{
131
135
  maintainOrder?: boolean | undefined;
132
136
  paramFields?: {
133
137
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
138
+ post?: string[] | undefined;
134
139
  } | undefined;
135
140
  }>>;
136
141
  modeToggle: z.ZodOptional<z.ZodObject<{
@@ -961,6 +966,7 @@ export declare const mintConfigSchema: z.ZodObject<{
961
966
  maintainOrder?: boolean | undefined;
962
967
  paramFields?: {
963
968
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
969
+ post?: string[] | undefined;
964
970
  } | undefined;
965
971
  } | undefined;
966
972
  modeToggle?: {
@@ -1207,6 +1213,7 @@ export declare const mintConfigSchema: z.ZodObject<{
1207
1213
  maintainOrder?: boolean | undefined;
1208
1214
  paramFields?: {
1209
1215
  expanded?: "all" | "topLevel" | "topLevelOneOfs" | "none" | undefined;
1216
+ post?: string[] | undefined;
1210
1217
  } | undefined;
1211
1218
  } | undefined;
1212
1219
  modeToggle?: {
@@ -66,10 +66,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
66
66
  }>]>>;
67
67
  params: z.ZodOptional<z.ZodObject<{
68
68
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
69
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
69
70
  }, "strip", z.ZodTypeAny, {
70
71
  expanded?: "all" | "closed" | undefined;
72
+ post?: string[] | undefined;
71
73
  }, {
72
74
  expanded?: "all" | "closed" | undefined;
75
+ post?: string[] | undefined;
73
76
  }>>;
74
77
  playground: z.ZodOptional<z.ZodObject<{
75
78
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -129,6 +132,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
129
132
  }, "strip", z.ZodTypeAny, {
130
133
  params?: {
131
134
  expanded?: "all" | "closed" | undefined;
135
+ post?: string[] | undefined;
132
136
  } | undefined;
133
137
  url?: "full" | undefined;
134
138
  openapi?: string | string[] | {
@@ -160,6 +164,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
160
164
  }, {
161
165
  params?: {
162
166
  expanded?: "all" | "closed" | undefined;
167
+ post?: string[] | undefined;
163
168
  } | undefined;
164
169
  url?: "full" | undefined;
165
170
  openapi?: string | string[] | {
@@ -1668,6 +1673,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1668
1673
  api?: {
1669
1674
  params?: {
1670
1675
  expanded?: "all" | "closed" | undefined;
1676
+ post?: string[] | undefined;
1671
1677
  } | undefined;
1672
1678
  url?: "full" | undefined;
1673
1679
  openapi?: string | string[] | {
@@ -2031,6 +2037,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2031
2037
  api?: {
2032
2038
  params?: {
2033
2039
  expanded?: "all" | "closed" | undefined;
2040
+ post?: string[] | undefined;
2034
2041
  } | undefined;
2035
2042
  url?: "full" | undefined;
2036
2043
  openapi?: string | string[] | {
@@ -2344,10 +2351,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2344
2351
  }>]>>;
2345
2352
  params: z.ZodOptional<z.ZodObject<{
2346
2353
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
2354
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2347
2355
  }, "strip", z.ZodTypeAny, {
2348
2356
  expanded?: "all" | "closed" | undefined;
2357
+ post?: string[] | undefined;
2349
2358
  }, {
2350
2359
  expanded?: "all" | "closed" | undefined;
2360
+ post?: string[] | undefined;
2351
2361
  }>>;
2352
2362
  playground: z.ZodOptional<z.ZodObject<{
2353
2363
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -2407,6 +2417,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2407
2417
  }, "strip", z.ZodTypeAny, {
2408
2418
  params?: {
2409
2419
  expanded?: "all" | "closed" | undefined;
2420
+ post?: string[] | undefined;
2410
2421
  } | undefined;
2411
2422
  url?: "full" | undefined;
2412
2423
  openapi?: string | string[] | {
@@ -2438,6 +2449,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2438
2449
  }, {
2439
2450
  params?: {
2440
2451
  expanded?: "all" | "closed" | undefined;
2452
+ post?: string[] | undefined;
2441
2453
  } | undefined;
2442
2454
  url?: "full" | undefined;
2443
2455
  openapi?: string | string[] | {
@@ -3946,6 +3958,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3946
3958
  api?: {
3947
3959
  params?: {
3948
3960
  expanded?: "all" | "closed" | undefined;
3961
+ post?: string[] | undefined;
3949
3962
  } | undefined;
3950
3963
  url?: "full" | undefined;
3951
3964
  openapi?: string | string[] | {
@@ -4309,6 +4322,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4309
4322
  api?: {
4310
4323
  params?: {
4311
4324
  expanded?: "all" | "closed" | undefined;
4325
+ post?: string[] | undefined;
4312
4326
  } | undefined;
4313
4327
  url?: "full" | undefined;
4314
4328
  openapi?: string | string[] | {
@@ -4622,10 +4636,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4622
4636
  }>]>>;
4623
4637
  params: z.ZodOptional<z.ZodObject<{
4624
4638
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
4639
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4625
4640
  }, "strip", z.ZodTypeAny, {
4626
4641
  expanded?: "all" | "closed" | undefined;
4642
+ post?: string[] | undefined;
4627
4643
  }, {
4628
4644
  expanded?: "all" | "closed" | undefined;
4645
+ post?: string[] | undefined;
4629
4646
  }>>;
4630
4647
  playground: z.ZodOptional<z.ZodObject<{
4631
4648
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -4685,6 +4702,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4685
4702
  }, "strip", z.ZodTypeAny, {
4686
4703
  params?: {
4687
4704
  expanded?: "all" | "closed" | undefined;
4705
+ post?: string[] | undefined;
4688
4706
  } | undefined;
4689
4707
  url?: "full" | undefined;
4690
4708
  openapi?: string | string[] | {
@@ -4716,6 +4734,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4716
4734
  }, {
4717
4735
  params?: {
4718
4736
  expanded?: "all" | "closed" | undefined;
4737
+ post?: string[] | undefined;
4719
4738
  } | undefined;
4720
4739
  url?: "full" | undefined;
4721
4740
  openapi?: string | string[] | {
@@ -6224,6 +6243,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6224
6243
  api?: {
6225
6244
  params?: {
6226
6245
  expanded?: "all" | "closed" | undefined;
6246
+ post?: string[] | undefined;
6227
6247
  } | undefined;
6228
6248
  url?: "full" | undefined;
6229
6249
  openapi?: string | string[] | {
@@ -6587,6 +6607,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6587
6607
  api?: {
6588
6608
  params?: {
6589
6609
  expanded?: "all" | "closed" | undefined;
6610
+ post?: string[] | undefined;
6590
6611
  } | undefined;
6591
6612
  url?: "full" | undefined;
6592
6613
  openapi?: string | string[] | {
@@ -6900,10 +6921,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6900
6921
  }>]>>;
6901
6922
  params: z.ZodOptional<z.ZodObject<{
6902
6923
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
6924
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6903
6925
  }, "strip", z.ZodTypeAny, {
6904
6926
  expanded?: "all" | "closed" | undefined;
6927
+ post?: string[] | undefined;
6905
6928
  }, {
6906
6929
  expanded?: "all" | "closed" | undefined;
6930
+ post?: string[] | undefined;
6907
6931
  }>>;
6908
6932
  playground: z.ZodOptional<z.ZodObject<{
6909
6933
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -6963,6 +6987,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6963
6987
  }, "strip", z.ZodTypeAny, {
6964
6988
  params?: {
6965
6989
  expanded?: "all" | "closed" | undefined;
6990
+ post?: string[] | undefined;
6966
6991
  } | undefined;
6967
6992
  url?: "full" | undefined;
6968
6993
  openapi?: string | string[] | {
@@ -6994,6 +7019,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6994
7019
  }, {
6995
7020
  params?: {
6996
7021
  expanded?: "all" | "closed" | undefined;
7022
+ post?: string[] | undefined;
6997
7023
  } | undefined;
6998
7024
  url?: "full" | undefined;
6999
7025
  openapi?: string | string[] | {
@@ -8502,6 +8528,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8502
8528
  api?: {
8503
8529
  params?: {
8504
8530
  expanded?: "all" | "closed" | undefined;
8531
+ post?: string[] | undefined;
8505
8532
  } | undefined;
8506
8533
  url?: "full" | undefined;
8507
8534
  openapi?: string | string[] | {
@@ -8865,6 +8892,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8865
8892
  api?: {
8866
8893
  params?: {
8867
8894
  expanded?: "all" | "closed" | undefined;
8895
+ post?: string[] | undefined;
8868
8896
  } | undefined;
8869
8897
  url?: "full" | undefined;
8870
8898
  openapi?: string | string[] | {
@@ -9178,10 +9206,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9178
9206
  }>]>>;
9179
9207
  params: z.ZodOptional<z.ZodObject<{
9180
9208
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
9209
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9181
9210
  }, "strip", z.ZodTypeAny, {
9182
9211
  expanded?: "all" | "closed" | undefined;
9212
+ post?: string[] | undefined;
9183
9213
  }, {
9184
9214
  expanded?: "all" | "closed" | undefined;
9215
+ post?: string[] | undefined;
9185
9216
  }>>;
9186
9217
  playground: z.ZodOptional<z.ZodObject<{
9187
9218
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -9241,6 +9272,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9241
9272
  }, "strip", z.ZodTypeAny, {
9242
9273
  params?: {
9243
9274
  expanded?: "all" | "closed" | undefined;
9275
+ post?: string[] | undefined;
9244
9276
  } | undefined;
9245
9277
  url?: "full" | undefined;
9246
9278
  openapi?: string | string[] | {
@@ -9272,6 +9304,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9272
9304
  }, {
9273
9305
  params?: {
9274
9306
  expanded?: "all" | "closed" | undefined;
9307
+ post?: string[] | undefined;
9275
9308
  } | undefined;
9276
9309
  url?: "full" | undefined;
9277
9310
  openapi?: string | string[] | {
@@ -10780,6 +10813,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10780
10813
  api?: {
10781
10814
  params?: {
10782
10815
  expanded?: "all" | "closed" | undefined;
10816
+ post?: string[] | undefined;
10783
10817
  } | undefined;
10784
10818
  url?: "full" | undefined;
10785
10819
  openapi?: string | string[] | {
@@ -11143,6 +11177,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11143
11177
  api?: {
11144
11178
  params?: {
11145
11179
  expanded?: "all" | "closed" | undefined;
11180
+ post?: string[] | undefined;
11146
11181
  } | undefined;
11147
11182
  url?: "full" | undefined;
11148
11183
  openapi?: string | string[] | {
@@ -11456,10 +11491,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11456
11491
  }>]>>;
11457
11492
  params: z.ZodOptional<z.ZodObject<{
11458
11493
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
11494
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11459
11495
  }, "strip", z.ZodTypeAny, {
11460
11496
  expanded?: "all" | "closed" | undefined;
11497
+ post?: string[] | undefined;
11461
11498
  }, {
11462
11499
  expanded?: "all" | "closed" | undefined;
11500
+ post?: string[] | undefined;
11463
11501
  }>>;
11464
11502
  playground: z.ZodOptional<z.ZodObject<{
11465
11503
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -11519,6 +11557,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11519
11557
  }, "strip", z.ZodTypeAny, {
11520
11558
  params?: {
11521
11559
  expanded?: "all" | "closed" | undefined;
11560
+ post?: string[] | undefined;
11522
11561
  } | undefined;
11523
11562
  url?: "full" | undefined;
11524
11563
  openapi?: string | string[] | {
@@ -11550,6 +11589,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11550
11589
  }, {
11551
11590
  params?: {
11552
11591
  expanded?: "all" | "closed" | undefined;
11592
+ post?: string[] | undefined;
11553
11593
  } | undefined;
11554
11594
  url?: "full" | undefined;
11555
11595
  openapi?: string | string[] | {
@@ -13058,6 +13098,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
13058
13098
  api?: {
13059
13099
  params?: {
13060
13100
  expanded?: "all" | "closed" | undefined;
13101
+ post?: string[] | undefined;
13061
13102
  } | undefined;
13062
13103
  url?: "full" | undefined;
13063
13104
  openapi?: string | string[] | {
@@ -13421,6 +13462,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
13421
13462
  api?: {
13422
13463
  params?: {
13423
13464
  expanded?: "all" | "closed" | undefined;
13465
+ post?: string[] | undefined;
13424
13466
  } | undefined;
13425
13467
  url?: "full" | undefined;
13426
13468
  openapi?: string | string[] | {
@@ -13734,10 +13776,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
13734
13776
  }>]>>;
13735
13777
  params: z.ZodOptional<z.ZodObject<{
13736
13778
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
13779
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13737
13780
  }, "strip", z.ZodTypeAny, {
13738
13781
  expanded?: "all" | "closed" | undefined;
13782
+ post?: string[] | undefined;
13739
13783
  }, {
13740
13784
  expanded?: "all" | "closed" | undefined;
13785
+ post?: string[] | undefined;
13741
13786
  }>>;
13742
13787
  playground: z.ZodOptional<z.ZodObject<{
13743
13788
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -13797,6 +13842,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
13797
13842
  }, "strip", z.ZodTypeAny, {
13798
13843
  params?: {
13799
13844
  expanded?: "all" | "closed" | undefined;
13845
+ post?: string[] | undefined;
13800
13846
  } | undefined;
13801
13847
  url?: "full" | undefined;
13802
13848
  openapi?: string | string[] | {
@@ -13828,6 +13874,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
13828
13874
  }, {
13829
13875
  params?: {
13830
13876
  expanded?: "all" | "closed" | undefined;
13877
+ post?: string[] | undefined;
13831
13878
  } | undefined;
13832
13879
  url?: "full" | undefined;
13833
13880
  openapi?: string | string[] | {
@@ -15336,6 +15383,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
15336
15383
  api?: {
15337
15384
  params?: {
15338
15385
  expanded?: "all" | "closed" | undefined;
15386
+ post?: string[] | undefined;
15339
15387
  } | undefined;
15340
15388
  url?: "full" | undefined;
15341
15389
  openapi?: string | string[] | {
@@ -15699,6 +15747,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
15699
15747
  api?: {
15700
15748
  params?: {
15701
15749
  expanded?: "all" | "closed" | undefined;
15750
+ post?: string[] | undefined;
15702
15751
  } | undefined;
15703
15752
  url?: "full" | undefined;
15704
15753
  openapi?: string | string[] | {
@@ -16012,10 +16061,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
16012
16061
  }>]>>;
16013
16062
  params: z.ZodOptional<z.ZodObject<{
16014
16063
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
16064
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16015
16065
  }, "strip", z.ZodTypeAny, {
16016
16066
  expanded?: "all" | "closed" | undefined;
16067
+ post?: string[] | undefined;
16017
16068
  }, {
16018
16069
  expanded?: "all" | "closed" | undefined;
16070
+ post?: string[] | undefined;
16019
16071
  }>>;
16020
16072
  playground: z.ZodOptional<z.ZodObject<{
16021
16073
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -16075,6 +16127,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
16075
16127
  }, "strip", z.ZodTypeAny, {
16076
16128
  params?: {
16077
16129
  expanded?: "all" | "closed" | undefined;
16130
+ post?: string[] | undefined;
16078
16131
  } | undefined;
16079
16132
  url?: "full" | undefined;
16080
16133
  openapi?: string | string[] | {
@@ -16106,6 +16159,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
16106
16159
  }, {
16107
16160
  params?: {
16108
16161
  expanded?: "all" | "closed" | undefined;
16162
+ post?: string[] | undefined;
16109
16163
  } | undefined;
16110
16164
  url?: "full" | undefined;
16111
16165
  openapi?: string | string[] | {
@@ -17614,6 +17668,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
17614
17668
  api?: {
17615
17669
  params?: {
17616
17670
  expanded?: "all" | "closed" | undefined;
17671
+ post?: string[] | undefined;
17617
17672
  } | undefined;
17618
17673
  url?: "full" | undefined;
17619
17674
  openapi?: string | string[] | {
@@ -17977,6 +18032,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
17977
18032
  api?: {
17978
18033
  params?: {
17979
18034
  expanded?: "all" | "closed" | undefined;
18035
+ post?: string[] | undefined;
17980
18036
  } | undefined;
17981
18037
  url?: "full" | undefined;
17982
18038
  openapi?: string | string[] | {
@@ -18290,10 +18346,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
18290
18346
  }>]>>;
18291
18347
  params: z.ZodOptional<z.ZodObject<{
18292
18348
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
18349
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18293
18350
  }, "strip", z.ZodTypeAny, {
18294
18351
  expanded?: "all" | "closed" | undefined;
18352
+ post?: string[] | undefined;
18295
18353
  }, {
18296
18354
  expanded?: "all" | "closed" | undefined;
18355
+ post?: string[] | undefined;
18297
18356
  }>>;
18298
18357
  playground: z.ZodOptional<z.ZodObject<{
18299
18358
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -18353,6 +18412,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
18353
18412
  }, "strip", z.ZodTypeAny, {
18354
18413
  params?: {
18355
18414
  expanded?: "all" | "closed" | undefined;
18415
+ post?: string[] | undefined;
18356
18416
  } | undefined;
18357
18417
  url?: "full" | undefined;
18358
18418
  openapi?: string | string[] | {
@@ -18384,6 +18444,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
18384
18444
  }, {
18385
18445
  params?: {
18386
18446
  expanded?: "all" | "closed" | undefined;
18447
+ post?: string[] | undefined;
18387
18448
  } | undefined;
18388
18449
  url?: "full" | undefined;
18389
18450
  openapi?: string | string[] | {
@@ -19892,6 +19953,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
19892
19953
  api?: {
19893
19954
  params?: {
19894
19955
  expanded?: "all" | "closed" | undefined;
19956
+ post?: string[] | undefined;
19895
19957
  } | undefined;
19896
19958
  url?: "full" | undefined;
19897
19959
  openapi?: string | string[] | {
@@ -20255,6 +20317,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
20255
20317
  api?: {
20256
20318
  params?: {
20257
20319
  expanded?: "all" | "closed" | undefined;
20320
+ post?: string[] | undefined;
20258
20321
  } | undefined;
20259
20322
  url?: "full" | undefined;
20260
20323
  openapi?: string | string[] | {
@@ -20569,10 +20632,13 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
20569
20632
  }>]>>;
20570
20633
  params: z.ZodOptional<z.ZodObject<{
20571
20634
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
20635
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
20572
20636
  }, "strip", z.ZodTypeAny, {
20573
20637
  expanded?: "all" | "closed" | undefined;
20638
+ post?: string[] | undefined;
20574
20639
  }, {
20575
20640
  expanded?: "all" | "closed" | undefined;
20641
+ post?: string[] | undefined;
20576
20642
  }>>;
20577
20643
  playground: z.ZodOptional<z.ZodObject<{
20578
20644
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -20632,6 +20698,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
20632
20698
  }, "strip", z.ZodTypeAny, {
20633
20699
  params?: {
20634
20700
  expanded?: "all" | "closed" | undefined;
20701
+ post?: string[] | undefined;
20635
20702
  } | undefined;
20636
20703
  url?: "full" | undefined;
20637
20704
  openapi?: string | string[] | {
@@ -20663,6 +20730,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
20663
20730
  }, {
20664
20731
  params?: {
20665
20732
  expanded?: "all" | "closed" | undefined;
20733
+ post?: string[] | undefined;
20666
20734
  } | undefined;
20667
20735
  url?: "full" | undefined;
20668
20736
  openapi?: string | string[] | {
@@ -22171,6 +22239,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
22171
22239
  api?: {
22172
22240
  params?: {
22173
22241
  expanded?: "all" | "closed" | undefined;
22242
+ post?: string[] | undefined;
22174
22243
  } | undefined;
22175
22244
  url?: "full" | undefined;
22176
22245
  openapi?: string | string[] | {
@@ -22534,6 +22603,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
22534
22603
  api?: {
22535
22604
  params?: {
22536
22605
  expanded?: "all" | "closed" | undefined;
22606
+ post?: string[] | undefined;
22537
22607
  } | undefined;
22538
22608
  url?: "full" | undefined;
22539
22609
  openapi?: string | string[] | {
@@ -22,10 +22,13 @@ export declare const apiSchema: z.ZodObject<{
22
22
  }>]>>;
23
23
  params: z.ZodOptional<z.ZodObject<{
24
24
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
25
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25
26
  }, "strip", z.ZodTypeAny, {
26
27
  expanded?: "all" | "closed" | undefined;
28
+ post?: string[] | undefined;
27
29
  }, {
28
30
  expanded?: "all" | "closed" | undefined;
31
+ post?: string[] | undefined;
29
32
  }>>;
30
33
  playground: z.ZodOptional<z.ZodObject<{
31
34
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -85,6 +88,7 @@ export declare const apiSchema: z.ZodObject<{
85
88
  }, "strip", z.ZodTypeAny, {
86
89
  params?: {
87
90
  expanded?: "all" | "closed" | undefined;
91
+ post?: string[] | undefined;
88
92
  } | undefined;
89
93
  url?: "full" | undefined;
90
94
  openapi?: string | string[] | {
@@ -116,6 +120,7 @@ export declare const apiSchema: z.ZodObject<{
116
120
  }, {
117
121
  params?: {
118
122
  expanded?: "all" | "closed" | undefined;
123
+ post?: string[] | undefined;
119
124
  } | undefined;
120
125
  url?: "full" | undefined;
121
126
  openapi?: string | string[] | {
@@ -11,6 +11,10 @@ export const apiSchema = z
11
11
  .enum(['all', 'closed'])
12
12
  .optional()
13
13
  .describe('The view mode of the API parameters. Defaults to `closed`.'),
14
+ post: z
15
+ .array(z.string())
16
+ .optional()
17
+ .describe('OpenAPI spec field keys to render as post pills on every ParamField. For each key, the field value on the schema is surfaced as a pill (string → verbatim, boolean true → key name, array → one pill per element, object → skipped).'),
14
18
  })
15
19
  .optional()
16
20
  .describe('Configurations for the API parameters'),
@@ -63,10 +63,13 @@ export declare const almondConfigSchema: z.ZodObject<{
63
63
  }>]>>;
64
64
  params: z.ZodOptional<z.ZodObject<{
65
65
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
66
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
66
67
  }, "strip", z.ZodTypeAny, {
67
68
  expanded?: "all" | "closed" | undefined;
69
+ post?: string[] | undefined;
68
70
  }, {
69
71
  expanded?: "all" | "closed" | undefined;
72
+ post?: string[] | undefined;
70
73
  }>>;
71
74
  playground: z.ZodOptional<z.ZodObject<{
72
75
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -126,6 +129,7 @@ export declare const almondConfigSchema: z.ZodObject<{
126
129
  }, "strip", z.ZodTypeAny, {
127
130
  params?: {
128
131
  expanded?: "all" | "closed" | undefined;
132
+ post?: string[] | undefined;
129
133
  } | undefined;
130
134
  url?: "full" | undefined;
131
135
  openapi?: string | string[] | {
@@ -157,6 +161,7 @@ export declare const almondConfigSchema: z.ZodObject<{
157
161
  }, {
158
162
  params?: {
159
163
  expanded?: "all" | "closed" | undefined;
164
+ post?: string[] | undefined;
160
165
  } | undefined;
161
166
  url?: "full" | undefined;
162
167
  openapi?: string | string[] | {
@@ -1665,6 +1670,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1665
1670
  api?: {
1666
1671
  params?: {
1667
1672
  expanded?: "all" | "closed" | undefined;
1673
+ post?: string[] | undefined;
1668
1674
  } | undefined;
1669
1675
  url?: "full" | undefined;
1670
1676
  openapi?: string | string[] | {
@@ -2028,6 +2034,7 @@ export declare const almondConfigSchema: z.ZodObject<{
2028
2034
  api?: {
2029
2035
  params?: {
2030
2036
  expanded?: "all" | "closed" | undefined;
2037
+ post?: string[] | undefined;
2031
2038
  } | undefined;
2032
2039
  url?: "full" | undefined;
2033
2040
  openapi?: string | string[] | {
@@ -63,10 +63,13 @@ export declare const aspenConfigSchema: z.ZodObject<{
63
63
  }>]>>;
64
64
  params: z.ZodOptional<z.ZodObject<{
65
65
  expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
66
+ post: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
66
67
  }, "strip", z.ZodTypeAny, {
67
68
  expanded?: "all" | "closed" | undefined;
69
+ post?: string[] | undefined;
68
70
  }, {
69
71
  expanded?: "all" | "closed" | undefined;
72
+ post?: string[] | undefined;
70
73
  }>>;
71
74
  playground: z.ZodOptional<z.ZodObject<{
72
75
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
@@ -126,6 +129,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
126
129
  }, "strip", z.ZodTypeAny, {
127
130
  params?: {
128
131
  expanded?: "all" | "closed" | undefined;
132
+ post?: string[] | undefined;
129
133
  } | undefined;
130
134
  url?: "full" | undefined;
131
135
  openapi?: string | string[] | {
@@ -157,6 +161,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
157
161
  }, {
158
162
  params?: {
159
163
  expanded?: "all" | "closed" | undefined;
164
+ post?: string[] | undefined;
160
165
  } | undefined;
161
166
  url?: "full" | undefined;
162
167
  openapi?: string | string[] | {
@@ -1665,6 +1670,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1665
1670
  api?: {
1666
1671
  params?: {
1667
1672
  expanded?: "all" | "closed" | undefined;
1673
+ post?: string[] | undefined;
1668
1674
  } | undefined;
1669
1675
  url?: "full" | undefined;
1670
1676
  openapi?: string | string[] | {
@@ -2028,6 +2034,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
2028
2034
  api?: {
2029
2035
  params?: {
2030
2036
  expanded?: "all" | "closed" | undefined;
2037
+ post?: string[] | undefined;
2031
2038
  } | undefined;
2032
2039
  url?: "full" | undefined;
2033
2040
  openapi?: string | string[] | {