ebay-mcp 1.4.3

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 (205) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +586 -0
  3. package/build/api/account-management/account.d.ts +216 -0
  4. package/build/api/account-management/account.js +305 -0
  5. package/build/api/analytics-and-report/analytics.d.ts +33 -0
  6. package/build/api/analytics-and-report/analytics.js +102 -0
  7. package/build/api/client.d.ts +89 -0
  8. package/build/api/client.js +343 -0
  9. package/build/api/communication/feedback.d.ts +45 -0
  10. package/build/api/communication/feedback.js +119 -0
  11. package/build/api/communication/message.d.ts +55 -0
  12. package/build/api/communication/message.js +131 -0
  13. package/build/api/communication/negotiation.d.ts +39 -0
  14. package/build/api/communication/negotiation.js +97 -0
  15. package/build/api/communication/notification.d.ts +128 -0
  16. package/build/api/communication/notification.js +373 -0
  17. package/build/api/index.d.ts +96 -0
  18. package/build/api/index.js +121 -0
  19. package/build/api/listing-management/inventory.d.ts +216 -0
  20. package/build/api/listing-management/inventory.js +633 -0
  21. package/build/api/listing-metadata/metadata.d.ts +154 -0
  22. package/build/api/listing-metadata/metadata.js +485 -0
  23. package/build/api/listing-metadata/taxonomy.d.ts +38 -0
  24. package/build/api/listing-metadata/taxonomy.js +58 -0
  25. package/build/api/marketing-and-promotions/marketing.d.ts +395 -0
  26. package/build/api/marketing-and-promotions/marketing.js +565 -0
  27. package/build/api/marketing-and-promotions/recommendation.d.ts +20 -0
  28. package/build/api/marketing-and-promotions/recommendation.js +32 -0
  29. package/build/api/order-management/dispute.d.ts +65 -0
  30. package/build/api/order-management/dispute.js +69 -0
  31. package/build/api/order-management/fulfillment.d.ts +80 -0
  32. package/build/api/order-management/fulfillment.js +89 -0
  33. package/build/api/other/compliance.d.ts +26 -0
  34. package/build/api/other/compliance.js +47 -0
  35. package/build/api/other/edelivery.d.ts +153 -0
  36. package/build/api/other/edelivery.js +219 -0
  37. package/build/api/other/identity.d.ts +17 -0
  38. package/build/api/other/identity.js +24 -0
  39. package/build/api/other/translation.d.ts +14 -0
  40. package/build/api/other/translation.js +22 -0
  41. package/build/api/other/vero.d.ts +30 -0
  42. package/build/api/other/vero.js +48 -0
  43. package/build/auth/oauth-metadata.d.ts +46 -0
  44. package/build/auth/oauth-metadata.js +59 -0
  45. package/build/auth/oauth-middleware.d.ts +35 -0
  46. package/build/auth/oauth-middleware.js +99 -0
  47. package/build/auth/oauth-types.d.ts +66 -0
  48. package/build/auth/oauth-types.js +4 -0
  49. package/build/auth/oauth.d.ts +93 -0
  50. package/build/auth/oauth.js +383 -0
  51. package/build/auth/scope-utils.d.ts +70 -0
  52. package/build/auth/scope-utils.js +304 -0
  53. package/build/auth/token-verifier.d.ts +57 -0
  54. package/build/auth/token-verifier.js +172 -0
  55. package/build/config/environment.d.ts +61 -0
  56. package/build/config/environment.js +260 -0
  57. package/build/index.d.ts +1 -0
  58. package/build/index.js +98 -0
  59. package/build/schemas/account-management/account.d.ts +5324 -0
  60. package/build/schemas/account-management/account.js +366 -0
  61. package/build/schemas/analytics/analytics.d.ts +167 -0
  62. package/build/schemas/analytics/analytics.js +191 -0
  63. package/build/schemas/communication/messages.d.ts +1872 -0
  64. package/build/schemas/communication/messages.js +348 -0
  65. package/build/schemas/fulfillment/orders.d.ts +4655 -0
  66. package/build/schemas/fulfillment/orders.js +317 -0
  67. package/build/schemas/index.d.ts +2100 -0
  68. package/build/schemas/index.js +68 -0
  69. package/build/schemas/inventory-management/inventory.d.ts +6419 -0
  70. package/build/schemas/inventory-management/inventory.js +450 -0
  71. package/build/schemas/marketing/marketing.d.ts +14181 -0
  72. package/build/schemas/marketing/marketing.js +1088 -0
  73. package/build/schemas/metadata/metadata.d.ts +5259 -0
  74. package/build/schemas/metadata/metadata.js +614 -0
  75. package/build/schemas/other/other-apis.d.ts +257 -0
  76. package/build/schemas/other/other-apis.js +372 -0
  77. package/build/schemas/taxonomy/taxonomy.d.ts +215 -0
  78. package/build/schemas/taxonomy/taxonomy.js +571 -0
  79. package/build/scripts/auto-setup.d.ts +12 -0
  80. package/build/scripts/auto-setup.js +277 -0
  81. package/build/scripts/diagnostics.d.ts +8 -0
  82. package/build/scripts/diagnostics.js +299 -0
  83. package/build/scripts/download-specs.d.ts +1 -0
  84. package/build/scripts/download-specs.js +116 -0
  85. package/build/scripts/interactive-setup.d.ts +21 -0
  86. package/build/scripts/interactive-setup.js +723 -0
  87. package/build/server-http.d.ts +11 -0
  88. package/build/server-http.js +361 -0
  89. package/build/tools/definitions/account-with-schemas.d.ts +39 -0
  90. package/build/tools/definitions/account-with-schemas.js +170 -0
  91. package/build/tools/definitions/account.d.ts +12 -0
  92. package/build/tools/definitions/account.js +428 -0
  93. package/build/tools/definitions/analytics.d.ts +25 -0
  94. package/build/tools/definitions/analytics.js +66 -0
  95. package/build/tools/definitions/communication.d.ts +12 -0
  96. package/build/tools/definitions/communication.js +151 -0
  97. package/build/tools/definitions/fulfillment.d.ts +12 -0
  98. package/build/tools/definitions/fulfillment.js +326 -0
  99. package/build/tools/definitions/index.d.ts +25 -0
  100. package/build/tools/definitions/index.js +37 -0
  101. package/build/tools/definitions/inventory.d.ts +12 -0
  102. package/build/tools/definitions/inventory.js +429 -0
  103. package/build/tools/definitions/marketing.d.ts +12 -0
  104. package/build/tools/definitions/marketing.js +1095 -0
  105. package/build/tools/definitions/metadata.d.ts +12 -0
  106. package/build/tools/definitions/metadata.js +188 -0
  107. package/build/tools/definitions/other.d.ts +13 -0
  108. package/build/tools/definitions/other.js +309 -0
  109. package/build/tools/definitions/taxonomy.d.ts +25 -0
  110. package/build/tools/definitions/taxonomy.js +64 -0
  111. package/build/tools/definitions/token-management.d.ts +35 -0
  112. package/build/tools/definitions/token-management.js +103 -0
  113. package/build/tools/index.d.ts +11 -0
  114. package/build/tools/index.js +1003 -0
  115. package/build/tools/schemas.d.ts +14764 -0
  116. package/build/tools/schemas.js +667 -0
  117. package/build/tools/tool-definitions.d.ts +35 -0
  118. package/build/tools/tool-definitions.js +3534 -0
  119. package/build/types/application-settings/developerAnalyticsV1BetaOas3.d.ts +197 -0
  120. package/build/types/application-settings/developerAnalyticsV1BetaOas3.js +5 -0
  121. package/build/types/application-settings/developerClientRegistrationV1Oas3.d.ts +155 -0
  122. package/build/types/application-settings/developerClientRegistrationV1Oas3.js +5 -0
  123. package/build/types/application-settings/developerKeyManagementV1Oas3.d.ts +246 -0
  124. package/build/types/application-settings/developerKeyManagementV1Oas3.js +5 -0
  125. package/build/types/ebay-enums.d.ts +1204 -0
  126. package/build/types/ebay-enums.js +1330 -0
  127. package/build/types/ebay.d.ts +143 -0
  128. package/build/types/ebay.js +123 -0
  129. package/build/types/index.d.ts +6 -0
  130. package/build/types/index.js +10 -0
  131. package/build/types/sell-apps/account-management/sellAccountV1Oas3.d.ts +2579 -0
  132. package/build/types/sell-apps/account-management/sellAccountV1Oas3.js +5 -0
  133. package/build/types/sell-apps/analytics-and-report/sellAnalyticsV1Oas3.d.ts +446 -0
  134. package/build/types/sell-apps/analytics-and-report/sellAnalyticsV1Oas3.js +5 -0
  135. package/build/types/sell-apps/communication/commerceFeedbackV1BetaOas3.d.ts +705 -0
  136. package/build/types/sell-apps/communication/commerceFeedbackV1BetaOas3.js +5 -0
  137. package/build/types/sell-apps/communication/commerceMessageV1Oas3.d.ts +590 -0
  138. package/build/types/sell-apps/communication/commerceMessageV1Oas3.js +5 -0
  139. package/build/types/sell-apps/communication/commerceNotificationV1Oas3.d.ts +1276 -0
  140. package/build/types/sell-apps/communication/commerceNotificationV1Oas3.js +5 -0
  141. package/build/types/sell-apps/communication/sellNegotiationV1Oas3.d.ts +277 -0
  142. package/build/types/sell-apps/communication/sellNegotiationV1Oas3.js +5 -0
  143. package/build/types/sell-apps/listing-management/sellInventoryV1Oas3.d.ts +3133 -0
  144. package/build/types/sell-apps/listing-management/sellInventoryV1Oas3.js +5 -0
  145. package/build/types/sell-apps/listing-metadata/sellMetadataV1Oas3.d.ts +2289 -0
  146. package/build/types/sell-apps/listing-metadata/sellMetadataV1Oas3.js +5 -0
  147. package/build/types/sell-apps/markeitng-and-promotions/sellMarketingV1Oas3.d.ts +6650 -0
  148. package/build/types/sell-apps/markeitng-and-promotions/sellMarketingV1Oas3.js +5 -0
  149. package/build/types/sell-apps/markeitng-and-promotions/sellRecommendationV1Oas3.d.ts +172 -0
  150. package/build/types/sell-apps/markeitng-and-promotions/sellRecommendationV1Oas3.js +5 -0
  151. package/build/types/sell-apps/order-management/sellFulfillmentV1Oas3.d.ts +1869 -0
  152. package/build/types/sell-apps/order-management/sellFulfillmentV1Oas3.js +5 -0
  153. package/build/types/sell-apps/other-apis/commerceIdentityV1Oas3.d.ts +178 -0
  154. package/build/types/sell-apps/other-apis/commerceIdentityV1Oas3.js +5 -0
  155. package/build/types/sell-apps/other-apis/commerceTranslationV1BetaOas3.d.ts +128 -0
  156. package/build/types/sell-apps/other-apis/commerceTranslationV1BetaOas3.js +5 -0
  157. package/build/types/sell-apps/other-apis/commerceVeroV1Oas3.d.ts +417 -0
  158. package/build/types/sell-apps/other-apis/commerceVeroV1Oas3.js +5 -0
  159. package/build/types/sell-apps/other-apis/sellComplianceV1Oas3.d.ts +273 -0
  160. package/build/types/sell-apps/other-apis/sellComplianceV1Oas3.js +5 -0
  161. package/build/types/sell-apps/other-apis/sellEdeliveryInternationalShippingOas3.d.ts +2537 -0
  162. package/build/types/sell-apps/other-apis/sellEdeliveryInternationalShippingOas3.js +5 -0
  163. package/build/types/sell-apps/other-apis/sellMarketingV1Oas3.d.ts +6650 -0
  164. package/build/types/sell-apps/other-apis/sellMarketingV1Oas3.js +5 -0
  165. package/build/types/sell-apps/other-apis/sellRecommendationV1Oas3.d.ts +172 -0
  166. package/build/types/sell-apps/other-apis/sellRecommendationV1Oas3.js +5 -0
  167. package/build/utils/account-management/account.d.ts +1094 -0
  168. package/build/utils/account-management/account.js +831 -0
  169. package/build/utils/communication/feedback.d.ts +152 -0
  170. package/build/utils/communication/feedback.js +216 -0
  171. package/build/utils/communication/message.d.ts +174 -0
  172. package/build/utils/communication/message.js +242 -0
  173. package/build/utils/communication/negotiation.d.ts +123 -0
  174. package/build/utils/communication/negotiation.js +150 -0
  175. package/build/utils/communication/notification.d.ts +370 -0
  176. package/build/utils/communication/notification.js +369 -0
  177. package/build/utils/date-converter.d.ts +59 -0
  178. package/build/utils/date-converter.js +160 -0
  179. package/build/utils/llm-client-detector.d.ts +54 -0
  180. package/build/utils/llm-client-detector.js +318 -0
  181. package/build/utils/oauth-helper.d.ts +37 -0
  182. package/build/utils/oauth-helper.js +315 -0
  183. package/build/utils/order-management/dispute.d.ts +346 -0
  184. package/build/utils/order-management/dispute.js +369 -0
  185. package/build/utils/order-management/fulfillment.d.ts +200 -0
  186. package/build/utils/order-management/fulfillment.js +205 -0
  187. package/build/utils/other/compliance.d.ts +49 -0
  188. package/build/utils/other/compliance.js +76 -0
  189. package/build/utils/other/edelivery.d.ts +310 -0
  190. package/build/utils/other/edelivery.js +241 -0
  191. package/build/utils/other/identity.d.ts +13 -0
  192. package/build/utils/other/identity.js +13 -0
  193. package/build/utils/other/translation.d.ts +28 -0
  194. package/build/utils/other/translation.js +41 -0
  195. package/build/utils/other/vero.d.ts +61 -0
  196. package/build/utils/other/vero.js +90 -0
  197. package/build/utils/scope-helper.d.ts +49 -0
  198. package/build/utils/scope-helper.js +207 -0
  199. package/build/utils/security-checker.d.ts +46 -0
  200. package/build/utils/security-checker.js +248 -0
  201. package/build/utils/setup-validator.d.ts +25 -0
  202. package/build/utils/setup-validator.js +305 -0
  203. package/build/utils/token-utils.d.ts +40 -0
  204. package/build/utils/token-utils.js +40 -0
  205. package/package.json +115 -0
