@digitraffic/common 2024.8.16-1 → 2024.8.30-1

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.
Files changed (226) hide show
  1. package/dist/{test/asserter.mjs → __test__/asserter.js} +3 -3
  2. package/dist/{test/db-testutils.d.mts → __test__/db-testutils.d.ts} +1 -1
  3. package/dist/{test/db-testutils.mjs → __test__/db-testutils.js} +4 -3
  4. package/dist/__test__/{dependencies.test.mjs → dependencies.test.js} +1 -1
  5. package/dist/__test__/{imports.test.mjs → imports.test.js} +79 -79
  6. package/dist/__test__/infra/{acl-builder.test.mjs → acl-builder.test.js} +4 -4
  7. package/dist/__test__/infra/api/{handler-factory.test.mjs → handler-factory.test.js} +3 -4
  8. package/dist/__test__/infra/api/{response.test.mjs → response.test.js} +3 -11
  9. package/dist/__test__/infra/api/{static-integration.test.mjs → static-integration.test.js} +3 -3
  10. package/dist/__test__/infra/{documentation.test.mjs → documentation.test.js} +2 -2
  11. package/dist/__test__/infra/{scheduler.test.mjs → scheduler.test.js} +2 -2
  12. package/dist/__test__/infra/{security-rule.test.mjs → security-rule.test.js} +2 -2
  13. package/dist/__test__/marine/{id_utils.test.mjs → id_utils.test.js} +3 -3
  14. package/dist/{test/mock-ky.mjs → __test__/mock-ky.js} +1 -1
  15. package/dist/__test__/promise/{promise.test.mjs → promise.test.js} +9 -13
  16. package/dist/__test__/runtime/{dt-logger.test.mjs → dt-logger.test.js} +7 -7
  17. package/dist/__test__/secrets/{secret-holder.test.mjs → secret-holder.test.js} +6 -4
  18. package/dist/__test__/secrets/{secret.test.mjs → secret.test.js} +4 -2
  19. package/dist/__test__/stack/{rest-apis.test.mjs → rest-apis.test.js} +4 -4
  20. package/dist/__test__/test/{mock-ky.test.mjs → mock-ky.test.js} +3 -3
  21. package/dist/{test/testutils.mjs → __test__/testutils.js} +1 -2
  22. package/dist/__test__/types/{lambda-response.test.mjs → lambda-response.test.js} +2 -2
  23. package/dist/__test__/utils/{date-utils.test.mjs → date-utils.test.js} +3 -3
  24. package/dist/__test__/utils/{geometry.test.mjs → geometry.test.js} +3 -3
  25. package/dist/__test__/utils/{logging.test.mjs → logging.test.js} +4 -4
  26. package/dist/__test__/utils/{utils.test.mjs → utils.test.js} +2 -3
  27. package/dist/aws/infra/{acl-builder.d.mts → acl-builder.d.ts} +15 -8
  28. package/dist/aws/infra/{acl-builder.mjs → acl-builder.js} +77 -55
  29. package/dist/aws/infra/api/{handler-factory.d.mts → handler-factory.d.ts} +4 -4
  30. package/dist/aws/infra/api/{handler-factory.mjs → handler-factory.js} +7 -5
  31. package/dist/aws/infra/api/{integration.d.mts → integration.d.ts} +3 -1
  32. package/dist/aws/infra/api/{integration.mjs → integration.js} +31 -13
  33. package/dist/aws/infra/api/{response.d.mts → response.d.ts} +2 -2
  34. package/dist/aws/infra/api/{response.mjs → response.js} +4 -4
  35. package/dist/aws/infra/api/{responses.d.mts → responses.d.ts} +3 -3
  36. package/dist/aws/infra/api/{responses.mjs → responses.js} +4 -6
  37. package/dist/aws/infra/api/{static-integration.d.mts → static-integration.d.ts} +3 -9
  38. package/dist/aws/infra/api/{static-integration.mjs → static-integration.js} +3 -3
  39. package/dist/aws/infra/canaries/canary-alarm.d.ts +6 -0
  40. package/dist/aws/infra/canaries/{canary-alarm.mjs → canary-alarm.js} +1 -3
  41. package/dist/aws/infra/canaries/{canary-keys.mjs → canary-keys.js} +1 -1
  42. package/dist/aws/infra/canaries/{canary-parameters.d.mts → canary-parameters.d.ts} +1 -1
  43. package/dist/aws/infra/canaries/canary-parameters.js +2 -0
  44. package/dist/aws/infra/canaries/{canary-role.d.mts → canary-role.d.ts} +1 -1
  45. package/dist/aws/infra/canaries/{canary-role.mjs → canary-role.js} +2 -5
  46. package/dist/aws/infra/canaries/{canary.d.mts → canary.d.ts} +4 -4
  47. package/dist/aws/infra/canaries/{canary.mjs → canary.js} +3 -4
  48. package/dist/aws/infra/canaries/{database-canary.d.mts → database-canary.d.ts} +4 -5
  49. package/dist/aws/infra/canaries/{database-canary.mjs → database-canary.js} +4 -11
  50. package/dist/aws/infra/canaries/{database-checker.d.mts → database-checker.d.ts} +5 -5
  51. package/dist/aws/infra/canaries/{database-checker.mjs → database-checker.js} +15 -12
  52. package/dist/aws/infra/canaries/{url-canary.d.mts → url-canary.d.ts} +5 -5
  53. package/dist/aws/infra/canaries/{url-canary.mjs → url-canary.js} +7 -12
  54. package/dist/aws/infra/canaries/{url-checker.d.mts → url-checker.d.ts} +2 -2
  55. package/dist/aws/infra/canaries/{url-checker.mjs → url-checker.js} +12 -21
  56. package/dist/aws/infra/{documentation.d.mts → documentation.d.ts} +2 -2
  57. package/dist/aws/infra/{documentation.mjs → documentation.js} +4 -3
  58. package/dist/aws/infra/{import-util.d.mts → import-util.d.ts} +2 -2
  59. package/dist/aws/infra/{import-util.mjs → import-util.js} +3 -3
  60. package/dist/aws/infra/{scheduler.d.mts → scheduler.d.ts} +2 -2
  61. package/dist/aws/infra/{scheduler.mjs → scheduler.js} +1 -3
  62. package/dist/aws/infra/{security-rule.d.mts → security-rule.d.ts} +1 -1
  63. package/dist/aws/infra/{security-rule.mjs → security-rule.js} +1 -2
  64. package/dist/aws/infra/{sqs-integration.d.mts → sqs-integration.d.ts} +3 -3
  65. package/dist/aws/infra/{sqs-integration.mjs → sqs-integration.js} +3 -7
  66. package/dist/aws/infra/{sqs-queue.d.mts → sqs-queue.d.ts} +1 -1
  67. package/dist/aws/infra/{sqs-queue.mjs → sqs-queue.js} +19 -19
  68. package/dist/aws/infra/stack/{lambda-configs.d.mts → lambda-configs.d.ts} +4 -4
  69. package/dist/aws/infra/stack/{lambda-configs.mjs → lambda-configs.js} +3 -7
  70. package/dist/aws/infra/stack/{monitoredfunction.d.mts → monitoredfunction.d.ts} +15 -15
  71. package/dist/aws/infra/stack/{monitoredfunction.mjs → monitoredfunction.js} +42 -43
  72. package/dist/aws/infra/stack/{parameters.mjs → parameters.js} +1 -1
  73. package/dist/aws/infra/stack/{rest_apis.d.mts → rest_apis.d.ts} +12 -6
  74. package/dist/aws/infra/stack/{rest_apis.mjs → rest_apis.js} +26 -24
  75. package/dist/aws/infra/stack/{stack-checking-aspect.mjs → stack-checking-aspect.js} +7 -2
  76. package/dist/aws/infra/stack/{stack.d.mts → stack.d.ts} +4 -4
  77. package/dist/aws/infra/stack/{stack.mjs → stack.js} +2 -5
  78. package/dist/aws/infra/stack/{subscription.d.mts → subscription.d.ts} +4 -4
  79. package/dist/aws/infra/stack/{subscription.mjs → subscription.js} +2 -6
  80. package/dist/aws/infra/stacks/{db-dns-stack.d.mts → db-dns-stack.d.ts} +1 -1
  81. package/dist/aws/infra/stacks/{db-dns-stack.mjs → db-dns-stack.js} +4 -4
  82. package/dist/aws/infra/stacks/{db-proxy-stack.d.mts → db-proxy-stack.d.ts} +2 -2
  83. package/dist/aws/infra/stacks/{db-proxy-stack.mjs → db-proxy-stack.js} +5 -6
  84. package/dist/aws/infra/stacks/{db-stack.d.mts → db-stack.d.ts} +4 -4
  85. package/dist/aws/infra/stacks/{db-stack.mjs → db-stack.js} +7 -10
  86. package/dist/aws/infra/stacks/intra-stack-configuration.js +2 -0
  87. package/dist/aws/infra/stacks/{network-stack.d.mts → network-stack.d.ts} +2 -2
  88. package/dist/aws/infra/stacks/{network-stack.mjs → network-stack.js} +4 -7
  89. package/dist/aws/infra/{usage-plans.d.mts → usage-plans.d.ts} +1 -1
  90. package/dist/aws/infra/{usage-plans.mjs → usage-plans.js} +1 -2
  91. package/dist/aws/runtime/{apikey.mjs → apikey.js} +1 -1
  92. package/dist/aws/runtime/{digitraffic-integration-response.d.mts → digitraffic-integration-response.d.ts} +1 -1
  93. package/dist/aws/runtime/{digitraffic-integration-response.mjs → digitraffic-integration-response.js} +4 -6
  94. package/dist/aws/runtime/{dt-logger-default.d.mts → dt-logger-default.d.ts} +2 -2
  95. package/dist/aws/runtime/{dt-logger-default.mjs → dt-logger-default.js} +2 -2
  96. package/dist/aws/runtime/{dt-logger.mjs → dt-logger.js} +9 -4
  97. package/dist/aws/runtime/{environment.mjs → environment.js} +2 -2
  98. package/dist/aws/runtime/{s3.d.mts → s3.d.ts} +1 -1
  99. package/dist/aws/runtime/{s3.mjs → s3.js} +3 -3
  100. package/dist/aws/runtime/secrets/{dbsecret.d.mts → dbsecret.d.ts} +1 -1
  101. package/dist/aws/runtime/secrets/{dbsecret.mjs → dbsecret.js} +6 -2
  102. package/dist/aws/runtime/secrets/proxy-holder.js +25 -0
  103. package/dist/aws/runtime/secrets/rds-holder.js +25 -0
  104. package/dist/aws/runtime/secrets/{secret-holder.d.mts → secret-holder.d.ts} +6 -5
  105. package/dist/aws/runtime/secrets/{secret-holder.mjs → secret-holder.js} +11 -12
  106. package/dist/aws/runtime/secrets/{secret.mjs → secret.js} +7 -3
  107. package/dist/aws/types/{errors.mjs → errors.js} +1 -1
  108. package/dist/aws/types/{lambda-response.mjs → lambda-response.js} +1 -1
  109. package/dist/aws/types/{mediatypes.mjs → mediatypes.js} +1 -1
  110. package/dist/aws/types/{model-with-reference.d.mts → model-with-reference.d.ts} +1 -1
  111. package/dist/aws/types/model-with-reference.js +2 -0
  112. package/dist/aws/types/proxytypes.js +2 -0
  113. package/dist/aws/types/tags.js +4 -0
  114. package/dist/database/{cached.d.mts → cached.d.ts} +1 -1
  115. package/dist/database/{cached.mjs → cached.js} +2 -4
  116. package/dist/database/{database.mjs → database.js} +4 -8
  117. package/dist/database/{last-updated.d.mts → last-updated.d.ts} +1 -1
  118. package/dist/database/{last-updated.mjs → last-updated.js} +3 -1
  119. package/dist/database/models.js +2 -0
  120. package/dist/index.d.ts +1 -0
  121. package/dist/index.js +2 -0
  122. package/dist/marine/{id_utils.mjs → id_utils.js} +2 -2
  123. package/dist/marine/rtz.js +2 -0
  124. package/dist/types/{async-timeout-error.mjs → async-timeout-error.js} +1 -1
  125. package/dist/types/aws-env.js +2 -0
  126. package/dist/types/either.js +2 -0
  127. package/dist/types/{http-error.mjs → http-error.js} +1 -1
  128. package/dist/types/{input-error.mjs → input-error.js} +1 -1
  129. package/dist/types/{language.mjs → language.js} +1 -1
  130. package/dist/types/{nullable.d.mts → nullable.d.ts} +1 -1
  131. package/dist/types/nullable.js +2 -0
  132. package/dist/types/openapi-schema.d.ts +4342 -0
  133. package/dist/types/openapi-schema.js +134 -0
  134. package/dist/types/{traffictype.mjs → traffictype.js} +1 -1
  135. package/dist/types/urn.js +2 -0
  136. package/dist/types/util-types.js +2 -0
  137. package/dist/types/{validator.mjs → validator.js} +1 -1
  138. package/dist/utils/{api-model.d.mts → api-model.d.ts} +6 -5
  139. package/dist/utils/{api-model.mjs → api-model.js} +14 -15
  140. package/dist/utils/{base64.mjs → base64.js} +3 -3
  141. package/dist/utils/{date-utils.mjs → date-utils.js} +1 -1
  142. package/dist/utils/{geojson-types.d.mts → geojson-types.d.ts} +2 -2
  143. package/dist/utils/{geojson-types.mjs → geojson-types.js} +1 -1
  144. package/dist/utils/{geometry.d.mts → geometry.d.ts} +4 -3
  145. package/dist/utils/{geometry.mjs → geometry.js} +7 -4
  146. package/dist/utils/{logging.d.mts → logging.d.ts} +1 -1
  147. package/dist/utils/{logging.mjs → logging.js} +5 -8
  148. package/dist/utils/{retry.mjs → retry.js} +6 -8
  149. package/dist/utils/{slack.mjs → slack.js} +3 -3
  150. package/dist/utils/{utils.d.mts → utils.d.ts} +2 -3
  151. package/dist/utils/{utils.mjs → utils.js} +9 -5
  152. package/package.json +137 -131
  153. package/dist/aws/infra/canaries/canary-alarm.d.mts +0 -6
  154. package/dist/aws/infra/canaries/canary-parameters.mjs +0 -2
  155. package/dist/aws/infra/stacks/intra-stack-configuration.mjs +0 -2
  156. package/dist/aws/runtime/secrets/proxy-holder.mjs +0 -25
  157. package/dist/aws/runtime/secrets/rds-holder.mjs +0 -25
  158. package/dist/aws/types/model-with-reference.mjs +0 -2
  159. package/dist/aws/types/proxytypes.mjs +0 -2
  160. package/dist/aws/types/tags.mjs +0 -4
  161. package/dist/database/models.mjs +0 -2
  162. package/dist/index.d.mts +0 -1
  163. package/dist/index.mjs +0 -2
  164. package/dist/marine/rtz.mjs +0 -2
  165. package/dist/types/aws-env.mjs +0 -2
  166. package/dist/types/either.mjs +0 -2
  167. package/dist/types/nullable.mjs +0 -2
  168. package/dist/types/urn.mjs +0 -2
  169. package/dist/types/util-types.mjs +0 -2
  170. /package/dist/{test/asserter.d.mts → __test__/asserter.d.ts} +0 -0
  171. /package/dist/__test__/{dependencies.test.d.mts → dependencies.test.d.ts} +0 -0
  172. /package/dist/__test__/{imports.test.d.mts → imports.test.d.ts} +0 -0
  173. /package/dist/__test__/infra/{acl-builder.test.d.mts → acl-builder.test.d.ts} +0 -0
  174. /package/dist/__test__/infra/api/{handler-factory.test.d.mts → handler-factory.test.d.ts} +0 -0
  175. /package/dist/__test__/infra/api/{response.test.d.mts → response.test.d.ts} +0 -0
  176. /package/dist/__test__/infra/api/{static-integration.test.d.mts → static-integration.test.d.ts} +0 -0
  177. /package/dist/__test__/infra/{documentation.test.d.mts → documentation.test.d.ts} +0 -0
  178. /package/dist/__test__/infra/{scheduler.test.d.mts → scheduler.test.d.ts} +0 -0
  179. /package/dist/__test__/infra/{security-rule.test.d.mts → security-rule.test.d.ts} +0 -0
  180. /package/dist/__test__/marine/{id_utils.test.d.mts → id_utils.test.d.ts} +0 -0
  181. /package/dist/{test/mock-ky.d.mts → __test__/mock-ky.d.ts} +0 -0
  182. /package/dist/__test__/promise/{promise.test.d.mts → promise.test.d.ts} +0 -0
  183. /package/dist/__test__/runtime/{dt-logger.test.d.mts → dt-logger.test.d.ts} +0 -0
  184. /package/dist/__test__/secrets/{secret-holder.test.d.mts → secret-holder.test.d.ts} +0 -0
  185. /package/dist/__test__/secrets/{secret.test.d.mts → secret.test.d.ts} +0 -0
  186. /package/dist/__test__/stack/{rest-apis.test.d.mts → rest-apis.test.d.ts} +0 -0
  187. /package/dist/__test__/test/{mock-ky.test.d.mts → mock-ky.test.d.ts} +0 -0
  188. /package/dist/{test/testutils.d.mts → __test__/testutils.d.ts} +0 -0
  189. /package/dist/__test__/types/{lambda-response.test.d.mts → lambda-response.test.d.ts} +0 -0
  190. /package/dist/__test__/utils/{date-utils.test.d.mts → date-utils.test.d.ts} +0 -0
  191. /package/dist/__test__/utils/{geometry.test.d.mts → geometry.test.d.ts} +0 -0
  192. /package/dist/__test__/utils/{logging.test.d.mts → logging.test.d.ts} +0 -0
  193. /package/dist/__test__/utils/{utils.test.d.mts → utils.test.d.ts} +0 -0
  194. /package/dist/aws/infra/canaries/{canary-keys.d.mts → canary-keys.d.ts} +0 -0
  195. /package/dist/aws/infra/stack/{parameters.d.mts → parameters.d.ts} +0 -0
  196. /package/dist/aws/infra/stack/{stack-checking-aspect.d.mts → stack-checking-aspect.d.ts} +0 -0
  197. /package/dist/aws/infra/stacks/{intra-stack-configuration.d.mts → intra-stack-configuration.d.ts} +0 -0
  198. /package/dist/aws/runtime/{apikey.d.mts → apikey.d.ts} +0 -0
  199. /package/dist/aws/runtime/{dt-logger.d.mts → dt-logger.d.ts} +0 -0
  200. /package/dist/aws/runtime/{environment.d.mts → environment.d.ts} +0 -0
  201. /package/dist/aws/runtime/secrets/{proxy-holder.d.mts → proxy-holder.d.ts} +0 -0
  202. /package/dist/aws/runtime/secrets/{rds-holder.d.mts → rds-holder.d.ts} +0 -0
  203. /package/dist/aws/runtime/secrets/{secret.d.mts → secret.d.ts} +0 -0
  204. /package/dist/aws/types/{errors.d.mts → errors.d.ts} +0 -0
  205. /package/dist/aws/types/{lambda-response.d.mts → lambda-response.d.ts} +0 -0
  206. /package/dist/aws/types/{mediatypes.d.mts → mediatypes.d.ts} +0 -0
  207. /package/dist/aws/types/{proxytypes.d.mts → proxytypes.d.ts} +0 -0
  208. /package/dist/aws/types/{tags.d.mts → tags.d.ts} +0 -0
  209. /package/dist/database/{database.d.mts → database.d.ts} +0 -0
  210. /package/dist/database/{models.d.mts → models.d.ts} +0 -0
  211. /package/dist/marine/{id_utils.d.mts → id_utils.d.ts} +0 -0
  212. /package/dist/marine/{rtz.d.mts → rtz.d.ts} +0 -0
  213. /package/dist/types/{async-timeout-error.d.mts → async-timeout-error.d.ts} +0 -0
  214. /package/dist/types/{aws-env.d.mts → aws-env.d.ts} +0 -0
  215. /package/dist/types/{either.d.mts → either.d.ts} +0 -0
  216. /package/dist/types/{http-error.d.mts → http-error.d.ts} +0 -0
  217. /package/dist/types/{input-error.d.mts → input-error.d.ts} +0 -0
  218. /package/dist/types/{language.d.mts → language.d.ts} +0 -0
  219. /package/dist/types/{traffictype.d.mts → traffictype.d.ts} +0 -0
  220. /package/dist/types/{urn.d.mts → urn.d.ts} +0 -0
  221. /package/dist/types/{util-types.d.mts → util-types.d.ts} +0 -0
  222. /package/dist/types/{validator.d.mts → validator.d.ts} +0 -0
  223. /package/dist/utils/{base64.d.mts → base64.d.ts} +0 -0
  224. /package/dist/utils/{date-utils.d.mts → date-utils.d.ts} +0 -0
  225. /package/dist/utils/{retry.d.mts → retry.d.ts} +0 -0
  226. /package/dist/utils/{slack.d.mts → slack.d.ts} +0 -0
