@mintlify/validation 0.1.369 → 0.1.371

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.
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Check if a URL is absolute
3
+ * @param url - The URL to check
4
+ * @returns True if the URL is absolute, false otherwise
5
+ */
6
+ export declare const isAbsoluteUrl: (url?: string) => boolean;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Check if a URL is absolute
3
+ * @param url - The URL to check
4
+ * @returns True if the URL is absolute, false otherwise
5
+ */
6
+ export const isAbsoluteUrl = (url) => {
7
+ if (!url || typeof url !== 'string')
8
+ return false;
9
+ try {
10
+ return URL.canParse(url);
11
+ }
12
+ catch (_a) {
13
+ return false;
14
+ }
15
+ };
@@ -1,5 +1,5 @@
1
- import isAbsoluteUrl from 'is-absolute-url';
2
1
  import { z } from 'zod';
2
+ import { isAbsoluteUrl } from '../../isAbsoluteUrl.js';
3
3
  import { normalizeRelativePath } from '../../transforms/normalizeRelativePath.js';
4
4
  export const openapiStringSchema = z
5
5
  .string()
@@ -62,12 +62,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
62
62
  source: string;
63
63
  directory?: string | undefined;
64
64
  }>]>>;
65
- paramFields: z.ZodOptional<z.ZodObject<{
66
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
65
+ params: z.ZodOptional<z.ZodObject<{
66
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
67
67
  }, "strip", z.ZodTypeAny, {
68
- expanded?: "all" | "none" | undefined;
68
+ expanded?: "all" | "closed" | undefined;
69
69
  }, {
70
- expanded?: "all" | "none" | undefined;
70
+ expanded?: "all" | "closed" | undefined;
71
71
  }>>;
72
72
  playground: z.ZodOptional<z.ZodObject<{
73
73
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -123,8 +123,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
123
123
  source: string;
124
124
  directory?: string | undefined;
125
125
  } | undefined;
126
- paramFields?: {
127
- expanded?: "all" | "none" | undefined;
126
+ params?: {
127
+ expanded?: "all" | "closed" | undefined;
128
128
  } | undefined;
129
129
  playground?: {
130
130
  display?: "simple" | "none" | "interactive" | undefined;
@@ -150,8 +150,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
150
150
  source: string;
151
151
  directory?: string | undefined;
152
152
  } | undefined;
153
- paramFields?: {
154
- expanded?: "all" | "none" | undefined;
153
+ params?: {
154
+ expanded?: "all" | "closed" | undefined;
155
155
  } | undefined;
156
156
  playground?: {
157
157
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1253,8 +1253,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1253
1253
  source: string;
1254
1254
  directory?: string | undefined;
1255
1255
  } | undefined;
1256
- paramFields?: {
1257
- expanded?: "all" | "none" | undefined;
1256
+ params?: {
1257
+ expanded?: "all" | "closed" | undefined;
1258
1258
  } | undefined;
1259
1259
  playground?: {
1260
1260
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1579,8 +1579,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1579
1579
  source: string;
1580
1580
  directory?: string | undefined;
1581
1581
  } | undefined;
1582
- paramFields?: {
1583
- expanded?: "all" | "none" | undefined;
1582
+ params?: {
1583
+ expanded?: "all" | "closed" | undefined;
1584
1584
  } | undefined;
1585
1585
  playground?: {
1586
1586
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1811,12 +1811,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1811
1811
  source: string;
1812
1812
  directory?: string | undefined;
1813
1813
  }>]>>;
1814
- paramFields: z.ZodOptional<z.ZodObject<{
1815
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
1814
+ params: z.ZodOptional<z.ZodObject<{
1815
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
1816
1816
  }, "strip", z.ZodTypeAny, {
1817
- expanded?: "all" | "none" | undefined;
1817
+ expanded?: "all" | "closed" | undefined;
1818
1818
  }, {
1819
- expanded?: "all" | "none" | undefined;
1819
+ expanded?: "all" | "closed" | undefined;
1820
1820
  }>>;
1821
1821
  playground: z.ZodOptional<z.ZodObject<{
1822
1822
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -1872,8 +1872,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1872
1872
  source: string;
1873
1873
  directory?: string | undefined;
1874
1874
  } | undefined;
1875
- paramFields?: {
1876
- expanded?: "all" | "none" | undefined;
1875
+ params?: {
1876
+ expanded?: "all" | "closed" | undefined;
1877
1877
  } | undefined;
1878
1878
  playground?: {
1879
1879
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1899,8 +1899,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1899
1899
  source: string;
1900
1900
  directory?: string | undefined;
1901
1901
  } | undefined;
1902
- paramFields?: {
1903
- expanded?: "all" | "none" | undefined;
1902
+ params?: {
1903
+ expanded?: "all" | "closed" | undefined;
1904
1904
  } | undefined;
1905
1905
  playground?: {
1906
1906
  display?: "simple" | "none" | "interactive" | undefined;
@@ -3002,8 +3002,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3002
3002
  source: string;
3003
3003
  directory?: string | undefined;
3004
3004
  } | undefined;
3005
- paramFields?: {
3006
- expanded?: "all" | "none" | undefined;
3005
+ params?: {
3006
+ expanded?: "all" | "closed" | undefined;
3007
3007
  } | undefined;
3008
3008
  playground?: {
3009
3009
  display?: "simple" | "none" | "interactive" | undefined;
@@ -3328,8 +3328,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3328
3328
  source: string;
3329
3329
  directory?: string | undefined;
3330
3330
  } | undefined;
3331
- paramFields?: {
3332
- expanded?: "all" | "none" | undefined;
3331
+ params?: {
3332
+ expanded?: "all" | "closed" | undefined;
3333
3333
  } | undefined;
3334
3334
  playground?: {
3335
3335
  display?: "simple" | "none" | "interactive" | undefined;
@@ -3560,12 +3560,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3560
3560
  source: string;
3561
3561
  directory?: string | undefined;
3562
3562
  }>]>>;
3563
- paramFields: z.ZodOptional<z.ZodObject<{
3564
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
3563
+ params: z.ZodOptional<z.ZodObject<{
3564
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
3565
3565
  }, "strip", z.ZodTypeAny, {
3566
- expanded?: "all" | "none" | undefined;
3566
+ expanded?: "all" | "closed" | undefined;
3567
3567
  }, {
3568
- expanded?: "all" | "none" | undefined;
3568
+ expanded?: "all" | "closed" | undefined;
3569
3569
  }>>;
3570
3570
  playground: z.ZodOptional<z.ZodObject<{
3571
3571
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -3621,8 +3621,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3621
3621
  source: string;
3622
3622
  directory?: string | undefined;
3623
3623
  } | undefined;
3624
- paramFields?: {
3625
- expanded?: "all" | "none" | undefined;
3624
+ params?: {
3625
+ expanded?: "all" | "closed" | undefined;
3626
3626
  } | undefined;
3627
3627
  playground?: {
3628
3628
  display?: "simple" | "none" | "interactive" | undefined;
@@ -3648,8 +3648,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3648
3648
  source: string;
3649
3649
  directory?: string | undefined;
3650
3650
  } | undefined;
3651
- paramFields?: {
3652
- expanded?: "all" | "none" | undefined;
3651
+ params?: {
3652
+ expanded?: "all" | "closed" | undefined;
3653
3653
  } | undefined;
3654
3654
  playground?: {
3655
3655
  display?: "simple" | "none" | "interactive" | undefined;
@@ -4751,8 +4751,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4751
4751
  source: string;
4752
4752
  directory?: string | undefined;
4753
4753
  } | undefined;
4754
- paramFields?: {
4755
- expanded?: "all" | "none" | undefined;
4754
+ params?: {
4755
+ expanded?: "all" | "closed" | undefined;
4756
4756
  } | undefined;
4757
4757
  playground?: {
4758
4758
  display?: "simple" | "none" | "interactive" | undefined;
@@ -5077,8 +5077,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5077
5077
  source: string;
5078
5078
  directory?: string | undefined;
5079
5079
  } | undefined;
5080
- paramFields?: {
5081
- expanded?: "all" | "none" | undefined;
5080
+ params?: {
5081
+ expanded?: "all" | "closed" | undefined;
5082
5082
  } | undefined;
5083
5083
  playground?: {
5084
5084
  display?: "simple" | "none" | "interactive" | undefined;
@@ -5309,12 +5309,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5309
5309
  source: string;
5310
5310
  directory?: string | undefined;
5311
5311
  }>]>>;
5312
- paramFields: z.ZodOptional<z.ZodObject<{
5313
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
5312
+ params: z.ZodOptional<z.ZodObject<{
5313
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
5314
5314
  }, "strip", z.ZodTypeAny, {
5315
- expanded?: "all" | "none" | undefined;
5315
+ expanded?: "all" | "closed" | undefined;
5316
5316
  }, {
5317
- expanded?: "all" | "none" | undefined;
5317
+ expanded?: "all" | "closed" | undefined;
5318
5318
  }>>;
5319
5319
  playground: z.ZodOptional<z.ZodObject<{
5320
5320
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -5370,8 +5370,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5370
5370
  source: string;
5371
5371
  directory?: string | undefined;
5372
5372
  } | undefined;
5373
- paramFields?: {
5374
- expanded?: "all" | "none" | undefined;
5373
+ params?: {
5374
+ expanded?: "all" | "closed" | undefined;
5375
5375
  } | undefined;
5376
5376
  playground?: {
5377
5377
  display?: "simple" | "none" | "interactive" | undefined;
@@ -5397,8 +5397,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5397
5397
  source: string;
5398
5398
  directory?: string | undefined;
5399
5399
  } | undefined;
5400
- paramFields?: {
5401
- expanded?: "all" | "none" | undefined;
5400
+ params?: {
5401
+ expanded?: "all" | "closed" | undefined;
5402
5402
  } | undefined;
5403
5403
  playground?: {
5404
5404
  display?: "simple" | "none" | "interactive" | undefined;
@@ -6500,8 +6500,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6500
6500
  source: string;
6501
6501
  directory?: string | undefined;
6502
6502
  } | undefined;
6503
- paramFields?: {
6504
- expanded?: "all" | "none" | undefined;
6503
+ params?: {
6504
+ expanded?: "all" | "closed" | undefined;
6505
6505
  } | undefined;
6506
6506
  playground?: {
6507
6507
  display?: "simple" | "none" | "interactive" | undefined;
@@ -6826,8 +6826,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6826
6826
  source: string;
6827
6827
  directory?: string | undefined;
6828
6828
  } | undefined;
6829
- paramFields?: {
6830
- expanded?: "all" | "none" | undefined;
6829
+ params?: {
6830
+ expanded?: "all" | "closed" | undefined;
6831
6831
  } | undefined;
6832
6832
  playground?: {
6833
6833
  display?: "simple" | "none" | "interactive" | undefined;
@@ -7058,12 +7058,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7058
7058
  source: string;
7059
7059
  directory?: string | undefined;
7060
7060
  }>]>>;
7061
- paramFields: z.ZodOptional<z.ZodObject<{
7062
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
7061
+ params: z.ZodOptional<z.ZodObject<{
7062
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
7063
7063
  }, "strip", z.ZodTypeAny, {
7064
- expanded?: "all" | "none" | undefined;
7064
+ expanded?: "all" | "closed" | undefined;
7065
7065
  }, {
7066
- expanded?: "all" | "none" | undefined;
7066
+ expanded?: "all" | "closed" | undefined;
7067
7067
  }>>;
7068
7068
  playground: z.ZodOptional<z.ZodObject<{
7069
7069
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -7119,8 +7119,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7119
7119
  source: string;
7120
7120
  directory?: string | undefined;
7121
7121
  } | undefined;
7122
- paramFields?: {
7123
- expanded?: "all" | "none" | undefined;
7122
+ params?: {
7123
+ expanded?: "all" | "closed" | undefined;
7124
7124
  } | undefined;
7125
7125
  playground?: {
7126
7126
  display?: "simple" | "none" | "interactive" | undefined;
@@ -7146,8 +7146,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7146
7146
  source: string;
7147
7147
  directory?: string | undefined;
7148
7148
  } | undefined;
7149
- paramFields?: {
7150
- expanded?: "all" | "none" | undefined;
7149
+ params?: {
7150
+ expanded?: "all" | "closed" | undefined;
7151
7151
  } | undefined;
7152
7152
  playground?: {
7153
7153
  display?: "simple" | "none" | "interactive" | undefined;
@@ -8249,8 +8249,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8249
8249
  source: string;
8250
8250
  directory?: string | undefined;
8251
8251
  } | undefined;
8252
- paramFields?: {
8253
- expanded?: "all" | "none" | undefined;
8252
+ params?: {
8253
+ expanded?: "all" | "closed" | undefined;
8254
8254
  } | undefined;
8255
8255
  playground?: {
8256
8256
  display?: "simple" | "none" | "interactive" | undefined;
@@ -8575,8 +8575,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8575
8575
  source: string;
8576
8576
  directory?: string | undefined;
8577
8577
  } | undefined;
8578
- paramFields?: {
8579
- expanded?: "all" | "none" | undefined;
8578
+ params?: {
8579
+ expanded?: "all" | "closed" | undefined;
8580
8580
  } | undefined;
8581
8581
  playground?: {
8582
8582
  display?: "simple" | "none" | "interactive" | undefined;
@@ -8807,12 +8807,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8807
8807
  source: string;
8808
8808
  directory?: string | undefined;
8809
8809
  }>]>>;
8810
- paramFields: z.ZodOptional<z.ZodObject<{
8811
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
8810
+ params: z.ZodOptional<z.ZodObject<{
8811
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
8812
8812
  }, "strip", z.ZodTypeAny, {
8813
- expanded?: "all" | "none" | undefined;
8813
+ expanded?: "all" | "closed" | undefined;
8814
8814
  }, {
8815
- expanded?: "all" | "none" | undefined;
8815
+ expanded?: "all" | "closed" | undefined;
8816
8816
  }>>;
8817
8817
  playground: z.ZodOptional<z.ZodObject<{
8818
8818
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -8868,8 +8868,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8868
8868
  source: string;
8869
8869
  directory?: string | undefined;
8870
8870
  } | undefined;
8871
- paramFields?: {
8872
- expanded?: "all" | "none" | undefined;
8871
+ params?: {
8872
+ expanded?: "all" | "closed" | undefined;
8873
8873
  } | undefined;
8874
8874
  playground?: {
8875
8875
  display?: "simple" | "none" | "interactive" | undefined;
@@ -8895,8 +8895,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8895
8895
  source: string;
8896
8896
  directory?: string | undefined;
8897
8897
  } | undefined;
8898
- paramFields?: {
8899
- expanded?: "all" | "none" | undefined;
8898
+ params?: {
8899
+ expanded?: "all" | "closed" | undefined;
8900
8900
  } | undefined;
8901
8901
  playground?: {
8902
8902
  display?: "simple" | "none" | "interactive" | undefined;
@@ -9998,8 +9998,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9998
9998
  source: string;
9999
9999
  directory?: string | undefined;
10000
10000
  } | undefined;
10001
- paramFields?: {
10002
- expanded?: "all" | "none" | undefined;
10001
+ params?: {
10002
+ expanded?: "all" | "closed" | undefined;
10003
10003
  } | undefined;
10004
10004
  playground?: {
10005
10005
  display?: "simple" | "none" | "interactive" | undefined;
@@ -10324,8 +10324,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10324
10324
  source: string;
10325
10325
  directory?: string | undefined;
10326
10326
  } | undefined;
10327
- paramFields?: {
10328
- expanded?: "all" | "none" | undefined;
10327
+ params?: {
10328
+ expanded?: "all" | "closed" | undefined;
10329
10329
  } | undefined;
10330
10330
  playground?: {
10331
10331
  display?: "simple" | "none" | "interactive" | undefined;
@@ -20,12 +20,12 @@ export declare const apiSchema: z.ZodObject<{
20
20
  source: string;
21
21
  directory?: string | undefined;
22
22
  }>]>>;
23
- paramFields: z.ZodOptional<z.ZodObject<{
24
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
23
+ params: z.ZodOptional<z.ZodObject<{
24
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
25
25
  }, "strip", z.ZodTypeAny, {
26
- expanded?: "all" | "none" | undefined;
26
+ expanded?: "all" | "closed" | undefined;
27
27
  }, {
28
- expanded?: "all" | "none" | undefined;
28
+ expanded?: "all" | "closed" | undefined;
29
29
  }>>;
30
30
  playground: z.ZodOptional<z.ZodObject<{
31
31
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -81,8 +81,8 @@ export declare const apiSchema: z.ZodObject<{
81
81
  source: string;
82
82
  directory?: string | undefined;
83
83
  } | undefined;
84
- paramFields?: {
85
- expanded?: "all" | "none" | undefined;
84
+ params?: {
85
+ expanded?: "all" | "closed" | undefined;
86
86
  } | undefined;
87
87
  playground?: {
88
88
  display?: "simple" | "none" | "interactive" | undefined;
@@ -108,8 +108,8 @@ export declare const apiSchema: z.ZodObject<{
108
108
  source: string;
109
109
  directory?: string | undefined;
110
110
  } | undefined;
111
- paramFields?: {
112
- expanded?: "all" | "none" | undefined;
111
+ params?: {
112
+ expanded?: "all" | "closed" | undefined;
113
113
  } | undefined;
114
114
  playground?: {
115
115
  display?: "simple" | "none" | "interactive" | undefined;
@@ -5,12 +5,12 @@ export const apiSchema = z
5
5
  .object({
6
6
  openapi: openApiSchema.optional(),
7
7
  asyncapi: asyncApiSchema.optional(),
8
- paramFields: z
8
+ params: z
9
9
  .object({
10
10
  expanded: z
11
- .enum(['all', 'none'])
11
+ .enum(['all', 'closed'])
12
12
  .optional()
13
- .describe('Whether to automatically expand API parameter fields, defaults to `none`.'),
13
+ .describe('The view mode of the API parameters. Defaults to `closed`.'),
14
14
  })
15
15
  .optional()
16
16
  .describe('Configurations for the API parameters'),
@@ -1,5 +1,5 @@
1
- import isAbsoluteUrl from 'is-absolute-url';
2
1
  import { z } from 'zod';
2
+ import { isAbsoluteUrl } from '../../../../isAbsoluteUrl.js';
3
3
  import { normalizeRelativePath } from '../../../../transforms/normalizeRelativePath.js';
4
4
  export const asyncapiStringSchema = z
5
5
  .string()
@@ -1,5 +1,5 @@
1
- import isAbsoluteUrl from 'is-absolute-url';
2
1
  import { z } from 'zod';
2
+ import { isAbsoluteUrl } from '../../../../isAbsoluteUrl.js';
3
3
  import { normalizeRelativePath } from '../../../../transforms/normalizeRelativePath.js';
4
4
  export const openapiStringSchema = z
5
5
  .string()
@@ -60,12 +60,12 @@ export declare const almondConfigSchema: z.ZodObject<{
60
60
  source: string;
61
61
  directory?: string | undefined;
62
62
  }>]>>;
63
- paramFields: z.ZodOptional<z.ZodObject<{
64
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
63
+ params: z.ZodOptional<z.ZodObject<{
64
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
65
65
  }, "strip", z.ZodTypeAny, {
66
- expanded?: "all" | "none" | undefined;
66
+ expanded?: "all" | "closed" | undefined;
67
67
  }, {
68
- expanded?: "all" | "none" | undefined;
68
+ expanded?: "all" | "closed" | undefined;
69
69
  }>>;
70
70
  playground: z.ZodOptional<z.ZodObject<{
71
71
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -121,8 +121,8 @@ export declare const almondConfigSchema: z.ZodObject<{
121
121
  source: string;
122
122
  directory?: string | undefined;
123
123
  } | undefined;
124
- paramFields?: {
125
- expanded?: "all" | "none" | undefined;
124
+ params?: {
125
+ expanded?: "all" | "closed" | undefined;
126
126
  } | undefined;
127
127
  playground?: {
128
128
  display?: "simple" | "none" | "interactive" | undefined;
@@ -148,8 +148,8 @@ export declare const almondConfigSchema: z.ZodObject<{
148
148
  source: string;
149
149
  directory?: string | undefined;
150
150
  } | undefined;
151
- paramFields?: {
152
- expanded?: "all" | "none" | undefined;
151
+ params?: {
152
+ expanded?: "all" | "closed" | undefined;
153
153
  } | undefined;
154
154
  playground?: {
155
155
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1251,8 +1251,8 @@ export declare const almondConfigSchema: z.ZodObject<{
1251
1251
  source: string;
1252
1252
  directory?: string | undefined;
1253
1253
  } | undefined;
1254
- paramFields?: {
1255
- expanded?: "all" | "none" | undefined;
1254
+ params?: {
1255
+ expanded?: "all" | "closed" | undefined;
1256
1256
  } | undefined;
1257
1257
  playground?: {
1258
1258
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1577,8 +1577,8 @@ export declare const almondConfigSchema: z.ZodObject<{
1577
1577
  source: string;
1578
1578
  directory?: string | undefined;
1579
1579
  } | undefined;
1580
- paramFields?: {
1581
- expanded?: "all" | "none" | undefined;
1580
+ params?: {
1581
+ expanded?: "all" | "closed" | undefined;
1582
1582
  } | undefined;
1583
1583
  playground?: {
1584
1584
  display?: "simple" | "none" | "interactive" | undefined;
@@ -60,12 +60,12 @@ export declare const lindenConfigSchema: z.ZodObject<{
60
60
  source: string;
61
61
  directory?: string | undefined;
62
62
  }>]>>;
63
- paramFields: z.ZodOptional<z.ZodObject<{
64
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
63
+ params: z.ZodOptional<z.ZodObject<{
64
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
65
65
  }, "strip", z.ZodTypeAny, {
66
- expanded?: "all" | "none" | undefined;
66
+ expanded?: "all" | "closed" | undefined;
67
67
  }, {
68
- expanded?: "all" | "none" | undefined;
68
+ expanded?: "all" | "closed" | undefined;
69
69
  }>>;
70
70
  playground: z.ZodOptional<z.ZodObject<{
71
71
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -121,8 +121,8 @@ export declare const lindenConfigSchema: z.ZodObject<{
121
121
  source: string;
122
122
  directory?: string | undefined;
123
123
  } | undefined;
124
- paramFields?: {
125
- expanded?: "all" | "none" | undefined;
124
+ params?: {
125
+ expanded?: "all" | "closed" | undefined;
126
126
  } | undefined;
127
127
  playground?: {
128
128
  display?: "simple" | "none" | "interactive" | undefined;
@@ -148,8 +148,8 @@ export declare const lindenConfigSchema: z.ZodObject<{
148
148
  source: string;
149
149
  directory?: string | undefined;
150
150
  } | undefined;
151
- paramFields?: {
152
- expanded?: "all" | "none" | undefined;
151
+ params?: {
152
+ expanded?: "all" | "closed" | undefined;
153
153
  } | undefined;
154
154
  playground?: {
155
155
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1251,8 +1251,8 @@ export declare const lindenConfigSchema: z.ZodObject<{
1251
1251
  source: string;
1252
1252
  directory?: string | undefined;
1253
1253
  } | undefined;
1254
- paramFields?: {
1255
- expanded?: "all" | "none" | undefined;
1254
+ params?: {
1255
+ expanded?: "all" | "closed" | undefined;
1256
1256
  } | undefined;
1257
1257
  playground?: {
1258
1258
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1577,8 +1577,8 @@ export declare const lindenConfigSchema: z.ZodObject<{
1577
1577
  source: string;
1578
1578
  directory?: string | undefined;
1579
1579
  } | undefined;
1580
- paramFields?: {
1581
- expanded?: "all" | "none" | undefined;
1580
+ params?: {
1581
+ expanded?: "all" | "closed" | undefined;
1582
1582
  } | undefined;
1583
1583
  playground?: {
1584
1584
  display?: "simple" | "none" | "interactive" | undefined;
@@ -60,12 +60,12 @@ export declare const mapleConfigSchema: z.ZodObject<{
60
60
  source: string;
61
61
  directory?: string | undefined;
62
62
  }>]>>;
63
- paramFields: z.ZodOptional<z.ZodObject<{
64
- expanded: z.ZodOptional<z.ZodEnum<["all", "none"]>>;
63
+ params: z.ZodOptional<z.ZodObject<{
64
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
65
65
  }, "strip", z.ZodTypeAny, {
66
- expanded?: "all" | "none" | undefined;
66
+ expanded?: "all" | "closed" | undefined;
67
67
  }, {
68
- expanded?: "all" | "none" | undefined;
68
+ expanded?: "all" | "closed" | undefined;
69
69
  }>>;
70
70
  playground: z.ZodOptional<z.ZodObject<{
71
71
  display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
@@ -121,8 +121,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
121
121
  source: string;
122
122
  directory?: string | undefined;
123
123
  } | undefined;
124
- paramFields?: {
125
- expanded?: "all" | "none" | undefined;
124
+ params?: {
125
+ expanded?: "all" | "closed" | undefined;
126
126
  } | undefined;
127
127
  playground?: {
128
128
  display?: "simple" | "none" | "interactive" | undefined;
@@ -148,8 +148,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
148
148
  source: string;
149
149
  directory?: string | undefined;
150
150
  } | undefined;
151
- paramFields?: {
152
- expanded?: "all" | "none" | undefined;
151
+ params?: {
152
+ expanded?: "all" | "closed" | undefined;
153
153
  } | undefined;
154
154
  playground?: {
155
155
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1251,8 +1251,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
1251
1251
  source: string;
1252
1252
  directory?: string | undefined;
1253
1253
  } | undefined;
1254
- paramFields?: {
1255
- expanded?: "all" | "none" | undefined;
1254
+ params?: {
1255
+ expanded?: "all" | "closed" | undefined;
1256
1256
  } | undefined;
1257
1257
  playground?: {
1258
1258
  display?: "simple" | "none" | "interactive" | undefined;
@@ -1577,8 +1577,8 @@ export declare const mapleConfigSchema: z.ZodObject<{
1577
1577
  source: string;
1578
1578
  directory?: string | undefined;
1579
1579
  } | undefined;
1580
- paramFields?: {
1581
- expanded?: "all" | "none" | undefined;
1580
+ params?: {
1581
+ expanded?: "all" | "closed" | undefined;
1582
1582
  } | undefined;
1583
1583
  playground?: {
1584
1584
  display?: "simple" | "none" | "interactive" | undefined;