@@ -0,0 +1,2100 @@
1
+ /**
2
+ * Central export for all eBay MCP API Schemas
3
+ *
4
+ * This file provides convenient access to all Zod schemas and their JSON Schema conversions
5
+ * for use with MCP (Model Context Protocol) tools.
6
+ *
7
+ * Usage:
8
+ * ```typescript
9
+ * import {
10
+ * getAccountManagementJsonSchemas,
11
+ * getInventoryManagementJsonSchemas,
12
+ * getCommunicationJsonSchemas,
13
+ * getFulfillmentJsonSchemas,
14
+ * getMarketingJsonSchemas,
15
+ * getMetadataJsonSchemas,
16
+ * getAnalyticsJsonSchemas,
17
+ * getTaxonomyJsonSchemas,
18
+ * getOtherApisJsonSchemas,
19
+ * getAllJsonSchemas,
20
+ * } from '../schemas';
21
+ * ```
22
+ */
23
+ export * from './account-management/account.js';
24
+ export * from './inventory-management/inventory.js';
25
+ export * from './communication/messages.js';
26
+ export * from './fulfillment/orders.js';
27
+ export * from './marketing/marketing.js';
28
+ export * from './metadata/metadata.js';
29
+ export * from './analytics/analytics.js';
30
+ export * from './taxonomy/taxonomy.js';
31
+ export * from './other/other-apis.js';
32
+ /**
33
+ * Get all JSON schemas for all eBay APIs
34
+ *
35
+ * @returns An object containing all JSON schemas organized by API category
36
+ */
37
+ export declare function getAllJsonSchemas(): {
38
+ accountManagement: {
39
+ getCustomPoliciesInput: import("zod-to-json-schema").JsonSchema7Type & {
40
+ $schema?: string | undefined;
41
+ definitions?: {
42
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
43
+ } | undefined;
44
+ };
45
+ getCustomPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
46
+ $schema?: string | undefined;
47
+ definitions?: {
48
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
49
+ } | undefined;
50
+ };
51
+ createCustomPolicyInput: import("zod-to-json-schema").JsonSchema7Type & {
52
+ $schema?: string | undefined;
53
+ definitions?: {
54
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
55
+ } | undefined;
56
+ };
57
+ createCustomPolicyOutput: import("zod-to-json-schema").JsonSchema7Type & {
58
+ $schema?: string | undefined;
59
+ definitions?: {
60
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
61
+ } | undefined;
62
+ };
63
+ getFulfillmentPoliciesInput: import("zod-to-json-schema").JsonSchema7Type & {
64
+ $schema?: string | undefined;
65
+ definitions?: {
66
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
67
+ } | undefined;
68
+ };
69
+ getFulfillmentPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
70
+ $schema?: string | undefined;
71
+ definitions?: {
72
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
73
+ } | undefined;
74
+ };
75
+ createFulfillmentPolicyInput: import("zod-to-json-schema").JsonSchema7Type & {
76
+ $schema?: string | undefined;
77
+ definitions?: {
78
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
79
+ } | undefined;
80
+ };
81
+ createFulfillmentPolicyOutput: import("zod-to-json-schema").JsonSchema7Type & {
82
+ $schema?: string | undefined;
83
+ definitions?: {
84
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
85
+ } | undefined;
86
+ };
87
+ fulfillmentPolicyDetails: import("zod-to-json-schema").JsonSchema7Type & {
88
+ $schema?: string | undefined;
89
+ definitions?: {
90
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
91
+ } | undefined;
92
+ };
93
+ getPaymentPoliciesInput: import("zod-to-json-schema").JsonSchema7Type & {
94
+ $schema?: string | undefined;
95
+ definitions?: {
96
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
97
+ } | undefined;
98
+ };
99
+ getPaymentPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
100
+ $schema?: string | undefined;
101
+ definitions?: {
102
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
103
+ } | undefined;
104
+ };
105
+ createPaymentPolicyInput: import("zod-to-json-schema").JsonSchema7Type & {
106
+ $schema?: string | undefined;
107
+ definitions?: {
108
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
109
+ } | undefined;
110
+ };
111
+ createPaymentPolicyOutput: import("zod-to-json-schema").JsonSchema7Type & {
112
+ $schema?: string | undefined;
113
+ definitions?: {
114
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
115
+ } | undefined;
116
+ };
117
+ paymentPolicyDetails: import("zod-to-json-schema").JsonSchema7Type & {
118
+ $schema?: string | undefined;
119
+ definitions?: {
120
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
121
+ } | undefined;
122
+ };
123
+ getReturnPoliciesInput: import("zod-to-json-schema").JsonSchema7Type & {
124
+ $schema?: string | undefined;
125
+ definitions?: {
126
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
127
+ } | undefined;
128
+ };
129
+ getReturnPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
130
+ $schema?: string | undefined;
131
+ definitions?: {
132
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
133
+ } | undefined;
134
+ };
135
+ createReturnPolicyInput: import("zod-to-json-schema").JsonSchema7Type & {
136
+ $schema?: string | undefined;
137
+ definitions?: {
138
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
139
+ } | undefined;
140
+ };
141
+ createReturnPolicyOutput: import("zod-to-json-schema").JsonSchema7Type & {
142
+ $schema?: string | undefined;
143
+ definitions?: {
144
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
145
+ } | undefined;
146
+ };
147
+ returnPolicyDetails: import("zod-to-json-schema").JsonSchema7Type & {
148
+ $schema?: string | undefined;
149
+ definitions?: {
150
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
151
+ } | undefined;
152
+ };
153
+ getSalesTaxesOutput: import("zod-to-json-schema").JsonSchema7Type & {
154
+ $schema?: string | undefined;
155
+ definitions?: {
156
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
157
+ } | undefined;
158
+ };
159
+ salesTaxDetails: import("zod-to-json-schema").JsonSchema7Type & {
160
+ $schema?: string | undefined;
161
+ definitions?: {
162
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
163
+ } | undefined;
164
+ };
165
+ programRequest: import("zod-to-json-schema").JsonSchema7Type & {
166
+ $schema?: string | undefined;
167
+ definitions?: {
168
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
169
+ } | undefined;
170
+ };
171
+ programsOutput: import("zod-to-json-schema").JsonSchema7Type & {
172
+ $schema?: string | undefined;
173
+ definitions?: {
174
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
175
+ } | undefined;
176
+ };
177
+ kycOutput: import("zod-to-json-schema").JsonSchema7Type & {
178
+ $schema?: string | undefined;
179
+ definitions?: {
180
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
181
+ } | undefined;
182
+ };
183
+ privilegesOutput: import("zod-to-json-schema").JsonSchema7Type & {
184
+ $schema?: string | undefined;
185
+ definitions?: {
186
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
187
+ } | undefined;
188
+ };
189
+ };
190
+ inventoryManagement: {
191
+ getInventoryItemsInput: import("zod-to-json-schema").JsonSchema7Type & {
192
+ $schema?: string | undefined;
193
+ definitions?: {
194
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
195
+ } | undefined;
196
+ };
197
+ getInventoryItemsOutput: import("zod-to-json-schema").JsonSchema7Type & {
198
+ $schema?: string | undefined;
199
+ definitions?: {
200
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
201
+ } | undefined;
202
+ };
203
+ getInventoryItemInput: import("zod-to-json-schema").JsonSchema7Type & {
204
+ $schema?: string | undefined;
205
+ definitions?: {
206
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
207
+ } | undefined;
208
+ };
209
+ getInventoryItemOutput: import("zod-to-json-schema").JsonSchema7Type & {
210
+ $schema?: string | undefined;
211
+ definitions?: {
212
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
213
+ } | undefined;
214
+ };
215
+ createInventoryItemInput: import("zod-to-json-schema").JsonSchema7Type & {
216
+ $schema?: string | undefined;
217
+ definitions?: {
218
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
219
+ } | undefined;
220
+ };
221
+ createInventoryItemOutput: import("zod-to-json-schema").JsonSchema7Type & {
222
+ $schema?: string | undefined;
223
+ definitions?: {
224
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
225
+ } | undefined;
226
+ };
227
+ getOffersInput: import("zod-to-json-schema").JsonSchema7Type & {
228
+ $schema?: string | undefined;
229
+ definitions?: {
230
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
231
+ } | undefined;
232
+ };
233
+ getOffersOutput: import("zod-to-json-schema").JsonSchema7Type & {
234
+ $schema?: string | undefined;
235
+ definitions?: {
236
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
237
+ } | undefined;
238
+ };
239
+ createOfferInput: import("zod-to-json-schema").JsonSchema7Type & {
240
+ $schema?: string | undefined;
241
+ definitions?: {
242
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
243
+ } | undefined;
244
+ };
245
+ createOfferOutput: import("zod-to-json-schema").JsonSchema7Type & {
246
+ $schema?: string | undefined;
247
+ definitions?: {
248
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
249
+ } | undefined;
250
+ };
251
+ publishOfferInput: import("zod-to-json-schema").JsonSchema7Type & {
252
+ $schema?: string | undefined;
253
+ definitions?: {
254
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
255
+ } | undefined;
256
+ };
257
+ publishOfferOutput: import("zod-to-json-schema").JsonSchema7Type & {
258
+ $schema?: string | undefined;
259
+ definitions?: {
260
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
261
+ } | undefined;
262
+ };
263
+ offerDetails: import("zod-to-json-schema").JsonSchema7Type & {
264
+ $schema?: string | undefined;
265
+ definitions?: {
266
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
267
+ } | undefined;
268
+ };
269
+ getInventoryLocationsInput: import("zod-to-json-schema").JsonSchema7Type & {
270
+ $schema?: string | undefined;
271
+ definitions?: {
272
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
273
+ } | undefined;
274
+ };
275
+ getInventoryLocationsOutput: import("zod-to-json-schema").JsonSchema7Type & {
276
+ $schema?: string | undefined;
277
+ definitions?: {
278
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
279
+ } | undefined;
280
+ };
281
+ createInventoryLocationInput: import("zod-to-json-schema").JsonSchema7Type & {
282
+ $schema?: string | undefined;
283
+ definitions?: {
284
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
285
+ } | undefined;
286
+ };
287
+ createInventoryLocationOutput: import("zod-to-json-schema").JsonSchema7Type & {
288
+ $schema?: string | undefined;
289
+ definitions?: {
290
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
291
+ } | undefined;
292
+ };
293
+ getProductCompatibilityInput: import("zod-to-json-schema").JsonSchema7Type & {
294
+ $schema?: string | undefined;
295
+ definitions?: {
296
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
297
+ } | undefined;
298
+ };
299
+ getProductCompatibilityOutput: import("zod-to-json-schema").JsonSchema7Type & {
300
+ $schema?: string | undefined;
301
+ definitions?: {
302
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
303
+ } | undefined;
304
+ };
305
+ getInventoryItemGroupInput: import("zod-to-json-schema").JsonSchema7Type & {
306
+ $schema?: string | undefined;
307
+ definitions?: {
308
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
309
+ } | undefined;
310
+ };
311
+ getInventoryItemGroupOutput: import("zod-to-json-schema").JsonSchema7Type & {
312
+ $schema?: string | undefined;
313
+ definitions?: {
314
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
315
+ } | undefined;
316
+ };
317
+ inventoryItemGroup: import("zod-to-json-schema").JsonSchema7Type & {
318
+ $schema?: string | undefined;
319
+ definitions?: {
320
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
321
+ } | undefined;
322
+ };
323
+ bulkInventoryItemRequest: import("zod-to-json-schema").JsonSchema7Type & {
324
+ $schema?: string | undefined;
325
+ definitions?: {
326
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
327
+ } | undefined;
328
+ };
329
+ bulkInventoryItemResponse: import("zod-to-json-schema").JsonSchema7Type & {
330
+ $schema?: string | undefined;
331
+ definitions?: {
332
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
333
+ } | undefined;
334
+ };
335
+ bulkOfferRequest: import("zod-to-json-schema").JsonSchema7Type & {
336
+ $schema?: string | undefined;
337
+ definitions?: {
338
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
339
+ } | undefined;
340
+ };
341
+ bulkOfferResponse: import("zod-to-json-schema").JsonSchema7Type & {
342
+ $schema?: string | undefined;
343
+ definitions?: {
344
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
345
+ } | undefined;
346
+ };
347
+ bulkPublishRequest: import("zod-to-json-schema").JsonSchema7Type & {
348
+ $schema?: string | undefined;
349
+ definitions?: {
350
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
351
+ } | undefined;
352
+ };
353
+ bulkPublishResponse: import("zod-to-json-schema").JsonSchema7Type & {
354
+ $schema?: string | undefined;
355
+ definitions?: {
356
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
357
+ } | undefined;
358
+ };
359
+ };
360
+ communication: {
361
+ sendMessageInput: import("zod-to-json-schema").JsonSchema7Type & {
362
+ $schema?: string | undefined;
363
+ definitions?: {
364
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
365
+ } | undefined;
366
+ };
367
+ sendMessageOutput: import("zod-to-json-schema").JsonSchema7Type & {
368
+ $schema?: string | undefined;
369
+ definitions?: {
370
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
371
+ } | undefined;
372
+ };
373
+ getConversationsInput: import("zod-to-json-schema").JsonSchema7Type & {
374
+ $schema?: string | undefined;
375
+ definitions?: {
376
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
377
+ } | undefined;
378
+ };
379
+ getConversationsOutput: import("zod-to-json-schema").JsonSchema7Type & {
380
+ $schema?: string | undefined;
381
+ definitions?: {
382
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
383
+ } | undefined;
384
+ };
385
+ getConversationInput: import("zod-to-json-schema").JsonSchema7Type & {
386
+ $schema?: string | undefined;
387
+ definitions?: {
388
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
389
+ } | undefined;
390
+ };
391
+ getConversationOutput: import("zod-to-json-schema").JsonSchema7Type & {
392
+ $schema?: string | undefined;
393
+ definitions?: {
394
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
395
+ } | undefined;
396
+ };
397
+ leaveFeedbackInput: import("zod-to-json-schema").JsonSchema7Type & {
398
+ $schema?: string | undefined;
399
+ definitions?: {
400
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
401
+ } | undefined;
402
+ };
403
+ leaveFeedbackOutput: import("zod-to-json-schema").JsonSchema7Type & {
404
+ $schema?: string | undefined;
405
+ definitions?: {
406
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
407
+ } | undefined;
408
+ };
409
+ getFeedbackInput: import("zod-to-json-schema").JsonSchema7Type & {
410
+ $schema?: string | undefined;
411
+ definitions?: {
412
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
413
+ } | undefined;
414
+ };
415
+ getFeedbackOutput: import("zod-to-json-schema").JsonSchema7Type & {
416
+ $schema?: string | undefined;
417
+ definitions?: {
418
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
419
+ } | undefined;
420
+ };
421
+ getFeedbackSummaryOutput: import("zod-to-json-schema").JsonSchema7Type & {
422
+ $schema?: string | undefined;
423
+ definitions?: {
424
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
425
+ } | undefined;
426
+ };
427
+ getAwaitingFeedbackInput: import("zod-to-json-schema").JsonSchema7Type & {
428
+ $schema?: string | undefined;
429
+ definitions?: {
430
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
431
+ } | undefined;
432
+ };
433
+ getAwaitingFeedbackOutput: import("zod-to-json-schema").JsonSchema7Type & {
434
+ $schema?: string | undefined;
435
+ definitions?: {
436
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
437
+ } | undefined;
438
+ };
439
+ respondToFeedbackInput: import("zod-to-json-schema").JsonSchema7Type & {
440
+ $schema?: string | undefined;
441
+ definitions?: {
442
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
443
+ } | undefined;
444
+ };
445
+ respondToFeedbackOutput: import("zod-to-json-schema").JsonSchema7Type & {
446
+ $schema?: string | undefined;
447
+ definitions?: {
448
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
449
+ } | undefined;
450
+ };
451
+ createNotificationDestinationInput: import("zod-to-json-schema").JsonSchema7Type & {
452
+ $schema?: string | undefined;
453
+ definitions?: {
454
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
455
+ } | undefined;
456
+ };
457
+ createNotificationDestinationOutput: import("zod-to-json-schema").JsonSchema7Type & {
458
+ $schema?: string | undefined;
459
+ definitions?: {
460
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
461
+ } | undefined;
462
+ };
463
+ getNotificationDestinationsInput: import("zod-to-json-schema").JsonSchema7Type & {
464
+ $schema?: string | undefined;
465
+ definitions?: {
466
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
467
+ } | undefined;
468
+ };
469
+ getNotificationDestinationsOutput: import("zod-to-json-schema").JsonSchema7Type & {
470
+ $schema?: string | undefined;
471
+ definitions?: {
472
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
473
+ } | undefined;
474
+ };
475
+ createNotificationSubscriptionInput: import("zod-to-json-schema").JsonSchema7Type & {
476
+ $schema?: string | undefined;
477
+ definitions?: {
478
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
479
+ } | undefined;
480
+ };
481
+ createNotificationSubscriptionOutput: import("zod-to-json-schema").JsonSchema7Type & {
482
+ $schema?: string | undefined;
483
+ definitions?: {
484
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
485
+ } | undefined;
486
+ };
487
+ getNotificationSubscriptionsInput: import("zod-to-json-schema").JsonSchema7Type & {
488
+ $schema?: string | undefined;
489
+ definitions?: {
490
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
491
+ } | undefined;
492
+ };
493
+ getNotificationSubscriptionsOutput: import("zod-to-json-schema").JsonSchema7Type & {
494
+ $schema?: string | undefined;
495
+ definitions?: {
496
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
497
+ } | undefined;
498
+ };
499
+ getNotificationTopicsOutput: import("zod-to-json-schema").JsonSchema7Type & {
500
+ $schema?: string | undefined;
501
+ definitions?: {
502
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
503
+ } | undefined;
504
+ };
505
+ sendOfferToInterestedBuyersInput: import("zod-to-json-schema").JsonSchema7Type & {
506
+ $schema?: string | undefined;
507
+ definitions?: {
508
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
509
+ } | undefined;
510
+ };
511
+ sendOfferToInterestedBuyersOutput: import("zod-to-json-schema").JsonSchema7Type & {
512
+ $schema?: string | undefined;
513
+ definitions?: {
514
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
515
+ } | undefined;
516
+ };
517
+ getOffersToBuyersInput: import("zod-to-json-schema").JsonSchema7Type & {
518
+ $schema?: string | undefined;
519
+ definitions?: {
520
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
521
+ } | undefined;
522
+ };
523
+ getOffersToBuyersOutput: import("zod-to-json-schema").JsonSchema7Type & {
524
+ $schema?: string | undefined;
525
+ definitions?: {
526
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
527
+ } | undefined;
528
+ };
529
+ };
530
+ fulfillment: {
531
+ getOrdersInput: import("zod-to-json-schema").JsonSchema7Type & {
532
+ $schema?: string | undefined;
533
+ definitions?: {
534
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
535
+ } | undefined;
536
+ };
537
+ getOrdersOutput: import("zod-to-json-schema").JsonSchema7Type & {
538
+ $schema?: string | undefined;
539
+ definitions?: {
540
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
541
+ } | undefined;
542
+ };
543
+ getOrderInput: import("zod-to-json-schema").JsonSchema7Type & {
544
+ $schema?: string | undefined;
545
+ definitions?: {
546
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
547
+ } | undefined;
548
+ };
549
+ getOrderOutput: import("zod-to-json-schema").JsonSchema7Type & {
550
+ $schema?: string | undefined;
551
+ definitions?: {
552
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
553
+ } | undefined;
554
+ };
555
+ orderDetails: import("zod-to-json-schema").JsonSchema7Type & {
556
+ $schema?: string | undefined;
557
+ definitions?: {
558
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
559
+ } | undefined;
560
+ };
561
+ createShippingFulfillmentInput: import("zod-to-json-schema").JsonSchema7Type & {
562
+ $schema?: string | undefined;
563
+ definitions?: {
564
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
565
+ } | undefined;
566
+ };
567
+ createShippingFulfillmentOutput: import("zod-to-json-schema").JsonSchema7Type & {
568
+ $schema?: string | undefined;
569
+ definitions?: {
570
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
571
+ } | undefined;
572
+ };
573
+ getShippingFulfillmentsInput: import("zod-to-json-schema").JsonSchema7Type & {
574
+ $schema?: string | undefined;
575
+ definitions?: {
576
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
577
+ } | undefined;
578
+ };
579
+ getShippingFulfillmentsOutput: import("zod-to-json-schema").JsonSchema7Type & {
580
+ $schema?: string | undefined;
581
+ definitions?: {
582
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
583
+ } | undefined;
584
+ };
585
+ shippingFulfillmentDetails: import("zod-to-json-schema").JsonSchema7Type & {
586
+ $schema?: string | undefined;
587
+ definitions?: {
588
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
589
+ } | undefined;
590
+ };
591
+ issueRefundInput: import("zod-to-json-schema").JsonSchema7Type & {
592
+ $schema?: string | undefined;
593
+ definitions?: {
594
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
595
+ } | undefined;
596
+ };
597
+ issueRefundOutput: import("zod-to-json-schema").JsonSchema7Type & {
598
+ $schema?: string | undefined;
599
+ definitions?: {
600
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
601
+ } | undefined;
602
+ };
603
+ getPaymentDisputesInput: import("zod-to-json-schema").JsonSchema7Type & {
604
+ $schema?: string | undefined;
605
+ definitions?: {
606
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
607
+ } | undefined;
608
+ };
609
+ getPaymentDisputesOutput: import("zod-to-json-schema").JsonSchema7Type & {
610
+ $schema?: string | undefined;
611
+ definitions?: {
612
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
613
+ } | undefined;
614
+ };
615
+ paymentDisputeDetails: import("zod-to-json-schema").JsonSchema7Type & {
616
+ $schema?: string | undefined;
617
+ definitions?: {
618
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
619
+ } | undefined;
620
+ };
621
+ };
622
+ marketing: {
623
+ getCampaignsOutput: import("zod-to-json-schema").JsonSchema7Type & {
624
+ $schema?: string | undefined;
625
+ definitions?: {
626
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
627
+ } | undefined;
628
+ };
629
+ getCampaignDetails: import("zod-to-json-schema").JsonSchema7Type & {
630
+ $schema?: string | undefined;
631
+ definitions?: {
632
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
633
+ } | undefined;
634
+ };
635
+ createCampaignInput: import("zod-to-json-schema").JsonSchema7Type & {
636
+ $schema?: string | undefined;
637
+ definitions?: {
638
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
639
+ } | undefined;
640
+ };
641
+ createCampaignOutput: import("zod-to-json-schema").JsonSchema7Type & {
642
+ $schema?: string | undefined;
643
+ definitions?: {
644
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
645
+ } | undefined;
646
+ };
647
+ cloneCampaignInput: import("zod-to-json-schema").JsonSchema7Type & {
648
+ $schema?: string | undefined;
649
+ definitions?: {
650
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
651
+ } | undefined;
652
+ };
653
+ updateCampaignInput: import("zod-to-json-schema").JsonSchema7Type & {
654
+ $schema?: string | undefined;
655
+ definitions?: {
656
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
657
+ } | undefined;
658
+ };
659
+ updateCampaignBudgetInput: import("zod-to-json-schema").JsonSchema7Type & {
660
+ $schema?: string | undefined;
661
+ definitions?: {
662
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
663
+ } | undefined;
664
+ };
665
+ updateBidPercentageInput: import("zod-to-json-schema").JsonSchema7Type & {
666
+ $schema?: string | undefined;
667
+ definitions?: {
668
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
669
+ } | undefined;
670
+ };
671
+ getAdGroupsOutput: import("zod-to-json-schema").JsonSchema7Type & {
672
+ $schema?: string | undefined;
673
+ definitions?: {
674
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
675
+ } | undefined;
676
+ };
677
+ getAdGroupDetails: import("zod-to-json-schema").JsonSchema7Type & {
678
+ $schema?: string | undefined;
679
+ definitions?: {
680
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
681
+ } | undefined;
682
+ };
683
+ createAdGroupInput: import("zod-to-json-schema").JsonSchema7Type & {
684
+ $schema?: string | undefined;
685
+ definitions?: {
686
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
687
+ } | undefined;
688
+ };
689
+ updateAdGroupInput: import("zod-to-json-schema").JsonSchema7Type & {
690
+ $schema?: string | undefined;
691
+ definitions?: {
692
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
693
+ } | undefined;
694
+ };
695
+ getAdsOutput: import("zod-to-json-schema").JsonSchema7Type & {
696
+ $schema?: string | undefined;
697
+ definitions?: {
698
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
699
+ } | undefined;
700
+ };
701
+ getAdDetails: import("zod-to-json-schema").JsonSchema7Type & {
702
+ $schema?: string | undefined;
703
+ definitions?: {
704
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
705
+ } | undefined;
706
+ };
707
+ createAdInput: import("zod-to-json-schema").JsonSchema7Type & {
708
+ $schema?: string | undefined;
709
+ definitions?: {
710
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
711
+ } | undefined;
712
+ };
713
+ createAdOutput: import("zod-to-json-schema").JsonSchema7Type & {
714
+ $schema?: string | undefined;
715
+ definitions?: {
716
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
717
+ } | undefined;
718
+ };
719
+ createAdsByInventoryReferenceInput: import("zod-to-json-schema").JsonSchema7Type & {
720
+ $schema?: string | undefined;
721
+ definitions?: {
722
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
723
+ } | undefined;
724
+ };
725
+ createAdsByInventoryReferenceOutput: import("zod-to-json-schema").JsonSchema7Type & {
726
+ $schema?: string | undefined;
727
+ definitions?: {
728
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
729
+ } | undefined;
730
+ };
731
+ updateAdStatusInput: import("zod-to-json-schema").JsonSchema7Type & {
732
+ $schema?: string | undefined;
733
+ definitions?: {
734
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
735
+ } | undefined;
736
+ };
737
+ bulkCreateAdsInput: import("zod-to-json-schema").JsonSchema7Type & {
738
+ $schema?: string | undefined;
739
+ definitions?: {
740
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
741
+ } | undefined;
742
+ };
743
+ bulkCreateAdsOutput: import("zod-to-json-schema").JsonSchema7Type & {
744
+ $schema?: string | undefined;
745
+ definitions?: {
746
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
747
+ } | undefined;
748
+ };
749
+ bulkUpdateAdStatusInput: import("zod-to-json-schema").JsonSchema7Type & {
750
+ $schema?: string | undefined;
751
+ definitions?: {
752
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
753
+ } | undefined;
754
+ };
755
+ bulkDeleteAdsInput: import("zod-to-json-schema").JsonSchema7Type & {
756
+ $schema?: string | undefined;
757
+ definitions?: {
758
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
759
+ } | undefined;
760
+ };
761
+ getKeywordsOutput: import("zod-to-json-schema").JsonSchema7Type & {
762
+ $schema?: string | undefined;
763
+ definitions?: {
764
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
765
+ } | undefined;
766
+ };
767
+ getKeywordDetails: import("zod-to-json-schema").JsonSchema7Type & {
768
+ $schema?: string | undefined;
769
+ definitions?: {
770
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
771
+ } | undefined;
772
+ };
773
+ createKeywordInput: import("zod-to-json-schema").JsonSchema7Type & {
774
+ $schema?: string | undefined;
775
+ definitions?: {
776
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
777
+ } | undefined;
778
+ };
779
+ createKeywordOutput: import("zod-to-json-schema").JsonSchema7Type & {
780
+ $schema?: string | undefined;
781
+ definitions?: {
782
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
783
+ } | undefined;
784
+ };
785
+ updateKeywordInput: import("zod-to-json-schema").JsonSchema7Type & {
786
+ $schema?: string | undefined;
787
+ definitions?: {
788
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
789
+ } | undefined;
790
+ };
791
+ bulkCreateKeywordsInput: import("zod-to-json-schema").JsonSchema7Type & {
792
+ $schema?: string | undefined;
793
+ definitions?: {
794
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
795
+ } | undefined;
796
+ };
797
+ bulkCreateKeywordsOutput: import("zod-to-json-schema").JsonSchema7Type & {
798
+ $schema?: string | undefined;
799
+ definitions?: {
800
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
801
+ } | undefined;
802
+ };
803
+ bulkUpdateKeywordsInput: import("zod-to-json-schema").JsonSchema7Type & {
804
+ $schema?: string | undefined;
805
+ definitions?: {
806
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
807
+ } | undefined;
808
+ };
809
+ getNegativeKeywordsOutput: import("zod-to-json-schema").JsonSchema7Type & {
810
+ $schema?: string | undefined;
811
+ definitions?: {
812
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
813
+ } | undefined;
814
+ };
815
+ getNegativeKeywordDetails: import("zod-to-json-schema").JsonSchema7Type & {
816
+ $schema?: string | undefined;
817
+ definitions?: {
818
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
819
+ } | undefined;
820
+ };
821
+ createNegativeKeywordInput: import("zod-to-json-schema").JsonSchema7Type & {
822
+ $schema?: string | undefined;
823
+ definitions?: {
824
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
825
+ } | undefined;
826
+ };
827
+ createNegativeKeywordOutput: import("zod-to-json-schema").JsonSchema7Type & {
828
+ $schema?: string | undefined;
829
+ definitions?: {
830
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
831
+ } | undefined;
832
+ };
833
+ updateNegativeKeywordInput: import("zod-to-json-schema").JsonSchema7Type & {
834
+ $schema?: string | undefined;
835
+ definitions?: {
836
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
837
+ } | undefined;
838
+ };
839
+ bulkCreateNegativeKeywordsInput: import("zod-to-json-schema").JsonSchema7Type & {
840
+ $schema?: string | undefined;
841
+ definitions?: {
842
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
843
+ } | undefined;
844
+ };
845
+ bulkCreateNegativeKeywordsOutput: import("zod-to-json-schema").JsonSchema7Type & {
846
+ $schema?: string | undefined;
847
+ definitions?: {
848
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
849
+ } | undefined;
850
+ };
851
+ suggestBidsOutput: import("zod-to-json-schema").JsonSchema7Type & {
852
+ $schema?: string | undefined;
853
+ definitions?: {
854
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
855
+ } | undefined;
856
+ };
857
+ suggestKeywordsOutput: import("zod-to-json-schema").JsonSchema7Type & {
858
+ $schema?: string | undefined;
859
+ definitions?: {
860
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
861
+ } | undefined;
862
+ };
863
+ suggestBudgetOutput: import("zod-to-json-schema").JsonSchema7Type & {
864
+ $schema?: string | undefined;
865
+ definitions?: {
866
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
867
+ } | undefined;
868
+ };
869
+ suggestMaxCpcInput: import("zod-to-json-schema").JsonSchema7Type & {
870
+ $schema?: string | undefined;
871
+ definitions?: {
872
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
873
+ } | undefined;
874
+ };
875
+ suggestMaxCpcOutput: import("zod-to-json-schema").JsonSchema7Type & {
876
+ $schema?: string | undefined;
877
+ definitions?: {
878
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
879
+ } | undefined;
880
+ };
881
+ getReportMetadataOutput: import("zod-to-json-schema").JsonSchema7Type & {
882
+ $schema?: string | undefined;
883
+ definitions?: {
884
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
885
+ } | undefined;
886
+ };
887
+ createReportTaskInput: import("zod-to-json-schema").JsonSchema7Type & {
888
+ $schema?: string | undefined;
889
+ definitions?: {
890
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
891
+ } | undefined;
892
+ };
893
+ createReportTaskOutput: import("zod-to-json-schema").JsonSchema7Type & {
894
+ $schema?: string | undefined;
895
+ definitions?: {
896
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
897
+ } | undefined;
898
+ };
899
+ getReportTasksOutput: import("zod-to-json-schema").JsonSchema7Type & {
900
+ $schema?: string | undefined;
901
+ definitions?: {
902
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
903
+ } | undefined;
904
+ };
905
+ getReportTaskDetails: import("zod-to-json-schema").JsonSchema7Type & {
906
+ $schema?: string | undefined;
907
+ definitions?: {
908
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
909
+ } | undefined;
910
+ };
911
+ getSummaryReportOutput: import("zod-to-json-schema").JsonSchema7Type & {
912
+ $schema?: string | undefined;
913
+ definitions?: {
914
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
915
+ } | undefined;
916
+ };
917
+ getPromotionsOutput: import("zod-to-json-schema").JsonSchema7Type & {
918
+ $schema?: string | undefined;
919
+ definitions?: {
920
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
921
+ } | undefined;
922
+ };
923
+ getPromotionDetails: import("zod-to-json-schema").JsonSchema7Type & {
924
+ $schema?: string | undefined;
925
+ definitions?: {
926
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
927
+ } | undefined;
928
+ };
929
+ createItemPromotionInput: import("zod-to-json-schema").JsonSchema7Type & {
930
+ $schema?: string | undefined;
931
+ definitions?: {
932
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
933
+ } | undefined;
934
+ };
935
+ createItemPromotionOutput: import("zod-to-json-schema").JsonSchema7Type & {
936
+ $schema?: string | undefined;
937
+ definitions?: {
938
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
939
+ } | undefined;
940
+ };
941
+ updateItemPromotionInput: import("zod-to-json-schema").JsonSchema7Type & {
942
+ $schema?: string | undefined;
943
+ definitions?: {
944
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
945
+ } | undefined;
946
+ };
947
+ getPromotionListingsOutput: import("zod-to-json-schema").JsonSchema7Type & {
948
+ $schema?: string | undefined;
949
+ definitions?: {
950
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
951
+ } | undefined;
952
+ };
953
+ getPromotionReportsOutput: import("zod-to-json-schema").JsonSchema7Type & {
954
+ $schema?: string | undefined;
955
+ definitions?: {
956
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
957
+ } | undefined;
958
+ };
959
+ createItemPriceMarkdownInput: import("zod-to-json-schema").JsonSchema7Type & {
960
+ $schema?: string | undefined;
961
+ definitions?: {
962
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
963
+ } | undefined;
964
+ };
965
+ createEmailCampaignInput: import("zod-to-json-schema").JsonSchema7Type & {
966
+ $schema?: string | undefined;
967
+ definitions?: {
968
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
969
+ } | undefined;
970
+ };
971
+ createEmailCampaignOutput: import("zod-to-json-schema").JsonSchema7Type & {
972
+ $schema?: string | undefined;
973
+ definitions?: {
974
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
975
+ } | undefined;
976
+ };
977
+ getEmailCampaignsOutput: import("zod-to-json-schema").JsonSchema7Type & {
978
+ $schema?: string | undefined;
979
+ definitions?: {
980
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
981
+ } | undefined;
982
+ };
983
+ getEmailCampaignDetails: import("zod-to-json-schema").JsonSchema7Type & {
984
+ $schema?: string | undefined;
985
+ definitions?: {
986
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
987
+ } | undefined;
988
+ };
989
+ getEmailCampaignAudiencesOutput: import("zod-to-json-schema").JsonSchema7Type & {
990
+ $schema?: string | undefined;
991
+ definitions?: {
992
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
993
+ } | undefined;
994
+ };
995
+ getEmailPreviewOutput: import("zod-to-json-schema").JsonSchema7Type & {
996
+ $schema?: string | undefined;
997
+ definitions?: {
998
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
999
+ } | undefined;
1000
+ };
1001
+ getEmailReportOutput: import("zod-to-json-schema").JsonSchema7Type & {
1002
+ $schema?: string | undefined;
1003
+ definitions?: {
1004
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1005
+ } | undefined;
1006
+ };
1007
+ findListingRecommendationsInput: import("zod-to-json-schema").JsonSchema7Type & {
1008
+ $schema?: string | undefined;
1009
+ definitions?: {
1010
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1011
+ } | undefined;
1012
+ };
1013
+ findListingRecommendationsOutput: import("zod-to-json-schema").JsonSchema7Type & {
1014
+ $schema?: string | undefined;
1015
+ definitions?: {
1016
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1017
+ } | undefined;
1018
+ };
1019
+ listingRecommendationDetails: import("zod-to-json-schema").JsonSchema7Type & {
1020
+ $schema?: string | undefined;
1021
+ definitions?: {
1022
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1023
+ } | undefined;
1024
+ };
1025
+ quickSetupInput: import("zod-to-json-schema").JsonSchema7Type & {
1026
+ $schema?: string | undefined;
1027
+ definitions?: {
1028
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1029
+ } | undefined;
1030
+ };
1031
+ error: import("zod-to-json-schema").JsonSchema7Type & {
1032
+ $schema?: string | undefined;
1033
+ definitions?: {
1034
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1035
+ } | undefined;
1036
+ };
1037
+ amount: import("zod-to-json-schema").JsonSchema7Type & {
1038
+ $schema?: string | undefined;
1039
+ definitions?: {
1040
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1041
+ } | undefined;
1042
+ };
1043
+ };
1044
+ metadata: {
1045
+ automotivePartsCompatibilityPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1046
+ $schema?: string | undefined;
1047
+ definitions?: {
1048
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1049
+ } | undefined;
1050
+ };
1051
+ automotivePartsCompatibilityPolicyResponse: import("zod-to-json-schema").JsonSchema7Type & {
1052
+ $schema?: string | undefined;
1053
+ definitions?: {
1054
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1055
+ } | undefined;
1056
+ };
1057
+ categoryPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1058
+ $schema?: string | undefined;
1059
+ definitions?: {
1060
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1061
+ } | undefined;
1062
+ };
1063
+ categoryPolicyResponse: import("zod-to-json-schema").JsonSchema7Type & {
1064
+ $schema?: string | undefined;
1065
+ definitions?: {
1066
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1067
+ } | undefined;
1068
+ };
1069
+ classifiedAdPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1070
+ $schema?: string | undefined;
1071
+ definitions?: {
1072
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1073
+ } | undefined;
1074
+ };
1075
+ classifiedAdPolicyResponse: import("zod-to-json-schema").JsonSchema7Type & {
1076
+ $schema?: string | undefined;
1077
+ definitions?: {
1078
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1079
+ } | undefined;
1080
+ };
1081
+ currency: import("zod-to-json-schema").JsonSchema7Type & {
1082
+ $schema?: string | undefined;
1083
+ definitions?: {
1084
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1085
+ } | undefined;
1086
+ };
1087
+ getCurrenciesResponse: import("zod-to-json-schema").JsonSchema7Type & {
1088
+ $schema?: string | undefined;
1089
+ definitions?: {
1090
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1091
+ } | undefined;
1092
+ };
1093
+ extendedProducerResponsibility: import("zod-to-json-schema").JsonSchema7Type & {
1094
+ $schema?: string | undefined;
1095
+ definitions?: {
1096
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1097
+ } | undefined;
1098
+ };
1099
+ extendedProducerResponsibilityPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1100
+ $schema?: string | undefined;
1101
+ definitions?: {
1102
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1103
+ } | undefined;
1104
+ };
1105
+ extendedProducerResponsibilityPolicyResponse: import("zod-to-json-schema").JsonSchema7Type & {
1106
+ $schema?: string | undefined;
1107
+ definitions?: {
1108
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1109
+ } | undefined;
1110
+ };
1111
+ signalWord: import("zod-to-json-schema").JsonSchema7Type & {
1112
+ $schema?: string | undefined;
1113
+ definitions?: {
1114
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1115
+ } | undefined;
1116
+ };
1117
+ hazardStatement: import("zod-to-json-schema").JsonSchema7Type & {
1118
+ $schema?: string | undefined;
1119
+ definitions?: {
1120
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1121
+ } | undefined;
1122
+ };
1123
+ pictogram: import("zod-to-json-schema").JsonSchema7Type & {
1124
+ $schema?: string | undefined;
1125
+ definitions?: {
1126
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1127
+ } | undefined;
1128
+ };
1129
+ hazardousMaterialDetailsResponse: import("zod-to-json-schema").JsonSchema7Type & {
1130
+ $schema?: string | undefined;
1131
+ definitions?: {
1132
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1133
+ } | undefined;
1134
+ };
1135
+ itemCondition: import("zod-to-json-schema").JsonSchema7Type & {
1136
+ $schema?: string | undefined;
1137
+ definitions?: {
1138
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1139
+ } | undefined;
1140
+ };
1141
+ itemConditionDescriptor: import("zod-to-json-schema").JsonSchema7Type & {
1142
+ $schema?: string | undefined;
1143
+ definitions?: {
1144
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1145
+ } | undefined;
1146
+ };
1147
+ itemConditionDescriptorConstraint: import("zod-to-json-schema").JsonSchema7Type & {
1148
+ $schema?: string | undefined;
1149
+ definitions?: {
1150
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1151
+ } | undefined;
1152
+ };
1153
+ itemConditionDescriptorValue: import("zod-to-json-schema").JsonSchema7Type & {
1154
+ $schema?: string | undefined;
1155
+ definitions?: {
1156
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1157
+ } | undefined;
1158
+ };
1159
+ itemConditionDescriptorValueConstraint: import("zod-to-json-schema").JsonSchema7Type & {
1160
+ $schema?: string | undefined;
1161
+ definitions?: {
1162
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1163
+ } | undefined;
1164
+ };
1165
+ itemConditionPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1166
+ $schema?: string | undefined;
1167
+ definitions?: {
1168
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1169
+ } | undefined;
1170
+ };
1171
+ itemConditionPolicyResponse: import("zod-to-json-schema").JsonSchema7Type & {
1172
+ $schema?: string | undefined;
1173
+ definitions?: {
1174
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1175
+ } | undefined;
1176
+ };
1177
+ listingStructurePolicy: import("zod-to-json-schema").JsonSchema7Type & {
1178
+ $schema?: string | undefined;
1179
+ definitions?: {
1180
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1181
+ } | undefined;
1182
+ };
1183
+ listingStructurePolicyResponse: import("zod-to-json-schema").JsonSchema7Type & {
1184
+ $schema?: string | undefined;
1185
+ definitions?: {
1186
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1187
+ } | undefined;
1188
+ };
1189
+ listingDuration: import("zod-to-json-schema").JsonSchema7Type & {
1190
+ $schema?: string | undefined;
1191
+ definitions?: {
1192
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1193
+ } | undefined;
1194
+ };
1195
+ listingTypePolicy: import("zod-to-json-schema").JsonSchema7Type & {
1196
+ $schema?: string | undefined;
1197
+ definitions?: {
1198
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1199
+ } | undefined;
1200
+ };
1201
+ listingTypePoliciesResponse: import("zod-to-json-schema").JsonSchema7Type & {
1202
+ $schema?: string | undefined;
1203
+ definitions?: {
1204
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1205
+ } | undefined;
1206
+ };
1207
+ localListingDistance: import("zod-to-json-schema").JsonSchema7Type & {
1208
+ $schema?: string | undefined;
1209
+ definitions?: {
1210
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1211
+ } | undefined;
1212
+ };
1213
+ motorsListingPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1214
+ $schema?: string | undefined;
1215
+ definitions?: {
1216
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1217
+ } | undefined;
1218
+ };
1219
+ motorsListingPoliciesResponse: import("zod-to-json-schema").JsonSchema7Type & {
1220
+ $schema?: string | undefined;
1221
+ definitions?: {
1222
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1223
+ } | undefined;
1224
+ };
1225
+ negotiatedPricePolicy: import("zod-to-json-schema").JsonSchema7Type & {
1226
+ $schema?: string | undefined;
1227
+ definitions?: {
1228
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1229
+ } | undefined;
1230
+ };
1231
+ negotiatedPricePolicyResponse: import("zod-to-json-schema").JsonSchema7Type & {
1232
+ $schema?: string | undefined;
1233
+ definitions?: {
1234
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1235
+ } | undefined;
1236
+ };
1237
+ productSafetyLabelPictogram: import("zod-to-json-schema").JsonSchema7Type & {
1238
+ $schema?: string | undefined;
1239
+ definitions?: {
1240
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1241
+ } | undefined;
1242
+ };
1243
+ productSafetyLabelStatement: import("zod-to-json-schema").JsonSchema7Type & {
1244
+ $schema?: string | undefined;
1245
+ definitions?: {
1246
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1247
+ } | undefined;
1248
+ };
1249
+ productSafetyLabelsResponse: import("zod-to-json-schema").JsonSchema7Type & {
1250
+ $schema?: string | undefined;
1251
+ definitions?: {
1252
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1253
+ } | undefined;
1254
+ };
1255
+ regulatoryAttribute: import("zod-to-json-schema").JsonSchema7Type & {
1256
+ $schema?: string | undefined;
1257
+ definitions?: {
1258
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1259
+ } | undefined;
1260
+ };
1261
+ regulatoryPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1262
+ $schema?: string | undefined;
1263
+ definitions?: {
1264
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1265
+ } | undefined;
1266
+ };
1267
+ regulatoryPolicyResponse: import("zod-to-json-schema").JsonSchema7Type & {
1268
+ $schema?: string | undefined;
1269
+ definitions?: {
1270
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1271
+ } | undefined;
1272
+ };
1273
+ returnPolicyDetails: import("zod-to-json-schema").JsonSchema7Type & {
1274
+ $schema?: string | undefined;
1275
+ definitions?: {
1276
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1277
+ } | undefined;
1278
+ };
1279
+ returnPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1280
+ $schema?: string | undefined;
1281
+ definitions?: {
1282
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1283
+ } | undefined;
1284
+ };
1285
+ returnPolicyResponse: import("zod-to-json-schema").JsonSchema7Type & {
1286
+ $schema?: string | undefined;
1287
+ definitions?: {
1288
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1289
+ } | undefined;
1290
+ };
1291
+ shippingPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1292
+ $schema?: string | undefined;
1293
+ definitions?: {
1294
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1295
+ } | undefined;
1296
+ };
1297
+ shippingPoliciesResponse: import("zod-to-json-schema").JsonSchema7Type & {
1298
+ $schema?: string | undefined;
1299
+ definitions?: {
1300
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1301
+ } | undefined;
1302
+ };
1303
+ siteVisibilityPolicy: import("zod-to-json-schema").JsonSchema7Type & {
1304
+ $schema?: string | undefined;
1305
+ definitions?: {
1306
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1307
+ } | undefined;
1308
+ };
1309
+ siteVisibilityPoliciesResponse: import("zod-to-json-schema").JsonSchema7Type & {
1310
+ $schema?: string | undefined;
1311
+ definitions?: {
1312
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1313
+ } | undefined;
1314
+ };
1315
+ propertyFilterInner: import("zod-to-json-schema").JsonSchema7Type & {
1316
+ $schema?: string | undefined;
1317
+ definitions?: {
1318
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1319
+ } | undefined;
1320
+ };
1321
+ compatibilityDetails: import("zod-to-json-schema").JsonSchema7Type & {
1322
+ $schema?: string | undefined;
1323
+ definitions?: {
1324
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1325
+ } | undefined;
1326
+ };
1327
+ compatibility: import("zod-to-json-schema").JsonSchema7Type & {
1328
+ $schema?: string | undefined;
1329
+ definitions?: {
1330
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1331
+ } | undefined;
1332
+ };
1333
+ specificationRequest: import("zod-to-json-schema").JsonSchema7Type & {
1334
+ $schema?: string | undefined;
1335
+ definitions?: {
1336
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1337
+ } | undefined;
1338
+ };
1339
+ specificationResponse: import("zod-to-json-schema").JsonSchema7Type & {
1340
+ $schema?: string | undefined;
1341
+ definitions?: {
1342
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1343
+ } | undefined;
1344
+ };
1345
+ propertyNamesRequest: import("zod-to-json-schema").JsonSchema7Type & {
1346
+ $schema?: string | undefined;
1347
+ definitions?: {
1348
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1349
+ } | undefined;
1350
+ };
1351
+ propertyNamesResponse: import("zod-to-json-schema").JsonSchema7Type & {
1352
+ $schema?: string | undefined;
1353
+ definitions?: {
1354
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1355
+ } | undefined;
1356
+ };
1357
+ propertyValuesRequest: import("zod-to-json-schema").JsonSchema7Type & {
1358
+ $schema?: string | undefined;
1359
+ definitions?: {
1360
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1361
+ } | undefined;
1362
+ };
1363
+ propertyValuesResponse: import("zod-to-json-schema").JsonSchema7Type & {
1364
+ $schema?: string | undefined;
1365
+ definitions?: {
1366
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1367
+ } | undefined;
1368
+ };
1369
+ multiCompatibilityPropertyValuesRequest: import("zod-to-json-schema").JsonSchema7Type & {
1370
+ $schema?: string | undefined;
1371
+ definitions?: {
1372
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1373
+ } | undefined;
1374
+ };
1375
+ multiCompatibilityPropertyValuesResponse: import("zod-to-json-schema").JsonSchema7Type & {
1376
+ $schema?: string | undefined;
1377
+ definitions?: {
1378
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1379
+ } | undefined;
1380
+ };
1381
+ disabledProductFilter: import("zod-to-json-schema").JsonSchema7Type & {
1382
+ $schema?: string | undefined;
1383
+ definitions?: {
1384
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1385
+ } | undefined;
1386
+ };
1387
+ productIdentifier: import("zod-to-json-schema").JsonSchema7Type & {
1388
+ $schema?: string | undefined;
1389
+ definitions?: {
1390
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1391
+ } | undefined;
1392
+ };
1393
+ productRequest: import("zod-to-json-schema").JsonSchema7Type & {
1394
+ $schema?: string | undefined;
1395
+ definitions?: {
1396
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1397
+ } | undefined;
1398
+ };
1399
+ productResponse: import("zod-to-json-schema").JsonSchema7Type & {
1400
+ $schema?: string | undefined;
1401
+ definitions?: {
1402
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1403
+ } | undefined;
1404
+ };
1405
+ salesTaxJurisdiction: import("zod-to-json-schema").JsonSchema7Type & {
1406
+ $schema?: string | undefined;
1407
+ definitions?: {
1408
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1409
+ } | undefined;
1410
+ };
1411
+ salesTaxJurisdictions: import("zod-to-json-schema").JsonSchema7Type & {
1412
+ $schema?: string | undefined;
1413
+ definitions?: {
1414
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1415
+ } | undefined;
1416
+ };
1417
+ pagination: import("zod-to-json-schema").JsonSchema7Type & {
1418
+ $schema?: string | undefined;
1419
+ definitions?: {
1420
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1421
+ } | undefined;
1422
+ };
1423
+ paginationInput: import("zod-to-json-schema").JsonSchema7Type & {
1424
+ $schema?: string | undefined;
1425
+ definitions?: {
1426
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1427
+ } | undefined;
1428
+ };
1429
+ sortOrderInner: import("zod-to-json-schema").JsonSchema7Type & {
1430
+ $schema?: string | undefined;
1431
+ definitions?: {
1432
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1433
+ } | undefined;
1434
+ };
1435
+ sortOrderProperties: import("zod-to-json-schema").JsonSchema7Type & {
1436
+ $schema?: string | undefined;
1437
+ definitions?: {
1438
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1439
+ } | undefined;
1440
+ };
1441
+ error: import("zod-to-json-schema").JsonSchema7Type & {
1442
+ $schema?: string | undefined;
1443
+ definitions?: {
1444
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1445
+ } | undefined;
1446
+ };
1447
+ errorParameter: import("zod-to-json-schema").JsonSchema7Type & {
1448
+ $schema?: string | undefined;
1449
+ definitions?: {
1450
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1451
+ } | undefined;
1452
+ };
1453
+ amount: import("zod-to-json-schema").JsonSchema7Type & {
1454
+ $schema?: string | undefined;
1455
+ definitions?: {
1456
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1457
+ } | undefined;
1458
+ };
1459
+ timeDuration: import("zod-to-json-schema").JsonSchema7Type & {
1460
+ $schema?: string | undefined;
1461
+ definitions?: {
1462
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1463
+ } | undefined;
1464
+ };
1465
+ };
1466
+ analytics: {
1467
+ getCustomerServiceMetricInput: import("zod-to-json-schema").JsonSchema7Type & {
1468
+ $schema?: string | undefined;
1469
+ definitions?: {
1470
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1471
+ } | undefined;
1472
+ };
1473
+ getCustomerServiceMetricOutput: import("zod-to-json-schema").JsonSchema7Type & {
1474
+ $schema?: string | undefined;
1475
+ definitions?: {
1476
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1477
+ } | undefined;
1478
+ };
1479
+ findSellerStandardsProfilesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1480
+ $schema?: string | undefined;
1481
+ definitions?: {
1482
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1483
+ } | undefined;
1484
+ };
1485
+ getSellerStandardsProfileInput: import("zod-to-json-schema").JsonSchema7Type & {
1486
+ $schema?: string | undefined;
1487
+ definitions?: {
1488
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1489
+ } | undefined;
1490
+ };
1491
+ getSellerStandardsProfileOutput: import("zod-to-json-schema").JsonSchema7Type & {
1492
+ $schema?: string | undefined;
1493
+ definitions?: {
1494
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1495
+ } | undefined;
1496
+ };
1497
+ getTrafficReportInput: import("zod-to-json-schema").JsonSchema7Type & {
1498
+ $schema?: string | undefined;
1499
+ definitions?: {
1500
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1501
+ } | undefined;
1502
+ };
1503
+ getTrafficReportOutput: import("zod-to-json-schema").JsonSchema7Type & {
1504
+ $schema?: string | undefined;
1505
+ definitions?: {
1506
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1507
+ } | undefined;
1508
+ };
1509
+ benchmarkMetadata: import("zod-to-json-schema").JsonSchema7Type & {
1510
+ $schema?: string | undefined;
1511
+ definitions?: {
1512
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1513
+ } | undefined;
1514
+ };
1515
+ cycle: import("zod-to-json-schema").JsonSchema7Type & {
1516
+ $schema?: string | undefined;
1517
+ definitions?: {
1518
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1519
+ } | undefined;
1520
+ };
1521
+ definition: import("zod-to-json-schema").JsonSchema7Type & {
1522
+ $schema?: string | undefined;
1523
+ definitions?: {
1524
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1525
+ } | undefined;
1526
+ };
1527
+ dimension: import("zod-to-json-schema").JsonSchema7Type & {
1528
+ $schema?: string | undefined;
1529
+ definitions?: {
1530
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1531
+ } | undefined;
1532
+ };
1533
+ dimensionMetric: import("zod-to-json-schema").JsonSchema7Type & {
1534
+ $schema?: string | undefined;
1535
+ definitions?: {
1536
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1537
+ } | undefined;
1538
+ };
1539
+ distribution: import("zod-to-json-schema").JsonSchema7Type & {
1540
+ $schema?: string | undefined;
1541
+ definitions?: {
1542
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1543
+ } | undefined;
1544
+ };
1545
+ error: import("zod-to-json-schema").JsonSchema7Type & {
1546
+ $schema?: string | undefined;
1547
+ definitions?: {
1548
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1549
+ } | undefined;
1550
+ };
1551
+ errorParameter: import("zod-to-json-schema").JsonSchema7Type & {
1552
+ $schema?: string | undefined;
1553
+ definitions?: {
1554
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1555
+ } | undefined;
1556
+ };
1557
+ evaluationCycle: import("zod-to-json-schema").JsonSchema7Type & {
1558
+ $schema?: string | undefined;
1559
+ definitions?: {
1560
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1561
+ } | undefined;
1562
+ };
1563
+ header: import("zod-to-json-schema").JsonSchema7Type & {
1564
+ $schema?: string | undefined;
1565
+ definitions?: {
1566
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1567
+ } | undefined;
1568
+ };
1569
+ metadata: import("zod-to-json-schema").JsonSchema7Type & {
1570
+ $schema?: string | undefined;
1571
+ definitions?: {
1572
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1573
+ } | undefined;
1574
+ };
1575
+ metadataHeader: import("zod-to-json-schema").JsonSchema7Type & {
1576
+ $schema?: string | undefined;
1577
+ definitions?: {
1578
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1579
+ } | undefined;
1580
+ };
1581
+ metadataRecord: import("zod-to-json-schema").JsonSchema7Type & {
1582
+ $schema?: string | undefined;
1583
+ definitions?: {
1584
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1585
+ } | undefined;
1586
+ };
1587
+ metric: import("zod-to-json-schema").JsonSchema7Type & {
1588
+ $schema?: string | undefined;
1589
+ definitions?: {
1590
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1591
+ } | undefined;
1592
+ };
1593
+ metricBenchmark: import("zod-to-json-schema").JsonSchema7Type & {
1594
+ $schema?: string | undefined;
1595
+ definitions?: {
1596
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1597
+ } | undefined;
1598
+ };
1599
+ metricDistribution: import("zod-to-json-schema").JsonSchema7Type & {
1600
+ $schema?: string | undefined;
1601
+ definitions?: {
1602
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1603
+ } | undefined;
1604
+ };
1605
+ record: import("zod-to-json-schema").JsonSchema7Type & {
1606
+ $schema?: string | undefined;
1607
+ definitions?: {
1608
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1609
+ } | undefined;
1610
+ };
1611
+ report: import("zod-to-json-schema").JsonSchema7Type & {
1612
+ $schema?: string | undefined;
1613
+ definitions?: {
1614
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1615
+ } | undefined;
1616
+ };
1617
+ standardsProfile: import("zod-to-json-schema").JsonSchema7Type & {
1618
+ $schema?: string | undefined;
1619
+ definitions?: {
1620
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1621
+ } | undefined;
1622
+ };
1623
+ value: import("zod-to-json-schema").JsonSchema7Type & {
1624
+ $schema?: string | undefined;
1625
+ definitions?: {
1626
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1627
+ } | undefined;
1628
+ };
1629
+ };
1630
+ taxonomy: {
1631
+ getCategoryPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1632
+ $schema?: string | undefined;
1633
+ definitions?: {
1634
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1635
+ } | undefined;
1636
+ };
1637
+ getItemConditionPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1638
+ $schema?: string | undefined;
1639
+ definitions?: {
1640
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1641
+ } | undefined;
1642
+ };
1643
+ getReturnPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1644
+ $schema?: string | undefined;
1645
+ definitions?: {
1646
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1647
+ } | undefined;
1648
+ };
1649
+ getListingStructurePoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1650
+ $schema?: string | undefined;
1651
+ definitions?: {
1652
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1653
+ } | undefined;
1654
+ };
1655
+ getListingTypePoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1656
+ $schema?: string | undefined;
1657
+ definitions?: {
1658
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1659
+ } | undefined;
1660
+ };
1661
+ getNegotiatedPricePoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1662
+ $schema?: string | undefined;
1663
+ definitions?: {
1664
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1665
+ } | undefined;
1666
+ };
1667
+ getShippingPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1668
+ $schema?: string | undefined;
1669
+ definitions?: {
1670
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1671
+ } | undefined;
1672
+ };
1673
+ getAutomotivePartsCompatibilityPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1674
+ $schema?: string | undefined;
1675
+ definitions?: {
1676
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1677
+ } | undefined;
1678
+ };
1679
+ getClassifiedAdPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1680
+ $schema?: string | undefined;
1681
+ definitions?: {
1682
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1683
+ } | undefined;
1684
+ };
1685
+ getMotorsListingPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1686
+ $schema?: string | undefined;
1687
+ definitions?: {
1688
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1689
+ } | undefined;
1690
+ };
1691
+ getCurrenciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1692
+ $schema?: string | undefined;
1693
+ definitions?: {
1694
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1695
+ } | undefined;
1696
+ };
1697
+ getExtendedProducerResponsibilityPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1698
+ $schema?: string | undefined;
1699
+ definitions?: {
1700
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1701
+ } | undefined;
1702
+ };
1703
+ getHazardousMaterialsLabelsOutput: import("zod-to-json-schema").JsonSchema7Type & {
1704
+ $schema?: string | undefined;
1705
+ definitions?: {
1706
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1707
+ } | undefined;
1708
+ };
1709
+ getProductSafetyLabelsOutput: import("zod-to-json-schema").JsonSchema7Type & {
1710
+ $schema?: string | undefined;
1711
+ definitions?: {
1712
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1713
+ } | undefined;
1714
+ };
1715
+ getRegulatoryPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1716
+ $schema?: string | undefined;
1717
+ definitions?: {
1718
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1719
+ } | undefined;
1720
+ };
1721
+ getSiteVisibilityPoliciesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1722
+ $schema?: string | undefined;
1723
+ definitions?: {
1724
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1725
+ } | undefined;
1726
+ };
1727
+ getCompatibilityPropertyNamesInput: import("zod-to-json-schema").JsonSchema7Type & {
1728
+ $schema?: string | undefined;
1729
+ definitions?: {
1730
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1731
+ } | undefined;
1732
+ };
1733
+ getCompatibilityPropertyNamesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1734
+ $schema?: string | undefined;
1735
+ definitions?: {
1736
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1737
+ } | undefined;
1738
+ };
1739
+ getCompatibilityPropertyValuesInput: import("zod-to-json-schema").JsonSchema7Type & {
1740
+ $schema?: string | undefined;
1741
+ definitions?: {
1742
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1743
+ } | undefined;
1744
+ };
1745
+ getCompatibilityPropertyValuesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1746
+ $schema?: string | undefined;
1747
+ definitions?: {
1748
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1749
+ } | undefined;
1750
+ };
1751
+ getMultiCompatibilityPropertyValuesInput: import("zod-to-json-schema").JsonSchema7Type & {
1752
+ $schema?: string | undefined;
1753
+ definitions?: {
1754
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1755
+ } | undefined;
1756
+ };
1757
+ getMultiCompatibilityPropertyValuesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1758
+ $schema?: string | undefined;
1759
+ definitions?: {
1760
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1761
+ } | undefined;
1762
+ };
1763
+ getProductCompatibilitiesInput: import("zod-to-json-schema").JsonSchema7Type & {
1764
+ $schema?: string | undefined;
1765
+ definitions?: {
1766
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1767
+ } | undefined;
1768
+ };
1769
+ getProductCompatibilitiesOutput: import("zod-to-json-schema").JsonSchema7Type & {
1770
+ $schema?: string | undefined;
1771
+ definitions?: {
1772
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1773
+ } | undefined;
1774
+ };
1775
+ getCompatibilitiesBySpecificationInput: import("zod-to-json-schema").JsonSchema7Type & {
1776
+ $schema?: string | undefined;
1777
+ definitions?: {
1778
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1779
+ } | undefined;
1780
+ };
1781
+ getCompatibilitiesBySpecificationOutput: import("zod-to-json-schema").JsonSchema7Type & {
1782
+ $schema?: string | undefined;
1783
+ definitions?: {
1784
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1785
+ } | undefined;
1786
+ };
1787
+ amount: import("zod-to-json-schema").JsonSchema7Type & {
1788
+ $schema?: string | undefined;
1789
+ definitions?: {
1790
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1791
+ } | undefined;
1792
+ };
1793
+ error: import("zod-to-json-schema").JsonSchema7Type & {
1794
+ $schema?: string | undefined;
1795
+ definitions?: {
1796
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1797
+ } | undefined;
1798
+ };
1799
+ errorParameter: import("zod-to-json-schema").JsonSchema7Type & {
1800
+ $schema?: string | undefined;
1801
+ definitions?: {
1802
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1803
+ } | undefined;
1804
+ };
1805
+ timeDuration: import("zod-to-json-schema").JsonSchema7Type & {
1806
+ $schema?: string | undefined;
1807
+ definitions?: {
1808
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1809
+ } | undefined;
1810
+ };
1811
+ pagination: import("zod-to-json-schema").JsonSchema7Type & {
1812
+ $schema?: string | undefined;
1813
+ definitions?: {
1814
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1815
+ } | undefined;
1816
+ };
1817
+ compatibility: import("zod-to-json-schema").JsonSchema7Type & {
1818
+ $schema?: string | undefined;
1819
+ definitions?: {
1820
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1821
+ } | undefined;
1822
+ };
1823
+ compatibilityDetails: import("zod-to-json-schema").JsonSchema7Type & {
1824
+ $schema?: string | undefined;
1825
+ definitions?: {
1826
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1827
+ } | undefined;
1828
+ };
1829
+ propertyFilterInner: import("zod-to-json-schema").JsonSchema7Type & {
1830
+ $schema?: string | undefined;
1831
+ definitions?: {
1832
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1833
+ } | undefined;
1834
+ };
1835
+ productIdentifier: import("zod-to-json-schema").JsonSchema7Type & {
1836
+ $schema?: string | undefined;
1837
+ definitions?: {
1838
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1839
+ } | undefined;
1840
+ };
1841
+ };
1842
+ otherApis: {
1843
+ getUserConsentOutput: import("zod-to-json-schema").JsonSchema7Type & {
1844
+ $schema?: string | undefined;
1845
+ definitions?: {
1846
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1847
+ } | undefined;
1848
+ };
1849
+ getComplianceSummaryOutput: import("zod-to-json-schema").JsonSchema7Type & {
1850
+ $schema?: string | undefined;
1851
+ definitions?: {
1852
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1853
+ } | undefined;
1854
+ };
1855
+ getListingViolationsInput: import("zod-to-json-schema").JsonSchema7Type & {
1856
+ $schema?: string | undefined;
1857
+ definitions?: {
1858
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1859
+ } | undefined;
1860
+ };
1861
+ getListingViolationsOutput: import("zod-to-json-schema").JsonSchema7Type & {
1862
+ $schema?: string | undefined;
1863
+ definitions?: {
1864
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1865
+ } | undefined;
1866
+ };
1867
+ suppressViolationInput: import("zod-to-json-schema").JsonSchema7Type & {
1868
+ $schema?: string | undefined;
1869
+ definitions?: {
1870
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1871
+ } | undefined;
1872
+ };
1873
+ translateInput: import("zod-to-json-schema").JsonSchema7Type & {
1874
+ $schema?: string | undefined;
1875
+ definitions?: {
1876
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1877
+ } | undefined;
1878
+ };
1879
+ translateOutput: import("zod-to-json-schema").JsonSchema7Type & {
1880
+ $schema?: string | undefined;
1881
+ definitions?: {
1882
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1883
+ } | undefined;
1884
+ };
1885
+ reportItemsInput: import("zod-to-json-schema").JsonSchema7Type & {
1886
+ $schema?: string | undefined;
1887
+ definitions?: {
1888
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1889
+ } | undefined;
1890
+ };
1891
+ reportItemsOutput: import("zod-to-json-schema").JsonSchema7Type & {
1892
+ $schema?: string | undefined;
1893
+ definitions?: {
1894
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1895
+ } | undefined;
1896
+ };
1897
+ getVeroReportedListingsInput: import("zod-to-json-schema").JsonSchema7Type & {
1898
+ $schema?: string | undefined;
1899
+ definitions?: {
1900
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1901
+ } | undefined;
1902
+ };
1903
+ getVeroReportedListingsOutput: import("zod-to-json-schema").JsonSchema7Type & {
1904
+ $schema?: string | undefined;
1905
+ definitions?: {
1906
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1907
+ } | undefined;
1908
+ };
1909
+ createShippingQuoteInput: import("zod-to-json-schema").JsonSchema7Type & {
1910
+ $schema?: string | undefined;
1911
+ definitions?: {
1912
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1913
+ } | undefined;
1914
+ };
1915
+ createShippingQuoteOutput: import("zod-to-json-schema").JsonSchema7Type & {
1916
+ $schema?: string | undefined;
1917
+ definitions?: {
1918
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1919
+ } | undefined;
1920
+ };
1921
+ purchaseLabelInput: import("zod-to-json-schema").JsonSchema7Type & {
1922
+ $schema?: string | undefined;
1923
+ definitions?: {
1924
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1925
+ } | undefined;
1926
+ };
1927
+ purchaseLabelOutput: import("zod-to-json-schema").JsonSchema7Type & {
1928
+ $schema?: string | undefined;
1929
+ definitions?: {
1930
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1931
+ } | undefined;
1932
+ };
1933
+ getShipmentOutput: import("zod-to-json-schema").JsonSchema7Type & {
1934
+ $schema?: string | undefined;
1935
+ definitions?: {
1936
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1937
+ } | undefined;
1938
+ };
1939
+ cancelShipmentOutput: import("zod-to-json-schema").JsonSchema7Type & {
1940
+ $schema?: string | undefined;
1941
+ definitions?: {
1942
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1943
+ } | undefined;
1944
+ };
1945
+ downloadLabelOutput: import("zod-to-json-schema").JsonSchema7Type & {
1946
+ $schema?: string | undefined;
1947
+ definitions?: {
1948
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1949
+ } | undefined;
1950
+ };
1951
+ error: import("zod-to-json-schema").JsonSchema7Type & {
1952
+ $schema?: string | undefined;
1953
+ definitions?: {
1954
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1955
+ } | undefined;
1956
+ };
1957
+ errorParameter: import("zod-to-json-schema").JsonSchema7Type & {
1958
+ $schema?: string | undefined;
1959
+ definitions?: {
1960
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1961
+ } | undefined;
1962
+ };
1963
+ amount: import("zod-to-json-schema").JsonSchema7Type & {
1964
+ $schema?: string | undefined;
1965
+ definitions?: {
1966
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1967
+ } | undefined;
1968
+ };
1969
+ address: import("zod-to-json-schema").JsonSchema7Type & {
1970
+ $schema?: string | undefined;
1971
+ definitions?: {
1972
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1973
+ } | undefined;
1974
+ };
1975
+ contact: import("zod-to-json-schema").JsonSchema7Type & {
1976
+ $schema?: string | undefined;
1977
+ definitions?: {
1978
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1979
+ } | undefined;
1980
+ };
1981
+ dimensions: import("zod-to-json-schema").JsonSchema7Type & {
1982
+ $schema?: string | undefined;
1983
+ definitions?: {
1984
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1985
+ } | undefined;
1986
+ };
1987
+ weight: import("zod-to-json-schema").JsonSchema7Type & {
1988
+ $schema?: string | undefined;
1989
+ definitions?: {
1990
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1991
+ } | undefined;
1992
+ };
1993
+ pageMetadata: import("zod-to-json-schema").JsonSchema7Type & {
1994
+ $schema?: string | undefined;
1995
+ definitions?: {
1996
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
1997
+ } | undefined;
1998
+ };
1999
+ complianceViolation: import("zod-to-json-schema").JsonSchema7Type & {
2000
+ $schema?: string | undefined;
2001
+ definitions?: {
2002
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2003
+ } | undefined;
2004
+ };
2005
+ complianceDetail: import("zod-to-json-schema").JsonSchema7Type & {
2006
+ $schema?: string | undefined;
2007
+ definitions?: {
2008
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2009
+ } | undefined;
2010
+ };
2011
+ correctiveRecommendations: import("zod-to-json-schema").JsonSchema7Type & {
2012
+ $schema?: string | undefined;
2013
+ definitions?: {
2014
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2015
+ } | undefined;
2016
+ };
2017
+ variationDetails: import("zod-to-json-schema").JsonSchema7Type & {
2018
+ $schema?: string | undefined;
2019
+ definitions?: {
2020
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2021
+ } | undefined;
2022
+ };
2023
+ nameValueList: import("zod-to-json-schema").JsonSchema7Type & {
2024
+ $schema?: string | undefined;
2025
+ definitions?: {
2026
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2027
+ } | undefined;
2028
+ };
2029
+ translation: import("zod-to-json-schema").JsonSchema7Type & {
2030
+ $schema?: string | undefined;
2031
+ definitions?: {
2032
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2033
+ } | undefined;
2034
+ };
2035
+ veroReportedListing: import("zod-to-json-schema").JsonSchema7Type & {
2036
+ $schema?: string | undefined;
2037
+ definitions?: {
2038
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2039
+ } | undefined;
2040
+ };
2041
+ reportedListingDetails: import("zod-to-json-schema").JsonSchema7Type & {
2042
+ $schema?: string | undefined;
2043
+ definitions?: {
2044
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2045
+ } | undefined;
2046
+ };
2047
+ itemLocation: import("zod-to-json-schema").JsonSchema7Type & {
2048
+ $schema?: string | undefined;
2049
+ definitions?: {
2050
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2051
+ } | undefined;
2052
+ };
2053
+ shippingQuote: import("zod-to-json-schema").JsonSchema7Type & {
2054
+ $schema?: string | undefined;
2055
+ definitions?: {
2056
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2057
+ } | undefined;
2058
+ };
2059
+ shipment: import("zod-to-json-schema").JsonSchema7Type & {
2060
+ $schema?: string | undefined;
2061
+ definitions?: {
2062
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2063
+ } | undefined;
2064
+ };
2065
+ package: import("zod-to-json-schema").JsonSchema7Type & {
2066
+ $schema?: string | undefined;
2067
+ definitions?: {
2068
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2069
+ } | undefined;
2070
+ };
2071
+ rate: import("zod-to-json-schema").JsonSchema7Type & {
2072
+ $schema?: string | undefined;
2073
+ definitions?: {
2074
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2075
+ } | undefined;
2076
+ };
2077
+ label: import("zod-to-json-schema").JsonSchema7Type & {
2078
+ $schema?: string | undefined;
2079
+ definitions?: {
2080
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2081
+ } | undefined;
2082
+ };
2083
+ packageDetails: import("zod-to-json-schema").JsonSchema7Type & {
2084
+ $schema?: string | undefined;
2085
+ definitions?: {
2086
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2087
+ } | undefined;
2088
+ };
2089
+ userConsent: import("zod-to-json-schema").JsonSchema7Type & {
2090
+ $schema?: string | undefined;
2091
+ definitions?: {
2092
+ [key: string]: import("zod-to-json-schema").JsonSchema7Type;
2093
+ } | undefined;
2094
+ };
2095
+ };
2096
+ };
2097
+ /**
2098
+ * Type representing all available JSON schemas
2099
+ */
2100
+ export type AllJsonSchemas = ReturnType<typeof getAllJsonSchemas>;