@@ -0,0 +1,4342 @@
1
+ import { z } from "zod";
2
+ export declare const serverObject: z.ZodObject<{
3
+ url: z.ZodString;
4
+ description: z.ZodOptional<z.ZodString>;
5
+ variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6
+ }, "strip", z.ZodTypeAny, {
7
+ url: string;
8
+ description?: string | undefined;
9
+ variables?: Record<string, unknown> | undefined;
10
+ }, {
11
+ url: string;
12
+ description?: string | undefined;
13
+ variables?: Record<string, unknown> | undefined;
14
+ }>;
15
+ export declare const parameterObject: z.ZodObject<{
16
+ name: z.ZodString;
17
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
18
+ description: z.ZodOptional<z.ZodString>;
19
+ required: z.ZodOptional<z.ZodBoolean>;
20
+ deprecated: z.ZodOptional<z.ZodBoolean>;
21
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
22
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
23
+ explode: z.ZodOptional<z.ZodString>;
24
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
25
+ schema: z.ZodOptional<z.ZodUnknown>;
26
+ example: z.ZodOptional<z.ZodUnknown>;
27
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
28
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
29
+ }, "strip", z.ZodTypeAny, {
30
+ name: string;
31
+ in: "path" | "header" | "query" | "cookie";
32
+ description?: string | undefined;
33
+ required?: boolean | undefined;
34
+ deprecated?: boolean | undefined;
35
+ allowEmptyValue?: boolean | undefined;
36
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
37
+ explode?: string | undefined;
38
+ allowReserved?: boolean | undefined;
39
+ schema?: unknown;
40
+ example?: unknown;
41
+ examples?: Record<string, unknown> | undefined;
42
+ content?: Record<string, unknown> | undefined;
43
+ }, {
44
+ name: string;
45
+ in: "path" | "header" | "query" | "cookie";
46
+ description?: string | undefined;
47
+ required?: boolean | undefined;
48
+ deprecated?: boolean | undefined;
49
+ allowEmptyValue?: boolean | undefined;
50
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
51
+ explode?: string | undefined;
52
+ allowReserved?: boolean | undefined;
53
+ schema?: unknown;
54
+ example?: unknown;
55
+ examples?: Record<string, unknown> | undefined;
56
+ content?: Record<string, unknown> | undefined;
57
+ }>;
58
+ export declare const referenceObject: z.ZodObject<{
59
+ $ref: z.ZodString;
60
+ summary: z.ZodOptional<z.ZodString>;
61
+ description: z.ZodOptional<z.ZodString>;
62
+ }, "strip", z.ZodTypeAny, {
63
+ $ref: string;
64
+ description?: string | undefined;
65
+ summary?: string | undefined;
66
+ }, {
67
+ $ref: string;
68
+ description?: string | undefined;
69
+ summary?: string | undefined;
70
+ }>;
71
+ export declare const openapiOperation: z.ZodObject<{
72
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
73
+ summary: z.ZodOptional<z.ZodString>;
74
+ description: z.ZodOptional<z.ZodString>;
75
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
76
+ operationId: z.ZodOptional<z.ZodString>;
77
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
78
+ name: z.ZodString;
79
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
80
+ description: z.ZodOptional<z.ZodString>;
81
+ required: z.ZodOptional<z.ZodBoolean>;
82
+ deprecated: z.ZodOptional<z.ZodBoolean>;
83
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
84
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
85
+ explode: z.ZodOptional<z.ZodString>;
86
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
87
+ schema: z.ZodOptional<z.ZodUnknown>;
88
+ example: z.ZodOptional<z.ZodUnknown>;
89
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
90
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
91
+ }, "strip", z.ZodTypeAny, {
92
+ name: string;
93
+ in: "path" | "header" | "query" | "cookie";
94
+ description?: string | undefined;
95
+ required?: boolean | undefined;
96
+ deprecated?: boolean | undefined;
97
+ allowEmptyValue?: boolean | undefined;
98
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
99
+ explode?: string | undefined;
100
+ allowReserved?: boolean | undefined;
101
+ schema?: unknown;
102
+ example?: unknown;
103
+ examples?: Record<string, unknown> | undefined;
104
+ content?: Record<string, unknown> | undefined;
105
+ }, {
106
+ name: string;
107
+ in: "path" | "header" | "query" | "cookie";
108
+ description?: string | undefined;
109
+ required?: boolean | undefined;
110
+ deprecated?: boolean | undefined;
111
+ allowEmptyValue?: boolean | undefined;
112
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
113
+ explode?: string | undefined;
114
+ allowReserved?: boolean | undefined;
115
+ schema?: unknown;
116
+ example?: unknown;
117
+ examples?: Record<string, unknown> | undefined;
118
+ content?: Record<string, unknown> | undefined;
119
+ }>, z.ZodObject<{
120
+ $ref: z.ZodString;
121
+ summary: z.ZodOptional<z.ZodString>;
122
+ description: z.ZodOptional<z.ZodString>;
123
+ }, "strip", z.ZodTypeAny, {
124
+ $ref: string;
125
+ description?: string | undefined;
126
+ summary?: string | undefined;
127
+ }, {
128
+ $ref: string;
129
+ description?: string | undefined;
130
+ summary?: string | undefined;
131
+ }>]>, "many">>;
132
+ requestBody: z.ZodOptional<z.ZodUnknown>;
133
+ responses: z.ZodOptional<z.ZodUnknown>;
134
+ callbacks: z.ZodOptional<z.ZodUnknown>;
135
+ deprecated: z.ZodOptional<z.ZodBoolean>;
136
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
137
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
138
+ }, "strip", z.ZodTypeAny, {
139
+ description?: string | undefined;
140
+ tags?: string[] | undefined;
141
+ summary?: string | undefined;
142
+ responses?: unknown;
143
+ parameters?: ({
144
+ name: string;
145
+ in: "path" | "header" | "query" | "cookie";
146
+ description?: string | undefined;
147
+ required?: boolean | undefined;
148
+ deprecated?: boolean | undefined;
149
+ allowEmptyValue?: boolean | undefined;
150
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
151
+ explode?: string | undefined;
152
+ allowReserved?: boolean | undefined;
153
+ schema?: unknown;
154
+ example?: unknown;
155
+ examples?: Record<string, unknown> | undefined;
156
+ content?: Record<string, unknown> | undefined;
157
+ } | {
158
+ $ref: string;
159
+ description?: string | undefined;
160
+ summary?: string | undefined;
161
+ })[] | undefined;
162
+ deprecated?: boolean | undefined;
163
+ externalDocs?: unknown;
164
+ operationId?: string | undefined;
165
+ requestBody?: unknown;
166
+ callbacks?: unknown;
167
+ security?: Record<string, string[]>[] | undefined;
168
+ servers?: unknown[] | undefined;
169
+ }, {
170
+ description?: string | undefined;
171
+ tags?: string[] | undefined;
172
+ summary?: string | undefined;
173
+ responses?: unknown;
174
+ parameters?: ({
175
+ name: string;
176
+ in: "path" | "header" | "query" | "cookie";
177
+ description?: string | undefined;
178
+ required?: boolean | undefined;
179
+ deprecated?: boolean | undefined;
180
+ allowEmptyValue?: boolean | undefined;
181
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
182
+ explode?: string | undefined;
183
+ allowReserved?: boolean | undefined;
184
+ schema?: unknown;
185
+ example?: unknown;
186
+ examples?: Record<string, unknown> | undefined;
187
+ content?: Record<string, unknown> | undefined;
188
+ } | {
189
+ $ref: string;
190
+ description?: string | undefined;
191
+ summary?: string | undefined;
192
+ })[] | undefined;
193
+ deprecated?: boolean | undefined;
194
+ externalDocs?: unknown;
195
+ operationId?: string | undefined;
196
+ requestBody?: unknown;
197
+ callbacks?: unknown;
198
+ security?: Record<string, string[]>[] | undefined;
199
+ servers?: unknown[] | undefined;
200
+ }>;
201
+ export declare const openapiPathItem: z.ZodObject<{
202
+ summary: z.ZodOptional<z.ZodString>;
203
+ description: z.ZodOptional<z.ZodString>;
204
+ get: z.ZodOptional<z.ZodObject<{
205
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
206
+ summary: z.ZodOptional<z.ZodString>;
207
+ description: z.ZodOptional<z.ZodString>;
208
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
209
+ operationId: z.ZodOptional<z.ZodString>;
210
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
211
+ name: z.ZodString;
212
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
213
+ description: z.ZodOptional<z.ZodString>;
214
+ required: z.ZodOptional<z.ZodBoolean>;
215
+ deprecated: z.ZodOptional<z.ZodBoolean>;
216
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
217
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
218
+ explode: z.ZodOptional<z.ZodString>;
219
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
220
+ schema: z.ZodOptional<z.ZodUnknown>;
221
+ example: z.ZodOptional<z.ZodUnknown>;
222
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
223
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
224
+ }, "strip", z.ZodTypeAny, {
225
+ name: string;
226
+ in: "path" | "header" | "query" | "cookie";
227
+ description?: string | undefined;
228
+ required?: boolean | undefined;
229
+ deprecated?: boolean | undefined;
230
+ allowEmptyValue?: boolean | undefined;
231
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
232
+ explode?: string | undefined;
233
+ allowReserved?: boolean | undefined;
234
+ schema?: unknown;
235
+ example?: unknown;
236
+ examples?: Record<string, unknown> | undefined;
237
+ content?: Record<string, unknown> | undefined;
238
+ }, {
239
+ name: string;
240
+ in: "path" | "header" | "query" | "cookie";
241
+ description?: string | undefined;
242
+ required?: boolean | undefined;
243
+ deprecated?: boolean | undefined;
244
+ allowEmptyValue?: boolean | undefined;
245
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
246
+ explode?: string | undefined;
247
+ allowReserved?: boolean | undefined;
248
+ schema?: unknown;
249
+ example?: unknown;
250
+ examples?: Record<string, unknown> | undefined;
251
+ content?: Record<string, unknown> | undefined;
252
+ }>, z.ZodObject<{
253
+ $ref: z.ZodString;
254
+ summary: z.ZodOptional<z.ZodString>;
255
+ description: z.ZodOptional<z.ZodString>;
256
+ }, "strip", z.ZodTypeAny, {
257
+ $ref: string;
258
+ description?: string | undefined;
259
+ summary?: string | undefined;
260
+ }, {
261
+ $ref: string;
262
+ description?: string | undefined;
263
+ summary?: string | undefined;
264
+ }>]>, "many">>;
265
+ requestBody: z.ZodOptional<z.ZodUnknown>;
266
+ responses: z.ZodOptional<z.ZodUnknown>;
267
+ callbacks: z.ZodOptional<z.ZodUnknown>;
268
+ deprecated: z.ZodOptional<z.ZodBoolean>;
269
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
270
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
271
+ }, "strip", z.ZodTypeAny, {
272
+ description?: string | undefined;
273
+ tags?: string[] | undefined;
274
+ summary?: string | undefined;
275
+ responses?: unknown;
276
+ parameters?: ({
277
+ name: string;
278
+ in: "path" | "header" | "query" | "cookie";
279
+ description?: string | undefined;
280
+ required?: boolean | undefined;
281
+ deprecated?: boolean | undefined;
282
+ allowEmptyValue?: boolean | undefined;
283
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
284
+ explode?: string | undefined;
285
+ allowReserved?: boolean | undefined;
286
+ schema?: unknown;
287
+ example?: unknown;
288
+ examples?: Record<string, unknown> | undefined;
289
+ content?: Record<string, unknown> | undefined;
290
+ } | {
291
+ $ref: string;
292
+ description?: string | undefined;
293
+ summary?: string | undefined;
294
+ })[] | undefined;
295
+ deprecated?: boolean | undefined;
296
+ externalDocs?: unknown;
297
+ operationId?: string | undefined;
298
+ requestBody?: unknown;
299
+ callbacks?: unknown;
300
+ security?: Record<string, string[]>[] | undefined;
301
+ servers?: unknown[] | undefined;
302
+ }, {
303
+ description?: string | undefined;
304
+ tags?: string[] | undefined;
305
+ summary?: string | undefined;
306
+ responses?: unknown;
307
+ parameters?: ({
308
+ name: string;
309
+ in: "path" | "header" | "query" | "cookie";
310
+ description?: string | undefined;
311
+ required?: boolean | undefined;
312
+ deprecated?: boolean | undefined;
313
+ allowEmptyValue?: boolean | undefined;
314
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
315
+ explode?: string | undefined;
316
+ allowReserved?: boolean | undefined;
317
+ schema?: unknown;
318
+ example?: unknown;
319
+ examples?: Record<string, unknown> | undefined;
320
+ content?: Record<string, unknown> | undefined;
321
+ } | {
322
+ $ref: string;
323
+ description?: string | undefined;
324
+ summary?: string | undefined;
325
+ })[] | undefined;
326
+ deprecated?: boolean | undefined;
327
+ externalDocs?: unknown;
328
+ operationId?: string | undefined;
329
+ requestBody?: unknown;
330
+ callbacks?: unknown;
331
+ security?: Record<string, string[]>[] | undefined;
332
+ servers?: unknown[] | undefined;
333
+ }>>;
334
+ put: z.ZodOptional<z.ZodObject<{
335
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
336
+ summary: z.ZodOptional<z.ZodString>;
337
+ description: z.ZodOptional<z.ZodString>;
338
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
339
+ operationId: z.ZodOptional<z.ZodString>;
340
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
341
+ name: z.ZodString;
342
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
343
+ description: z.ZodOptional<z.ZodString>;
344
+ required: z.ZodOptional<z.ZodBoolean>;
345
+ deprecated: z.ZodOptional<z.ZodBoolean>;
346
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
347
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
348
+ explode: z.ZodOptional<z.ZodString>;
349
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
350
+ schema: z.ZodOptional<z.ZodUnknown>;
351
+ example: z.ZodOptional<z.ZodUnknown>;
352
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
353
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
354
+ }, "strip", z.ZodTypeAny, {
355
+ name: string;
356
+ in: "path" | "header" | "query" | "cookie";
357
+ description?: string | undefined;
358
+ required?: boolean | undefined;
359
+ deprecated?: boolean | undefined;
360
+ allowEmptyValue?: boolean | undefined;
361
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
362
+ explode?: string | undefined;
363
+ allowReserved?: boolean | undefined;
364
+ schema?: unknown;
365
+ example?: unknown;
366
+ examples?: Record<string, unknown> | undefined;
367
+ content?: Record<string, unknown> | undefined;
368
+ }, {
369
+ name: string;
370
+ in: "path" | "header" | "query" | "cookie";
371
+ description?: string | undefined;
372
+ required?: boolean | undefined;
373
+ deprecated?: boolean | undefined;
374
+ allowEmptyValue?: boolean | undefined;
375
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
376
+ explode?: string | undefined;
377
+ allowReserved?: boolean | undefined;
378
+ schema?: unknown;
379
+ example?: unknown;
380
+ examples?: Record<string, unknown> | undefined;
381
+ content?: Record<string, unknown> | undefined;
382
+ }>, z.ZodObject<{
383
+ $ref: z.ZodString;
384
+ summary: z.ZodOptional<z.ZodString>;
385
+ description: z.ZodOptional<z.ZodString>;
386
+ }, "strip", z.ZodTypeAny, {
387
+ $ref: string;
388
+ description?: string | undefined;
389
+ summary?: string | undefined;
390
+ }, {
391
+ $ref: string;
392
+ description?: string | undefined;
393
+ summary?: string | undefined;
394
+ }>]>, "many">>;
395
+ requestBody: z.ZodOptional<z.ZodUnknown>;
396
+ responses: z.ZodOptional<z.ZodUnknown>;
397
+ callbacks: z.ZodOptional<z.ZodUnknown>;
398
+ deprecated: z.ZodOptional<z.ZodBoolean>;
399
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
400
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
401
+ }, "strip", z.ZodTypeAny, {
402
+ description?: string | undefined;
403
+ tags?: string[] | undefined;
404
+ summary?: string | undefined;
405
+ responses?: unknown;
406
+ parameters?: ({
407
+ name: string;
408
+ in: "path" | "header" | "query" | "cookie";
409
+ description?: string | undefined;
410
+ required?: boolean | undefined;
411
+ deprecated?: boolean | undefined;
412
+ allowEmptyValue?: boolean | undefined;
413
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
414
+ explode?: string | undefined;
415
+ allowReserved?: boolean | undefined;
416
+ schema?: unknown;
417
+ example?: unknown;
418
+ examples?: Record<string, unknown> | undefined;
419
+ content?: Record<string, unknown> | undefined;
420
+ } | {
421
+ $ref: string;
422
+ description?: string | undefined;
423
+ summary?: string | undefined;
424
+ })[] | undefined;
425
+ deprecated?: boolean | undefined;
426
+ externalDocs?: unknown;
427
+ operationId?: string | undefined;
428
+ requestBody?: unknown;
429
+ callbacks?: unknown;
430
+ security?: Record<string, string[]>[] | undefined;
431
+ servers?: unknown[] | undefined;
432
+ }, {
433
+ description?: string | undefined;
434
+ tags?: string[] | undefined;
435
+ summary?: string | undefined;
436
+ responses?: unknown;
437
+ parameters?: ({
438
+ name: string;
439
+ in: "path" | "header" | "query" | "cookie";
440
+ description?: string | undefined;
441
+ required?: boolean | undefined;
442
+ deprecated?: boolean | undefined;
443
+ allowEmptyValue?: boolean | undefined;
444
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
445
+ explode?: string | undefined;
446
+ allowReserved?: boolean | undefined;
447
+ schema?: unknown;
448
+ example?: unknown;
449
+ examples?: Record<string, unknown> | undefined;
450
+ content?: Record<string, unknown> | undefined;
451
+ } | {
452
+ $ref: string;
453
+ description?: string | undefined;
454
+ summary?: string | undefined;
455
+ })[] | undefined;
456
+ deprecated?: boolean | undefined;
457
+ externalDocs?: unknown;
458
+ operationId?: string | undefined;
459
+ requestBody?: unknown;
460
+ callbacks?: unknown;
461
+ security?: Record<string, string[]>[] | undefined;
462
+ servers?: unknown[] | undefined;
463
+ }>>;
464
+ post: z.ZodOptional<z.ZodObject<{
465
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
466
+ summary: z.ZodOptional<z.ZodString>;
467
+ description: z.ZodOptional<z.ZodString>;
468
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
469
+ operationId: z.ZodOptional<z.ZodString>;
470
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
471
+ name: z.ZodString;
472
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
473
+ description: z.ZodOptional<z.ZodString>;
474
+ required: z.ZodOptional<z.ZodBoolean>;
475
+ deprecated: z.ZodOptional<z.ZodBoolean>;
476
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
477
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
478
+ explode: z.ZodOptional<z.ZodString>;
479
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
480
+ schema: z.ZodOptional<z.ZodUnknown>;
481
+ example: z.ZodOptional<z.ZodUnknown>;
482
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
483
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
484
+ }, "strip", z.ZodTypeAny, {
485
+ name: string;
486
+ in: "path" | "header" | "query" | "cookie";
487
+ description?: string | undefined;
488
+ required?: boolean | undefined;
489
+ deprecated?: boolean | undefined;
490
+ allowEmptyValue?: boolean | undefined;
491
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
492
+ explode?: string | undefined;
493
+ allowReserved?: boolean | undefined;
494
+ schema?: unknown;
495
+ example?: unknown;
496
+ examples?: Record<string, unknown> | undefined;
497
+ content?: Record<string, unknown> | undefined;
498
+ }, {
499
+ name: string;
500
+ in: "path" | "header" | "query" | "cookie";
501
+ description?: string | undefined;
502
+ required?: boolean | undefined;
503
+ deprecated?: boolean | undefined;
504
+ allowEmptyValue?: boolean | undefined;
505
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
506
+ explode?: string | undefined;
507
+ allowReserved?: boolean | undefined;
508
+ schema?: unknown;
509
+ example?: unknown;
510
+ examples?: Record<string, unknown> | undefined;
511
+ content?: Record<string, unknown> | undefined;
512
+ }>, z.ZodObject<{
513
+ $ref: z.ZodString;
514
+ summary: z.ZodOptional<z.ZodString>;
515
+ description: z.ZodOptional<z.ZodString>;
516
+ }, "strip", z.ZodTypeAny, {
517
+ $ref: string;
518
+ description?: string | undefined;
519
+ summary?: string | undefined;
520
+ }, {
521
+ $ref: string;
522
+ description?: string | undefined;
523
+ summary?: string | undefined;
524
+ }>]>, "many">>;
525
+ requestBody: z.ZodOptional<z.ZodUnknown>;
526
+ responses: z.ZodOptional<z.ZodUnknown>;
527
+ callbacks: z.ZodOptional<z.ZodUnknown>;
528
+ deprecated: z.ZodOptional<z.ZodBoolean>;
529
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
530
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
531
+ }, "strip", z.ZodTypeAny, {
532
+ description?: string | undefined;
533
+ tags?: string[] | undefined;
534
+ summary?: string | undefined;
535
+ responses?: unknown;
536
+ parameters?: ({
537
+ name: string;
538
+ in: "path" | "header" | "query" | "cookie";
539
+ description?: string | undefined;
540
+ required?: boolean | undefined;
541
+ deprecated?: boolean | undefined;
542
+ allowEmptyValue?: boolean | undefined;
543
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
544
+ explode?: string | undefined;
545
+ allowReserved?: boolean | undefined;
546
+ schema?: unknown;
547
+ example?: unknown;
548
+ examples?: Record<string, unknown> | undefined;
549
+ content?: Record<string, unknown> | undefined;
550
+ } | {
551
+ $ref: string;
552
+ description?: string | undefined;
553
+ summary?: string | undefined;
554
+ })[] | undefined;
555
+ deprecated?: boolean | undefined;
556
+ externalDocs?: unknown;
557
+ operationId?: string | undefined;
558
+ requestBody?: unknown;
559
+ callbacks?: unknown;
560
+ security?: Record<string, string[]>[] | undefined;
561
+ servers?: unknown[] | undefined;
562
+ }, {
563
+ description?: string | undefined;
564
+ tags?: string[] | undefined;
565
+ summary?: string | undefined;
566
+ responses?: unknown;
567
+ parameters?: ({
568
+ name: string;
569
+ in: "path" | "header" | "query" | "cookie";
570
+ description?: string | undefined;
571
+ required?: boolean | undefined;
572
+ deprecated?: boolean | undefined;
573
+ allowEmptyValue?: boolean | undefined;
574
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
575
+ explode?: string | undefined;
576
+ allowReserved?: boolean | undefined;
577
+ schema?: unknown;
578
+ example?: unknown;
579
+ examples?: Record<string, unknown> | undefined;
580
+ content?: Record<string, unknown> | undefined;
581
+ } | {
582
+ $ref: string;
583
+ description?: string | undefined;
584
+ summary?: string | undefined;
585
+ })[] | undefined;
586
+ deprecated?: boolean | undefined;
587
+ externalDocs?: unknown;
588
+ operationId?: string | undefined;
589
+ requestBody?: unknown;
590
+ callbacks?: unknown;
591
+ security?: Record<string, string[]>[] | undefined;
592
+ servers?: unknown[] | undefined;
593
+ }>>;
594
+ delete: z.ZodOptional<z.ZodObject<{
595
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
596
+ summary: z.ZodOptional<z.ZodString>;
597
+ description: z.ZodOptional<z.ZodString>;
598
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
599
+ operationId: z.ZodOptional<z.ZodString>;
600
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
601
+ name: z.ZodString;
602
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
603
+ description: z.ZodOptional<z.ZodString>;
604
+ required: z.ZodOptional<z.ZodBoolean>;
605
+ deprecated: z.ZodOptional<z.ZodBoolean>;
606
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
607
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
608
+ explode: z.ZodOptional<z.ZodString>;
609
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
610
+ schema: z.ZodOptional<z.ZodUnknown>;
611
+ example: z.ZodOptional<z.ZodUnknown>;
612
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
613
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
614
+ }, "strip", z.ZodTypeAny, {
615
+ name: string;
616
+ in: "path" | "header" | "query" | "cookie";
617
+ description?: string | undefined;
618
+ required?: boolean | undefined;
619
+ deprecated?: boolean | undefined;
620
+ allowEmptyValue?: boolean | undefined;
621
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
622
+ explode?: string | undefined;
623
+ allowReserved?: boolean | undefined;
624
+ schema?: unknown;
625
+ example?: unknown;
626
+ examples?: Record<string, unknown> | undefined;
627
+ content?: Record<string, unknown> | undefined;
628
+ }, {
629
+ name: string;
630
+ in: "path" | "header" | "query" | "cookie";
631
+ description?: string | undefined;
632
+ required?: boolean | undefined;
633
+ deprecated?: boolean | undefined;
634
+ allowEmptyValue?: boolean | undefined;
635
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
636
+ explode?: string | undefined;
637
+ allowReserved?: boolean | undefined;
638
+ schema?: unknown;
639
+ example?: unknown;
640
+ examples?: Record<string, unknown> | undefined;
641
+ content?: Record<string, unknown> | undefined;
642
+ }>, z.ZodObject<{
643
+ $ref: z.ZodString;
644
+ summary: z.ZodOptional<z.ZodString>;
645
+ description: z.ZodOptional<z.ZodString>;
646
+ }, "strip", z.ZodTypeAny, {
647
+ $ref: string;
648
+ description?: string | undefined;
649
+ summary?: string | undefined;
650
+ }, {
651
+ $ref: string;
652
+ description?: string | undefined;
653
+ summary?: string | undefined;
654
+ }>]>, "many">>;
655
+ requestBody: z.ZodOptional<z.ZodUnknown>;
656
+ responses: z.ZodOptional<z.ZodUnknown>;
657
+ callbacks: z.ZodOptional<z.ZodUnknown>;
658
+ deprecated: z.ZodOptional<z.ZodBoolean>;
659
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
660
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
661
+ }, "strip", z.ZodTypeAny, {
662
+ description?: string | undefined;
663
+ tags?: string[] | undefined;
664
+ summary?: string | undefined;
665
+ responses?: unknown;
666
+ parameters?: ({
667
+ name: string;
668
+ in: "path" | "header" | "query" | "cookie";
669
+ description?: string | undefined;
670
+ required?: boolean | undefined;
671
+ deprecated?: boolean | undefined;
672
+ allowEmptyValue?: boolean | undefined;
673
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
674
+ explode?: string | undefined;
675
+ allowReserved?: boolean | undefined;
676
+ schema?: unknown;
677
+ example?: unknown;
678
+ examples?: Record<string, unknown> | undefined;
679
+ content?: Record<string, unknown> | undefined;
680
+ } | {
681
+ $ref: string;
682
+ description?: string | undefined;
683
+ summary?: string | undefined;
684
+ })[] | undefined;
685
+ deprecated?: boolean | undefined;
686
+ externalDocs?: unknown;
687
+ operationId?: string | undefined;
688
+ requestBody?: unknown;
689
+ callbacks?: unknown;
690
+ security?: Record<string, string[]>[] | undefined;
691
+ servers?: unknown[] | undefined;
692
+ }, {
693
+ description?: string | undefined;
694
+ tags?: string[] | undefined;
695
+ summary?: string | undefined;
696
+ responses?: unknown;
697
+ parameters?: ({
698
+ name: string;
699
+ in: "path" | "header" | "query" | "cookie";
700
+ description?: string | undefined;
701
+ required?: boolean | undefined;
702
+ deprecated?: boolean | undefined;
703
+ allowEmptyValue?: boolean | undefined;
704
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
705
+ explode?: string | undefined;
706
+ allowReserved?: boolean | undefined;
707
+ schema?: unknown;
708
+ example?: unknown;
709
+ examples?: Record<string, unknown> | undefined;
710
+ content?: Record<string, unknown> | undefined;
711
+ } | {
712
+ $ref: string;
713
+ description?: string | undefined;
714
+ summary?: string | undefined;
715
+ })[] | undefined;
716
+ deprecated?: boolean | undefined;
717
+ externalDocs?: unknown;
718
+ operationId?: string | undefined;
719
+ requestBody?: unknown;
720
+ callbacks?: unknown;
721
+ security?: Record<string, string[]>[] | undefined;
722
+ servers?: unknown[] | undefined;
723
+ }>>;
724
+ options: z.ZodOptional<z.ZodObject<{
725
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
726
+ summary: z.ZodOptional<z.ZodString>;
727
+ description: z.ZodOptional<z.ZodString>;
728
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
729
+ operationId: z.ZodOptional<z.ZodString>;
730
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
731
+ name: z.ZodString;
732
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
733
+ description: z.ZodOptional<z.ZodString>;
734
+ required: z.ZodOptional<z.ZodBoolean>;
735
+ deprecated: z.ZodOptional<z.ZodBoolean>;
736
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
737
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
738
+ explode: z.ZodOptional<z.ZodString>;
739
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
740
+ schema: z.ZodOptional<z.ZodUnknown>;
741
+ example: z.ZodOptional<z.ZodUnknown>;
742
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
743
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
744
+ }, "strip", z.ZodTypeAny, {
745
+ name: string;
746
+ in: "path" | "header" | "query" | "cookie";
747
+ description?: string | undefined;
748
+ required?: boolean | undefined;
749
+ deprecated?: boolean | undefined;
750
+ allowEmptyValue?: boolean | undefined;
751
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
752
+ explode?: string | undefined;
753
+ allowReserved?: boolean | undefined;
754
+ schema?: unknown;
755
+ example?: unknown;
756
+ examples?: Record<string, unknown> | undefined;
757
+ content?: Record<string, unknown> | undefined;
758
+ }, {
759
+ name: string;
760
+ in: "path" | "header" | "query" | "cookie";
761
+ description?: string | undefined;
762
+ required?: boolean | undefined;
763
+ deprecated?: boolean | undefined;
764
+ allowEmptyValue?: boolean | undefined;
765
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
766
+ explode?: string | undefined;
767
+ allowReserved?: boolean | undefined;
768
+ schema?: unknown;
769
+ example?: unknown;
770
+ examples?: Record<string, unknown> | undefined;
771
+ content?: Record<string, unknown> | undefined;
772
+ }>, z.ZodObject<{
773
+ $ref: z.ZodString;
774
+ summary: z.ZodOptional<z.ZodString>;
775
+ description: z.ZodOptional<z.ZodString>;
776
+ }, "strip", z.ZodTypeAny, {
777
+ $ref: string;
778
+ description?: string | undefined;
779
+ summary?: string | undefined;
780
+ }, {
781
+ $ref: string;
782
+ description?: string | undefined;
783
+ summary?: string | undefined;
784
+ }>]>, "many">>;
785
+ requestBody: z.ZodOptional<z.ZodUnknown>;
786
+ responses: z.ZodOptional<z.ZodUnknown>;
787
+ callbacks: z.ZodOptional<z.ZodUnknown>;
788
+ deprecated: z.ZodOptional<z.ZodBoolean>;
789
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
790
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
791
+ }, "strip", z.ZodTypeAny, {
792
+ description?: string | undefined;
793
+ tags?: string[] | undefined;
794
+ summary?: string | undefined;
795
+ responses?: unknown;
796
+ parameters?: ({
797
+ name: string;
798
+ in: "path" | "header" | "query" | "cookie";
799
+ description?: string | undefined;
800
+ required?: boolean | undefined;
801
+ deprecated?: boolean | undefined;
802
+ allowEmptyValue?: boolean | undefined;
803
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
804
+ explode?: string | undefined;
805
+ allowReserved?: boolean | undefined;
806
+ schema?: unknown;
807
+ example?: unknown;
808
+ examples?: Record<string, unknown> | undefined;
809
+ content?: Record<string, unknown> | undefined;
810
+ } | {
811
+ $ref: string;
812
+ description?: string | undefined;
813
+ summary?: string | undefined;
814
+ })[] | undefined;
815
+ deprecated?: boolean | undefined;
816
+ externalDocs?: unknown;
817
+ operationId?: string | undefined;
818
+ requestBody?: unknown;
819
+ callbacks?: unknown;
820
+ security?: Record<string, string[]>[] | undefined;
821
+ servers?: unknown[] | undefined;
822
+ }, {
823
+ description?: string | undefined;
824
+ tags?: string[] | undefined;
825
+ summary?: string | undefined;
826
+ responses?: unknown;
827
+ parameters?: ({
828
+ name: string;
829
+ in: "path" | "header" | "query" | "cookie";
830
+ description?: string | undefined;
831
+ required?: boolean | undefined;
832
+ deprecated?: boolean | undefined;
833
+ allowEmptyValue?: boolean | undefined;
834
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
835
+ explode?: string | undefined;
836
+ allowReserved?: boolean | undefined;
837
+ schema?: unknown;
838
+ example?: unknown;
839
+ examples?: Record<string, unknown> | undefined;
840
+ content?: Record<string, unknown> | undefined;
841
+ } | {
842
+ $ref: string;
843
+ description?: string | undefined;
844
+ summary?: string | undefined;
845
+ })[] | undefined;
846
+ deprecated?: boolean | undefined;
847
+ externalDocs?: unknown;
848
+ operationId?: string | undefined;
849
+ requestBody?: unknown;
850
+ callbacks?: unknown;
851
+ security?: Record<string, string[]>[] | undefined;
852
+ servers?: unknown[] | undefined;
853
+ }>>;
854
+ head: z.ZodOptional<z.ZodObject<{
855
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
856
+ summary: z.ZodOptional<z.ZodString>;
857
+ description: z.ZodOptional<z.ZodString>;
858
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
859
+ operationId: z.ZodOptional<z.ZodString>;
860
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
861
+ name: z.ZodString;
862
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
863
+ description: z.ZodOptional<z.ZodString>;
864
+ required: z.ZodOptional<z.ZodBoolean>;
865
+ deprecated: z.ZodOptional<z.ZodBoolean>;
866
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
867
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
868
+ explode: z.ZodOptional<z.ZodString>;
869
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
870
+ schema: z.ZodOptional<z.ZodUnknown>;
871
+ example: z.ZodOptional<z.ZodUnknown>;
872
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
873
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
874
+ }, "strip", z.ZodTypeAny, {
875
+ name: string;
876
+ in: "path" | "header" | "query" | "cookie";
877
+ description?: string | undefined;
878
+ required?: boolean | undefined;
879
+ deprecated?: boolean | undefined;
880
+ allowEmptyValue?: boolean | undefined;
881
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
882
+ explode?: string | undefined;
883
+ allowReserved?: boolean | undefined;
884
+ schema?: unknown;
885
+ example?: unknown;
886
+ examples?: Record<string, unknown> | undefined;
887
+ content?: Record<string, unknown> | undefined;
888
+ }, {
889
+ name: string;
890
+ in: "path" | "header" | "query" | "cookie";
891
+ description?: string | undefined;
892
+ required?: boolean | undefined;
893
+ deprecated?: boolean | undefined;
894
+ allowEmptyValue?: boolean | undefined;
895
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
896
+ explode?: string | undefined;
897
+ allowReserved?: boolean | undefined;
898
+ schema?: unknown;
899
+ example?: unknown;
900
+ examples?: Record<string, unknown> | undefined;
901
+ content?: Record<string, unknown> | undefined;
902
+ }>, z.ZodObject<{
903
+ $ref: z.ZodString;
904
+ summary: z.ZodOptional<z.ZodString>;
905
+ description: z.ZodOptional<z.ZodString>;
906
+ }, "strip", z.ZodTypeAny, {
907
+ $ref: string;
908
+ description?: string | undefined;
909
+ summary?: string | undefined;
910
+ }, {
911
+ $ref: string;
912
+ description?: string | undefined;
913
+ summary?: string | undefined;
914
+ }>]>, "many">>;
915
+ requestBody: z.ZodOptional<z.ZodUnknown>;
916
+ responses: z.ZodOptional<z.ZodUnknown>;
917
+ callbacks: z.ZodOptional<z.ZodUnknown>;
918
+ deprecated: z.ZodOptional<z.ZodBoolean>;
919
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
920
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
921
+ }, "strip", z.ZodTypeAny, {
922
+ description?: string | undefined;
923
+ tags?: string[] | undefined;
924
+ summary?: string | undefined;
925
+ responses?: unknown;
926
+ parameters?: ({
927
+ name: string;
928
+ in: "path" | "header" | "query" | "cookie";
929
+ description?: string | undefined;
930
+ required?: boolean | undefined;
931
+ deprecated?: boolean | undefined;
932
+ allowEmptyValue?: boolean | undefined;
933
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
934
+ explode?: string | undefined;
935
+ allowReserved?: boolean | undefined;
936
+ schema?: unknown;
937
+ example?: unknown;
938
+ examples?: Record<string, unknown> | undefined;
939
+ content?: Record<string, unknown> | undefined;
940
+ } | {
941
+ $ref: string;
942
+ description?: string | undefined;
943
+ summary?: string | undefined;
944
+ })[] | undefined;
945
+ deprecated?: boolean | undefined;
946
+ externalDocs?: unknown;
947
+ operationId?: string | undefined;
948
+ requestBody?: unknown;
949
+ callbacks?: unknown;
950
+ security?: Record<string, string[]>[] | undefined;
951
+ servers?: unknown[] | undefined;
952
+ }, {
953
+ description?: string | undefined;
954
+ tags?: string[] | undefined;
955
+ summary?: string | undefined;
956
+ responses?: unknown;
957
+ parameters?: ({
958
+ name: string;
959
+ in: "path" | "header" | "query" | "cookie";
960
+ description?: string | undefined;
961
+ required?: boolean | undefined;
962
+ deprecated?: boolean | undefined;
963
+ allowEmptyValue?: boolean | undefined;
964
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
965
+ explode?: string | undefined;
966
+ allowReserved?: boolean | undefined;
967
+ schema?: unknown;
968
+ example?: unknown;
969
+ examples?: Record<string, unknown> | undefined;
970
+ content?: Record<string, unknown> | undefined;
971
+ } | {
972
+ $ref: string;
973
+ description?: string | undefined;
974
+ summary?: string | undefined;
975
+ })[] | undefined;
976
+ deprecated?: boolean | undefined;
977
+ externalDocs?: unknown;
978
+ operationId?: string | undefined;
979
+ requestBody?: unknown;
980
+ callbacks?: unknown;
981
+ security?: Record<string, string[]>[] | undefined;
982
+ servers?: unknown[] | undefined;
983
+ }>>;
984
+ patch: z.ZodOptional<z.ZodObject<{
985
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
986
+ summary: z.ZodOptional<z.ZodString>;
987
+ description: z.ZodOptional<z.ZodString>;
988
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
989
+ operationId: z.ZodOptional<z.ZodString>;
990
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
991
+ name: z.ZodString;
992
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
993
+ description: z.ZodOptional<z.ZodString>;
994
+ required: z.ZodOptional<z.ZodBoolean>;
995
+ deprecated: z.ZodOptional<z.ZodBoolean>;
996
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
997
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
998
+ explode: z.ZodOptional<z.ZodString>;
999
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
1000
+ schema: z.ZodOptional<z.ZodUnknown>;
1001
+ example: z.ZodOptional<z.ZodUnknown>;
1002
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1003
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1004
+ }, "strip", z.ZodTypeAny, {
1005
+ name: string;
1006
+ in: "path" | "header" | "query" | "cookie";
1007
+ description?: string | undefined;
1008
+ required?: boolean | undefined;
1009
+ deprecated?: boolean | undefined;
1010
+ allowEmptyValue?: boolean | undefined;
1011
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1012
+ explode?: string | undefined;
1013
+ allowReserved?: boolean | undefined;
1014
+ schema?: unknown;
1015
+ example?: unknown;
1016
+ examples?: Record<string, unknown> | undefined;
1017
+ content?: Record<string, unknown> | undefined;
1018
+ }, {
1019
+ name: string;
1020
+ in: "path" | "header" | "query" | "cookie";
1021
+ description?: string | undefined;
1022
+ required?: boolean | undefined;
1023
+ deprecated?: boolean | undefined;
1024
+ allowEmptyValue?: boolean | undefined;
1025
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1026
+ explode?: string | undefined;
1027
+ allowReserved?: boolean | undefined;
1028
+ schema?: unknown;
1029
+ example?: unknown;
1030
+ examples?: Record<string, unknown> | undefined;
1031
+ content?: Record<string, unknown> | undefined;
1032
+ }>, z.ZodObject<{
1033
+ $ref: z.ZodString;
1034
+ summary: z.ZodOptional<z.ZodString>;
1035
+ description: z.ZodOptional<z.ZodString>;
1036
+ }, "strip", z.ZodTypeAny, {
1037
+ $ref: string;
1038
+ description?: string | undefined;
1039
+ summary?: string | undefined;
1040
+ }, {
1041
+ $ref: string;
1042
+ description?: string | undefined;
1043
+ summary?: string | undefined;
1044
+ }>]>, "many">>;
1045
+ requestBody: z.ZodOptional<z.ZodUnknown>;
1046
+ responses: z.ZodOptional<z.ZodUnknown>;
1047
+ callbacks: z.ZodOptional<z.ZodUnknown>;
1048
+ deprecated: z.ZodOptional<z.ZodBoolean>;
1049
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
1050
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1051
+ }, "strip", z.ZodTypeAny, {
1052
+ description?: string | undefined;
1053
+ tags?: string[] | undefined;
1054
+ summary?: string | undefined;
1055
+ responses?: unknown;
1056
+ parameters?: ({
1057
+ name: string;
1058
+ in: "path" | "header" | "query" | "cookie";
1059
+ description?: string | undefined;
1060
+ required?: boolean | undefined;
1061
+ deprecated?: boolean | undefined;
1062
+ allowEmptyValue?: boolean | undefined;
1063
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1064
+ explode?: string | undefined;
1065
+ allowReserved?: boolean | undefined;
1066
+ schema?: unknown;
1067
+ example?: unknown;
1068
+ examples?: Record<string, unknown> | undefined;
1069
+ content?: Record<string, unknown> | undefined;
1070
+ } | {
1071
+ $ref: string;
1072
+ description?: string | undefined;
1073
+ summary?: string | undefined;
1074
+ })[] | undefined;
1075
+ deprecated?: boolean | undefined;
1076
+ externalDocs?: unknown;
1077
+ operationId?: string | undefined;
1078
+ requestBody?: unknown;
1079
+ callbacks?: unknown;
1080
+ security?: Record<string, string[]>[] | undefined;
1081
+ servers?: unknown[] | undefined;
1082
+ }, {
1083
+ description?: string | undefined;
1084
+ tags?: string[] | undefined;
1085
+ summary?: string | undefined;
1086
+ responses?: unknown;
1087
+ parameters?: ({
1088
+ name: string;
1089
+ in: "path" | "header" | "query" | "cookie";
1090
+ description?: string | undefined;
1091
+ required?: boolean | undefined;
1092
+ deprecated?: boolean | undefined;
1093
+ allowEmptyValue?: boolean | undefined;
1094
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1095
+ explode?: string | undefined;
1096
+ allowReserved?: boolean | undefined;
1097
+ schema?: unknown;
1098
+ example?: unknown;
1099
+ examples?: Record<string, unknown> | undefined;
1100
+ content?: Record<string, unknown> | undefined;
1101
+ } | {
1102
+ $ref: string;
1103
+ description?: string | undefined;
1104
+ summary?: string | undefined;
1105
+ })[] | undefined;
1106
+ deprecated?: boolean | undefined;
1107
+ externalDocs?: unknown;
1108
+ operationId?: string | undefined;
1109
+ requestBody?: unknown;
1110
+ callbacks?: unknown;
1111
+ security?: Record<string, string[]>[] | undefined;
1112
+ servers?: unknown[] | undefined;
1113
+ }>>;
1114
+ trace: z.ZodOptional<z.ZodObject<{
1115
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1116
+ summary: z.ZodOptional<z.ZodString>;
1117
+ description: z.ZodOptional<z.ZodString>;
1118
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
1119
+ operationId: z.ZodOptional<z.ZodString>;
1120
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
1121
+ name: z.ZodString;
1122
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
1123
+ description: z.ZodOptional<z.ZodString>;
1124
+ required: z.ZodOptional<z.ZodBoolean>;
1125
+ deprecated: z.ZodOptional<z.ZodBoolean>;
1126
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
1127
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
1128
+ explode: z.ZodOptional<z.ZodString>;
1129
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
1130
+ schema: z.ZodOptional<z.ZodUnknown>;
1131
+ example: z.ZodOptional<z.ZodUnknown>;
1132
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1133
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1134
+ }, "strip", z.ZodTypeAny, {
1135
+ name: string;
1136
+ in: "path" | "header" | "query" | "cookie";
1137
+ description?: string | undefined;
1138
+ required?: boolean | undefined;
1139
+ deprecated?: boolean | undefined;
1140
+ allowEmptyValue?: boolean | undefined;
1141
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1142
+ explode?: string | undefined;
1143
+ allowReserved?: boolean | undefined;
1144
+ schema?: unknown;
1145
+ example?: unknown;
1146
+ examples?: Record<string, unknown> | undefined;
1147
+ content?: Record<string, unknown> | undefined;
1148
+ }, {
1149
+ name: string;
1150
+ in: "path" | "header" | "query" | "cookie";
1151
+ description?: string | undefined;
1152
+ required?: boolean | undefined;
1153
+ deprecated?: boolean | undefined;
1154
+ allowEmptyValue?: boolean | undefined;
1155
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1156
+ explode?: string | undefined;
1157
+ allowReserved?: boolean | undefined;
1158
+ schema?: unknown;
1159
+ example?: unknown;
1160
+ examples?: Record<string, unknown> | undefined;
1161
+ content?: Record<string, unknown> | undefined;
1162
+ }>, z.ZodObject<{
1163
+ $ref: z.ZodString;
1164
+ summary: z.ZodOptional<z.ZodString>;
1165
+ description: z.ZodOptional<z.ZodString>;
1166
+ }, "strip", z.ZodTypeAny, {
1167
+ $ref: string;
1168
+ description?: string | undefined;
1169
+ summary?: string | undefined;
1170
+ }, {
1171
+ $ref: string;
1172
+ description?: string | undefined;
1173
+ summary?: string | undefined;
1174
+ }>]>, "many">>;
1175
+ requestBody: z.ZodOptional<z.ZodUnknown>;
1176
+ responses: z.ZodOptional<z.ZodUnknown>;
1177
+ callbacks: z.ZodOptional<z.ZodUnknown>;
1178
+ deprecated: z.ZodOptional<z.ZodBoolean>;
1179
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
1180
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1181
+ }, "strip", z.ZodTypeAny, {
1182
+ description?: string | undefined;
1183
+ tags?: string[] | undefined;
1184
+ summary?: string | undefined;
1185
+ responses?: unknown;
1186
+ parameters?: ({
1187
+ name: string;
1188
+ in: "path" | "header" | "query" | "cookie";
1189
+ description?: string | undefined;
1190
+ required?: boolean | undefined;
1191
+ deprecated?: boolean | undefined;
1192
+ allowEmptyValue?: boolean | undefined;
1193
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1194
+ explode?: string | undefined;
1195
+ allowReserved?: boolean | undefined;
1196
+ schema?: unknown;
1197
+ example?: unknown;
1198
+ examples?: Record<string, unknown> | undefined;
1199
+ content?: Record<string, unknown> | undefined;
1200
+ } | {
1201
+ $ref: string;
1202
+ description?: string | undefined;
1203
+ summary?: string | undefined;
1204
+ })[] | undefined;
1205
+ deprecated?: boolean | undefined;
1206
+ externalDocs?: unknown;
1207
+ operationId?: string | undefined;
1208
+ requestBody?: unknown;
1209
+ callbacks?: unknown;
1210
+ security?: Record<string, string[]>[] | undefined;
1211
+ servers?: unknown[] | undefined;
1212
+ }, {
1213
+ description?: string | undefined;
1214
+ tags?: string[] | undefined;
1215
+ summary?: string | undefined;
1216
+ responses?: unknown;
1217
+ parameters?: ({
1218
+ name: string;
1219
+ in: "path" | "header" | "query" | "cookie";
1220
+ description?: string | undefined;
1221
+ required?: boolean | undefined;
1222
+ deprecated?: boolean | undefined;
1223
+ allowEmptyValue?: boolean | undefined;
1224
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1225
+ explode?: string | undefined;
1226
+ allowReserved?: boolean | undefined;
1227
+ schema?: unknown;
1228
+ example?: unknown;
1229
+ examples?: Record<string, unknown> | undefined;
1230
+ content?: Record<string, unknown> | undefined;
1231
+ } | {
1232
+ $ref: string;
1233
+ description?: string | undefined;
1234
+ summary?: string | undefined;
1235
+ })[] | undefined;
1236
+ deprecated?: boolean | undefined;
1237
+ externalDocs?: unknown;
1238
+ operationId?: string | undefined;
1239
+ requestBody?: unknown;
1240
+ callbacks?: unknown;
1241
+ security?: Record<string, string[]>[] | undefined;
1242
+ servers?: unknown[] | undefined;
1243
+ }>>;
1244
+ servers: z.ZodOptional<z.ZodObject<{
1245
+ url: z.ZodString;
1246
+ description: z.ZodOptional<z.ZodString>;
1247
+ variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1248
+ }, "strip", z.ZodTypeAny, {
1249
+ url: string;
1250
+ description?: string | undefined;
1251
+ variables?: Record<string, unknown> | undefined;
1252
+ }, {
1253
+ url: string;
1254
+ description?: string | undefined;
1255
+ variables?: Record<string, unknown> | undefined;
1256
+ }>>;
1257
+ parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
1258
+ name: z.ZodString;
1259
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
1260
+ description: z.ZodOptional<z.ZodString>;
1261
+ required: z.ZodOptional<z.ZodBoolean>;
1262
+ deprecated: z.ZodOptional<z.ZodBoolean>;
1263
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
1264
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
1265
+ explode: z.ZodOptional<z.ZodString>;
1266
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
1267
+ schema: z.ZodOptional<z.ZodUnknown>;
1268
+ example: z.ZodOptional<z.ZodUnknown>;
1269
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1270
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1271
+ }, "strip", z.ZodTypeAny, {
1272
+ name: string;
1273
+ in: "path" | "header" | "query" | "cookie";
1274
+ description?: string | undefined;
1275
+ required?: boolean | undefined;
1276
+ deprecated?: boolean | undefined;
1277
+ allowEmptyValue?: boolean | undefined;
1278
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1279
+ explode?: string | undefined;
1280
+ allowReserved?: boolean | undefined;
1281
+ schema?: unknown;
1282
+ example?: unknown;
1283
+ examples?: Record<string, unknown> | undefined;
1284
+ content?: Record<string, unknown> | undefined;
1285
+ }, {
1286
+ name: string;
1287
+ in: "path" | "header" | "query" | "cookie";
1288
+ description?: string | undefined;
1289
+ required?: boolean | undefined;
1290
+ deprecated?: boolean | undefined;
1291
+ allowEmptyValue?: boolean | undefined;
1292
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1293
+ explode?: string | undefined;
1294
+ allowReserved?: boolean | undefined;
1295
+ schema?: unknown;
1296
+ example?: unknown;
1297
+ examples?: Record<string, unknown> | undefined;
1298
+ content?: Record<string, unknown> | undefined;
1299
+ }>, "many">>;
1300
+ }, "strip", z.ZodTypeAny, {
1301
+ description?: string | undefined;
1302
+ summary?: string | undefined;
1303
+ parameters?: {
1304
+ name: string;
1305
+ in: "path" | "header" | "query" | "cookie";
1306
+ description?: string | undefined;
1307
+ required?: boolean | undefined;
1308
+ deprecated?: boolean | undefined;
1309
+ allowEmptyValue?: boolean | undefined;
1310
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1311
+ explode?: string | undefined;
1312
+ allowReserved?: boolean | undefined;
1313
+ schema?: unknown;
1314
+ example?: unknown;
1315
+ examples?: Record<string, unknown> | undefined;
1316
+ content?: Record<string, unknown> | undefined;
1317
+ }[] | undefined;
1318
+ get?: {
1319
+ description?: string | undefined;
1320
+ tags?: string[] | undefined;
1321
+ summary?: string | undefined;
1322
+ responses?: unknown;
1323
+ parameters?: ({
1324
+ name: string;
1325
+ in: "path" | "header" | "query" | "cookie";
1326
+ description?: string | undefined;
1327
+ required?: boolean | undefined;
1328
+ deprecated?: boolean | undefined;
1329
+ allowEmptyValue?: boolean | undefined;
1330
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1331
+ explode?: string | undefined;
1332
+ allowReserved?: boolean | undefined;
1333
+ schema?: unknown;
1334
+ example?: unknown;
1335
+ examples?: Record<string, unknown> | undefined;
1336
+ content?: Record<string, unknown> | undefined;
1337
+ } | {
1338
+ $ref: string;
1339
+ description?: string | undefined;
1340
+ summary?: string | undefined;
1341
+ })[] | undefined;
1342
+ deprecated?: boolean | undefined;
1343
+ externalDocs?: unknown;
1344
+ operationId?: string | undefined;
1345
+ requestBody?: unknown;
1346
+ callbacks?: unknown;
1347
+ security?: Record<string, string[]>[] | undefined;
1348
+ servers?: unknown[] | undefined;
1349
+ } | undefined;
1350
+ post?: {
1351
+ description?: string | undefined;
1352
+ tags?: string[] | undefined;
1353
+ summary?: string | undefined;
1354
+ responses?: unknown;
1355
+ parameters?: ({
1356
+ name: string;
1357
+ in: "path" | "header" | "query" | "cookie";
1358
+ description?: string | undefined;
1359
+ required?: boolean | undefined;
1360
+ deprecated?: boolean | undefined;
1361
+ allowEmptyValue?: boolean | undefined;
1362
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1363
+ explode?: string | undefined;
1364
+ allowReserved?: boolean | undefined;
1365
+ schema?: unknown;
1366
+ example?: unknown;
1367
+ examples?: Record<string, unknown> | undefined;
1368
+ content?: Record<string, unknown> | undefined;
1369
+ } | {
1370
+ $ref: string;
1371
+ description?: string | undefined;
1372
+ summary?: string | undefined;
1373
+ })[] | undefined;
1374
+ deprecated?: boolean | undefined;
1375
+ externalDocs?: unknown;
1376
+ operationId?: string | undefined;
1377
+ requestBody?: unknown;
1378
+ callbacks?: unknown;
1379
+ security?: Record<string, string[]>[] | undefined;
1380
+ servers?: unknown[] | undefined;
1381
+ } | undefined;
1382
+ put?: {
1383
+ description?: string | undefined;
1384
+ tags?: string[] | undefined;
1385
+ summary?: string | undefined;
1386
+ responses?: unknown;
1387
+ parameters?: ({
1388
+ name: string;
1389
+ in: "path" | "header" | "query" | "cookie";
1390
+ description?: string | undefined;
1391
+ required?: boolean | undefined;
1392
+ deprecated?: boolean | undefined;
1393
+ allowEmptyValue?: boolean | undefined;
1394
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1395
+ explode?: string | undefined;
1396
+ allowReserved?: boolean | undefined;
1397
+ schema?: unknown;
1398
+ example?: unknown;
1399
+ examples?: Record<string, unknown> | undefined;
1400
+ content?: Record<string, unknown> | undefined;
1401
+ } | {
1402
+ $ref: string;
1403
+ description?: string | undefined;
1404
+ summary?: string | undefined;
1405
+ })[] | undefined;
1406
+ deprecated?: boolean | undefined;
1407
+ externalDocs?: unknown;
1408
+ operationId?: string | undefined;
1409
+ requestBody?: unknown;
1410
+ callbacks?: unknown;
1411
+ security?: Record<string, string[]>[] | undefined;
1412
+ servers?: unknown[] | undefined;
1413
+ } | undefined;
1414
+ delete?: {
1415
+ description?: string | undefined;
1416
+ tags?: string[] | undefined;
1417
+ summary?: string | undefined;
1418
+ responses?: unknown;
1419
+ parameters?: ({
1420
+ name: string;
1421
+ in: "path" | "header" | "query" | "cookie";
1422
+ description?: string | undefined;
1423
+ required?: boolean | undefined;
1424
+ deprecated?: boolean | undefined;
1425
+ allowEmptyValue?: boolean | undefined;
1426
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1427
+ explode?: string | undefined;
1428
+ allowReserved?: boolean | undefined;
1429
+ schema?: unknown;
1430
+ example?: unknown;
1431
+ examples?: Record<string, unknown> | undefined;
1432
+ content?: Record<string, unknown> | undefined;
1433
+ } | {
1434
+ $ref: string;
1435
+ description?: string | undefined;
1436
+ summary?: string | undefined;
1437
+ })[] | undefined;
1438
+ deprecated?: boolean | undefined;
1439
+ externalDocs?: unknown;
1440
+ operationId?: string | undefined;
1441
+ requestBody?: unknown;
1442
+ callbacks?: unknown;
1443
+ security?: Record<string, string[]>[] | undefined;
1444
+ servers?: unknown[] | undefined;
1445
+ } | undefined;
1446
+ patch?: {
1447
+ description?: string | undefined;
1448
+ tags?: string[] | undefined;
1449
+ summary?: string | undefined;
1450
+ responses?: unknown;
1451
+ parameters?: ({
1452
+ name: string;
1453
+ in: "path" | "header" | "query" | "cookie";
1454
+ description?: string | undefined;
1455
+ required?: boolean | undefined;
1456
+ deprecated?: boolean | undefined;
1457
+ allowEmptyValue?: boolean | undefined;
1458
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1459
+ explode?: string | undefined;
1460
+ allowReserved?: boolean | undefined;
1461
+ schema?: unknown;
1462
+ example?: unknown;
1463
+ examples?: Record<string, unknown> | undefined;
1464
+ content?: Record<string, unknown> | undefined;
1465
+ } | {
1466
+ $ref: string;
1467
+ description?: string | undefined;
1468
+ summary?: string | undefined;
1469
+ })[] | undefined;
1470
+ deprecated?: boolean | undefined;
1471
+ externalDocs?: unknown;
1472
+ operationId?: string | undefined;
1473
+ requestBody?: unknown;
1474
+ callbacks?: unknown;
1475
+ security?: Record<string, string[]>[] | undefined;
1476
+ servers?: unknown[] | undefined;
1477
+ } | undefined;
1478
+ head?: {
1479
+ description?: string | undefined;
1480
+ tags?: string[] | undefined;
1481
+ summary?: string | undefined;
1482
+ responses?: unknown;
1483
+ parameters?: ({
1484
+ name: string;
1485
+ in: "path" | "header" | "query" | "cookie";
1486
+ description?: string | undefined;
1487
+ required?: boolean | undefined;
1488
+ deprecated?: boolean | undefined;
1489
+ allowEmptyValue?: boolean | undefined;
1490
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1491
+ explode?: string | undefined;
1492
+ allowReserved?: boolean | undefined;
1493
+ schema?: unknown;
1494
+ example?: unknown;
1495
+ examples?: Record<string, unknown> | undefined;
1496
+ content?: Record<string, unknown> | undefined;
1497
+ } | {
1498
+ $ref: string;
1499
+ description?: string | undefined;
1500
+ summary?: string | undefined;
1501
+ })[] | undefined;
1502
+ deprecated?: boolean | undefined;
1503
+ externalDocs?: unknown;
1504
+ operationId?: string | undefined;
1505
+ requestBody?: unknown;
1506
+ callbacks?: unknown;
1507
+ security?: Record<string, string[]>[] | undefined;
1508
+ servers?: unknown[] | undefined;
1509
+ } | undefined;
1510
+ options?: {
1511
+ description?: string | undefined;
1512
+ tags?: string[] | undefined;
1513
+ summary?: string | undefined;
1514
+ responses?: unknown;
1515
+ parameters?: ({
1516
+ name: string;
1517
+ in: "path" | "header" | "query" | "cookie";
1518
+ description?: string | undefined;
1519
+ required?: boolean | undefined;
1520
+ deprecated?: boolean | undefined;
1521
+ allowEmptyValue?: boolean | undefined;
1522
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1523
+ explode?: string | undefined;
1524
+ allowReserved?: boolean | undefined;
1525
+ schema?: unknown;
1526
+ example?: unknown;
1527
+ examples?: Record<string, unknown> | undefined;
1528
+ content?: Record<string, unknown> | undefined;
1529
+ } | {
1530
+ $ref: string;
1531
+ description?: string | undefined;
1532
+ summary?: string | undefined;
1533
+ })[] | undefined;
1534
+ deprecated?: boolean | undefined;
1535
+ externalDocs?: unknown;
1536
+ operationId?: string | undefined;
1537
+ requestBody?: unknown;
1538
+ callbacks?: unknown;
1539
+ security?: Record<string, string[]>[] | undefined;
1540
+ servers?: unknown[] | undefined;
1541
+ } | undefined;
1542
+ servers?: {
1543
+ url: string;
1544
+ description?: string | undefined;
1545
+ variables?: Record<string, unknown> | undefined;
1546
+ } | undefined;
1547
+ trace?: {
1548
+ description?: string | undefined;
1549
+ tags?: string[] | undefined;
1550
+ summary?: string | undefined;
1551
+ responses?: unknown;
1552
+ parameters?: ({
1553
+ name: string;
1554
+ in: "path" | "header" | "query" | "cookie";
1555
+ description?: string | undefined;
1556
+ required?: boolean | undefined;
1557
+ deprecated?: boolean | undefined;
1558
+ allowEmptyValue?: boolean | undefined;
1559
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1560
+ explode?: string | undefined;
1561
+ allowReserved?: boolean | undefined;
1562
+ schema?: unknown;
1563
+ example?: unknown;
1564
+ examples?: Record<string, unknown> | undefined;
1565
+ content?: Record<string, unknown> | undefined;
1566
+ } | {
1567
+ $ref: string;
1568
+ description?: string | undefined;
1569
+ summary?: string | undefined;
1570
+ })[] | undefined;
1571
+ deprecated?: boolean | undefined;
1572
+ externalDocs?: unknown;
1573
+ operationId?: string | undefined;
1574
+ requestBody?: unknown;
1575
+ callbacks?: unknown;
1576
+ security?: Record<string, string[]>[] | undefined;
1577
+ servers?: unknown[] | undefined;
1578
+ } | undefined;
1579
+ }, {
1580
+ description?: string | undefined;
1581
+ summary?: string | undefined;
1582
+ parameters?: {
1583
+ name: string;
1584
+ in: "path" | "header" | "query" | "cookie";
1585
+ description?: string | undefined;
1586
+ required?: boolean | undefined;
1587
+ deprecated?: boolean | undefined;
1588
+ allowEmptyValue?: boolean | undefined;
1589
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1590
+ explode?: string | undefined;
1591
+ allowReserved?: boolean | undefined;
1592
+ schema?: unknown;
1593
+ example?: unknown;
1594
+ examples?: Record<string, unknown> | undefined;
1595
+ content?: Record<string, unknown> | undefined;
1596
+ }[] | undefined;
1597
+ get?: {
1598
+ description?: string | undefined;
1599
+ tags?: string[] | undefined;
1600
+ summary?: string | undefined;
1601
+ responses?: unknown;
1602
+ parameters?: ({
1603
+ name: string;
1604
+ in: "path" | "header" | "query" | "cookie";
1605
+ description?: string | undefined;
1606
+ required?: boolean | undefined;
1607
+ deprecated?: boolean | undefined;
1608
+ allowEmptyValue?: boolean | undefined;
1609
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1610
+ explode?: string | undefined;
1611
+ allowReserved?: boolean | undefined;
1612
+ schema?: unknown;
1613
+ example?: unknown;
1614
+ examples?: Record<string, unknown> | undefined;
1615
+ content?: Record<string, unknown> | undefined;
1616
+ } | {
1617
+ $ref: string;
1618
+ description?: string | undefined;
1619
+ summary?: string | undefined;
1620
+ })[] | undefined;
1621
+ deprecated?: boolean | undefined;
1622
+ externalDocs?: unknown;
1623
+ operationId?: string | undefined;
1624
+ requestBody?: unknown;
1625
+ callbacks?: unknown;
1626
+ security?: Record<string, string[]>[] | undefined;
1627
+ servers?: unknown[] | undefined;
1628
+ } | undefined;
1629
+ post?: {
1630
+ description?: string | undefined;
1631
+ tags?: string[] | undefined;
1632
+ summary?: string | undefined;
1633
+ responses?: unknown;
1634
+ parameters?: ({
1635
+ name: string;
1636
+ in: "path" | "header" | "query" | "cookie";
1637
+ description?: string | undefined;
1638
+ required?: boolean | undefined;
1639
+ deprecated?: boolean | undefined;
1640
+ allowEmptyValue?: boolean | undefined;
1641
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1642
+ explode?: string | undefined;
1643
+ allowReserved?: boolean | undefined;
1644
+ schema?: unknown;
1645
+ example?: unknown;
1646
+ examples?: Record<string, unknown> | undefined;
1647
+ content?: Record<string, unknown> | undefined;
1648
+ } | {
1649
+ $ref: string;
1650
+ description?: string | undefined;
1651
+ summary?: string | undefined;
1652
+ })[] | undefined;
1653
+ deprecated?: boolean | undefined;
1654
+ externalDocs?: unknown;
1655
+ operationId?: string | undefined;
1656
+ requestBody?: unknown;
1657
+ callbacks?: unknown;
1658
+ security?: Record<string, string[]>[] | undefined;
1659
+ servers?: unknown[] | undefined;
1660
+ } | undefined;
1661
+ put?: {
1662
+ description?: string | undefined;
1663
+ tags?: string[] | undefined;
1664
+ summary?: string | undefined;
1665
+ responses?: unknown;
1666
+ parameters?: ({
1667
+ name: string;
1668
+ in: "path" | "header" | "query" | "cookie";
1669
+ description?: string | undefined;
1670
+ required?: boolean | undefined;
1671
+ deprecated?: boolean | undefined;
1672
+ allowEmptyValue?: boolean | undefined;
1673
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1674
+ explode?: string | undefined;
1675
+ allowReserved?: boolean | undefined;
1676
+ schema?: unknown;
1677
+ example?: unknown;
1678
+ examples?: Record<string, unknown> | undefined;
1679
+ content?: Record<string, unknown> | undefined;
1680
+ } | {
1681
+ $ref: string;
1682
+ description?: string | undefined;
1683
+ summary?: string | undefined;
1684
+ })[] | undefined;
1685
+ deprecated?: boolean | undefined;
1686
+ externalDocs?: unknown;
1687
+ operationId?: string | undefined;
1688
+ requestBody?: unknown;
1689
+ callbacks?: unknown;
1690
+ security?: Record<string, string[]>[] | undefined;
1691
+ servers?: unknown[] | undefined;
1692
+ } | undefined;
1693
+ delete?: {
1694
+ description?: string | undefined;
1695
+ tags?: string[] | undefined;
1696
+ summary?: string | undefined;
1697
+ responses?: unknown;
1698
+ parameters?: ({
1699
+ name: string;
1700
+ in: "path" | "header" | "query" | "cookie";
1701
+ description?: string | undefined;
1702
+ required?: boolean | undefined;
1703
+ deprecated?: boolean | undefined;
1704
+ allowEmptyValue?: boolean | undefined;
1705
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1706
+ explode?: string | undefined;
1707
+ allowReserved?: boolean | undefined;
1708
+ schema?: unknown;
1709
+ example?: unknown;
1710
+ examples?: Record<string, unknown> | undefined;
1711
+ content?: Record<string, unknown> | undefined;
1712
+ } | {
1713
+ $ref: string;
1714
+ description?: string | undefined;
1715
+ summary?: string | undefined;
1716
+ })[] | undefined;
1717
+ deprecated?: boolean | undefined;
1718
+ externalDocs?: unknown;
1719
+ operationId?: string | undefined;
1720
+ requestBody?: unknown;
1721
+ callbacks?: unknown;
1722
+ security?: Record<string, string[]>[] | undefined;
1723
+ servers?: unknown[] | undefined;
1724
+ } | undefined;
1725
+ patch?: {
1726
+ description?: string | undefined;
1727
+ tags?: string[] | undefined;
1728
+ summary?: string | undefined;
1729
+ responses?: unknown;
1730
+ parameters?: ({
1731
+ name: string;
1732
+ in: "path" | "header" | "query" | "cookie";
1733
+ description?: string | undefined;
1734
+ required?: boolean | undefined;
1735
+ deprecated?: boolean | undefined;
1736
+ allowEmptyValue?: boolean | undefined;
1737
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1738
+ explode?: string | undefined;
1739
+ allowReserved?: boolean | undefined;
1740
+ schema?: unknown;
1741
+ example?: unknown;
1742
+ examples?: Record<string, unknown> | undefined;
1743
+ content?: Record<string, unknown> | undefined;
1744
+ } | {
1745
+ $ref: string;
1746
+ description?: string | undefined;
1747
+ summary?: string | undefined;
1748
+ })[] | undefined;
1749
+ deprecated?: boolean | undefined;
1750
+ externalDocs?: unknown;
1751
+ operationId?: string | undefined;
1752
+ requestBody?: unknown;
1753
+ callbacks?: unknown;
1754
+ security?: Record<string, string[]>[] | undefined;
1755
+ servers?: unknown[] | undefined;
1756
+ } | undefined;
1757
+ head?: {
1758
+ description?: string | undefined;
1759
+ tags?: string[] | undefined;
1760
+ summary?: string | undefined;
1761
+ responses?: unknown;
1762
+ parameters?: ({
1763
+ name: string;
1764
+ in: "path" | "header" | "query" | "cookie";
1765
+ description?: string | undefined;
1766
+ required?: boolean | undefined;
1767
+ deprecated?: boolean | undefined;
1768
+ allowEmptyValue?: boolean | undefined;
1769
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1770
+ explode?: string | undefined;
1771
+ allowReserved?: boolean | undefined;
1772
+ schema?: unknown;
1773
+ example?: unknown;
1774
+ examples?: Record<string, unknown> | undefined;
1775
+ content?: Record<string, unknown> | undefined;
1776
+ } | {
1777
+ $ref: string;
1778
+ description?: string | undefined;
1779
+ summary?: string | undefined;
1780
+ })[] | undefined;
1781
+ deprecated?: boolean | undefined;
1782
+ externalDocs?: unknown;
1783
+ operationId?: string | undefined;
1784
+ requestBody?: unknown;
1785
+ callbacks?: unknown;
1786
+ security?: Record<string, string[]>[] | undefined;
1787
+ servers?: unknown[] | undefined;
1788
+ } | undefined;
1789
+ options?: {
1790
+ description?: string | undefined;
1791
+ tags?: string[] | undefined;
1792
+ summary?: string | undefined;
1793
+ responses?: unknown;
1794
+ parameters?: ({
1795
+ name: string;
1796
+ in: "path" | "header" | "query" | "cookie";
1797
+ description?: string | undefined;
1798
+ required?: boolean | undefined;
1799
+ deprecated?: boolean | undefined;
1800
+ allowEmptyValue?: boolean | undefined;
1801
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1802
+ explode?: string | undefined;
1803
+ allowReserved?: boolean | undefined;
1804
+ schema?: unknown;
1805
+ example?: unknown;
1806
+ examples?: Record<string, unknown> | undefined;
1807
+ content?: Record<string, unknown> | undefined;
1808
+ } | {
1809
+ $ref: string;
1810
+ description?: string | undefined;
1811
+ summary?: string | undefined;
1812
+ })[] | undefined;
1813
+ deprecated?: boolean | undefined;
1814
+ externalDocs?: unknown;
1815
+ operationId?: string | undefined;
1816
+ requestBody?: unknown;
1817
+ callbacks?: unknown;
1818
+ security?: Record<string, string[]>[] | undefined;
1819
+ servers?: unknown[] | undefined;
1820
+ } | undefined;
1821
+ servers?: {
1822
+ url: string;
1823
+ description?: string | undefined;
1824
+ variables?: Record<string, unknown> | undefined;
1825
+ } | undefined;
1826
+ trace?: {
1827
+ description?: string | undefined;
1828
+ tags?: string[] | undefined;
1829
+ summary?: string | undefined;
1830
+ responses?: unknown;
1831
+ parameters?: ({
1832
+ name: string;
1833
+ in: "path" | "header" | "query" | "cookie";
1834
+ description?: string | undefined;
1835
+ required?: boolean | undefined;
1836
+ deprecated?: boolean | undefined;
1837
+ allowEmptyValue?: boolean | undefined;
1838
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
1839
+ explode?: string | undefined;
1840
+ allowReserved?: boolean | undefined;
1841
+ schema?: unknown;
1842
+ example?: unknown;
1843
+ examples?: Record<string, unknown> | undefined;
1844
+ content?: Record<string, unknown> | undefined;
1845
+ } | {
1846
+ $ref: string;
1847
+ description?: string | undefined;
1848
+ summary?: string | undefined;
1849
+ })[] | undefined;
1850
+ deprecated?: boolean | undefined;
1851
+ externalDocs?: unknown;
1852
+ operationId?: string | undefined;
1853
+ requestBody?: unknown;
1854
+ callbacks?: unknown;
1855
+ security?: Record<string, string[]>[] | undefined;
1856
+ servers?: unknown[] | undefined;
1857
+ } | undefined;
1858
+ }>;
1859
+ export declare const openapiSchema: z.ZodObject<{
1860
+ openapi: z.ZodString;
1861
+ info: z.ZodObject<{
1862
+ title: z.ZodString;
1863
+ description: z.ZodOptional<z.ZodString>;
1864
+ termsOfService: z.ZodOptional<z.ZodString>;
1865
+ contact: z.ZodOptional<z.ZodObject<{
1866
+ name: z.ZodOptional<z.ZodString>;
1867
+ url: z.ZodOptional<z.ZodString>;
1868
+ email: z.ZodOptional<z.ZodString>;
1869
+ }, "strict", z.ZodTypeAny, {
1870
+ name?: string | undefined;
1871
+ url?: string | undefined;
1872
+ email?: string | undefined;
1873
+ }, {
1874
+ name?: string | undefined;
1875
+ url?: string | undefined;
1876
+ email?: string | undefined;
1877
+ }>>;
1878
+ license: z.ZodOptional<z.ZodObject<{
1879
+ name: z.ZodString;
1880
+ url: z.ZodOptional<z.ZodString>;
1881
+ }, "strict", z.ZodTypeAny, {
1882
+ name: string;
1883
+ url?: string | undefined;
1884
+ }, {
1885
+ name: string;
1886
+ url?: string | undefined;
1887
+ }>>;
1888
+ version: z.ZodString;
1889
+ }, "strict", z.ZodTypeAny, {
1890
+ title: string;
1891
+ version: string;
1892
+ description?: string | undefined;
1893
+ termsOfService?: string | undefined;
1894
+ contact?: {
1895
+ name?: string | undefined;
1896
+ url?: string | undefined;
1897
+ email?: string | undefined;
1898
+ } | undefined;
1899
+ license?: {
1900
+ name: string;
1901
+ url?: string | undefined;
1902
+ } | undefined;
1903
+ }, {
1904
+ title: string;
1905
+ version: string;
1906
+ description?: string | undefined;
1907
+ termsOfService?: string | undefined;
1908
+ contact?: {
1909
+ name?: string | undefined;
1910
+ url?: string | undefined;
1911
+ email?: string | undefined;
1912
+ } | undefined;
1913
+ license?: {
1914
+ name: string;
1915
+ url?: string | undefined;
1916
+ } | undefined;
1917
+ }>;
1918
+ externalDocs: z.ZodOptional<z.ZodObject<{
1919
+ description: z.ZodOptional<z.ZodString>;
1920
+ url: z.ZodString;
1921
+ }, "strict", z.ZodTypeAny, {
1922
+ url: string;
1923
+ description?: string | undefined;
1924
+ }, {
1925
+ url: string;
1926
+ description?: string | undefined;
1927
+ }>>;
1928
+ servers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1929
+ url: z.ZodString;
1930
+ description: z.ZodOptional<z.ZodString>;
1931
+ variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1932
+ enum: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1933
+ default: z.ZodString;
1934
+ description: z.ZodOptional<z.ZodString>;
1935
+ }, "strict", z.ZodTypeAny, {
1936
+ default: string;
1937
+ description?: string | undefined;
1938
+ enum?: string[] | undefined;
1939
+ }, {
1940
+ default: string;
1941
+ description?: string | undefined;
1942
+ enum?: string[] | undefined;
1943
+ }>>>;
1944
+ }, "strict", z.ZodTypeAny, {
1945
+ url: string;
1946
+ description?: string | undefined;
1947
+ variables?: Record<string, {
1948
+ default: string;
1949
+ description?: string | undefined;
1950
+ enum?: string[] | undefined;
1951
+ }> | undefined;
1952
+ }, {
1953
+ url: string;
1954
+ description?: string | undefined;
1955
+ variables?: Record<string, {
1956
+ default: string;
1957
+ description?: string | undefined;
1958
+ enum?: string[] | undefined;
1959
+ }> | undefined;
1960
+ }>, "many">>;
1961
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
1962
+ tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
1963
+ name: z.ZodString;
1964
+ description: z.ZodOptional<z.ZodString>;
1965
+ externalDocs: z.ZodOptional<z.ZodObject<{
1966
+ description: z.ZodOptional<z.ZodString>;
1967
+ url: z.ZodString;
1968
+ }, "strict", z.ZodTypeAny, {
1969
+ url: string;
1970
+ description?: string | undefined;
1971
+ }, {
1972
+ url: string;
1973
+ description?: string | undefined;
1974
+ }>>;
1975
+ }, "strict", z.ZodTypeAny, {
1976
+ name: string;
1977
+ description?: string | undefined;
1978
+ externalDocs?: {
1979
+ url: string;
1980
+ description?: string | undefined;
1981
+ } | undefined;
1982
+ }, {
1983
+ name: string;
1984
+ description?: string | undefined;
1985
+ externalDocs?: {
1986
+ url: string;
1987
+ description?: string | undefined;
1988
+ } | undefined;
1989
+ }>, "many">>;
1990
+ paths: z.ZodRecord<z.ZodString, z.ZodObject<{
1991
+ summary: z.ZodOptional<z.ZodString>;
1992
+ description: z.ZodOptional<z.ZodString>;
1993
+ get: z.ZodOptional<z.ZodObject<{
1994
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1995
+ summary: z.ZodOptional<z.ZodString>;
1996
+ description: z.ZodOptional<z.ZodString>;
1997
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
1998
+ operationId: z.ZodOptional<z.ZodString>;
1999
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2000
+ name: z.ZodString;
2001
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
2002
+ description: z.ZodOptional<z.ZodString>;
2003
+ required: z.ZodOptional<z.ZodBoolean>;
2004
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2005
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2006
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
2007
+ explode: z.ZodOptional<z.ZodString>;
2008
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
2009
+ schema: z.ZodOptional<z.ZodUnknown>;
2010
+ example: z.ZodOptional<z.ZodUnknown>;
2011
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2012
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2013
+ }, "strip", z.ZodTypeAny, {
2014
+ name: string;
2015
+ in: "path" | "header" | "query" | "cookie";
2016
+ description?: string | undefined;
2017
+ required?: boolean | undefined;
2018
+ deprecated?: boolean | undefined;
2019
+ allowEmptyValue?: boolean | undefined;
2020
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2021
+ explode?: string | undefined;
2022
+ allowReserved?: boolean | undefined;
2023
+ schema?: unknown;
2024
+ example?: unknown;
2025
+ examples?: Record<string, unknown> | undefined;
2026
+ content?: Record<string, unknown> | undefined;
2027
+ }, {
2028
+ name: string;
2029
+ in: "path" | "header" | "query" | "cookie";
2030
+ description?: string | undefined;
2031
+ required?: boolean | undefined;
2032
+ deprecated?: boolean | undefined;
2033
+ allowEmptyValue?: boolean | undefined;
2034
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2035
+ explode?: string | undefined;
2036
+ allowReserved?: boolean | undefined;
2037
+ schema?: unknown;
2038
+ example?: unknown;
2039
+ examples?: Record<string, unknown> | undefined;
2040
+ content?: Record<string, unknown> | undefined;
2041
+ }>, z.ZodObject<{
2042
+ $ref: z.ZodString;
2043
+ summary: z.ZodOptional<z.ZodString>;
2044
+ description: z.ZodOptional<z.ZodString>;
2045
+ }, "strip", z.ZodTypeAny, {
2046
+ $ref: string;
2047
+ description?: string | undefined;
2048
+ summary?: string | undefined;
2049
+ }, {
2050
+ $ref: string;
2051
+ description?: string | undefined;
2052
+ summary?: string | undefined;
2053
+ }>]>, "many">>;
2054
+ requestBody: z.ZodOptional<z.ZodUnknown>;
2055
+ responses: z.ZodOptional<z.ZodUnknown>;
2056
+ callbacks: z.ZodOptional<z.ZodUnknown>;
2057
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2058
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2059
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2060
+ }, "strip", z.ZodTypeAny, {
2061
+ description?: string | undefined;
2062
+ tags?: string[] | undefined;
2063
+ summary?: string | undefined;
2064
+ responses?: unknown;
2065
+ parameters?: ({
2066
+ name: string;
2067
+ in: "path" | "header" | "query" | "cookie";
2068
+ description?: string | undefined;
2069
+ required?: boolean | undefined;
2070
+ deprecated?: boolean | undefined;
2071
+ allowEmptyValue?: boolean | undefined;
2072
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2073
+ explode?: string | undefined;
2074
+ allowReserved?: boolean | undefined;
2075
+ schema?: unknown;
2076
+ example?: unknown;
2077
+ examples?: Record<string, unknown> | undefined;
2078
+ content?: Record<string, unknown> | undefined;
2079
+ } | {
2080
+ $ref: string;
2081
+ description?: string | undefined;
2082
+ summary?: string | undefined;
2083
+ })[] | undefined;
2084
+ deprecated?: boolean | undefined;
2085
+ externalDocs?: unknown;
2086
+ operationId?: string | undefined;
2087
+ requestBody?: unknown;
2088
+ callbacks?: unknown;
2089
+ security?: Record<string, string[]>[] | undefined;
2090
+ servers?: unknown[] | undefined;
2091
+ }, {
2092
+ description?: string | undefined;
2093
+ tags?: string[] | undefined;
2094
+ summary?: string | undefined;
2095
+ responses?: unknown;
2096
+ parameters?: ({
2097
+ name: string;
2098
+ in: "path" | "header" | "query" | "cookie";
2099
+ description?: string | undefined;
2100
+ required?: boolean | undefined;
2101
+ deprecated?: boolean | undefined;
2102
+ allowEmptyValue?: boolean | undefined;
2103
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2104
+ explode?: string | undefined;
2105
+ allowReserved?: boolean | undefined;
2106
+ schema?: unknown;
2107
+ example?: unknown;
2108
+ examples?: Record<string, unknown> | undefined;
2109
+ content?: Record<string, unknown> | undefined;
2110
+ } | {
2111
+ $ref: string;
2112
+ description?: string | undefined;
2113
+ summary?: string | undefined;
2114
+ })[] | undefined;
2115
+ deprecated?: boolean | undefined;
2116
+ externalDocs?: unknown;
2117
+ operationId?: string | undefined;
2118
+ requestBody?: unknown;
2119
+ callbacks?: unknown;
2120
+ security?: Record<string, string[]>[] | undefined;
2121
+ servers?: unknown[] | undefined;
2122
+ }>>;
2123
+ put: z.ZodOptional<z.ZodObject<{
2124
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2125
+ summary: z.ZodOptional<z.ZodString>;
2126
+ description: z.ZodOptional<z.ZodString>;
2127
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
2128
+ operationId: z.ZodOptional<z.ZodString>;
2129
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2130
+ name: z.ZodString;
2131
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
2132
+ description: z.ZodOptional<z.ZodString>;
2133
+ required: z.ZodOptional<z.ZodBoolean>;
2134
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2135
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2136
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
2137
+ explode: z.ZodOptional<z.ZodString>;
2138
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
2139
+ schema: z.ZodOptional<z.ZodUnknown>;
2140
+ example: z.ZodOptional<z.ZodUnknown>;
2141
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2142
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2143
+ }, "strip", z.ZodTypeAny, {
2144
+ name: string;
2145
+ in: "path" | "header" | "query" | "cookie";
2146
+ description?: string | undefined;
2147
+ required?: boolean | undefined;
2148
+ deprecated?: boolean | undefined;
2149
+ allowEmptyValue?: boolean | undefined;
2150
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2151
+ explode?: string | undefined;
2152
+ allowReserved?: boolean | undefined;
2153
+ schema?: unknown;
2154
+ example?: unknown;
2155
+ examples?: Record<string, unknown> | undefined;
2156
+ content?: Record<string, unknown> | undefined;
2157
+ }, {
2158
+ name: string;
2159
+ in: "path" | "header" | "query" | "cookie";
2160
+ description?: string | undefined;
2161
+ required?: boolean | undefined;
2162
+ deprecated?: boolean | undefined;
2163
+ allowEmptyValue?: boolean | undefined;
2164
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2165
+ explode?: string | undefined;
2166
+ allowReserved?: boolean | undefined;
2167
+ schema?: unknown;
2168
+ example?: unknown;
2169
+ examples?: Record<string, unknown> | undefined;
2170
+ content?: Record<string, unknown> | undefined;
2171
+ }>, z.ZodObject<{
2172
+ $ref: z.ZodString;
2173
+ summary: z.ZodOptional<z.ZodString>;
2174
+ description: z.ZodOptional<z.ZodString>;
2175
+ }, "strip", z.ZodTypeAny, {
2176
+ $ref: string;
2177
+ description?: string | undefined;
2178
+ summary?: string | undefined;
2179
+ }, {
2180
+ $ref: string;
2181
+ description?: string | undefined;
2182
+ summary?: string | undefined;
2183
+ }>]>, "many">>;
2184
+ requestBody: z.ZodOptional<z.ZodUnknown>;
2185
+ responses: z.ZodOptional<z.ZodUnknown>;
2186
+ callbacks: z.ZodOptional<z.ZodUnknown>;
2187
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2188
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2189
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2190
+ }, "strip", z.ZodTypeAny, {
2191
+ description?: string | undefined;
2192
+ tags?: string[] | undefined;
2193
+ summary?: string | undefined;
2194
+ responses?: unknown;
2195
+ parameters?: ({
2196
+ name: string;
2197
+ in: "path" | "header" | "query" | "cookie";
2198
+ description?: string | undefined;
2199
+ required?: boolean | undefined;
2200
+ deprecated?: boolean | undefined;
2201
+ allowEmptyValue?: boolean | undefined;
2202
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2203
+ explode?: string | undefined;
2204
+ allowReserved?: boolean | undefined;
2205
+ schema?: unknown;
2206
+ example?: unknown;
2207
+ examples?: Record<string, unknown> | undefined;
2208
+ content?: Record<string, unknown> | undefined;
2209
+ } | {
2210
+ $ref: string;
2211
+ description?: string | undefined;
2212
+ summary?: string | undefined;
2213
+ })[] | undefined;
2214
+ deprecated?: boolean | undefined;
2215
+ externalDocs?: unknown;
2216
+ operationId?: string | undefined;
2217
+ requestBody?: unknown;
2218
+ callbacks?: unknown;
2219
+ security?: Record<string, string[]>[] | undefined;
2220
+ servers?: unknown[] | undefined;
2221
+ }, {
2222
+ description?: string | undefined;
2223
+ tags?: string[] | undefined;
2224
+ summary?: string | undefined;
2225
+ responses?: unknown;
2226
+ parameters?: ({
2227
+ name: string;
2228
+ in: "path" | "header" | "query" | "cookie";
2229
+ description?: string | undefined;
2230
+ required?: boolean | undefined;
2231
+ deprecated?: boolean | undefined;
2232
+ allowEmptyValue?: boolean | undefined;
2233
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2234
+ explode?: string | undefined;
2235
+ allowReserved?: boolean | undefined;
2236
+ schema?: unknown;
2237
+ example?: unknown;
2238
+ examples?: Record<string, unknown> | undefined;
2239
+ content?: Record<string, unknown> | undefined;
2240
+ } | {
2241
+ $ref: string;
2242
+ description?: string | undefined;
2243
+ summary?: string | undefined;
2244
+ })[] | undefined;
2245
+ deprecated?: boolean | undefined;
2246
+ externalDocs?: unknown;
2247
+ operationId?: string | undefined;
2248
+ requestBody?: unknown;
2249
+ callbacks?: unknown;
2250
+ security?: Record<string, string[]>[] | undefined;
2251
+ servers?: unknown[] | undefined;
2252
+ }>>;
2253
+ post: z.ZodOptional<z.ZodObject<{
2254
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2255
+ summary: z.ZodOptional<z.ZodString>;
2256
+ description: z.ZodOptional<z.ZodString>;
2257
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
2258
+ operationId: z.ZodOptional<z.ZodString>;
2259
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2260
+ name: z.ZodString;
2261
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
2262
+ description: z.ZodOptional<z.ZodString>;
2263
+ required: z.ZodOptional<z.ZodBoolean>;
2264
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2265
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2266
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
2267
+ explode: z.ZodOptional<z.ZodString>;
2268
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
2269
+ schema: z.ZodOptional<z.ZodUnknown>;
2270
+ example: z.ZodOptional<z.ZodUnknown>;
2271
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2272
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2273
+ }, "strip", z.ZodTypeAny, {
2274
+ name: string;
2275
+ in: "path" | "header" | "query" | "cookie";
2276
+ description?: string | undefined;
2277
+ required?: boolean | undefined;
2278
+ deprecated?: boolean | undefined;
2279
+ allowEmptyValue?: boolean | undefined;
2280
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2281
+ explode?: string | undefined;
2282
+ allowReserved?: boolean | undefined;
2283
+ schema?: unknown;
2284
+ example?: unknown;
2285
+ examples?: Record<string, unknown> | undefined;
2286
+ content?: Record<string, unknown> | undefined;
2287
+ }, {
2288
+ name: string;
2289
+ in: "path" | "header" | "query" | "cookie";
2290
+ description?: string | undefined;
2291
+ required?: boolean | undefined;
2292
+ deprecated?: boolean | undefined;
2293
+ allowEmptyValue?: boolean | undefined;
2294
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2295
+ explode?: string | undefined;
2296
+ allowReserved?: boolean | undefined;
2297
+ schema?: unknown;
2298
+ example?: unknown;
2299
+ examples?: Record<string, unknown> | undefined;
2300
+ content?: Record<string, unknown> | undefined;
2301
+ }>, z.ZodObject<{
2302
+ $ref: z.ZodString;
2303
+ summary: z.ZodOptional<z.ZodString>;
2304
+ description: z.ZodOptional<z.ZodString>;
2305
+ }, "strip", z.ZodTypeAny, {
2306
+ $ref: string;
2307
+ description?: string | undefined;
2308
+ summary?: string | undefined;
2309
+ }, {
2310
+ $ref: string;
2311
+ description?: string | undefined;
2312
+ summary?: string | undefined;
2313
+ }>]>, "many">>;
2314
+ requestBody: z.ZodOptional<z.ZodUnknown>;
2315
+ responses: z.ZodOptional<z.ZodUnknown>;
2316
+ callbacks: z.ZodOptional<z.ZodUnknown>;
2317
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2318
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2319
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2320
+ }, "strip", z.ZodTypeAny, {
2321
+ description?: string | undefined;
2322
+ tags?: string[] | undefined;
2323
+ summary?: string | undefined;
2324
+ responses?: unknown;
2325
+ parameters?: ({
2326
+ name: string;
2327
+ in: "path" | "header" | "query" | "cookie";
2328
+ description?: string | undefined;
2329
+ required?: boolean | undefined;
2330
+ deprecated?: boolean | undefined;
2331
+ allowEmptyValue?: boolean | undefined;
2332
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2333
+ explode?: string | undefined;
2334
+ allowReserved?: boolean | undefined;
2335
+ schema?: unknown;
2336
+ example?: unknown;
2337
+ examples?: Record<string, unknown> | undefined;
2338
+ content?: Record<string, unknown> | undefined;
2339
+ } | {
2340
+ $ref: string;
2341
+ description?: string | undefined;
2342
+ summary?: string | undefined;
2343
+ })[] | undefined;
2344
+ deprecated?: boolean | undefined;
2345
+ externalDocs?: unknown;
2346
+ operationId?: string | undefined;
2347
+ requestBody?: unknown;
2348
+ callbacks?: unknown;
2349
+ security?: Record<string, string[]>[] | undefined;
2350
+ servers?: unknown[] | undefined;
2351
+ }, {
2352
+ description?: string | undefined;
2353
+ tags?: string[] | undefined;
2354
+ summary?: string | undefined;
2355
+ responses?: unknown;
2356
+ parameters?: ({
2357
+ name: string;
2358
+ in: "path" | "header" | "query" | "cookie";
2359
+ description?: string | undefined;
2360
+ required?: boolean | undefined;
2361
+ deprecated?: boolean | undefined;
2362
+ allowEmptyValue?: boolean | undefined;
2363
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2364
+ explode?: string | undefined;
2365
+ allowReserved?: boolean | undefined;
2366
+ schema?: unknown;
2367
+ example?: unknown;
2368
+ examples?: Record<string, unknown> | undefined;
2369
+ content?: Record<string, unknown> | undefined;
2370
+ } | {
2371
+ $ref: string;
2372
+ description?: string | undefined;
2373
+ summary?: string | undefined;
2374
+ })[] | undefined;
2375
+ deprecated?: boolean | undefined;
2376
+ externalDocs?: unknown;
2377
+ operationId?: string | undefined;
2378
+ requestBody?: unknown;
2379
+ callbacks?: unknown;
2380
+ security?: Record<string, string[]>[] | undefined;
2381
+ servers?: unknown[] | undefined;
2382
+ }>>;
2383
+ delete: z.ZodOptional<z.ZodObject<{
2384
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2385
+ summary: z.ZodOptional<z.ZodString>;
2386
+ description: z.ZodOptional<z.ZodString>;
2387
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
2388
+ operationId: z.ZodOptional<z.ZodString>;
2389
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2390
+ name: z.ZodString;
2391
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
2392
+ description: z.ZodOptional<z.ZodString>;
2393
+ required: z.ZodOptional<z.ZodBoolean>;
2394
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2395
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2396
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
2397
+ explode: z.ZodOptional<z.ZodString>;
2398
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
2399
+ schema: z.ZodOptional<z.ZodUnknown>;
2400
+ example: z.ZodOptional<z.ZodUnknown>;
2401
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2402
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2403
+ }, "strip", z.ZodTypeAny, {
2404
+ name: string;
2405
+ in: "path" | "header" | "query" | "cookie";
2406
+ description?: string | undefined;
2407
+ required?: boolean | undefined;
2408
+ deprecated?: boolean | undefined;
2409
+ allowEmptyValue?: boolean | undefined;
2410
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2411
+ explode?: string | undefined;
2412
+ allowReserved?: boolean | undefined;
2413
+ schema?: unknown;
2414
+ example?: unknown;
2415
+ examples?: Record<string, unknown> | undefined;
2416
+ content?: Record<string, unknown> | undefined;
2417
+ }, {
2418
+ name: string;
2419
+ in: "path" | "header" | "query" | "cookie";
2420
+ description?: string | undefined;
2421
+ required?: boolean | undefined;
2422
+ deprecated?: boolean | undefined;
2423
+ allowEmptyValue?: boolean | undefined;
2424
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2425
+ explode?: string | undefined;
2426
+ allowReserved?: boolean | undefined;
2427
+ schema?: unknown;
2428
+ example?: unknown;
2429
+ examples?: Record<string, unknown> | undefined;
2430
+ content?: Record<string, unknown> | undefined;
2431
+ }>, z.ZodObject<{
2432
+ $ref: z.ZodString;
2433
+ summary: z.ZodOptional<z.ZodString>;
2434
+ description: z.ZodOptional<z.ZodString>;
2435
+ }, "strip", z.ZodTypeAny, {
2436
+ $ref: string;
2437
+ description?: string | undefined;
2438
+ summary?: string | undefined;
2439
+ }, {
2440
+ $ref: string;
2441
+ description?: string | undefined;
2442
+ summary?: string | undefined;
2443
+ }>]>, "many">>;
2444
+ requestBody: z.ZodOptional<z.ZodUnknown>;
2445
+ responses: z.ZodOptional<z.ZodUnknown>;
2446
+ callbacks: z.ZodOptional<z.ZodUnknown>;
2447
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2448
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2449
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2450
+ }, "strip", z.ZodTypeAny, {
2451
+ description?: string | undefined;
2452
+ tags?: string[] | undefined;
2453
+ summary?: string | undefined;
2454
+ responses?: unknown;
2455
+ parameters?: ({
2456
+ name: string;
2457
+ in: "path" | "header" | "query" | "cookie";
2458
+ description?: string | undefined;
2459
+ required?: boolean | undefined;
2460
+ deprecated?: boolean | undefined;
2461
+ allowEmptyValue?: boolean | undefined;
2462
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2463
+ explode?: string | undefined;
2464
+ allowReserved?: boolean | undefined;
2465
+ schema?: unknown;
2466
+ example?: unknown;
2467
+ examples?: Record<string, unknown> | undefined;
2468
+ content?: Record<string, unknown> | undefined;
2469
+ } | {
2470
+ $ref: string;
2471
+ description?: string | undefined;
2472
+ summary?: string | undefined;
2473
+ })[] | undefined;
2474
+ deprecated?: boolean | undefined;
2475
+ externalDocs?: unknown;
2476
+ operationId?: string | undefined;
2477
+ requestBody?: unknown;
2478
+ callbacks?: unknown;
2479
+ security?: Record<string, string[]>[] | undefined;
2480
+ servers?: unknown[] | undefined;
2481
+ }, {
2482
+ description?: string | undefined;
2483
+ tags?: string[] | undefined;
2484
+ summary?: string | undefined;
2485
+ responses?: unknown;
2486
+ parameters?: ({
2487
+ name: string;
2488
+ in: "path" | "header" | "query" | "cookie";
2489
+ description?: string | undefined;
2490
+ required?: boolean | undefined;
2491
+ deprecated?: boolean | undefined;
2492
+ allowEmptyValue?: boolean | undefined;
2493
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2494
+ explode?: string | undefined;
2495
+ allowReserved?: boolean | undefined;
2496
+ schema?: unknown;
2497
+ example?: unknown;
2498
+ examples?: Record<string, unknown> | undefined;
2499
+ content?: Record<string, unknown> | undefined;
2500
+ } | {
2501
+ $ref: string;
2502
+ description?: string | undefined;
2503
+ summary?: string | undefined;
2504
+ })[] | undefined;
2505
+ deprecated?: boolean | undefined;
2506
+ externalDocs?: unknown;
2507
+ operationId?: string | undefined;
2508
+ requestBody?: unknown;
2509
+ callbacks?: unknown;
2510
+ security?: Record<string, string[]>[] | undefined;
2511
+ servers?: unknown[] | undefined;
2512
+ }>>;
2513
+ options: z.ZodOptional<z.ZodObject<{
2514
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2515
+ summary: z.ZodOptional<z.ZodString>;
2516
+ description: z.ZodOptional<z.ZodString>;
2517
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
2518
+ operationId: z.ZodOptional<z.ZodString>;
2519
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2520
+ name: z.ZodString;
2521
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
2522
+ description: z.ZodOptional<z.ZodString>;
2523
+ required: z.ZodOptional<z.ZodBoolean>;
2524
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2525
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2526
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
2527
+ explode: z.ZodOptional<z.ZodString>;
2528
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
2529
+ schema: z.ZodOptional<z.ZodUnknown>;
2530
+ example: z.ZodOptional<z.ZodUnknown>;
2531
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2532
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2533
+ }, "strip", z.ZodTypeAny, {
2534
+ name: string;
2535
+ in: "path" | "header" | "query" | "cookie";
2536
+ description?: string | undefined;
2537
+ required?: boolean | undefined;
2538
+ deprecated?: boolean | undefined;
2539
+ allowEmptyValue?: boolean | undefined;
2540
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2541
+ explode?: string | undefined;
2542
+ allowReserved?: boolean | undefined;
2543
+ schema?: unknown;
2544
+ example?: unknown;
2545
+ examples?: Record<string, unknown> | undefined;
2546
+ content?: Record<string, unknown> | undefined;
2547
+ }, {
2548
+ name: string;
2549
+ in: "path" | "header" | "query" | "cookie";
2550
+ description?: string | undefined;
2551
+ required?: boolean | undefined;
2552
+ deprecated?: boolean | undefined;
2553
+ allowEmptyValue?: boolean | undefined;
2554
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2555
+ explode?: string | undefined;
2556
+ allowReserved?: boolean | undefined;
2557
+ schema?: unknown;
2558
+ example?: unknown;
2559
+ examples?: Record<string, unknown> | undefined;
2560
+ content?: Record<string, unknown> | undefined;
2561
+ }>, z.ZodObject<{
2562
+ $ref: z.ZodString;
2563
+ summary: z.ZodOptional<z.ZodString>;
2564
+ description: z.ZodOptional<z.ZodString>;
2565
+ }, "strip", z.ZodTypeAny, {
2566
+ $ref: string;
2567
+ description?: string | undefined;
2568
+ summary?: string | undefined;
2569
+ }, {
2570
+ $ref: string;
2571
+ description?: string | undefined;
2572
+ summary?: string | undefined;
2573
+ }>]>, "many">>;
2574
+ requestBody: z.ZodOptional<z.ZodUnknown>;
2575
+ responses: z.ZodOptional<z.ZodUnknown>;
2576
+ callbacks: z.ZodOptional<z.ZodUnknown>;
2577
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2578
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2579
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2580
+ }, "strip", z.ZodTypeAny, {
2581
+ description?: string | undefined;
2582
+ tags?: string[] | undefined;
2583
+ summary?: string | undefined;
2584
+ responses?: unknown;
2585
+ parameters?: ({
2586
+ name: string;
2587
+ in: "path" | "header" | "query" | "cookie";
2588
+ description?: string | undefined;
2589
+ required?: boolean | undefined;
2590
+ deprecated?: boolean | undefined;
2591
+ allowEmptyValue?: boolean | undefined;
2592
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2593
+ explode?: string | undefined;
2594
+ allowReserved?: boolean | undefined;
2595
+ schema?: unknown;
2596
+ example?: unknown;
2597
+ examples?: Record<string, unknown> | undefined;
2598
+ content?: Record<string, unknown> | undefined;
2599
+ } | {
2600
+ $ref: string;
2601
+ description?: string | undefined;
2602
+ summary?: string | undefined;
2603
+ })[] | undefined;
2604
+ deprecated?: boolean | undefined;
2605
+ externalDocs?: unknown;
2606
+ operationId?: string | undefined;
2607
+ requestBody?: unknown;
2608
+ callbacks?: unknown;
2609
+ security?: Record<string, string[]>[] | undefined;
2610
+ servers?: unknown[] | undefined;
2611
+ }, {
2612
+ description?: string | undefined;
2613
+ tags?: string[] | undefined;
2614
+ summary?: string | undefined;
2615
+ responses?: unknown;
2616
+ parameters?: ({
2617
+ name: string;
2618
+ in: "path" | "header" | "query" | "cookie";
2619
+ description?: string | undefined;
2620
+ required?: boolean | undefined;
2621
+ deprecated?: boolean | undefined;
2622
+ allowEmptyValue?: boolean | undefined;
2623
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2624
+ explode?: string | undefined;
2625
+ allowReserved?: boolean | undefined;
2626
+ schema?: unknown;
2627
+ example?: unknown;
2628
+ examples?: Record<string, unknown> | undefined;
2629
+ content?: Record<string, unknown> | undefined;
2630
+ } | {
2631
+ $ref: string;
2632
+ description?: string | undefined;
2633
+ summary?: string | undefined;
2634
+ })[] | undefined;
2635
+ deprecated?: boolean | undefined;
2636
+ externalDocs?: unknown;
2637
+ operationId?: string | undefined;
2638
+ requestBody?: unknown;
2639
+ callbacks?: unknown;
2640
+ security?: Record<string, string[]>[] | undefined;
2641
+ servers?: unknown[] | undefined;
2642
+ }>>;
2643
+ head: z.ZodOptional<z.ZodObject<{
2644
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2645
+ summary: z.ZodOptional<z.ZodString>;
2646
+ description: z.ZodOptional<z.ZodString>;
2647
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
2648
+ operationId: z.ZodOptional<z.ZodString>;
2649
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2650
+ name: z.ZodString;
2651
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
2652
+ description: z.ZodOptional<z.ZodString>;
2653
+ required: z.ZodOptional<z.ZodBoolean>;
2654
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2655
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2656
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
2657
+ explode: z.ZodOptional<z.ZodString>;
2658
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
2659
+ schema: z.ZodOptional<z.ZodUnknown>;
2660
+ example: z.ZodOptional<z.ZodUnknown>;
2661
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2662
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2663
+ }, "strip", z.ZodTypeAny, {
2664
+ name: string;
2665
+ in: "path" | "header" | "query" | "cookie";
2666
+ description?: string | undefined;
2667
+ required?: boolean | undefined;
2668
+ deprecated?: boolean | undefined;
2669
+ allowEmptyValue?: boolean | undefined;
2670
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2671
+ explode?: string | undefined;
2672
+ allowReserved?: boolean | undefined;
2673
+ schema?: unknown;
2674
+ example?: unknown;
2675
+ examples?: Record<string, unknown> | undefined;
2676
+ content?: Record<string, unknown> | undefined;
2677
+ }, {
2678
+ name: string;
2679
+ in: "path" | "header" | "query" | "cookie";
2680
+ description?: string | undefined;
2681
+ required?: boolean | undefined;
2682
+ deprecated?: boolean | undefined;
2683
+ allowEmptyValue?: boolean | undefined;
2684
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2685
+ explode?: string | undefined;
2686
+ allowReserved?: boolean | undefined;
2687
+ schema?: unknown;
2688
+ example?: unknown;
2689
+ examples?: Record<string, unknown> | undefined;
2690
+ content?: Record<string, unknown> | undefined;
2691
+ }>, z.ZodObject<{
2692
+ $ref: z.ZodString;
2693
+ summary: z.ZodOptional<z.ZodString>;
2694
+ description: z.ZodOptional<z.ZodString>;
2695
+ }, "strip", z.ZodTypeAny, {
2696
+ $ref: string;
2697
+ description?: string | undefined;
2698
+ summary?: string | undefined;
2699
+ }, {
2700
+ $ref: string;
2701
+ description?: string | undefined;
2702
+ summary?: string | undefined;
2703
+ }>]>, "many">>;
2704
+ requestBody: z.ZodOptional<z.ZodUnknown>;
2705
+ responses: z.ZodOptional<z.ZodUnknown>;
2706
+ callbacks: z.ZodOptional<z.ZodUnknown>;
2707
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2708
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2709
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2710
+ }, "strip", z.ZodTypeAny, {
2711
+ description?: string | undefined;
2712
+ tags?: string[] | undefined;
2713
+ summary?: string | undefined;
2714
+ responses?: unknown;
2715
+ parameters?: ({
2716
+ name: string;
2717
+ in: "path" | "header" | "query" | "cookie";
2718
+ description?: string | undefined;
2719
+ required?: boolean | undefined;
2720
+ deprecated?: boolean | undefined;
2721
+ allowEmptyValue?: boolean | undefined;
2722
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2723
+ explode?: string | undefined;
2724
+ allowReserved?: boolean | undefined;
2725
+ schema?: unknown;
2726
+ example?: unknown;
2727
+ examples?: Record<string, unknown> | undefined;
2728
+ content?: Record<string, unknown> | undefined;
2729
+ } | {
2730
+ $ref: string;
2731
+ description?: string | undefined;
2732
+ summary?: string | undefined;
2733
+ })[] | undefined;
2734
+ deprecated?: boolean | undefined;
2735
+ externalDocs?: unknown;
2736
+ operationId?: string | undefined;
2737
+ requestBody?: unknown;
2738
+ callbacks?: unknown;
2739
+ security?: Record<string, string[]>[] | undefined;
2740
+ servers?: unknown[] | undefined;
2741
+ }, {
2742
+ description?: string | undefined;
2743
+ tags?: string[] | undefined;
2744
+ summary?: string | undefined;
2745
+ responses?: unknown;
2746
+ parameters?: ({
2747
+ name: string;
2748
+ in: "path" | "header" | "query" | "cookie";
2749
+ description?: string | undefined;
2750
+ required?: boolean | undefined;
2751
+ deprecated?: boolean | undefined;
2752
+ allowEmptyValue?: boolean | undefined;
2753
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2754
+ explode?: string | undefined;
2755
+ allowReserved?: boolean | undefined;
2756
+ schema?: unknown;
2757
+ example?: unknown;
2758
+ examples?: Record<string, unknown> | undefined;
2759
+ content?: Record<string, unknown> | undefined;
2760
+ } | {
2761
+ $ref: string;
2762
+ description?: string | undefined;
2763
+ summary?: string | undefined;
2764
+ })[] | undefined;
2765
+ deprecated?: boolean | undefined;
2766
+ externalDocs?: unknown;
2767
+ operationId?: string | undefined;
2768
+ requestBody?: unknown;
2769
+ callbacks?: unknown;
2770
+ security?: Record<string, string[]>[] | undefined;
2771
+ servers?: unknown[] | undefined;
2772
+ }>>;
2773
+ patch: z.ZodOptional<z.ZodObject<{
2774
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2775
+ summary: z.ZodOptional<z.ZodString>;
2776
+ description: z.ZodOptional<z.ZodString>;
2777
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
2778
+ operationId: z.ZodOptional<z.ZodString>;
2779
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2780
+ name: z.ZodString;
2781
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
2782
+ description: z.ZodOptional<z.ZodString>;
2783
+ required: z.ZodOptional<z.ZodBoolean>;
2784
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2785
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2786
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
2787
+ explode: z.ZodOptional<z.ZodString>;
2788
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
2789
+ schema: z.ZodOptional<z.ZodUnknown>;
2790
+ example: z.ZodOptional<z.ZodUnknown>;
2791
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2792
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2793
+ }, "strip", z.ZodTypeAny, {
2794
+ name: string;
2795
+ in: "path" | "header" | "query" | "cookie";
2796
+ description?: string | undefined;
2797
+ required?: boolean | undefined;
2798
+ deprecated?: boolean | undefined;
2799
+ allowEmptyValue?: boolean | undefined;
2800
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2801
+ explode?: string | undefined;
2802
+ allowReserved?: boolean | undefined;
2803
+ schema?: unknown;
2804
+ example?: unknown;
2805
+ examples?: Record<string, unknown> | undefined;
2806
+ content?: Record<string, unknown> | undefined;
2807
+ }, {
2808
+ name: string;
2809
+ in: "path" | "header" | "query" | "cookie";
2810
+ description?: string | undefined;
2811
+ required?: boolean | undefined;
2812
+ deprecated?: boolean | undefined;
2813
+ allowEmptyValue?: boolean | undefined;
2814
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2815
+ explode?: string | undefined;
2816
+ allowReserved?: boolean | undefined;
2817
+ schema?: unknown;
2818
+ example?: unknown;
2819
+ examples?: Record<string, unknown> | undefined;
2820
+ content?: Record<string, unknown> | undefined;
2821
+ }>, z.ZodObject<{
2822
+ $ref: z.ZodString;
2823
+ summary: z.ZodOptional<z.ZodString>;
2824
+ description: z.ZodOptional<z.ZodString>;
2825
+ }, "strip", z.ZodTypeAny, {
2826
+ $ref: string;
2827
+ description?: string | undefined;
2828
+ summary?: string | undefined;
2829
+ }, {
2830
+ $ref: string;
2831
+ description?: string | undefined;
2832
+ summary?: string | undefined;
2833
+ }>]>, "many">>;
2834
+ requestBody: z.ZodOptional<z.ZodUnknown>;
2835
+ responses: z.ZodOptional<z.ZodUnknown>;
2836
+ callbacks: z.ZodOptional<z.ZodUnknown>;
2837
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2838
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2839
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2840
+ }, "strip", z.ZodTypeAny, {
2841
+ description?: string | undefined;
2842
+ tags?: string[] | undefined;
2843
+ summary?: string | undefined;
2844
+ responses?: unknown;
2845
+ parameters?: ({
2846
+ name: string;
2847
+ in: "path" | "header" | "query" | "cookie";
2848
+ description?: string | undefined;
2849
+ required?: boolean | undefined;
2850
+ deprecated?: boolean | undefined;
2851
+ allowEmptyValue?: boolean | undefined;
2852
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2853
+ explode?: string | undefined;
2854
+ allowReserved?: boolean | undefined;
2855
+ schema?: unknown;
2856
+ example?: unknown;
2857
+ examples?: Record<string, unknown> | undefined;
2858
+ content?: Record<string, unknown> | undefined;
2859
+ } | {
2860
+ $ref: string;
2861
+ description?: string | undefined;
2862
+ summary?: string | undefined;
2863
+ })[] | undefined;
2864
+ deprecated?: boolean | undefined;
2865
+ externalDocs?: unknown;
2866
+ operationId?: string | undefined;
2867
+ requestBody?: unknown;
2868
+ callbacks?: unknown;
2869
+ security?: Record<string, string[]>[] | undefined;
2870
+ servers?: unknown[] | undefined;
2871
+ }, {
2872
+ description?: string | undefined;
2873
+ tags?: string[] | undefined;
2874
+ summary?: string | undefined;
2875
+ responses?: unknown;
2876
+ parameters?: ({
2877
+ name: string;
2878
+ in: "path" | "header" | "query" | "cookie";
2879
+ description?: string | undefined;
2880
+ required?: boolean | undefined;
2881
+ deprecated?: boolean | undefined;
2882
+ allowEmptyValue?: boolean | undefined;
2883
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2884
+ explode?: string | undefined;
2885
+ allowReserved?: boolean | undefined;
2886
+ schema?: unknown;
2887
+ example?: unknown;
2888
+ examples?: Record<string, unknown> | undefined;
2889
+ content?: Record<string, unknown> | undefined;
2890
+ } | {
2891
+ $ref: string;
2892
+ description?: string | undefined;
2893
+ summary?: string | undefined;
2894
+ })[] | undefined;
2895
+ deprecated?: boolean | undefined;
2896
+ externalDocs?: unknown;
2897
+ operationId?: string | undefined;
2898
+ requestBody?: unknown;
2899
+ callbacks?: unknown;
2900
+ security?: Record<string, string[]>[] | undefined;
2901
+ servers?: unknown[] | undefined;
2902
+ }>>;
2903
+ trace: z.ZodOptional<z.ZodObject<{
2904
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2905
+ summary: z.ZodOptional<z.ZodString>;
2906
+ description: z.ZodOptional<z.ZodString>;
2907
+ externalDocs: z.ZodOptional<z.ZodUnknown>;
2908
+ operationId: z.ZodOptional<z.ZodString>;
2909
+ parameters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
2910
+ name: z.ZodString;
2911
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
2912
+ description: z.ZodOptional<z.ZodString>;
2913
+ required: z.ZodOptional<z.ZodBoolean>;
2914
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2915
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
2916
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
2917
+ explode: z.ZodOptional<z.ZodString>;
2918
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
2919
+ schema: z.ZodOptional<z.ZodUnknown>;
2920
+ example: z.ZodOptional<z.ZodUnknown>;
2921
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2922
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2923
+ }, "strip", z.ZodTypeAny, {
2924
+ name: string;
2925
+ in: "path" | "header" | "query" | "cookie";
2926
+ description?: string | undefined;
2927
+ required?: boolean | undefined;
2928
+ deprecated?: boolean | undefined;
2929
+ allowEmptyValue?: boolean | undefined;
2930
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2931
+ explode?: string | undefined;
2932
+ allowReserved?: boolean | undefined;
2933
+ schema?: unknown;
2934
+ example?: unknown;
2935
+ examples?: Record<string, unknown> | undefined;
2936
+ content?: Record<string, unknown> | undefined;
2937
+ }, {
2938
+ name: string;
2939
+ in: "path" | "header" | "query" | "cookie";
2940
+ description?: string | undefined;
2941
+ required?: boolean | undefined;
2942
+ deprecated?: boolean | undefined;
2943
+ allowEmptyValue?: boolean | undefined;
2944
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2945
+ explode?: string | undefined;
2946
+ allowReserved?: boolean | undefined;
2947
+ schema?: unknown;
2948
+ example?: unknown;
2949
+ examples?: Record<string, unknown> | undefined;
2950
+ content?: Record<string, unknown> | undefined;
2951
+ }>, z.ZodObject<{
2952
+ $ref: z.ZodString;
2953
+ summary: z.ZodOptional<z.ZodString>;
2954
+ description: z.ZodOptional<z.ZodString>;
2955
+ }, "strip", z.ZodTypeAny, {
2956
+ $ref: string;
2957
+ description?: string | undefined;
2958
+ summary?: string | undefined;
2959
+ }, {
2960
+ $ref: string;
2961
+ description?: string | undefined;
2962
+ summary?: string | undefined;
2963
+ }>]>, "many">>;
2964
+ requestBody: z.ZodOptional<z.ZodUnknown>;
2965
+ responses: z.ZodOptional<z.ZodUnknown>;
2966
+ callbacks: z.ZodOptional<z.ZodUnknown>;
2967
+ deprecated: z.ZodOptional<z.ZodBoolean>;
2968
+ security: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>, "many">>;
2969
+ servers: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2970
+ }, "strip", z.ZodTypeAny, {
2971
+ description?: string | undefined;
2972
+ tags?: string[] | undefined;
2973
+ summary?: string | undefined;
2974
+ responses?: unknown;
2975
+ parameters?: ({
2976
+ name: string;
2977
+ in: "path" | "header" | "query" | "cookie";
2978
+ description?: string | undefined;
2979
+ required?: boolean | undefined;
2980
+ deprecated?: boolean | undefined;
2981
+ allowEmptyValue?: boolean | undefined;
2982
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
2983
+ explode?: string | undefined;
2984
+ allowReserved?: boolean | undefined;
2985
+ schema?: unknown;
2986
+ example?: unknown;
2987
+ examples?: Record<string, unknown> | undefined;
2988
+ content?: Record<string, unknown> | undefined;
2989
+ } | {
2990
+ $ref: string;
2991
+ description?: string | undefined;
2992
+ summary?: string | undefined;
2993
+ })[] | undefined;
2994
+ deprecated?: boolean | undefined;
2995
+ externalDocs?: unknown;
2996
+ operationId?: string | undefined;
2997
+ requestBody?: unknown;
2998
+ callbacks?: unknown;
2999
+ security?: Record<string, string[]>[] | undefined;
3000
+ servers?: unknown[] | undefined;
3001
+ }, {
3002
+ description?: string | undefined;
3003
+ tags?: string[] | undefined;
3004
+ summary?: string | undefined;
3005
+ responses?: unknown;
3006
+ parameters?: ({
3007
+ name: string;
3008
+ in: "path" | "header" | "query" | "cookie";
3009
+ description?: string | undefined;
3010
+ required?: boolean | undefined;
3011
+ deprecated?: boolean | undefined;
3012
+ allowEmptyValue?: boolean | undefined;
3013
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3014
+ explode?: string | undefined;
3015
+ allowReserved?: boolean | undefined;
3016
+ schema?: unknown;
3017
+ example?: unknown;
3018
+ examples?: Record<string, unknown> | undefined;
3019
+ content?: Record<string, unknown> | undefined;
3020
+ } | {
3021
+ $ref: string;
3022
+ description?: string | undefined;
3023
+ summary?: string | undefined;
3024
+ })[] | undefined;
3025
+ deprecated?: boolean | undefined;
3026
+ externalDocs?: unknown;
3027
+ operationId?: string | undefined;
3028
+ requestBody?: unknown;
3029
+ callbacks?: unknown;
3030
+ security?: Record<string, string[]>[] | undefined;
3031
+ servers?: unknown[] | undefined;
3032
+ }>>;
3033
+ servers: z.ZodOptional<z.ZodObject<{
3034
+ url: z.ZodString;
3035
+ description: z.ZodOptional<z.ZodString>;
3036
+ variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3037
+ }, "strip", z.ZodTypeAny, {
3038
+ url: string;
3039
+ description?: string | undefined;
3040
+ variables?: Record<string, unknown> | undefined;
3041
+ }, {
3042
+ url: string;
3043
+ description?: string | undefined;
3044
+ variables?: Record<string, unknown> | undefined;
3045
+ }>>;
3046
+ parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
3047
+ name: z.ZodString;
3048
+ in: z.ZodEnum<["query", "header", "path", "cookie"]>;
3049
+ description: z.ZodOptional<z.ZodString>;
3050
+ required: z.ZodOptional<z.ZodBoolean>;
3051
+ deprecated: z.ZodOptional<z.ZodBoolean>;
3052
+ allowEmptyValue: z.ZodOptional<z.ZodBoolean>;
3053
+ style: z.ZodOptional<z.ZodEnum<["matrix", "label", "form", "simple", "spaceDelimited", "pipeDelimited", "deepObject"]>>;
3054
+ explode: z.ZodOptional<z.ZodString>;
3055
+ allowReserved: z.ZodOptional<z.ZodBoolean>;
3056
+ schema: z.ZodOptional<z.ZodUnknown>;
3057
+ example: z.ZodOptional<z.ZodUnknown>;
3058
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3059
+ content: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3060
+ }, "strip", z.ZodTypeAny, {
3061
+ name: string;
3062
+ in: "path" | "header" | "query" | "cookie";
3063
+ description?: string | undefined;
3064
+ required?: boolean | undefined;
3065
+ deprecated?: boolean | undefined;
3066
+ allowEmptyValue?: boolean | undefined;
3067
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3068
+ explode?: string | undefined;
3069
+ allowReserved?: boolean | undefined;
3070
+ schema?: unknown;
3071
+ example?: unknown;
3072
+ examples?: Record<string, unknown> | undefined;
3073
+ content?: Record<string, unknown> | undefined;
3074
+ }, {
3075
+ name: string;
3076
+ in: "path" | "header" | "query" | "cookie";
3077
+ description?: string | undefined;
3078
+ required?: boolean | undefined;
3079
+ deprecated?: boolean | undefined;
3080
+ allowEmptyValue?: boolean | undefined;
3081
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3082
+ explode?: string | undefined;
3083
+ allowReserved?: boolean | undefined;
3084
+ schema?: unknown;
3085
+ example?: unknown;
3086
+ examples?: Record<string, unknown> | undefined;
3087
+ content?: Record<string, unknown> | undefined;
3088
+ }>, "many">>;
3089
+ }, "strip", z.ZodTypeAny, {
3090
+ description?: string | undefined;
3091
+ summary?: string | undefined;
3092
+ parameters?: {
3093
+ name: string;
3094
+ in: "path" | "header" | "query" | "cookie";
3095
+ description?: string | undefined;
3096
+ required?: boolean | undefined;
3097
+ deprecated?: boolean | undefined;
3098
+ allowEmptyValue?: boolean | undefined;
3099
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3100
+ explode?: string | undefined;
3101
+ allowReserved?: boolean | undefined;
3102
+ schema?: unknown;
3103
+ example?: unknown;
3104
+ examples?: Record<string, unknown> | undefined;
3105
+ content?: Record<string, unknown> | undefined;
3106
+ }[] | undefined;
3107
+ get?: {
3108
+ description?: string | undefined;
3109
+ tags?: string[] | undefined;
3110
+ summary?: string | undefined;
3111
+ responses?: unknown;
3112
+ parameters?: ({
3113
+ name: string;
3114
+ in: "path" | "header" | "query" | "cookie";
3115
+ description?: string | undefined;
3116
+ required?: boolean | undefined;
3117
+ deprecated?: boolean | undefined;
3118
+ allowEmptyValue?: boolean | undefined;
3119
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3120
+ explode?: string | undefined;
3121
+ allowReserved?: boolean | undefined;
3122
+ schema?: unknown;
3123
+ example?: unknown;
3124
+ examples?: Record<string, unknown> | undefined;
3125
+ content?: Record<string, unknown> | undefined;
3126
+ } | {
3127
+ $ref: string;
3128
+ description?: string | undefined;
3129
+ summary?: string | undefined;
3130
+ })[] | undefined;
3131
+ deprecated?: boolean | undefined;
3132
+ externalDocs?: unknown;
3133
+ operationId?: string | undefined;
3134
+ requestBody?: unknown;
3135
+ callbacks?: unknown;
3136
+ security?: Record<string, string[]>[] | undefined;
3137
+ servers?: unknown[] | undefined;
3138
+ } | undefined;
3139
+ post?: {
3140
+ description?: string | undefined;
3141
+ tags?: string[] | undefined;
3142
+ summary?: string | undefined;
3143
+ responses?: unknown;
3144
+ parameters?: ({
3145
+ name: string;
3146
+ in: "path" | "header" | "query" | "cookie";
3147
+ description?: string | undefined;
3148
+ required?: boolean | undefined;
3149
+ deprecated?: boolean | undefined;
3150
+ allowEmptyValue?: boolean | undefined;
3151
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3152
+ explode?: string | undefined;
3153
+ allowReserved?: boolean | undefined;
3154
+ schema?: unknown;
3155
+ example?: unknown;
3156
+ examples?: Record<string, unknown> | undefined;
3157
+ content?: Record<string, unknown> | undefined;
3158
+ } | {
3159
+ $ref: string;
3160
+ description?: string | undefined;
3161
+ summary?: string | undefined;
3162
+ })[] | undefined;
3163
+ deprecated?: boolean | undefined;
3164
+ externalDocs?: unknown;
3165
+ operationId?: string | undefined;
3166
+ requestBody?: unknown;
3167
+ callbacks?: unknown;
3168
+ security?: Record<string, string[]>[] | undefined;
3169
+ servers?: unknown[] | undefined;
3170
+ } | undefined;
3171
+ put?: {
3172
+ description?: string | undefined;
3173
+ tags?: string[] | undefined;
3174
+ summary?: string | undefined;
3175
+ responses?: unknown;
3176
+ parameters?: ({
3177
+ name: string;
3178
+ in: "path" | "header" | "query" | "cookie";
3179
+ description?: string | undefined;
3180
+ required?: boolean | undefined;
3181
+ deprecated?: boolean | undefined;
3182
+ allowEmptyValue?: boolean | undefined;
3183
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3184
+ explode?: string | undefined;
3185
+ allowReserved?: boolean | undefined;
3186
+ schema?: unknown;
3187
+ example?: unknown;
3188
+ examples?: Record<string, unknown> | undefined;
3189
+ content?: Record<string, unknown> | undefined;
3190
+ } | {
3191
+ $ref: string;
3192
+ description?: string | undefined;
3193
+ summary?: string | undefined;
3194
+ })[] | undefined;
3195
+ deprecated?: boolean | undefined;
3196
+ externalDocs?: unknown;
3197
+ operationId?: string | undefined;
3198
+ requestBody?: unknown;
3199
+ callbacks?: unknown;
3200
+ security?: Record<string, string[]>[] | undefined;
3201
+ servers?: unknown[] | undefined;
3202
+ } | undefined;
3203
+ delete?: {
3204
+ description?: string | undefined;
3205
+ tags?: string[] | undefined;
3206
+ summary?: string | undefined;
3207
+ responses?: unknown;
3208
+ parameters?: ({
3209
+ name: string;
3210
+ in: "path" | "header" | "query" | "cookie";
3211
+ description?: string | undefined;
3212
+ required?: boolean | undefined;
3213
+ deprecated?: boolean | undefined;
3214
+ allowEmptyValue?: boolean | undefined;
3215
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3216
+ explode?: string | undefined;
3217
+ allowReserved?: boolean | undefined;
3218
+ schema?: unknown;
3219
+ example?: unknown;
3220
+ examples?: Record<string, unknown> | undefined;
3221
+ content?: Record<string, unknown> | undefined;
3222
+ } | {
3223
+ $ref: string;
3224
+ description?: string | undefined;
3225
+ summary?: string | undefined;
3226
+ })[] | undefined;
3227
+ deprecated?: boolean | undefined;
3228
+ externalDocs?: unknown;
3229
+ operationId?: string | undefined;
3230
+ requestBody?: unknown;
3231
+ callbacks?: unknown;
3232
+ security?: Record<string, string[]>[] | undefined;
3233
+ servers?: unknown[] | undefined;
3234
+ } | undefined;
3235
+ patch?: {
3236
+ description?: string | undefined;
3237
+ tags?: string[] | undefined;
3238
+ summary?: string | undefined;
3239
+ responses?: unknown;
3240
+ parameters?: ({
3241
+ name: string;
3242
+ in: "path" | "header" | "query" | "cookie";
3243
+ description?: string | undefined;
3244
+ required?: boolean | undefined;
3245
+ deprecated?: boolean | undefined;
3246
+ allowEmptyValue?: boolean | undefined;
3247
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3248
+ explode?: string | undefined;
3249
+ allowReserved?: boolean | undefined;
3250
+ schema?: unknown;
3251
+ example?: unknown;
3252
+ examples?: Record<string, unknown> | undefined;
3253
+ content?: Record<string, unknown> | undefined;
3254
+ } | {
3255
+ $ref: string;
3256
+ description?: string | undefined;
3257
+ summary?: string | undefined;
3258
+ })[] | undefined;
3259
+ deprecated?: boolean | undefined;
3260
+ externalDocs?: unknown;
3261
+ operationId?: string | undefined;
3262
+ requestBody?: unknown;
3263
+ callbacks?: unknown;
3264
+ security?: Record<string, string[]>[] | undefined;
3265
+ servers?: unknown[] | undefined;
3266
+ } | undefined;
3267
+ head?: {
3268
+ description?: string | undefined;
3269
+ tags?: string[] | undefined;
3270
+ summary?: string | undefined;
3271
+ responses?: unknown;
3272
+ parameters?: ({
3273
+ name: string;
3274
+ in: "path" | "header" | "query" | "cookie";
3275
+ description?: string | undefined;
3276
+ required?: boolean | undefined;
3277
+ deprecated?: boolean | undefined;
3278
+ allowEmptyValue?: boolean | undefined;
3279
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3280
+ explode?: string | undefined;
3281
+ allowReserved?: boolean | undefined;
3282
+ schema?: unknown;
3283
+ example?: unknown;
3284
+ examples?: Record<string, unknown> | undefined;
3285
+ content?: Record<string, unknown> | undefined;
3286
+ } | {
3287
+ $ref: string;
3288
+ description?: string | undefined;
3289
+ summary?: string | undefined;
3290
+ })[] | undefined;
3291
+ deprecated?: boolean | undefined;
3292
+ externalDocs?: unknown;
3293
+ operationId?: string | undefined;
3294
+ requestBody?: unknown;
3295
+ callbacks?: unknown;
3296
+ security?: Record<string, string[]>[] | undefined;
3297
+ servers?: unknown[] | undefined;
3298
+ } | undefined;
3299
+ options?: {
3300
+ description?: string | undefined;
3301
+ tags?: string[] | undefined;
3302
+ summary?: string | undefined;
3303
+ responses?: unknown;
3304
+ parameters?: ({
3305
+ name: string;
3306
+ in: "path" | "header" | "query" | "cookie";
3307
+ description?: string | undefined;
3308
+ required?: boolean | undefined;
3309
+ deprecated?: boolean | undefined;
3310
+ allowEmptyValue?: boolean | undefined;
3311
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3312
+ explode?: string | undefined;
3313
+ allowReserved?: boolean | undefined;
3314
+ schema?: unknown;
3315
+ example?: unknown;
3316
+ examples?: Record<string, unknown> | undefined;
3317
+ content?: Record<string, unknown> | undefined;
3318
+ } | {
3319
+ $ref: string;
3320
+ description?: string | undefined;
3321
+ summary?: string | undefined;
3322
+ })[] | undefined;
3323
+ deprecated?: boolean | undefined;
3324
+ externalDocs?: unknown;
3325
+ operationId?: string | undefined;
3326
+ requestBody?: unknown;
3327
+ callbacks?: unknown;
3328
+ security?: Record<string, string[]>[] | undefined;
3329
+ servers?: unknown[] | undefined;
3330
+ } | undefined;
3331
+ servers?: {
3332
+ url: string;
3333
+ description?: string | undefined;
3334
+ variables?: Record<string, unknown> | undefined;
3335
+ } | undefined;
3336
+ trace?: {
3337
+ description?: string | undefined;
3338
+ tags?: string[] | undefined;
3339
+ summary?: string | undefined;
3340
+ responses?: unknown;
3341
+ parameters?: ({
3342
+ name: string;
3343
+ in: "path" | "header" | "query" | "cookie";
3344
+ description?: string | undefined;
3345
+ required?: boolean | undefined;
3346
+ deprecated?: boolean | undefined;
3347
+ allowEmptyValue?: boolean | undefined;
3348
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3349
+ explode?: string | undefined;
3350
+ allowReserved?: boolean | undefined;
3351
+ schema?: unknown;
3352
+ example?: unknown;
3353
+ examples?: Record<string, unknown> | undefined;
3354
+ content?: Record<string, unknown> | undefined;
3355
+ } | {
3356
+ $ref: string;
3357
+ description?: string | undefined;
3358
+ summary?: string | undefined;
3359
+ })[] | undefined;
3360
+ deprecated?: boolean | undefined;
3361
+ externalDocs?: unknown;
3362
+ operationId?: string | undefined;
3363
+ requestBody?: unknown;
3364
+ callbacks?: unknown;
3365
+ security?: Record<string, string[]>[] | undefined;
3366
+ servers?: unknown[] | undefined;
3367
+ } | undefined;
3368
+ }, {
3369
+ description?: string | undefined;
3370
+ summary?: string | undefined;
3371
+ parameters?: {
3372
+ name: string;
3373
+ in: "path" | "header" | "query" | "cookie";
3374
+ description?: string | undefined;
3375
+ required?: boolean | undefined;
3376
+ deprecated?: boolean | undefined;
3377
+ allowEmptyValue?: boolean | undefined;
3378
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3379
+ explode?: string | undefined;
3380
+ allowReserved?: boolean | undefined;
3381
+ schema?: unknown;
3382
+ example?: unknown;
3383
+ examples?: Record<string, unknown> | undefined;
3384
+ content?: Record<string, unknown> | undefined;
3385
+ }[] | undefined;
3386
+ get?: {
3387
+ description?: string | undefined;
3388
+ tags?: string[] | undefined;
3389
+ summary?: string | undefined;
3390
+ responses?: unknown;
3391
+ parameters?: ({
3392
+ name: string;
3393
+ in: "path" | "header" | "query" | "cookie";
3394
+ description?: string | undefined;
3395
+ required?: boolean | undefined;
3396
+ deprecated?: boolean | undefined;
3397
+ allowEmptyValue?: boolean | undefined;
3398
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3399
+ explode?: string | undefined;
3400
+ allowReserved?: boolean | undefined;
3401
+ schema?: unknown;
3402
+ example?: unknown;
3403
+ examples?: Record<string, unknown> | undefined;
3404
+ content?: Record<string, unknown> | undefined;
3405
+ } | {
3406
+ $ref: string;
3407
+ description?: string | undefined;
3408
+ summary?: string | undefined;
3409
+ })[] | undefined;
3410
+ deprecated?: boolean | undefined;
3411
+ externalDocs?: unknown;
3412
+ operationId?: string | undefined;
3413
+ requestBody?: unknown;
3414
+ callbacks?: unknown;
3415
+ security?: Record<string, string[]>[] | undefined;
3416
+ servers?: unknown[] | undefined;
3417
+ } | undefined;
3418
+ post?: {
3419
+ description?: string | undefined;
3420
+ tags?: string[] | undefined;
3421
+ summary?: string | undefined;
3422
+ responses?: unknown;
3423
+ parameters?: ({
3424
+ name: string;
3425
+ in: "path" | "header" | "query" | "cookie";
3426
+ description?: string | undefined;
3427
+ required?: boolean | undefined;
3428
+ deprecated?: boolean | undefined;
3429
+ allowEmptyValue?: boolean | undefined;
3430
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3431
+ explode?: string | undefined;
3432
+ allowReserved?: boolean | undefined;
3433
+ schema?: unknown;
3434
+ example?: unknown;
3435
+ examples?: Record<string, unknown> | undefined;
3436
+ content?: Record<string, unknown> | undefined;
3437
+ } | {
3438
+ $ref: string;
3439
+ description?: string | undefined;
3440
+ summary?: string | undefined;
3441
+ })[] | undefined;
3442
+ deprecated?: boolean | undefined;
3443
+ externalDocs?: unknown;
3444
+ operationId?: string | undefined;
3445
+ requestBody?: unknown;
3446
+ callbacks?: unknown;
3447
+ security?: Record<string, string[]>[] | undefined;
3448
+ servers?: unknown[] | undefined;
3449
+ } | undefined;
3450
+ put?: {
3451
+ description?: string | undefined;
3452
+ tags?: string[] | undefined;
3453
+ summary?: string | undefined;
3454
+ responses?: unknown;
3455
+ parameters?: ({
3456
+ name: string;
3457
+ in: "path" | "header" | "query" | "cookie";
3458
+ description?: string | undefined;
3459
+ required?: boolean | undefined;
3460
+ deprecated?: boolean | undefined;
3461
+ allowEmptyValue?: boolean | undefined;
3462
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3463
+ explode?: string | undefined;
3464
+ allowReserved?: boolean | undefined;
3465
+ schema?: unknown;
3466
+ example?: unknown;
3467
+ examples?: Record<string, unknown> | undefined;
3468
+ content?: Record<string, unknown> | undefined;
3469
+ } | {
3470
+ $ref: string;
3471
+ description?: string | undefined;
3472
+ summary?: string | undefined;
3473
+ })[] | undefined;
3474
+ deprecated?: boolean | undefined;
3475
+ externalDocs?: unknown;
3476
+ operationId?: string | undefined;
3477
+ requestBody?: unknown;
3478
+ callbacks?: unknown;
3479
+ security?: Record<string, string[]>[] | undefined;
3480
+ servers?: unknown[] | undefined;
3481
+ } | undefined;
3482
+ delete?: {
3483
+ description?: string | undefined;
3484
+ tags?: string[] | undefined;
3485
+ summary?: string | undefined;
3486
+ responses?: unknown;
3487
+ parameters?: ({
3488
+ name: string;
3489
+ in: "path" | "header" | "query" | "cookie";
3490
+ description?: string | undefined;
3491
+ required?: boolean | undefined;
3492
+ deprecated?: boolean | undefined;
3493
+ allowEmptyValue?: boolean | undefined;
3494
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3495
+ explode?: string | undefined;
3496
+ allowReserved?: boolean | undefined;
3497
+ schema?: unknown;
3498
+ example?: unknown;
3499
+ examples?: Record<string, unknown> | undefined;
3500
+ content?: Record<string, unknown> | undefined;
3501
+ } | {
3502
+ $ref: string;
3503
+ description?: string | undefined;
3504
+ summary?: string | undefined;
3505
+ })[] | undefined;
3506
+ deprecated?: boolean | undefined;
3507
+ externalDocs?: unknown;
3508
+ operationId?: string | undefined;
3509
+ requestBody?: unknown;
3510
+ callbacks?: unknown;
3511
+ security?: Record<string, string[]>[] | undefined;
3512
+ servers?: unknown[] | undefined;
3513
+ } | undefined;
3514
+ patch?: {
3515
+ description?: string | undefined;
3516
+ tags?: string[] | undefined;
3517
+ summary?: string | undefined;
3518
+ responses?: unknown;
3519
+ parameters?: ({
3520
+ name: string;
3521
+ in: "path" | "header" | "query" | "cookie";
3522
+ description?: string | undefined;
3523
+ required?: boolean | undefined;
3524
+ deprecated?: boolean | undefined;
3525
+ allowEmptyValue?: boolean | undefined;
3526
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3527
+ explode?: string | undefined;
3528
+ allowReserved?: boolean | undefined;
3529
+ schema?: unknown;
3530
+ example?: unknown;
3531
+ examples?: Record<string, unknown> | undefined;
3532
+ content?: Record<string, unknown> | undefined;
3533
+ } | {
3534
+ $ref: string;
3535
+ description?: string | undefined;
3536
+ summary?: string | undefined;
3537
+ })[] | undefined;
3538
+ deprecated?: boolean | undefined;
3539
+ externalDocs?: unknown;
3540
+ operationId?: string | undefined;
3541
+ requestBody?: unknown;
3542
+ callbacks?: unknown;
3543
+ security?: Record<string, string[]>[] | undefined;
3544
+ servers?: unknown[] | undefined;
3545
+ } | undefined;
3546
+ head?: {
3547
+ description?: string | undefined;
3548
+ tags?: string[] | undefined;
3549
+ summary?: string | undefined;
3550
+ responses?: unknown;
3551
+ parameters?: ({
3552
+ name: string;
3553
+ in: "path" | "header" | "query" | "cookie";
3554
+ description?: string | undefined;
3555
+ required?: boolean | undefined;
3556
+ deprecated?: boolean | undefined;
3557
+ allowEmptyValue?: boolean | undefined;
3558
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3559
+ explode?: string | undefined;
3560
+ allowReserved?: boolean | undefined;
3561
+ schema?: unknown;
3562
+ example?: unknown;
3563
+ examples?: Record<string, unknown> | undefined;
3564
+ content?: Record<string, unknown> | undefined;
3565
+ } | {
3566
+ $ref: string;
3567
+ description?: string | undefined;
3568
+ summary?: string | undefined;
3569
+ })[] | undefined;
3570
+ deprecated?: boolean | undefined;
3571
+ externalDocs?: unknown;
3572
+ operationId?: string | undefined;
3573
+ requestBody?: unknown;
3574
+ callbacks?: unknown;
3575
+ security?: Record<string, string[]>[] | undefined;
3576
+ servers?: unknown[] | undefined;
3577
+ } | undefined;
3578
+ options?: {
3579
+ description?: string | undefined;
3580
+ tags?: string[] | undefined;
3581
+ summary?: string | undefined;
3582
+ responses?: unknown;
3583
+ parameters?: ({
3584
+ name: string;
3585
+ in: "path" | "header" | "query" | "cookie";
3586
+ description?: string | undefined;
3587
+ required?: boolean | undefined;
3588
+ deprecated?: boolean | undefined;
3589
+ allowEmptyValue?: boolean | undefined;
3590
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3591
+ explode?: string | undefined;
3592
+ allowReserved?: boolean | undefined;
3593
+ schema?: unknown;
3594
+ example?: unknown;
3595
+ examples?: Record<string, unknown> | undefined;
3596
+ content?: Record<string, unknown> | undefined;
3597
+ } | {
3598
+ $ref: string;
3599
+ description?: string | undefined;
3600
+ summary?: string | undefined;
3601
+ })[] | undefined;
3602
+ deprecated?: boolean | undefined;
3603
+ externalDocs?: unknown;
3604
+ operationId?: string | undefined;
3605
+ requestBody?: unknown;
3606
+ callbacks?: unknown;
3607
+ security?: Record<string, string[]>[] | undefined;
3608
+ servers?: unknown[] | undefined;
3609
+ } | undefined;
3610
+ servers?: {
3611
+ url: string;
3612
+ description?: string | undefined;
3613
+ variables?: Record<string, unknown> | undefined;
3614
+ } | undefined;
3615
+ trace?: {
3616
+ description?: string | undefined;
3617
+ tags?: string[] | undefined;
3618
+ summary?: string | undefined;
3619
+ responses?: unknown;
3620
+ parameters?: ({
3621
+ name: string;
3622
+ in: "path" | "header" | "query" | "cookie";
3623
+ description?: string | undefined;
3624
+ required?: boolean | undefined;
3625
+ deprecated?: boolean | undefined;
3626
+ allowEmptyValue?: boolean | undefined;
3627
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3628
+ explode?: string | undefined;
3629
+ allowReserved?: boolean | undefined;
3630
+ schema?: unknown;
3631
+ example?: unknown;
3632
+ examples?: Record<string, unknown> | undefined;
3633
+ content?: Record<string, unknown> | undefined;
3634
+ } | {
3635
+ $ref: string;
3636
+ description?: string | undefined;
3637
+ summary?: string | undefined;
3638
+ })[] | undefined;
3639
+ deprecated?: boolean | undefined;
3640
+ externalDocs?: unknown;
3641
+ operationId?: string | undefined;
3642
+ requestBody?: unknown;
3643
+ callbacks?: unknown;
3644
+ security?: Record<string, string[]>[] | undefined;
3645
+ servers?: unknown[] | undefined;
3646
+ } | undefined;
3647
+ }>>;
3648
+ components: z.ZodOptional<z.ZodObject<{
3649
+ schemas: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3650
+ responses: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3651
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3652
+ examples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3653
+ requestBodies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3654
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3655
+ securitySchemes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3656
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3657
+ callbacks: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3658
+ }, "strict", z.ZodTypeAny, {
3659
+ headers?: Record<string, any> | undefined;
3660
+ responses?: Record<string, any> | undefined;
3661
+ parameters?: Record<string, any> | undefined;
3662
+ examples?: Record<string, any> | undefined;
3663
+ callbacks?: Record<string, any> | undefined;
3664
+ schemas?: Record<string, any> | undefined;
3665
+ requestBodies?: Record<string, any> | undefined;
3666
+ securitySchemes?: Record<string, any> | undefined;
3667
+ links?: Record<string, any> | undefined;
3668
+ }, {
3669
+ headers?: Record<string, any> | undefined;
3670
+ responses?: Record<string, any> | undefined;
3671
+ parameters?: Record<string, any> | undefined;
3672
+ examples?: Record<string, any> | undefined;
3673
+ callbacks?: Record<string, any> | undefined;
3674
+ schemas?: Record<string, any> | undefined;
3675
+ requestBodies?: Record<string, any> | undefined;
3676
+ securitySchemes?: Record<string, any> | undefined;
3677
+ links?: Record<string, any> | undefined;
3678
+ }>>;
3679
+ }, "strip", z.ZodTypeAny, {
3680
+ info: {
3681
+ title: string;
3682
+ version: string;
3683
+ description?: string | undefined;
3684
+ termsOfService?: string | undefined;
3685
+ contact?: {
3686
+ name?: string | undefined;
3687
+ url?: string | undefined;
3688
+ email?: string | undefined;
3689
+ } | undefined;
3690
+ license?: {
3691
+ name: string;
3692
+ url?: string | undefined;
3693
+ } | undefined;
3694
+ };
3695
+ openapi: string;
3696
+ paths: Record<string, {
3697
+ description?: string | undefined;
3698
+ summary?: string | undefined;
3699
+ parameters?: {
3700
+ name: string;
3701
+ in: "path" | "header" | "query" | "cookie";
3702
+ description?: string | undefined;
3703
+ required?: boolean | undefined;
3704
+ deprecated?: boolean | undefined;
3705
+ allowEmptyValue?: boolean | undefined;
3706
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3707
+ explode?: string | undefined;
3708
+ allowReserved?: boolean | undefined;
3709
+ schema?: unknown;
3710
+ example?: unknown;
3711
+ examples?: Record<string, unknown> | undefined;
3712
+ content?: Record<string, unknown> | undefined;
3713
+ }[] | undefined;
3714
+ get?: {
3715
+ description?: string | undefined;
3716
+ tags?: string[] | undefined;
3717
+ summary?: string | undefined;
3718
+ responses?: unknown;
3719
+ parameters?: ({
3720
+ name: string;
3721
+ in: "path" | "header" | "query" | "cookie";
3722
+ description?: string | undefined;
3723
+ required?: boolean | undefined;
3724
+ deprecated?: boolean | undefined;
3725
+ allowEmptyValue?: boolean | undefined;
3726
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3727
+ explode?: string | undefined;
3728
+ allowReserved?: boolean | undefined;
3729
+ schema?: unknown;
3730
+ example?: unknown;
3731
+ examples?: Record<string, unknown> | undefined;
3732
+ content?: Record<string, unknown> | undefined;
3733
+ } | {
3734
+ $ref: string;
3735
+ description?: string | undefined;
3736
+ summary?: string | undefined;
3737
+ })[] | undefined;
3738
+ deprecated?: boolean | undefined;
3739
+ externalDocs?: unknown;
3740
+ operationId?: string | undefined;
3741
+ requestBody?: unknown;
3742
+ callbacks?: unknown;
3743
+ security?: Record<string, string[]>[] | undefined;
3744
+ servers?: unknown[] | undefined;
3745
+ } | undefined;
3746
+ post?: {
3747
+ description?: string | undefined;
3748
+ tags?: string[] | undefined;
3749
+ summary?: string | undefined;
3750
+ responses?: unknown;
3751
+ parameters?: ({
3752
+ name: string;
3753
+ in: "path" | "header" | "query" | "cookie";
3754
+ description?: string | undefined;
3755
+ required?: boolean | undefined;
3756
+ deprecated?: boolean | undefined;
3757
+ allowEmptyValue?: boolean | undefined;
3758
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3759
+ explode?: string | undefined;
3760
+ allowReserved?: boolean | undefined;
3761
+ schema?: unknown;
3762
+ example?: unknown;
3763
+ examples?: Record<string, unknown> | undefined;
3764
+ content?: Record<string, unknown> | undefined;
3765
+ } | {
3766
+ $ref: string;
3767
+ description?: string | undefined;
3768
+ summary?: string | undefined;
3769
+ })[] | undefined;
3770
+ deprecated?: boolean | undefined;
3771
+ externalDocs?: unknown;
3772
+ operationId?: string | undefined;
3773
+ requestBody?: unknown;
3774
+ callbacks?: unknown;
3775
+ security?: Record<string, string[]>[] | undefined;
3776
+ servers?: unknown[] | undefined;
3777
+ } | undefined;
3778
+ put?: {
3779
+ description?: string | undefined;
3780
+ tags?: string[] | undefined;
3781
+ summary?: string | undefined;
3782
+ responses?: unknown;
3783
+ parameters?: ({
3784
+ name: string;
3785
+ in: "path" | "header" | "query" | "cookie";
3786
+ description?: string | undefined;
3787
+ required?: boolean | undefined;
3788
+ deprecated?: boolean | undefined;
3789
+ allowEmptyValue?: boolean | undefined;
3790
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3791
+ explode?: string | undefined;
3792
+ allowReserved?: boolean | undefined;
3793
+ schema?: unknown;
3794
+ example?: unknown;
3795
+ examples?: Record<string, unknown> | undefined;
3796
+ content?: Record<string, unknown> | undefined;
3797
+ } | {
3798
+ $ref: string;
3799
+ description?: string | undefined;
3800
+ summary?: string | undefined;
3801
+ })[] | undefined;
3802
+ deprecated?: boolean | undefined;
3803
+ externalDocs?: unknown;
3804
+ operationId?: string | undefined;
3805
+ requestBody?: unknown;
3806
+ callbacks?: unknown;
3807
+ security?: Record<string, string[]>[] | undefined;
3808
+ servers?: unknown[] | undefined;
3809
+ } | undefined;
3810
+ delete?: {
3811
+ description?: string | undefined;
3812
+ tags?: string[] | undefined;
3813
+ summary?: string | undefined;
3814
+ responses?: unknown;
3815
+ parameters?: ({
3816
+ name: string;
3817
+ in: "path" | "header" | "query" | "cookie";
3818
+ description?: string | undefined;
3819
+ required?: boolean | undefined;
3820
+ deprecated?: boolean | undefined;
3821
+ allowEmptyValue?: boolean | undefined;
3822
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3823
+ explode?: string | undefined;
3824
+ allowReserved?: boolean | undefined;
3825
+ schema?: unknown;
3826
+ example?: unknown;
3827
+ examples?: Record<string, unknown> | undefined;
3828
+ content?: Record<string, unknown> | undefined;
3829
+ } | {
3830
+ $ref: string;
3831
+ description?: string | undefined;
3832
+ summary?: string | undefined;
3833
+ })[] | undefined;
3834
+ deprecated?: boolean | undefined;
3835
+ externalDocs?: unknown;
3836
+ operationId?: string | undefined;
3837
+ requestBody?: unknown;
3838
+ callbacks?: unknown;
3839
+ security?: Record<string, string[]>[] | undefined;
3840
+ servers?: unknown[] | undefined;
3841
+ } | undefined;
3842
+ patch?: {
3843
+ description?: string | undefined;
3844
+ tags?: string[] | undefined;
3845
+ summary?: string | undefined;
3846
+ responses?: unknown;
3847
+ parameters?: ({
3848
+ name: string;
3849
+ in: "path" | "header" | "query" | "cookie";
3850
+ description?: string | undefined;
3851
+ required?: boolean | undefined;
3852
+ deprecated?: boolean | undefined;
3853
+ allowEmptyValue?: boolean | undefined;
3854
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3855
+ explode?: string | undefined;
3856
+ allowReserved?: boolean | undefined;
3857
+ schema?: unknown;
3858
+ example?: unknown;
3859
+ examples?: Record<string, unknown> | undefined;
3860
+ content?: Record<string, unknown> | undefined;
3861
+ } | {
3862
+ $ref: string;
3863
+ description?: string | undefined;
3864
+ summary?: string | undefined;
3865
+ })[] | undefined;
3866
+ deprecated?: boolean | undefined;
3867
+ externalDocs?: unknown;
3868
+ operationId?: string | undefined;
3869
+ requestBody?: unknown;
3870
+ callbacks?: unknown;
3871
+ security?: Record<string, string[]>[] | undefined;
3872
+ servers?: unknown[] | undefined;
3873
+ } | undefined;
3874
+ head?: {
3875
+ description?: string | undefined;
3876
+ tags?: string[] | undefined;
3877
+ summary?: string | undefined;
3878
+ responses?: unknown;
3879
+ parameters?: ({
3880
+ name: string;
3881
+ in: "path" | "header" | "query" | "cookie";
3882
+ description?: string | undefined;
3883
+ required?: boolean | undefined;
3884
+ deprecated?: boolean | undefined;
3885
+ allowEmptyValue?: boolean | undefined;
3886
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3887
+ explode?: string | undefined;
3888
+ allowReserved?: boolean | undefined;
3889
+ schema?: unknown;
3890
+ example?: unknown;
3891
+ examples?: Record<string, unknown> | undefined;
3892
+ content?: Record<string, unknown> | undefined;
3893
+ } | {
3894
+ $ref: string;
3895
+ description?: string | undefined;
3896
+ summary?: string | undefined;
3897
+ })[] | undefined;
3898
+ deprecated?: boolean | undefined;
3899
+ externalDocs?: unknown;
3900
+ operationId?: string | undefined;
3901
+ requestBody?: unknown;
3902
+ callbacks?: unknown;
3903
+ security?: Record<string, string[]>[] | undefined;
3904
+ servers?: unknown[] | undefined;
3905
+ } | undefined;
3906
+ options?: {
3907
+ description?: string | undefined;
3908
+ tags?: string[] | undefined;
3909
+ summary?: string | undefined;
3910
+ responses?: unknown;
3911
+ parameters?: ({
3912
+ name: string;
3913
+ in: "path" | "header" | "query" | "cookie";
3914
+ description?: string | undefined;
3915
+ required?: boolean | undefined;
3916
+ deprecated?: boolean | undefined;
3917
+ allowEmptyValue?: boolean | undefined;
3918
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3919
+ explode?: string | undefined;
3920
+ allowReserved?: boolean | undefined;
3921
+ schema?: unknown;
3922
+ example?: unknown;
3923
+ examples?: Record<string, unknown> | undefined;
3924
+ content?: Record<string, unknown> | undefined;
3925
+ } | {
3926
+ $ref: string;
3927
+ description?: string | undefined;
3928
+ summary?: string | undefined;
3929
+ })[] | undefined;
3930
+ deprecated?: boolean | undefined;
3931
+ externalDocs?: unknown;
3932
+ operationId?: string | undefined;
3933
+ requestBody?: unknown;
3934
+ callbacks?: unknown;
3935
+ security?: Record<string, string[]>[] | undefined;
3936
+ servers?: unknown[] | undefined;
3937
+ } | undefined;
3938
+ servers?: {
3939
+ url: string;
3940
+ description?: string | undefined;
3941
+ variables?: Record<string, unknown> | undefined;
3942
+ } | undefined;
3943
+ trace?: {
3944
+ description?: string | undefined;
3945
+ tags?: string[] | undefined;
3946
+ summary?: string | undefined;
3947
+ responses?: unknown;
3948
+ parameters?: ({
3949
+ name: string;
3950
+ in: "path" | "header" | "query" | "cookie";
3951
+ description?: string | undefined;
3952
+ required?: boolean | undefined;
3953
+ deprecated?: boolean | undefined;
3954
+ allowEmptyValue?: boolean | undefined;
3955
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
3956
+ explode?: string | undefined;
3957
+ allowReserved?: boolean | undefined;
3958
+ schema?: unknown;
3959
+ example?: unknown;
3960
+ examples?: Record<string, unknown> | undefined;
3961
+ content?: Record<string, unknown> | undefined;
3962
+ } | {
3963
+ $ref: string;
3964
+ description?: string | undefined;
3965
+ summary?: string | undefined;
3966
+ })[] | undefined;
3967
+ deprecated?: boolean | undefined;
3968
+ externalDocs?: unknown;
3969
+ operationId?: string | undefined;
3970
+ requestBody?: unknown;
3971
+ callbacks?: unknown;
3972
+ security?: Record<string, string[]>[] | undefined;
3973
+ servers?: unknown[] | undefined;
3974
+ } | undefined;
3975
+ }>;
3976
+ tags?: {
3977
+ name: string;
3978
+ description?: string | undefined;
3979
+ externalDocs?: {
3980
+ url: string;
3981
+ description?: string | undefined;
3982
+ } | undefined;
3983
+ }[] | undefined;
3984
+ externalDocs?: {
3985
+ url: string;
3986
+ description?: string | undefined;
3987
+ } | undefined;
3988
+ security?: Record<string, string[]>[] | undefined;
3989
+ servers?: {
3990
+ url: string;
3991
+ description?: string | undefined;
3992
+ variables?: Record<string, {
3993
+ default: string;
3994
+ description?: string | undefined;
3995
+ enum?: string[] | undefined;
3996
+ }> | undefined;
3997
+ }[] | undefined;
3998
+ components?: {
3999
+ headers?: Record<string, any> | undefined;
4000
+ responses?: Record<string, any> | undefined;
4001
+ parameters?: Record<string, any> | undefined;
4002
+ examples?: Record<string, any> | undefined;
4003
+ callbacks?: Record<string, any> | undefined;
4004
+ schemas?: Record<string, any> | undefined;
4005
+ requestBodies?: Record<string, any> | undefined;
4006
+ securitySchemes?: Record<string, any> | undefined;
4007
+ links?: Record<string, any> | undefined;
4008
+ } | undefined;
4009
+ }, {
4010
+ info: {
4011
+ title: string;
4012
+ version: string;
4013
+ description?: string | undefined;
4014
+ termsOfService?: string | undefined;
4015
+ contact?: {
4016
+ name?: string | undefined;
4017
+ url?: string | undefined;
4018
+ email?: string | undefined;
4019
+ } | undefined;
4020
+ license?: {
4021
+ name: string;
4022
+ url?: string | undefined;
4023
+ } | undefined;
4024
+ };
4025
+ openapi: string;
4026
+ paths: Record<string, {
4027
+ description?: string | undefined;
4028
+ summary?: string | undefined;
4029
+ parameters?: {
4030
+ name: string;
4031
+ in: "path" | "header" | "query" | "cookie";
4032
+ description?: string | undefined;
4033
+ required?: boolean | undefined;
4034
+ deprecated?: boolean | undefined;
4035
+ allowEmptyValue?: boolean | undefined;
4036
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4037
+ explode?: string | undefined;
4038
+ allowReserved?: boolean | undefined;
4039
+ schema?: unknown;
4040
+ example?: unknown;
4041
+ examples?: Record<string, unknown> | undefined;
4042
+ content?: Record<string, unknown> | undefined;
4043
+ }[] | undefined;
4044
+ get?: {
4045
+ description?: string | undefined;
4046
+ tags?: string[] | undefined;
4047
+ summary?: string | undefined;
4048
+ responses?: unknown;
4049
+ parameters?: ({
4050
+ name: string;
4051
+ in: "path" | "header" | "query" | "cookie";
4052
+ description?: string | undefined;
4053
+ required?: boolean | undefined;
4054
+ deprecated?: boolean | undefined;
4055
+ allowEmptyValue?: boolean | undefined;
4056
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4057
+ explode?: string | undefined;
4058
+ allowReserved?: boolean | undefined;
4059
+ schema?: unknown;
4060
+ example?: unknown;
4061
+ examples?: Record<string, unknown> | undefined;
4062
+ content?: Record<string, unknown> | undefined;
4063
+ } | {
4064
+ $ref: string;
4065
+ description?: string | undefined;
4066
+ summary?: string | undefined;
4067
+ })[] | undefined;
4068
+ deprecated?: boolean | undefined;
4069
+ externalDocs?: unknown;
4070
+ operationId?: string | undefined;
4071
+ requestBody?: unknown;
4072
+ callbacks?: unknown;
4073
+ security?: Record<string, string[]>[] | undefined;
4074
+ servers?: unknown[] | undefined;
4075
+ } | undefined;
4076
+ post?: {
4077
+ description?: string | undefined;
4078
+ tags?: string[] | undefined;
4079
+ summary?: string | undefined;
4080
+ responses?: unknown;
4081
+ parameters?: ({
4082
+ name: string;
4083
+ in: "path" | "header" | "query" | "cookie";
4084
+ description?: string | undefined;
4085
+ required?: boolean | undefined;
4086
+ deprecated?: boolean | undefined;
4087
+ allowEmptyValue?: boolean | undefined;
4088
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4089
+ explode?: string | undefined;
4090
+ allowReserved?: boolean | undefined;
4091
+ schema?: unknown;
4092
+ example?: unknown;
4093
+ examples?: Record<string, unknown> | undefined;
4094
+ content?: Record<string, unknown> | undefined;
4095
+ } | {
4096
+ $ref: string;
4097
+ description?: string | undefined;
4098
+ summary?: string | undefined;
4099
+ })[] | undefined;
4100
+ deprecated?: boolean | undefined;
4101
+ externalDocs?: unknown;
4102
+ operationId?: string | undefined;
4103
+ requestBody?: unknown;
4104
+ callbacks?: unknown;
4105
+ security?: Record<string, string[]>[] | undefined;
4106
+ servers?: unknown[] | undefined;
4107
+ } | undefined;
4108
+ put?: {
4109
+ description?: string | undefined;
4110
+ tags?: string[] | undefined;
4111
+ summary?: string | undefined;
4112
+ responses?: unknown;
4113
+ parameters?: ({
4114
+ name: string;
4115
+ in: "path" | "header" | "query" | "cookie";
4116
+ description?: string | undefined;
4117
+ required?: boolean | undefined;
4118
+ deprecated?: boolean | undefined;
4119
+ allowEmptyValue?: boolean | undefined;
4120
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4121
+ explode?: string | undefined;
4122
+ allowReserved?: boolean | undefined;
4123
+ schema?: unknown;
4124
+ example?: unknown;
4125
+ examples?: Record<string, unknown> | undefined;
4126
+ content?: Record<string, unknown> | undefined;
4127
+ } | {
4128
+ $ref: string;
4129
+ description?: string | undefined;
4130
+ summary?: string | undefined;
4131
+ })[] | undefined;
4132
+ deprecated?: boolean | undefined;
4133
+ externalDocs?: unknown;
4134
+ operationId?: string | undefined;
4135
+ requestBody?: unknown;
4136
+ callbacks?: unknown;
4137
+ security?: Record<string, string[]>[] | undefined;
4138
+ servers?: unknown[] | undefined;
4139
+ } | undefined;
4140
+ delete?: {
4141
+ description?: string | undefined;
4142
+ tags?: string[] | undefined;
4143
+ summary?: string | undefined;
4144
+ responses?: unknown;
4145
+ parameters?: ({
4146
+ name: string;
4147
+ in: "path" | "header" | "query" | "cookie";
4148
+ description?: string | undefined;
4149
+ required?: boolean | undefined;
4150
+ deprecated?: boolean | undefined;
4151
+ allowEmptyValue?: boolean | undefined;
4152
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4153
+ explode?: string | undefined;
4154
+ allowReserved?: boolean | undefined;
4155
+ schema?: unknown;
4156
+ example?: unknown;
4157
+ examples?: Record<string, unknown> | undefined;
4158
+ content?: Record<string, unknown> | undefined;
4159
+ } | {
4160
+ $ref: string;
4161
+ description?: string | undefined;
4162
+ summary?: string | undefined;
4163
+ })[] | undefined;
4164
+ deprecated?: boolean | undefined;
4165
+ externalDocs?: unknown;
4166
+ operationId?: string | undefined;
4167
+ requestBody?: unknown;
4168
+ callbacks?: unknown;
4169
+ security?: Record<string, string[]>[] | undefined;
4170
+ servers?: unknown[] | undefined;
4171
+ } | undefined;
4172
+ patch?: {
4173
+ description?: string | undefined;
4174
+ tags?: string[] | undefined;
4175
+ summary?: string | undefined;
4176
+ responses?: unknown;
4177
+ parameters?: ({
4178
+ name: string;
4179
+ in: "path" | "header" | "query" | "cookie";
4180
+ description?: string | undefined;
4181
+ required?: boolean | undefined;
4182
+ deprecated?: boolean | undefined;
4183
+ allowEmptyValue?: boolean | undefined;
4184
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4185
+ explode?: string | undefined;
4186
+ allowReserved?: boolean | undefined;
4187
+ schema?: unknown;
4188
+ example?: unknown;
4189
+ examples?: Record<string, unknown> | undefined;
4190
+ content?: Record<string, unknown> | undefined;
4191
+ } | {
4192
+ $ref: string;
4193
+ description?: string | undefined;
4194
+ summary?: string | undefined;
4195
+ })[] | undefined;
4196
+ deprecated?: boolean | undefined;
4197
+ externalDocs?: unknown;
4198
+ operationId?: string | undefined;
4199
+ requestBody?: unknown;
4200
+ callbacks?: unknown;
4201
+ security?: Record<string, string[]>[] | undefined;
4202
+ servers?: unknown[] | undefined;
4203
+ } | undefined;
4204
+ head?: {
4205
+ description?: string | undefined;
4206
+ tags?: string[] | undefined;
4207
+ summary?: string | undefined;
4208
+ responses?: unknown;
4209
+ parameters?: ({
4210
+ name: string;
4211
+ in: "path" | "header" | "query" | "cookie";
4212
+ description?: string | undefined;
4213
+ required?: boolean | undefined;
4214
+ deprecated?: boolean | undefined;
4215
+ allowEmptyValue?: boolean | undefined;
4216
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4217
+ explode?: string | undefined;
4218
+ allowReserved?: boolean | undefined;
4219
+ schema?: unknown;
4220
+ example?: unknown;
4221
+ examples?: Record<string, unknown> | undefined;
4222
+ content?: Record<string, unknown> | undefined;
4223
+ } | {
4224
+ $ref: string;
4225
+ description?: string | undefined;
4226
+ summary?: string | undefined;
4227
+ })[] | undefined;
4228
+ deprecated?: boolean | undefined;
4229
+ externalDocs?: unknown;
4230
+ operationId?: string | undefined;
4231
+ requestBody?: unknown;
4232
+ callbacks?: unknown;
4233
+ security?: Record<string, string[]>[] | undefined;
4234
+ servers?: unknown[] | undefined;
4235
+ } | undefined;
4236
+ options?: {
4237
+ description?: string | undefined;
4238
+ tags?: string[] | undefined;
4239
+ summary?: string | undefined;
4240
+ responses?: unknown;
4241
+ parameters?: ({
4242
+ name: string;
4243
+ in: "path" | "header" | "query" | "cookie";
4244
+ description?: string | undefined;
4245
+ required?: boolean | undefined;
4246
+ deprecated?: boolean | undefined;
4247
+ allowEmptyValue?: boolean | undefined;
4248
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4249
+ explode?: string | undefined;
4250
+ allowReserved?: boolean | undefined;
4251
+ schema?: unknown;
4252
+ example?: unknown;
4253
+ examples?: Record<string, unknown> | undefined;
4254
+ content?: Record<string, unknown> | undefined;
4255
+ } | {
4256
+ $ref: string;
4257
+ description?: string | undefined;
4258
+ summary?: string | undefined;
4259
+ })[] | undefined;
4260
+ deprecated?: boolean | undefined;
4261
+ externalDocs?: unknown;
4262
+ operationId?: string | undefined;
4263
+ requestBody?: unknown;
4264
+ callbacks?: unknown;
4265
+ security?: Record<string, string[]>[] | undefined;
4266
+ servers?: unknown[] | undefined;
4267
+ } | undefined;
4268
+ servers?: {
4269
+ url: string;
4270
+ description?: string | undefined;
4271
+ variables?: Record<string, unknown> | undefined;
4272
+ } | undefined;
4273
+ trace?: {
4274
+ description?: string | undefined;
4275
+ tags?: string[] | undefined;
4276
+ summary?: string | undefined;
4277
+ responses?: unknown;
4278
+ parameters?: ({
4279
+ name: string;
4280
+ in: "path" | "header" | "query" | "cookie";
4281
+ description?: string | undefined;
4282
+ required?: boolean | undefined;
4283
+ deprecated?: boolean | undefined;
4284
+ allowEmptyValue?: boolean | undefined;
4285
+ style?: "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject" | undefined;
4286
+ explode?: string | undefined;
4287
+ allowReserved?: boolean | undefined;
4288
+ schema?: unknown;
4289
+ example?: unknown;
4290
+ examples?: Record<string, unknown> | undefined;
4291
+ content?: Record<string, unknown> | undefined;
4292
+ } | {
4293
+ $ref: string;
4294
+ description?: string | undefined;
4295
+ summary?: string | undefined;
4296
+ })[] | undefined;
4297
+ deprecated?: boolean | undefined;
4298
+ externalDocs?: unknown;
4299
+ operationId?: string | undefined;
4300
+ requestBody?: unknown;
4301
+ callbacks?: unknown;
4302
+ security?: Record<string, string[]>[] | undefined;
4303
+ servers?: unknown[] | undefined;
4304
+ } | undefined;
4305
+ }>;
4306
+ tags?: {
4307
+ name: string;
4308
+ description?: string | undefined;
4309
+ externalDocs?: {
4310
+ url: string;
4311
+ description?: string | undefined;
4312
+ } | undefined;
4313
+ }[] | undefined;
4314
+ externalDocs?: {
4315
+ url: string;
4316
+ description?: string | undefined;
4317
+ } | undefined;
4318
+ security?: Record<string, string[]>[] | undefined;
4319
+ servers?: {
4320
+ url: string;
4321
+ description?: string | undefined;
4322
+ variables?: Record<string, {
4323
+ default: string;
4324
+ description?: string | undefined;
4325
+ enum?: string[] | undefined;
4326
+ }> | undefined;
4327
+ }[] | undefined;
4328
+ components?: {
4329
+ headers?: Record<string, any> | undefined;
4330
+ responses?: Record<string, any> | undefined;
4331
+ parameters?: Record<string, any> | undefined;
4332
+ examples?: Record<string, any> | undefined;
4333
+ callbacks?: Record<string, any> | undefined;
4334
+ schemas?: Record<string, any> | undefined;
4335
+ requestBodies?: Record<string, any> | undefined;
4336
+ securitySchemes?: Record<string, any> | undefined;
4337
+ links?: Record<string, any> | undefined;
4338
+ } | undefined;
4339
+ }>;
4340
+ export type OpenApiOperation = z.infer<typeof openapiOperation>;
4341
+ export type OpenApiPathItem = z.infer<typeof openapiPathItem>;
4342
+ export type OpenApiSchema = z.infer<typeof openapiSchema>;