@mintlify/validation 0.1.676 → 0.1.678

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?: {