@fenixalliance/abs-api-client 1.0.0

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 (447) hide show
  1. package/Icon.png +0 -0
  2. package/LICENSE +21 -0
  3. package/LICENSE.md +36 -0
  4. package/README.md +300 -0
  5. package/THIRD_PARTY_NOTICES.md +129 -0
  6. package/clients/cartService/core/ApiError.ts +25 -0
  7. package/clients/cartService/core/ApiRequestOptions.ts +17 -0
  8. package/clients/cartService/core/ApiResult.ts +11 -0
  9. package/clients/cartService/core/CancelablePromise.ts +131 -0
  10. package/clients/cartService/core/OpenAPI.ts +32 -0
  11. package/clients/cartService/core/request.ts +322 -0
  12. package/clients/cartService/index.ts +52 -0
  13. package/clients/cartService/models/AccessTokenResponse.ts +11 -0
  14. package/clients/cartService/models/AddProductToCompareRequest.ts +10 -0
  15. package/clients/cartService/models/BooleanEnvelope.ts +13 -0
  16. package/clients/cartService/models/CartDto.ts +17 -0
  17. package/clients/cartService/models/CartDtoEnvelope.ts +14 -0
  18. package/clients/cartService/models/CurrencySwitchRequest.ts +9 -0
  19. package/clients/cartService/models/Envelope.ts +13 -0
  20. package/clients/cartService/models/Error.ts +10 -0
  21. package/clients/cartService/models/ErrorEnvelope.ts +12 -0
  22. package/clients/cartService/models/ForgotPasswordRequest.ts +8 -0
  23. package/clients/cartService/models/HttpValidationProblemDetails.ts +5 -0
  24. package/clients/cartService/models/InfoRequest.ts +10 -0
  25. package/clients/cartService/models/InfoResponse.ts +9 -0
  26. package/clients/cartService/models/ItemCartRecordCreateDto.ts +11 -0
  27. package/clients/cartService/models/ItemCartRecordDto.ts +98 -0
  28. package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +14 -0
  29. package/clients/cartService/models/ItemCartRecordUpdateDto.ts +10 -0
  30. package/clients/cartService/models/ItemToCompareCartRecordDto.ts +11 -0
  31. package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +14 -0
  32. package/clients/cartService/models/ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts +14 -0
  33. package/clients/cartService/models/LoginRequest.ts +11 -0
  34. package/clients/cartService/models/NewWishListRequest.ts +11 -0
  35. package/clients/cartService/models/ProductCartRecordDto.ts +98 -0
  36. package/clients/cartService/models/ProductToWishListRequest.ts +9 -0
  37. package/clients/cartService/models/RefreshRequest.ts +8 -0
  38. package/clients/cartService/models/RegisterRequest.ts +9 -0
  39. package/clients/cartService/models/ResendConfirmationEmailRequest.ts +8 -0
  40. package/clients/cartService/models/ResetPasswordRequest.ts +10 -0
  41. package/clients/cartService/models/ResponseStatus.ts +12 -0
  42. package/clients/cartService/models/TwoFactorRequest.ts +12 -0
  43. package/clients/cartService/models/TwoFactorResponse.ts +12 -0
  44. package/clients/cartService/models/WishListDto.ts +12 -0
  45. package/clients/cartService/models/WishListDtoEnvelope.ts +14 -0
  46. package/clients/cartService/models/WishListDtoIReadOnlyListEnvelope.ts +14 -0
  47. package/clients/cartService/models/WishListItemRecordDto.ts +11 -0
  48. package/clients/cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts +14 -0
  49. package/clients/cartService/models/WishListUpdateDto.ts +10 -0
  50. package/clients/cartService/services/CartsService.ts +103 -0
  51. package/clients/cartService/services/CompareService.ts +89 -0
  52. package/clients/cartService/services/FenixAllianceAbsWebService.ts +293 -0
  53. package/clients/cartService/services/RecordsService.ts +206 -0
  54. package/clients/cartService/services/WishListsService.ts +145 -0
  55. package/clients/catalogService/core/ApiError.ts +25 -0
  56. package/clients/catalogService/core/ApiRequestOptions.ts +17 -0
  57. package/clients/catalogService/core/ApiResult.ts +11 -0
  58. package/clients/catalogService/core/CancelablePromise.ts +131 -0
  59. package/clients/catalogService/core/OpenAPI.ts +32 -0
  60. package/clients/catalogService/core/request.ts +322 -0
  61. package/clients/catalogService/index.ts +124 -0
  62. package/clients/catalogService/models/AccessTokenResponse.ts +11 -0
  63. package/clients/catalogService/models/ErrorEnvelope.ts +12 -0
  64. package/clients/catalogService/models/ForgotPasswordRequest.ts +8 -0
  65. package/clients/catalogService/models/HttpValidationProblemDetails.ts +5 -0
  66. package/clients/catalogService/models/InfoRequest.ts +10 -0
  67. package/clients/catalogService/models/InfoResponse.ts +9 -0
  68. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +23 -0
  69. package/clients/catalogService/models/ItemAttachmentDto.ts +28 -0
  70. package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +14 -0
  71. package/clients/catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  72. package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +14 -0
  73. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +19 -0
  74. package/clients/catalogService/models/ItemAttributeCreateDto.ts +11 -0
  75. package/clients/catalogService/models/ItemAttributeDto.ts +12 -0
  76. package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +14 -0
  77. package/clients/catalogService/models/ItemAttributeDtoIReadOnlyCollectionEnvelope.ts +14 -0
  78. package/clients/catalogService/models/ItemAttributeOptionDto.ts +12 -0
  79. package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +14 -0
  80. package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +14 -0
  81. package/clients/catalogService/models/ItemAttributeUpdateDto.ts +9 -0
  82. package/clients/catalogService/models/ItemBrandCreateDto.ts +16 -0
  83. package/clients/catalogService/models/ItemBrandDto.ts +17 -0
  84. package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +14 -0
  85. package/clients/catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts +14 -0
  86. package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +14 -0
  87. package/clients/catalogService/models/ItemBrandUpdateDto.ts +13 -0
  88. package/clients/catalogService/models/ItemCategoryCreateDto.ts +14 -0
  89. package/clients/catalogService/models/ItemCategoryDto.ts +21 -0
  90. package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +14 -0
  91. package/clients/catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts +14 -0
  92. package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +14 -0
  93. package/clients/catalogService/models/ItemCategoryUpdateDto.ts +16 -0
  94. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +12 -0
  95. package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +14 -0
  96. package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +14 -0
  97. package/clients/catalogService/models/ItemImageDto.ts +29 -0
  98. package/clients/catalogService/models/ItemImageDtoEnvelope.ts +14 -0
  99. package/clients/catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts +14 -0
  100. package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +14 -0
  101. package/clients/catalogService/models/ItemImagesCreateDto.ts +28 -0
  102. package/clients/catalogService/models/ItemImagesUpdateDto.ts +25 -0
  103. package/clients/catalogService/models/ItemPricePolicyDto.ts +35 -0
  104. package/clients/catalogService/models/ItemPricePolicyDtoEnvelope.ts +14 -0
  105. package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +14 -0
  106. package/clients/catalogService/models/ItemQuestionCreateDto.ts +14 -0
  107. package/clients/catalogService/models/ItemQuestionDto.ts +15 -0
  108. package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +14 -0
  109. package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +14 -0
  110. package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +14 -0
  111. package/clients/catalogService/models/ItemQuestionUpdateDto.ts +12 -0
  112. package/clients/catalogService/models/ItemRefundPolicyDto.ts +34 -0
  113. package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +14 -0
  114. package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +14 -0
  115. package/clients/catalogService/models/ItemReturnPolicyDto.ts +34 -0
  116. package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +14 -0
  117. package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +14 -0
  118. package/clients/catalogService/models/ItemReviewCreateDto.ts +12 -0
  119. package/clients/catalogService/models/ItemReviewDto.ts +13 -0
  120. package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +14 -0
  121. package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +14 -0
  122. package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +14 -0
  123. package/clients/catalogService/models/ItemReviewUpdateDto.ts +9 -0
  124. package/clients/catalogService/models/ItemShippingPolicyDto.ts +35 -0
  125. package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +14 -0
  126. package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +14 -0
  127. package/clients/catalogService/models/ItemTagCreateDto.ts +11 -0
  128. package/clients/catalogService/models/ItemTagDto.ts +12 -0
  129. package/clients/catalogService/models/ItemTagDtoEnvelope.ts +14 -0
  130. package/clients/catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts +14 -0
  131. package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +14 -0
  132. package/clients/catalogService/models/ItemTagUpdateDto.ts +9 -0
  133. package/clients/catalogService/models/ItemTaxPolicyDto.ts +37 -0
  134. package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +14 -0
  135. package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +14 -0
  136. package/clients/catalogService/models/ItemTypeCreateDto.ts +16 -0
  137. package/clients/catalogService/models/ItemTypeDto.ts +17 -0
  138. package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +14 -0
  139. package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
  140. package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +14 -0
  141. package/clients/catalogService/models/ItemTypeUpdateDto.ts +12 -0
  142. package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +34 -0
  143. package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +14 -0
  144. package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +14 -0
  145. package/clients/catalogService/models/LoginRequest.ts +11 -0
  146. package/clients/catalogService/models/PricingRuleCreateDto.ts +32 -0
  147. package/clients/catalogService/models/PricingRuleDto.ts +32 -0
  148. package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +14 -0
  149. package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +14 -0
  150. package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +14 -0
  151. package/clients/catalogService/models/PricingRuleUpdateDto.ts +27 -0
  152. package/clients/catalogService/models/RefreshRequest.ts +8 -0
  153. package/clients/catalogService/models/RegisterRequest.ts +9 -0
  154. package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +8 -0
  155. package/clients/catalogService/models/ResetPasswordRequest.ts +10 -0
  156. package/clients/catalogService/models/StockItemCreateDto.ts +11 -0
  157. package/clients/catalogService/models/StockItemDto.ts +17 -0
  158. package/clients/catalogService/models/StockItemDtoEnvelope.ts +14 -0
  159. package/clients/catalogService/models/StockItemDtoListEnvelope.ts +14 -0
  160. package/clients/catalogService/models/StockItemUpdateDto.ts +9 -0
  161. package/clients/catalogService/models/TwoFactorRequest.ts +12 -0
  162. package/clients/catalogService/models/TwoFactorResponse.ts +12 -0
  163. package/clients/catalogService/services/FenixAllianceAbsWebService.ts +293 -0
  164. package/clients/catalogService/services/ItemAttachmentsService.ts +127 -0
  165. package/clients/catalogService/services/ItemAttributesService.ts +127 -0
  166. package/clients/catalogService/services/ItemBrandsService.ts +127 -0
  167. package/clients/catalogService/services/ItemCategoriesService.ts +127 -0
  168. package/clients/catalogService/services/ItemImagesService.ts +127 -0
  169. package/clients/catalogService/services/ItemQuestionsService.ts +127 -0
  170. package/clients/catalogService/services/ItemReviewsService.ts +127 -0
  171. package/clients/catalogService/services/ItemTagsService.ts +132 -0
  172. package/clients/catalogService/services/ItemTypesService.ts +127 -0
  173. package/clients/catalogService/services/PoliciesService.ts +117 -0
  174. package/clients/catalogService/services/PricingRulesService.ts +127 -0
  175. package/clients/catalogService/services/ProductsService.ts +1743 -0
  176. package/clients/contactService/core/ApiError.ts +25 -0
  177. package/clients/contactService/core/ApiRequestOptions.ts +17 -0
  178. package/clients/contactService/core/ApiResult.ts +11 -0
  179. package/clients/contactService/core/CancelablePromise.ts +131 -0
  180. package/clients/contactService/core/OpenAPI.ts +32 -0
  181. package/clients/contactService/core/request.ts +322 -0
  182. package/clients/contactService/index.ts +28 -0
  183. package/clients/contactService/models/AccessTokenResponse.ts +11 -0
  184. package/clients/contactService/models/ContactDto.ts +44 -0
  185. package/clients/contactService/models/ContactDtoEnvelope.ts +14 -0
  186. package/clients/contactService/models/ContactDtoListEnvelope.ts +14 -0
  187. package/clients/contactService/models/ErrorEnvelope.ts +12 -0
  188. package/clients/contactService/models/ForgotPasswordRequest.ts +8 -0
  189. package/clients/contactService/models/HttpValidationProblemDetails.ts +5 -0
  190. package/clients/contactService/models/InfoRequest.ts +10 -0
  191. package/clients/contactService/models/InfoResponse.ts +9 -0
  192. package/clients/contactService/models/LoginRequest.ts +11 -0
  193. package/clients/contactService/models/RefreshRequest.ts +8 -0
  194. package/clients/contactService/models/RegisterRequest.ts +9 -0
  195. package/clients/contactService/models/ResendConfirmationEmailRequest.ts +8 -0
  196. package/clients/contactService/models/ResetPasswordRequest.ts +10 -0
  197. package/clients/contactService/models/TwoFactorRequest.ts +12 -0
  198. package/clients/contactService/models/TwoFactorResponse.ts +12 -0
  199. package/clients/contactService/services/ContactsService.ts +140 -0
  200. package/clients/contactService/services/FenixAllianceAbsWebService.ts +293 -0
  201. package/clients/forexService/core/ApiError.ts +25 -0
  202. package/clients/forexService/core/ApiRequestOptions.ts +17 -0
  203. package/clients/forexService/core/ApiResult.ts +11 -0
  204. package/clients/forexService/core/CancelablePromise.ts +131 -0
  205. package/clients/forexService/core/OpenAPI.ts +32 -0
  206. package/clients/forexService/core/request.ts +322 -0
  207. package/clients/forexService/index.ts +30 -0
  208. package/clients/forexService/models/AccessTokenResponse.ts +11 -0
  209. package/clients/forexService/models/Currency.ts +9 -0
  210. package/clients/forexService/models/ForexRatesDto.ts +13 -0
  211. package/clients/forexService/models/ForexRatesDtoEnvelope.ts +14 -0
  212. package/clients/forexService/models/ForgotPasswordRequest.ts +8 -0
  213. package/clients/forexService/models/HttpValidationProblemDetails.ts +5 -0
  214. package/clients/forexService/models/InfoRequest.ts +10 -0
  215. package/clients/forexService/models/InfoResponse.ts +9 -0
  216. package/clients/forexService/models/LoginRequest.ts +11 -0
  217. package/clients/forexService/models/Money.ts +10 -0
  218. package/clients/forexService/models/MoneyEnvelope.ts +14 -0
  219. package/clients/forexService/models/RefreshRequest.ts +8 -0
  220. package/clients/forexService/models/RegisterRequest.ts +9 -0
  221. package/clients/forexService/models/ResendConfirmationEmailRequest.ts +8 -0
  222. package/clients/forexService/models/ResetPasswordRequest.ts +10 -0
  223. package/clients/forexService/models/TwoFactorRequest.ts +12 -0
  224. package/clients/forexService/models/TwoFactorResponse.ts +12 -0
  225. package/clients/forexService/services/ExchangeService.ts +57 -0
  226. package/clients/forexService/services/FenixAllianceAbsWebService.ts +293 -0
  227. package/clients/forexService/services/RatesService.ts +36 -0
  228. package/clients/holderService/core/ApiError.ts +25 -0
  229. package/clients/holderService/core/ApiRequestOptions.ts +17 -0
  230. package/clients/holderService/core/ApiResult.ts +11 -0
  231. package/clients/holderService/core/CancelablePromise.ts +131 -0
  232. package/clients/holderService/core/OpenAPI.ts +32 -0
  233. package/clients/holderService/core/request.ts +322 -0
  234. package/clients/holderService/index.ts +31 -0
  235. package/clients/holderService/models/AccessTokenResponse.ts +11 -0
  236. package/clients/holderService/models/AccountHolderCreateDto.ts +34 -0
  237. package/clients/holderService/models/AccountHolderDto.ts +73 -0
  238. package/clients/holderService/models/AccountHolderDtoEnvelope.ts +14 -0
  239. package/clients/holderService/models/BusinessDto.ts +53 -0
  240. package/clients/holderService/models/BusinessEnrollmentDto.ts +19 -0
  241. package/clients/holderService/models/ErrorEnvelope.ts +12 -0
  242. package/clients/holderService/models/FollowRecordDto.ts +12 -0
  243. package/clients/holderService/models/ForgotPasswordRequest.ts +8 -0
  244. package/clients/holderService/models/HttpValidationProblemDetails.ts +5 -0
  245. package/clients/holderService/models/InfoRequest.ts +10 -0
  246. package/clients/holderService/models/InfoResponse.ts +9 -0
  247. package/clients/holderService/models/LoginRequest.ts +11 -0
  248. package/clients/holderService/models/RefreshRequest.ts +8 -0
  249. package/clients/holderService/models/RegisterRequest.ts +9 -0
  250. package/clients/holderService/models/ResendConfirmationEmailRequest.ts +8 -0
  251. package/clients/holderService/models/ResetPasswordRequest.ts +10 -0
  252. package/clients/holderService/models/TwoFactorRequest.ts +12 -0
  253. package/clients/holderService/models/TwoFactorResponse.ts +12 -0
  254. package/clients/holderService/services/FenixAllianceAbsWebService.ts +293 -0
  255. package/clients/holderService/services/HolderService.ts +165 -0
  256. package/clients/identityService/core/ApiError.ts +25 -0
  257. package/clients/identityService/core/ApiRequestOptions.ts +17 -0
  258. package/clients/identityService/core/ApiResult.ts +11 -0
  259. package/clients/identityService/core/CancelablePromise.ts +131 -0
  260. package/clients/identityService/core/OpenAPI.ts +32 -0
  261. package/clients/identityService/core/request.ts +322 -0
  262. package/clients/identityService/index.ts +53 -0
  263. package/clients/identityService/models/AccessTokenResponse.ts +11 -0
  264. package/clients/identityService/models/AccountHolderCreateDto.ts +34 -0
  265. package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +14 -0
  266. package/clients/identityService/models/AccountHolderDto.ts +73 -0
  267. package/clients/identityService/models/Actor.ts +12 -0
  268. package/clients/identityService/models/ApiResponse.ts +22 -0
  269. package/clients/identityService/models/ApiResponseEnvelope.ts +14 -0
  270. package/clients/identityService/models/BusinessDto.ts +53 -0
  271. package/clients/identityService/models/ClientApplication.ts +16 -0
  272. package/clients/identityService/models/Error.ts +10 -0
  273. package/clients/identityService/models/ErrorEnvelope.ts +12 -0
  274. package/clients/identityService/models/ForgotPasswordRequest.ts +8 -0
  275. package/clients/identityService/models/HttpValidationProblemDetails.ts +5 -0
  276. package/clients/identityService/models/IPLookupDto.ts +10 -0
  277. package/clients/identityService/models/InfoRequest.ts +10 -0
  278. package/clients/identityService/models/InfoResponse.ts +9 -0
  279. package/clients/identityService/models/JsonWebKey.ts +13 -0
  280. package/clients/identityService/models/JsonWebKeySet.ts +9 -0
  281. package/clients/identityService/models/JsonWebKeySetEnvelope.ts +14 -0
  282. package/clients/identityService/models/JsonWebToken.ts +15 -0
  283. package/clients/identityService/models/JsonWebTokenEnvelope.ts +14 -0
  284. package/clients/identityService/models/JsonWebTokenHeader.ts +11 -0
  285. package/clients/identityService/models/JsonWebTokenPayload.ts +17 -0
  286. package/clients/identityService/models/LoginRequest.ts +11 -0
  287. package/clients/identityService/models/OAuthTokenRequest.ts +12 -0
  288. package/clients/identityService/models/OpenIdConfiguration.ts +19 -0
  289. package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +14 -0
  290. package/clients/identityService/models/RefreshRequest.ts +8 -0
  291. package/clients/identityService/models/RegisterRequest.ts +9 -0
  292. package/clients/identityService/models/ResendConfirmationEmailRequest.ts +8 -0
  293. package/clients/identityService/models/ResetPasswordRequest.ts +10 -0
  294. package/clients/identityService/models/ResponsePagination.ts +13 -0
  295. package/clients/identityService/models/ResponseStatus.ts +12 -0
  296. package/clients/identityService/models/SigninModel.ts +9 -0
  297. package/clients/identityService/models/StringListEnvelope.ts +13 -0
  298. package/clients/identityService/models/TwoFactorRequest.ts +12 -0
  299. package/clients/identityService/models/TwoFactorResponse.ts +12 -0
  300. package/clients/identityService/services/ApplicationsService.ts +107 -0
  301. package/clients/identityService/services/CheckerService.ts +19 -0
  302. package/clients/identityService/services/FenixAllianceAbsWebService.ts +293 -0
  303. package/clients/identityService/services/OAuthService.ts +147 -0
  304. package/clients/identityService/services/ResourceService.ts +19 -0
  305. package/clients/identityService/services/UserInfoService.ts +29 -0
  306. package/clients/inventoryService/core/ApiError.ts +25 -0
  307. package/clients/inventoryService/core/ApiRequestOptions.ts +17 -0
  308. package/clients/inventoryService/core/ApiResult.ts +11 -0
  309. package/clients/inventoryService/core/CancelablePromise.ts +131 -0
  310. package/clients/inventoryService/core/OpenAPI.ts +32 -0
  311. package/clients/inventoryService/core/request.ts +322 -0
  312. package/clients/inventoryService/index.ts +24 -0
  313. package/clients/inventoryService/models/AccessTokenResponse.ts +11 -0
  314. package/clients/inventoryService/models/ForgotPasswordRequest.ts +8 -0
  315. package/clients/inventoryService/models/HttpValidationProblemDetails.ts +5 -0
  316. package/clients/inventoryService/models/InfoRequest.ts +10 -0
  317. package/clients/inventoryService/models/InfoResponse.ts +9 -0
  318. package/clients/inventoryService/models/LoginRequest.ts +11 -0
  319. package/clients/inventoryService/models/RefreshRequest.ts +8 -0
  320. package/clients/inventoryService/models/RegisterRequest.ts +9 -0
  321. package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +8 -0
  322. package/clients/inventoryService/models/ResetPasswordRequest.ts +10 -0
  323. package/clients/inventoryService/models/TwoFactorRequest.ts +12 -0
  324. package/clients/inventoryService/models/TwoFactorResponse.ts +12 -0
  325. package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +293 -0
  326. package/clients/inventoryService/services/InventoryService.ts +25 -0
  327. package/clients/invoicingService/core/ApiError.ts +25 -0
  328. package/clients/invoicingService/core/ApiRequestOptions.ts +17 -0
  329. package/clients/invoicingService/core/ApiResult.ts +11 -0
  330. package/clients/invoicingService/core/CancelablePromise.ts +131 -0
  331. package/clients/invoicingService/core/OpenAPI.ts +32 -0
  332. package/clients/invoicingService/core/request.ts +322 -0
  333. package/clients/invoicingService/index.ts +28 -0
  334. package/clients/invoicingService/models/AccessTokenResponse.ts +11 -0
  335. package/clients/invoicingService/models/ErrorEnvelope.ts +12 -0
  336. package/clients/invoicingService/models/ForgotPasswordRequest.ts +8 -0
  337. package/clients/invoicingService/models/HttpValidationProblemDetails.ts +5 -0
  338. package/clients/invoicingService/models/InfoRequest.ts +10 -0
  339. package/clients/invoicingService/models/InfoResponse.ts +9 -0
  340. package/clients/invoicingService/models/InvoiceDto.ts +13 -0
  341. package/clients/invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts +14 -0
  342. package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +14 -0
  343. package/clients/invoicingService/models/LoginRequest.ts +11 -0
  344. package/clients/invoicingService/models/RefreshRequest.ts +8 -0
  345. package/clients/invoicingService/models/RegisterRequest.ts +9 -0
  346. package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +8 -0
  347. package/clients/invoicingService/models/ResetPasswordRequest.ts +10 -0
  348. package/clients/invoicingService/models/TwoFactorRequest.ts +12 -0
  349. package/clients/invoicingService/models/TwoFactorResponse.ts +12 -0
  350. package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +293 -0
  351. package/clients/invoicingService/services/InvoicesService.ts +63 -0
  352. package/clients/pricingService/core/ApiError.ts +25 -0
  353. package/clients/pricingService/core/ApiRequestOptions.ts +17 -0
  354. package/clients/pricingService/core/ApiResult.ts +11 -0
  355. package/clients/pricingService/core/CancelablePromise.ts +131 -0
  356. package/clients/pricingService/core/OpenAPI.ts +32 -0
  357. package/clients/pricingService/core/request.ts +322 -0
  358. package/clients/pricingService/index.ts +29 -0
  359. package/clients/pricingService/models/AccessTokenResponse.ts +11 -0
  360. package/clients/pricingService/models/Currency.ts +9 -0
  361. package/clients/pricingService/models/ErrorEnvelope.ts +12 -0
  362. package/clients/pricingService/models/ForgotPasswordRequest.ts +8 -0
  363. package/clients/pricingService/models/HttpValidationProblemDetails.ts +5 -0
  364. package/clients/pricingService/models/InfoRequest.ts +10 -0
  365. package/clients/pricingService/models/InfoResponse.ts +9 -0
  366. package/clients/pricingService/models/LoginRequest.ts +11 -0
  367. package/clients/pricingService/models/Money.ts +10 -0
  368. package/clients/pricingService/models/MoneyEnvelope.ts +14 -0
  369. package/clients/pricingService/models/RefreshRequest.ts +8 -0
  370. package/clients/pricingService/models/RegisterRequest.ts +9 -0
  371. package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +8 -0
  372. package/clients/pricingService/models/ResetPasswordRequest.ts +10 -0
  373. package/clients/pricingService/models/TwoFactorRequest.ts +12 -0
  374. package/clients/pricingService/models/TwoFactorResponse.ts +12 -0
  375. package/clients/pricingService/services/FenixAllianceAbsWebService.ts +293 -0
  376. package/clients/pricingService/services/PriceListsService.ts +34 -0
  377. package/clients/pricingService/services/PricesService.ts +82 -0
  378. package/clients/tenantService/core/ApiError.ts +25 -0
  379. package/clients/tenantService/core/ApiRequestOptions.ts +17 -0
  380. package/clients/tenantService/core/ApiResult.ts +11 -0
  381. package/clients/tenantService/core/CancelablePromise.ts +131 -0
  382. package/clients/tenantService/core/OpenAPI.ts +32 -0
  383. package/clients/tenantService/core/request.ts +322 -0
  384. package/clients/tenantService/index.ts +62 -0
  385. package/clients/tenantService/models/AccessTokenResponse.ts +11 -0
  386. package/clients/tenantService/models/AccountHolderCreateDto.ts +34 -0
  387. package/clients/tenantService/models/AggregateException.ts +18 -0
  388. package/clients/tenantService/models/Assembly.ts +46 -0
  389. package/clients/tenantService/models/BusinessCreateDto.ts +24 -0
  390. package/clients/tenantService/models/BusinessDto.ts +53 -0
  391. package/clients/tenantService/models/BusinessEnrollmentDto.ts +19 -0
  392. package/clients/tenantService/models/BusinessEnrollmentDtoEnvelope.ts +14 -0
  393. package/clients/tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts +14 -0
  394. package/clients/tenantService/models/ConstructorInfo.ts +103 -0
  395. package/clients/tenantService/models/CustomAttributeData.ts +15 -0
  396. package/clients/tenantService/models/CustomAttributeNamedArgument.ts +13 -0
  397. package/clients/tenantService/models/CustomAttributeTypedArgument.ts +10 -0
  398. package/clients/tenantService/models/Error.ts +10 -0
  399. package/clients/tenantService/models/EventInfo.ts +44 -0
  400. package/clients/tenantService/models/Exception.ts +16 -0
  401. package/clients/tenantService/models/FieldInfo.ts +74 -0
  402. package/clients/tenantService/models/ForgotPasswordRequest.ts +8 -0
  403. package/clients/tenantService/models/HttpValidationProblemDetails.ts +5 -0
  404. package/clients/tenantService/models/ICustomAttributeProvider.ts +5 -0
  405. package/clients/tenantService/models/InfoRequest.ts +10 -0
  406. package/clients/tenantService/models/InfoResponse.ts +9 -0
  407. package/clients/tenantService/models/IntPtr.ts +5 -0
  408. package/clients/tenantService/models/LoginRequest.ts +11 -0
  409. package/clients/tenantService/models/MemberInfo.ts +31 -0
  410. package/clients/tenantService/models/MethodBase.ts +103 -0
  411. package/clients/tenantService/models/MethodInfo.ts +108 -0
  412. package/clients/tenantService/models/Module.ts +19 -0
  413. package/clients/tenantService/models/ModuleHandle.ts +8 -0
  414. package/clients/tenantService/models/NotificationDto.ts +16 -0
  415. package/clients/tenantService/models/NotificationDtoListEnvelope.ts +14 -0
  416. package/clients/tenantService/models/ParameterInfo.ts +40 -0
  417. package/clients/tenantService/models/PropertyInfo.ts +49 -0
  418. package/clients/tenantService/models/RefreshRequest.ts +8 -0
  419. package/clients/tenantService/models/RegisterRequest.ts +9 -0
  420. package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +8 -0
  421. package/clients/tenantService/models/ResetPasswordRequest.ts +10 -0
  422. package/clients/tenantService/models/ResponseStatus.ts +12 -0
  423. package/clients/tenantService/models/RuntimeFieldHandle.ts +9 -0
  424. package/clients/tenantService/models/RuntimeMethodHandle.ts +9 -0
  425. package/clients/tenantService/models/RuntimeTypeHandle.ts +9 -0
  426. package/clients/tenantService/models/StringListEnvelope.ts +13 -0
  427. package/clients/tenantService/models/StructLayoutAttribute.ts +16 -0
  428. package/clients/tenantService/models/TwoFactorRequest.ts +12 -0
  429. package/clients/tenantService/models/TwoFactorResponse.ts +12 -0
  430. package/clients/tenantService/models/Type.ts +141 -0
  431. package/clients/tenantService/models/TypeInfo.ts +156 -0
  432. package/clients/tenantService/models/WalletDto.ts +21 -0
  433. package/clients/tenantService/models/WalletDtoTask.ts +40 -0
  434. package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +14 -0
  435. package/clients/tenantService/services/FenixAllianceAbsWebService.ts +293 -0
  436. package/clients/tenantService/services/TenantsService.ts +354 -0
  437. package/package.json +38 -0
  438. package/schemas/cartService/schema.s.ts +1560 -0
  439. package/schemas/catalogService/schema.s.ts +6109 -0
  440. package/schemas/contactService/schema.s.ts +674 -0
  441. package/schemas/forexService/schema.s.ts +526 -0
  442. package/schemas/holderService/schema.s.ts +831 -0
  443. package/schemas/identityService/schema.s.ts +1119 -0
  444. package/schemas/inventoryService/schema.s.ts +425 -0
  445. package/schemas/invoicingService/schema.s.ts +521 -0
  446. package/schemas/pricingService/schema.s.ts +549 -0
  447. package/schemas/tenantService/schema.s.ts +1606 -0
@@ -0,0 +1,1560 @@
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+
6
+
7
+ export interface paths {
8
+ "/api/v2/CartService/Carts/{cartID}": {
9
+ get: {
10
+ parameters: {
11
+ query?: {
12
+ "api-version"?: string;
13
+ };
14
+ path: {
15
+ cartId: string;
16
+ };
17
+ };
18
+ responses: {
19
+ /** @description Success */
20
+ 200: {
21
+ content: {
22
+ "application/json": components["schemas"]["CartDto"];
23
+ "application/xml": components["schemas"]["CartDto"];
24
+ };
25
+ };
26
+ /** @description Unauthorized */
27
+ 401: {
28
+ content: {
29
+ "application/json": components["schemas"]["ResponseStatus"];
30
+ "application/xml": components["schemas"]["ResponseStatus"];
31
+ };
32
+ };
33
+ };
34
+ };
35
+ };
36
+ "/api/v2/CartService/Carts/ActingCart": {
37
+ get: {
38
+ parameters: {
39
+ query?: {
40
+ "api-version"?: string;
41
+ };
42
+ };
43
+ responses: {
44
+ /** @description Success */
45
+ 200: {
46
+ content: {
47
+ "application/json": components["schemas"]["CartDtoEnvelope"];
48
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
49
+ };
50
+ };
51
+ };
52
+ };
53
+ };
54
+ "/api/v2/CartService/Carts/GuestCart": {
55
+ get: {
56
+ parameters: {
57
+ query?: {
58
+ "api-version"?: string;
59
+ };
60
+ };
61
+ responses: {
62
+ /** @description Success */
63
+ 200: {
64
+ content: {
65
+ "application/json": components["schemas"]["CartDtoEnvelope"];
66
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
67
+ };
68
+ };
69
+ /** @description Unauthorized */
70
+ 401: {
71
+ content: {
72
+ "application/json": components["schemas"]["ErrorEnvelope"];
73
+ "application/xml": components["schemas"]["ErrorEnvelope"];
74
+ };
75
+ };
76
+ /** @description Forbidden */
77
+ 403: {
78
+ content: {
79
+ "application/json": components["schemas"]["ErrorEnvelope"];
80
+ "application/xml": components["schemas"]["ErrorEnvelope"];
81
+ };
82
+ };
83
+ };
84
+ };
85
+ };
86
+ "/api/v2/CartService/Carts/UserCart": {
87
+ get: {
88
+ parameters: {
89
+ query?: {
90
+ "api-version"?: string;
91
+ };
92
+ };
93
+ responses: {
94
+ /** @description Success */
95
+ 200: {
96
+ content: {
97
+ "application/json": components["schemas"]["CartDtoEnvelope"];
98
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
99
+ };
100
+ };
101
+ /** @description Unauthorized */
102
+ 401: {
103
+ content: {
104
+ "application/json": components["schemas"]["ErrorEnvelope"];
105
+ "application/xml": components["schemas"]["ErrorEnvelope"];
106
+ };
107
+ };
108
+ };
109
+ };
110
+ };
111
+ "/api/v2/CartService/Carts/BusinessCart/{businessId}": {
112
+ get: {
113
+ parameters: {
114
+ query?: {
115
+ "api-version"?: string;
116
+ };
117
+ path: {
118
+ businessId: string;
119
+ };
120
+ };
121
+ responses: {
122
+ /** @description Success */
123
+ 200: {
124
+ content: {
125
+ "application/json": components["schemas"]["CartDtoEnvelope"];
126
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
127
+ };
128
+ };
129
+ /** @description Unauthorized */
130
+ 401: {
131
+ content: {
132
+ "application/json": components["schemas"]["ErrorEnvelope"];
133
+ "application/xml": components["schemas"]["ErrorEnvelope"];
134
+ };
135
+ };
136
+ /** @description Forbidden */
137
+ 403: {
138
+ content: {
139
+ "application/json": components["schemas"]["ErrorEnvelope"];
140
+ "application/xml": components["schemas"]["ErrorEnvelope"];
141
+ };
142
+ };
143
+ };
144
+ };
145
+ };
146
+ "/api/v2/CartService/Carts/SetCurrency": {
147
+ post: {
148
+ parameters: {
149
+ query?: {
150
+ "api-version"?: string;
151
+ };
152
+ };
153
+ requestBody?: {
154
+ content: {
155
+ "application/json": components["schemas"]["CurrencySwitchRequest"];
156
+ "application/xml": components["schemas"]["CurrencySwitchRequest"];
157
+ };
158
+ };
159
+ responses: {
160
+ /** @description Success */
161
+ 200: {
162
+ content: never;
163
+ };
164
+ };
165
+ };
166
+ };
167
+ "/api/v2/CartService/Compare/{cartId}": {
168
+ get: {
169
+ parameters: {
170
+ query?: {
171
+ "api-version"?: string;
172
+ };
173
+ path: {
174
+ cartId: string;
175
+ };
176
+ };
177
+ responses: {
178
+ /** @description Success */
179
+ 200: {
180
+ content: {
181
+ "application/json": components["schemas"]["ItemToCompareCartRecordDtoIReadOnlyListEnvelope"];
182
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDtoIReadOnlyListEnvelope"];
183
+ };
184
+ };
185
+ /** @description Unauthorized */
186
+ 401: {
187
+ content: {
188
+ "application/json": components["schemas"]["Envelope"];
189
+ "application/xml": components["schemas"]["Envelope"];
190
+ };
191
+ };
192
+ };
193
+ };
194
+ };
195
+ "/api/v2/CartService/Compare/{recordId}/Details": {
196
+ get: {
197
+ parameters: {
198
+ query?: {
199
+ "api-version"?: string;
200
+ };
201
+ path: {
202
+ recordId: string;
203
+ };
204
+ };
205
+ responses: {
206
+ /** @description Success */
207
+ 200: {
208
+ content: {
209
+ "application/json": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
210
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
211
+ };
212
+ };
213
+ /** @description Unauthorized */
214
+ 401: {
215
+ content: {
216
+ "application/json": components["schemas"]["Envelope"];
217
+ "application/xml": components["schemas"]["Envelope"];
218
+ };
219
+ };
220
+ };
221
+ };
222
+ };
223
+ "/api/v2/CartService/Compare": {
224
+ post: {
225
+ parameters: {
226
+ query?: {
227
+ "api-version"?: string;
228
+ };
229
+ };
230
+ requestBody?: {
231
+ content: {
232
+ "application/json": components["schemas"]["AddProductToCompareRequest"];
233
+ "application/xml": components["schemas"]["AddProductToCompareRequest"];
234
+ };
235
+ };
236
+ responses: {
237
+ /** @description Success */
238
+ 200: {
239
+ content: {
240
+ "application/json": components["schemas"]["ItemCartRecordDto"];
241
+ "application/xml": components["schemas"]["ItemCartRecordDto"];
242
+ };
243
+ };
244
+ /** @description Unauthorized */
245
+ 401: {
246
+ content: {
247
+ "application/json": components["schemas"]["Envelope"];
248
+ "application/xml": components["schemas"]["Envelope"];
249
+ };
250
+ };
251
+ };
252
+ };
253
+ };
254
+ "/api/v2/CartService/Compare/{recordId}": {
255
+ delete: {
256
+ parameters: {
257
+ query?: {
258
+ "api-version"?: string;
259
+ };
260
+ path: {
261
+ recordId: string;
262
+ };
263
+ };
264
+ responses: {
265
+ /** @description Success */
266
+ 200: {
267
+ content: {
268
+ "application/json": components["schemas"]["ItemToCompareCartRecordDto"];
269
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDto"];
270
+ };
271
+ };
272
+ /** @description Unauthorized */
273
+ 401: {
274
+ content: {
275
+ "application/json": components["schemas"]["Envelope"];
276
+ "application/xml": components["schemas"]["Envelope"];
277
+ };
278
+ };
279
+ };
280
+ };
281
+ };
282
+ "/version": {
283
+ get: {
284
+ responses: {
285
+ /** @description Success */
286
+ 200: {
287
+ content: never;
288
+ };
289
+ };
290
+ };
291
+ };
292
+ "/health": {
293
+ get: {
294
+ responses: {
295
+ /** @description Success */
296
+ 200: {
297
+ content: never;
298
+ };
299
+ };
300
+ };
301
+ };
302
+ "/hello": {
303
+ get: {
304
+ responses: {
305
+ /** @description Success */
306
+ 200: {
307
+ content: never;
308
+ };
309
+ };
310
+ };
311
+ };
312
+ "/register": {
313
+ post: {
314
+ requestBody?: {
315
+ content: {
316
+ "application/json": components["schemas"]["RegisterRequest"];
317
+ };
318
+ };
319
+ responses: {
320
+ /** @description Success */
321
+ 200: {
322
+ content: never;
323
+ };
324
+ /** @description Bad Request */
325
+ 400: {
326
+ content: {
327
+ "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
328
+ };
329
+ };
330
+ };
331
+ };
332
+ };
333
+ "/login": {
334
+ post: {
335
+ parameters: {
336
+ query?: {
337
+ useCookies?: boolean;
338
+ useSessionCookies?: boolean;
339
+ };
340
+ };
341
+ requestBody?: {
342
+ content: {
343
+ "application/json": components["schemas"]["LoginRequest"];
344
+ };
345
+ };
346
+ responses: {
347
+ /** @description Success */
348
+ 200: {
349
+ content: {
350
+ "application/json": components["schemas"]["AccessTokenResponse"];
351
+ };
352
+ };
353
+ };
354
+ };
355
+ };
356
+ "/refresh": {
357
+ post: {
358
+ requestBody?: {
359
+ content: {
360
+ "application/json": components["schemas"]["RefreshRequest"];
361
+ };
362
+ };
363
+ responses: {
364
+ /** @description Success */
365
+ 200: {
366
+ content: {
367
+ "application/json": components["schemas"]["AccessTokenResponse"];
368
+ };
369
+ };
370
+ };
371
+ };
372
+ };
373
+ "/confirmEmail": {
374
+ get: operations["MapIdentityApi-/confirmEmail"];
375
+ };
376
+ "/resendConfirmationEmail": {
377
+ post: {
378
+ requestBody?: {
379
+ content: {
380
+ "application/json": components["schemas"]["ResendConfirmationEmailRequest"];
381
+ };
382
+ };
383
+ responses: {
384
+ /** @description Success */
385
+ 200: {
386
+ content: never;
387
+ };
388
+ };
389
+ };
390
+ };
391
+ "/forgotPassword": {
392
+ post: {
393
+ requestBody?: {
394
+ content: {
395
+ "application/json": components["schemas"]["ForgotPasswordRequest"];
396
+ };
397
+ };
398
+ responses: {
399
+ /** @description Success */
400
+ 200: {
401
+ content: never;
402
+ };
403
+ /** @description Bad Request */
404
+ 400: {
405
+ content: {
406
+ "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
407
+ };
408
+ };
409
+ };
410
+ };
411
+ };
412
+ "/resetPassword": {
413
+ post: {
414
+ requestBody?: {
415
+ content: {
416
+ "application/json": components["schemas"]["ResetPasswordRequest"];
417
+ };
418
+ };
419
+ responses: {
420
+ /** @description Success */
421
+ 200: {
422
+ content: never;
423
+ };
424
+ /** @description Bad Request */
425
+ 400: {
426
+ content: {
427
+ "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
428
+ };
429
+ };
430
+ };
431
+ };
432
+ };
433
+ "/manage/2fa": {
434
+ post: {
435
+ requestBody?: {
436
+ content: {
437
+ "application/json": components["schemas"]["TwoFactorRequest"];
438
+ };
439
+ };
440
+ responses: {
441
+ /** @description Success */
442
+ 200: {
443
+ content: {
444
+ "application/json": components["schemas"]["TwoFactorResponse"];
445
+ };
446
+ };
447
+ /** @description Bad Request */
448
+ 400: {
449
+ content: {
450
+ "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
451
+ };
452
+ };
453
+ /** @description Not Found */
454
+ 404: {
455
+ content: never;
456
+ };
457
+ };
458
+ };
459
+ };
460
+ "/manage/info": {
461
+ get: {
462
+ responses: {
463
+ /** @description Success */
464
+ 200: {
465
+ content: {
466
+ "application/json": components["schemas"]["InfoResponse"];
467
+ };
468
+ };
469
+ /** @description Bad Request */
470
+ 400: {
471
+ content: {
472
+ "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
473
+ };
474
+ };
475
+ /** @description Not Found */
476
+ 404: {
477
+ content: never;
478
+ };
479
+ };
480
+ };
481
+ post: {
482
+ requestBody?: {
483
+ content: {
484
+ "application/json": components["schemas"]["InfoRequest"];
485
+ };
486
+ };
487
+ responses: {
488
+ /** @description Success */
489
+ 200: {
490
+ content: {
491
+ "application/json": components["schemas"]["InfoResponse"];
492
+ };
493
+ };
494
+ /** @description Bad Request */
495
+ 400: {
496
+ content: {
497
+ "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
498
+ };
499
+ };
500
+ /** @description Not Found */
501
+ 404: {
502
+ content: never;
503
+ };
504
+ };
505
+ };
506
+ };
507
+ "/Account/PerformExternalLogin": {
508
+ post: {
509
+ requestBody?: {
510
+ content: {
511
+ "multipart/form-data": {
512
+ provider: string;
513
+ returnUrl: string;
514
+ };
515
+ "application/x-www-form-urlencoded": {
516
+ provider: string;
517
+ returnUrl: string;
518
+ };
519
+ };
520
+ };
521
+ responses: {
522
+ /** @description Success */
523
+ 200: {
524
+ content: never;
525
+ };
526
+ };
527
+ };
528
+ };
529
+ "/Account/Logout": {
530
+ post: {
531
+ requestBody?: {
532
+ content: {
533
+ "multipart/form-data": {
534
+ returnUrl: string;
535
+ };
536
+ "application/x-www-form-urlencoded": {
537
+ returnUrl: string;
538
+ };
539
+ };
540
+ };
541
+ responses: {
542
+ /** @description Success */
543
+ 200: {
544
+ content: never;
545
+ };
546
+ };
547
+ };
548
+ };
549
+ "/Account/Manage/LinkExternalLogin": {
550
+ post: {
551
+ requestBody?: {
552
+ content: {
553
+ "multipart/form-data": {
554
+ provider: string;
555
+ };
556
+ "application/x-www-form-urlencoded": {
557
+ provider: string;
558
+ };
559
+ };
560
+ };
561
+ responses: {
562
+ /** @description Success */
563
+ 200: {
564
+ content: never;
565
+ };
566
+ };
567
+ };
568
+ };
569
+ "/Account/Manage/DownloadPersonalData": {
570
+ post: {
571
+ responses: {
572
+ /** @description Success */
573
+ 200: {
574
+ content: never;
575
+ };
576
+ };
577
+ };
578
+ };
579
+ "/api/v2/CartService/Records/AddItem": {
580
+ post: {
581
+ parameters: {
582
+ query?: {
583
+ cartId?: string;
584
+ itemId?: string;
585
+ quantity?: number;
586
+ "api-version"?: string;
587
+ };
588
+ };
589
+ responses: {
590
+ /** @description Success */
591
+ 200: {
592
+ content: never;
593
+ };
594
+ };
595
+ };
596
+ };
597
+ "/api/v2/CartService/Records/{cartID}": {
598
+ get: {
599
+ parameters: {
600
+ query?: {
601
+ "api-version"?: string;
602
+ };
603
+ path: {
604
+ cartId: string;
605
+ };
606
+ };
607
+ responses: {
608
+ /** @description Success */
609
+ 200: {
610
+ content: {
611
+ "application/json": components["schemas"]["ProductCartRecordDto"][];
612
+ "application/xml": components["schemas"]["ProductCartRecordDto"][];
613
+ };
614
+ };
615
+ /** @description Unauthorized */
616
+ 401: {
617
+ content: {
618
+ "application/json": components["schemas"]["ResponseStatus"];
619
+ "application/xml": components["schemas"]["ResponseStatus"];
620
+ };
621
+ };
622
+ };
623
+ };
624
+ };
625
+ "/api/v2/CartService/Records": {
626
+ post: {
627
+ parameters: {
628
+ query?: {
629
+ "api-version"?: string;
630
+ };
631
+ };
632
+ requestBody?: {
633
+ content: {
634
+ "application/json": components["schemas"]["ItemCartRecordCreateDto"];
635
+ "application/xml": components["schemas"]["ItemCartRecordCreateDto"];
636
+ };
637
+ };
638
+ responses: {
639
+ /** @description Success */
640
+ 200: {
641
+ content: {
642
+ "application/json": components["schemas"]["ItemCartRecordDto"];
643
+ "application/xml": components["schemas"]["ItemCartRecordDto"];
644
+ };
645
+ };
646
+ /** @description Unauthorized */
647
+ 401: {
648
+ content: {
649
+ "application/json": components["schemas"]["Envelope"];
650
+ "application/xml": components["schemas"]["Envelope"];
651
+ };
652
+ };
653
+ /** @description Not Found */
654
+ 404: {
655
+ content: {
656
+ "application/json": components["schemas"]["Envelope"];
657
+ "application/xml": components["schemas"]["Envelope"];
658
+ };
659
+ };
660
+ };
661
+ };
662
+ delete: {
663
+ parameters: {
664
+ query?: {
665
+ cartId?: string;
666
+ productId?: string;
667
+ "api-version"?: string;
668
+ };
669
+ };
670
+ responses: {
671
+ /** @description Success */
672
+ 200: {
673
+ content: {
674
+ "application/json": components["schemas"]["Envelope"];
675
+ "application/xml": components["schemas"]["Envelope"];
676
+ };
677
+ };
678
+ /** @description Unauthorized */
679
+ 401: {
680
+ content: {
681
+ "application/json": components["schemas"]["Envelope"];
682
+ "application/xml": components["schemas"]["Envelope"];
683
+ };
684
+ };
685
+ /** @description Not Found */
686
+ 404: {
687
+ content: {
688
+ "application/json": components["schemas"]["Envelope"];
689
+ "application/xml": components["schemas"]["Envelope"];
690
+ };
691
+ };
692
+ };
693
+ };
694
+ };
695
+ "/api/v2/CartService/Records/IsInCart": {
696
+ get: {
697
+ parameters: {
698
+ query: {
699
+ itemID: string;
700
+ cartID: string;
701
+ "api-version"?: string;
702
+ };
703
+ };
704
+ responses: {
705
+ /** @description Success */
706
+ 200: {
707
+ content: {
708
+ "application/json": components["schemas"]["BooleanEnvelope"];
709
+ "application/xml": components["schemas"]["BooleanEnvelope"];
710
+ };
711
+ };
712
+ /** @description Unauthorized */
713
+ 401: {
714
+ content: {
715
+ "application/json": components["schemas"]["Envelope"];
716
+ "application/xml": components["schemas"]["Envelope"];
717
+ };
718
+ };
719
+ /** @description Not Found */
720
+ 404: {
721
+ content: {
722
+ "application/json": components["schemas"]["Envelope"];
723
+ "application/xml": components["schemas"]["Envelope"];
724
+ };
725
+ };
726
+ };
727
+ };
728
+ };
729
+ "/api/v2/CartService/Records/ClearCart": {
730
+ post: {
731
+ parameters: {
732
+ query: {
733
+ cartID: string;
734
+ "api-version"?: string;
735
+ };
736
+ };
737
+ responses: {
738
+ /** @description Success */
739
+ 200: {
740
+ content: {
741
+ "application/json": components["schemas"]["BooleanEnvelope"];
742
+ "application/xml": components["schemas"]["BooleanEnvelope"];
743
+ };
744
+ };
745
+ /** @description Unauthorized */
746
+ 401: {
747
+ content: {
748
+ "application/json": components["schemas"]["Envelope"];
749
+ "application/xml": components["schemas"]["Envelope"];
750
+ };
751
+ };
752
+ /** @description Not Found */
753
+ 404: {
754
+ content: {
755
+ "application/json": components["schemas"]["Envelope"];
756
+ "application/xml": components["schemas"]["Envelope"];
757
+ };
758
+ };
759
+ };
760
+ };
761
+ };
762
+ "/api/v2/CartService/Records/{recordId}/Details": {
763
+ get: {
764
+ parameters: {
765
+ query?: {
766
+ "api-version"?: string;
767
+ };
768
+ path: {
769
+ recordId: string;
770
+ };
771
+ };
772
+ responses: {
773
+ /** @description Success */
774
+ 200: {
775
+ content: {
776
+ "application/json": components["schemas"]["ItemCartRecordDtoEnvelope"];
777
+ "application/xml": components["schemas"]["ItemCartRecordDtoEnvelope"];
778
+ };
779
+ };
780
+ /** @description Unauthorized */
781
+ 401: {
782
+ content: {
783
+ "application/json": components["schemas"]["Envelope"];
784
+ "application/xml": components["schemas"]["Envelope"];
785
+ };
786
+ };
787
+ /** @description Not Found */
788
+ 404: {
789
+ content: {
790
+ "application/json": components["schemas"]["Envelope"];
791
+ "application/xml": components["schemas"]["Envelope"];
792
+ };
793
+ };
794
+ };
795
+ };
796
+ };
797
+ "/api/v2/CartService/Records/{recordId}": {
798
+ put: {
799
+ parameters: {
800
+ query?: {
801
+ "api-version"?: string;
802
+ };
803
+ path: {
804
+ recordId: string;
805
+ };
806
+ };
807
+ requestBody?: {
808
+ content: {
809
+ "application/json": components["schemas"]["ItemCartRecordUpdateDto"];
810
+ "application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
811
+ };
812
+ };
813
+ responses: {
814
+ /** @description Success */
815
+ 200: {
816
+ content: {
817
+ "application/json": components["schemas"]["ItemCartRecordDto"];
818
+ "application/xml": components["schemas"]["ItemCartRecordDto"];
819
+ };
820
+ };
821
+ /** @description Unauthorized */
822
+ 401: {
823
+ content: {
824
+ "application/json": components["schemas"]["Envelope"];
825
+ "application/xml": components["schemas"]["Envelope"];
826
+ };
827
+ };
828
+ /** @description Not Found */
829
+ 404: {
830
+ content: {
831
+ "application/json": components["schemas"]["Envelope"];
832
+ "application/xml": components["schemas"]["Envelope"];
833
+ };
834
+ };
835
+ };
836
+ };
837
+ delete: {
838
+ parameters: {
839
+ query?: {
840
+ "api-version"?: string;
841
+ };
842
+ path: {
843
+ recordId: string;
844
+ };
845
+ };
846
+ responses: {
847
+ /** @description Success */
848
+ 200: {
849
+ content: {
850
+ "application/json": components["schemas"]["Envelope"];
851
+ "application/xml": components["schemas"]["Envelope"];
852
+ };
853
+ };
854
+ /** @description Unauthorized */
855
+ 401: {
856
+ content: {
857
+ "application/json": components["schemas"]["Envelope"];
858
+ "application/xml": components["schemas"]["Envelope"];
859
+ };
860
+ };
861
+ /** @description Not Found */
862
+ 404: {
863
+ content: {
864
+ "application/json": components["schemas"]["Envelope"];
865
+ "application/xml": components["schemas"]["Envelope"];
866
+ };
867
+ };
868
+ };
869
+ };
870
+ };
871
+ "/api/v2/CartService/WishLists": {
872
+ post: {
873
+ parameters: {
874
+ query?: {
875
+ "api-version"?: string;
876
+ };
877
+ };
878
+ requestBody?: {
879
+ content: {
880
+ "application/json": components["schemas"]["NewWishListRequest"];
881
+ "application/xml": components["schemas"]["NewWishListRequest"];
882
+ };
883
+ };
884
+ responses: {
885
+ /** @description Success */
886
+ 200: {
887
+ content: never;
888
+ };
889
+ };
890
+ };
891
+ };
892
+ "/api/v2/CartService/WishLists/{wishListId}": {
893
+ put: {
894
+ parameters: {
895
+ query?: {
896
+ "api-version"?: string;
897
+ };
898
+ path: {
899
+ wishListId: string;
900
+ };
901
+ };
902
+ requestBody?: {
903
+ content: {
904
+ "application/json": components["schemas"]["WishListUpdateDto"];
905
+ "application/xml": components["schemas"]["WishListUpdateDto"];
906
+ };
907
+ };
908
+ responses: {
909
+ /** @description Success */
910
+ 200: {
911
+ content: never;
912
+ };
913
+ };
914
+ };
915
+ delete: {
916
+ parameters: {
917
+ query?: {
918
+ "api-version"?: string;
919
+ };
920
+ path: {
921
+ wishListID: string;
922
+ };
923
+ };
924
+ responses: {
925
+ /** @description Success */
926
+ 200: {
927
+ content: never;
928
+ };
929
+ };
930
+ };
931
+ };
932
+ "/api/v2/CartService/WishLists/{cartId}": {
933
+ get: {
934
+ parameters: {
935
+ query?: {
936
+ "api-version"?: string;
937
+ };
938
+ path: {
939
+ cartId: string;
940
+ };
941
+ };
942
+ responses: {
943
+ /** @description Success */
944
+ 200: {
945
+ content: {
946
+ "application/json": components["schemas"]["WishListDtoIReadOnlyListEnvelope"];
947
+ "application/xml": components["schemas"]["WishListDtoIReadOnlyListEnvelope"];
948
+ };
949
+ };
950
+ };
951
+ };
952
+ };
953
+ "/api/v2/CartService/WishLists/{wishListId}/Records": {
954
+ get: {
955
+ parameters: {
956
+ query?: {
957
+ "api-version"?: string;
958
+ };
959
+ path: {
960
+ wishListId: string;
961
+ };
962
+ };
963
+ responses: {
964
+ /** @description Success */
965
+ 200: {
966
+ content: {
967
+ "application/json": components["schemas"]["WishListItemRecordDtoIReadOnlyListEnvelope"];
968
+ "application/xml": components["schemas"]["WishListItemRecordDtoIReadOnlyListEnvelope"];
969
+ };
970
+ };
971
+ };
972
+ };
973
+ };
974
+ "/api/v2/CartService/WishLists/{wishListId}/Details": {
975
+ get: {
976
+ parameters: {
977
+ query?: {
978
+ "api-version"?: string;
979
+ };
980
+ path: {
981
+ wishListId: string;
982
+ };
983
+ };
984
+ responses: {
985
+ /** @description Success */
986
+ 200: {
987
+ content: {
988
+ "application/json": components["schemas"]["WishListDtoEnvelope"];
989
+ "application/xml": components["schemas"]["WishListDtoEnvelope"];
990
+ };
991
+ };
992
+ };
993
+ };
994
+ };
995
+ "/api/v2/CartService/WishLists/Records": {
996
+ post: {
997
+ parameters: {
998
+ query?: {
999
+ "api-version"?: string;
1000
+ };
1001
+ };
1002
+ requestBody?: {
1003
+ content: {
1004
+ "application/json": components["schemas"]["ProductToWishListRequest"];
1005
+ "application/xml": components["schemas"]["ProductToWishListRequest"];
1006
+ };
1007
+ };
1008
+ responses: {
1009
+ /** @description Success */
1010
+ 200: {
1011
+ content: never;
1012
+ };
1013
+ };
1014
+ };
1015
+ };
1016
+ "/api/v2/CartService/WishLists/Records/{recordId}": {
1017
+ delete: {
1018
+ parameters: {
1019
+ query?: {
1020
+ "api-version"?: string;
1021
+ };
1022
+ path: {
1023
+ recordId: string;
1024
+ };
1025
+ };
1026
+ responses: {
1027
+ /** @description Success */
1028
+ 200: {
1029
+ content: never;
1030
+ };
1031
+ };
1032
+ };
1033
+ };
1034
+ }
1035
+
1036
+ export type webhooks = Record<string, never>;
1037
+
1038
+ export interface components {
1039
+ schemas: {
1040
+ AccessTokenResponse: {
1041
+ tokenType?: string | null;
1042
+ accessToken?: string | null;
1043
+ /** Format: int64 */
1044
+ expiresIn?: number;
1045
+ refreshToken?: string | null;
1046
+ };
1047
+ AddProductToCompareRequest: {
1048
+ id?: string | null;
1049
+ cartID?: string | null;
1050
+ productID?: string | null;
1051
+ };
1052
+ BooleanEnvelope: {
1053
+ errorMessage?: string | null;
1054
+ isSuccess?: boolean;
1055
+ /** Format: date-time */
1056
+ timestamp?: string;
1057
+ activityId?: string | null;
1058
+ correlationId?: string | null;
1059
+ result?: boolean;
1060
+ };
1061
+ CartDto: {
1062
+ id?: string | null;
1063
+ ip?: string | null;
1064
+ type?: string | null;
1065
+ /** Format: double */
1066
+ total?: number;
1067
+ /** Format: double */
1068
+ taxes?: number;
1069
+ /** Format: double */
1070
+ freight?: number;
1071
+ /** Format: double */
1072
+ subTotal?: number;
1073
+ currencyId?: string | null;
1074
+ countryId?: string | null;
1075
+ /** Format: int32 */
1076
+ itemCartRecordsCount?: number | null;
1077
+ };
1078
+ CartDtoEnvelope: {
1079
+ errorMessage?: string | null;
1080
+ isSuccess?: boolean;
1081
+ /** Format: date-time */
1082
+ timestamp?: string;
1083
+ activityId?: string | null;
1084
+ correlationId?: string | null;
1085
+ result?: components["schemas"]["CartDto"];
1086
+ };
1087
+ CurrencySwitchRequest: {
1088
+ cartID?: string | null;
1089
+ currencyID?: string | null;
1090
+ };
1091
+ Envelope: {
1092
+ errorMessage?: string | null;
1093
+ isSuccess?: boolean;
1094
+ /** Format: date-time */
1095
+ timestamp?: string;
1096
+ activityId?: string | null;
1097
+ correlationId?: string | null;
1098
+ result?: string | null;
1099
+ };
1100
+ Error: {
1101
+ id?: string | null;
1102
+ description?: string | null;
1103
+ help?: string | null;
1104
+ };
1105
+ ErrorEnvelope: {
1106
+ errorMessage?: string | null;
1107
+ isSuccess?: boolean;
1108
+ /** Format: date-time */
1109
+ timestamp?: string;
1110
+ activityId?: string | null;
1111
+ correlationId?: string | null;
1112
+ };
1113
+ ForgotPasswordRequest: {
1114
+ email?: string | null;
1115
+ };
1116
+ HttpValidationProblemDetails: {
1117
+ type?: string | null;
1118
+ title?: string | null;
1119
+ /** Format: int32 */
1120
+ status?: number | null;
1121
+ detail?: string | null;
1122
+ instance?: string | null;
1123
+ errors?: {
1124
+ [key: string]: string[];
1125
+ } | null;
1126
+ [key: string]: unknown;
1127
+ };
1128
+ InfoRequest: {
1129
+ newEmail?: string | null;
1130
+ newPassword?: string | null;
1131
+ oldPassword?: string | null;
1132
+ };
1133
+ InfoResponse: {
1134
+ email?: string | null;
1135
+ isEmailConfirmed?: boolean;
1136
+ };
1137
+ ItemCartRecordCreateDto: {
1138
+ id?: string | null;
1139
+ cartId?: string | null;
1140
+ productId?: string | null;
1141
+ /** Format: double */
1142
+ quantity?: number;
1143
+ };
1144
+ ItemCartRecordDto: {
1145
+ id?: string | null;
1146
+ closed?: boolean;
1147
+ itemId?: string | null;
1148
+ businessId?: string | null;
1149
+ currencyId?: string | null;
1150
+ description?: string | null;
1151
+ /** Format: double */
1152
+ quantity?: number;
1153
+ /** Format: date-time */
1154
+ timestamp?: string;
1155
+ free?: boolean;
1156
+ freeReason?: string | null;
1157
+ freeReasonCode?: string | null;
1158
+ data?: string | null;
1159
+ dataLabel?: string | null;
1160
+ data1?: string | null;
1161
+ data1Label?: string | null;
1162
+ data2?: string | null;
1163
+ data2Label?: string | null;
1164
+ data3?: string | null;
1165
+ data3Label?: string | null;
1166
+ data4?: string | null;
1167
+ data4Label?: string | null;
1168
+ data5?: string | null;
1169
+ data5Label?: string | null;
1170
+ data6?: string | null;
1171
+ data6Label?: string | null;
1172
+ data7?: string | null;
1173
+ data7Label?: string | null;
1174
+ data8?: string | null;
1175
+ data8Label?: string | null;
1176
+ data9?: string | null;
1177
+ data9Label?: string | null;
1178
+ itemPriceId?: string | null;
1179
+ priceListItemId?: string | null;
1180
+ unitId?: string | null;
1181
+ unitGroupId?: string | null;
1182
+ /**
1183
+ * Format: int32
1184
+ * @enum {integer}
1185
+ */
1186
+ taxCalculationMethod?: 0 | 1;
1187
+ /**
1188
+ * Format: int32
1189
+ * @enum {integer}
1190
+ */
1191
+ costCalculationMethod?: 0 | 1;
1192
+ forexRatesSnapshot?: string | null;
1193
+ /** Format: double */
1194
+ forexRate?: number;
1195
+ /** Format: double */
1196
+ totalBaseAmountInUsd?: number;
1197
+ /** Format: double */
1198
+ totalProfitInUsd?: number;
1199
+ /** Format: double */
1200
+ totalDetailAmountInUsd?: number;
1201
+ /** Format: double */
1202
+ totalTaxBaseInUsd?: number;
1203
+ /** Format: double */
1204
+ totalDiscountsInUsd?: number;
1205
+ /** Format: double */
1206
+ totalTaxesInUsd?: number;
1207
+ /** Format: double */
1208
+ totalWithholdingTaxesInUsd?: number;
1209
+ /** Format: double */
1210
+ totalShippingCostInUsd?: number;
1211
+ /** Format: double */
1212
+ totalShippingTaxesInUsd?: number;
1213
+ /** Format: double */
1214
+ totalWarrantyCostInUsd?: number;
1215
+ /** Format: double */
1216
+ totalReturnCostInUsd?: number;
1217
+ /** Format: double */
1218
+ totalRefundCostInUsd?: number;
1219
+ /** Format: double */
1220
+ totalSurchargesInUsd?: number;
1221
+ /** Format: double */
1222
+ totalAmountInUsd?: number;
1223
+ /** Format: double */
1224
+ totalGlobalDiscountsInUsd?: number;
1225
+ /** Format: double */
1226
+ totalGlobalSurchargesInUsd?: number;
1227
+ /** Format: double */
1228
+ customGlobalSurchargesAmount?: number;
1229
+ /** Format: double */
1230
+ customGlobalDiscountsAmount?: number;
1231
+ /** Format: double */
1232
+ customBaseAmount?: number;
1233
+ /** Format: double */
1234
+ customDetailAmount?: number;
1235
+ /** Format: double */
1236
+ customDiscountsAmount?: number;
1237
+ /** Format: double */
1238
+ customTaxBase?: number;
1239
+ /** Format: double */
1240
+ customSurchargesAmount?: number;
1241
+ /** Format: double */
1242
+ customProfitAmount?: number;
1243
+ /** Format: double */
1244
+ customShippingCostAmount?: number;
1245
+ /** Format: double */
1246
+ customShippingTaxAmount?: number;
1247
+ /** Format: double */
1248
+ customTaxAmount?: number;
1249
+ /** Format: double */
1250
+ customWithholdingTaxAmount?: number;
1251
+ /** Format: double */
1252
+ customTotalAmount?: number;
1253
+ returnPolicyId?: string | null;
1254
+ refundPolicyId?: string | null;
1255
+ warrantyPolicyId?: string | null;
1256
+ itemShipmentPolicyId?: string | null;
1257
+ locationId?: string | null;
1258
+ quoteItemRecordId?: string | null;
1259
+ businessProfileRecordId?: string | null;
1260
+ parentBillingItemRecordId?: string | null;
1261
+ cartId?: string | null;
1262
+ productId?: string | null;
1263
+ itemShortDescription?: string | null;
1264
+ itemTitle?: string | null;
1265
+ itemPrimaryImageUrl?: string | null;
1266
+ };
1267
+ ItemCartRecordDtoEnvelope: {
1268
+ errorMessage?: string | null;
1269
+ isSuccess?: boolean;
1270
+ /** Format: date-time */
1271
+ timestamp?: string;
1272
+ activityId?: string | null;
1273
+ correlationId?: string | null;
1274
+ result?: components["schemas"]["ItemCartRecordDto"];
1275
+ };
1276
+ ItemCartRecordUpdateDto: {
1277
+ id?: string | null;
1278
+ /** Format: date-time */
1279
+ timestamp?: string | null;
1280
+ /** Format: double */
1281
+ quantity?: number;
1282
+ };
1283
+ ItemToCompareCartRecordDto: {
1284
+ id?: string | null;
1285
+ /** Format: date-time */
1286
+ timestamp?: string | null;
1287
+ cartId?: string | null;
1288
+ productId?: string | null;
1289
+ };
1290
+ ItemToCompareCartRecordDtoEnvelope: {
1291
+ errorMessage?: string | null;
1292
+ isSuccess?: boolean;
1293
+ /** Format: date-time */
1294
+ timestamp?: string;
1295
+ activityId?: string | null;
1296
+ correlationId?: string | null;
1297
+ result?: components["schemas"]["ItemToCompareCartRecordDto"];
1298
+ };
1299
+ ItemToCompareCartRecordDtoIReadOnlyListEnvelope: {
1300
+ errorMessage?: string | null;
1301
+ isSuccess?: boolean;
1302
+ /** Format: date-time */
1303
+ timestamp?: string;
1304
+ activityId?: string | null;
1305
+ correlationId?: string | null;
1306
+ result?: components["schemas"]["ItemToCompareCartRecordDto"][] | null;
1307
+ };
1308
+ LoginRequest: {
1309
+ email?: string | null;
1310
+ password?: string | null;
1311
+ twoFactorCode?: string | null;
1312
+ twoFactorRecoveryCode?: string | null;
1313
+ };
1314
+ NewWishListRequest: {
1315
+ title?: string | null;
1316
+ description?: string | null;
1317
+ /** Format: uuid */
1318
+ cartID?: string;
1319
+ public?: boolean;
1320
+ };
1321
+ ProductCartRecordDto: {
1322
+ id?: string | null;
1323
+ closed?: boolean;
1324
+ itemId?: string | null;
1325
+ businessId?: string | null;
1326
+ currencyId?: string | null;
1327
+ description?: string | null;
1328
+ /** Format: double */
1329
+ quantity?: number;
1330
+ /** Format: date-time */
1331
+ timestamp?: string;
1332
+ free?: boolean;
1333
+ freeReason?: string | null;
1334
+ freeReasonCode?: string | null;
1335
+ data?: string | null;
1336
+ dataLabel?: string | null;
1337
+ data1?: string | null;
1338
+ data1Label?: string | null;
1339
+ data2?: string | null;
1340
+ data2Label?: string | null;
1341
+ data3?: string | null;
1342
+ data3Label?: string | null;
1343
+ data4?: string | null;
1344
+ data4Label?: string | null;
1345
+ data5?: string | null;
1346
+ data5Label?: string | null;
1347
+ data6?: string | null;
1348
+ data6Label?: string | null;
1349
+ data7?: string | null;
1350
+ data7Label?: string | null;
1351
+ data8?: string | null;
1352
+ data8Label?: string | null;
1353
+ data9?: string | null;
1354
+ data9Label?: string | null;
1355
+ itemPriceId?: string | null;
1356
+ priceListItemId?: string | null;
1357
+ unitId?: string | null;
1358
+ unitGroupId?: string | null;
1359
+ /**
1360
+ * Format: int32
1361
+ * @enum {integer}
1362
+ */
1363
+ taxCalculationMethod?: 0 | 1;
1364
+ /**
1365
+ * Format: int32
1366
+ * @enum {integer}
1367
+ */
1368
+ costCalculationMethod?: 0 | 1;
1369
+ forexRatesSnapshot?: string | null;
1370
+ /** Format: double */
1371
+ forexRate?: number;
1372
+ /** Format: double */
1373
+ totalBaseAmountInUsd?: number;
1374
+ /** Format: double */
1375
+ totalProfitInUsd?: number;
1376
+ /** Format: double */
1377
+ totalDetailAmountInUsd?: number;
1378
+ /** Format: double */
1379
+ totalTaxBaseInUsd?: number;
1380
+ /** Format: double */
1381
+ totalDiscountsInUsd?: number;
1382
+ /** Format: double */
1383
+ totalTaxesInUsd?: number;
1384
+ /** Format: double */
1385
+ totalWithholdingTaxesInUsd?: number;
1386
+ /** Format: double */
1387
+ totalShippingCostInUsd?: number;
1388
+ /** Format: double */
1389
+ totalShippingTaxesInUsd?: number;
1390
+ /** Format: double */
1391
+ totalWarrantyCostInUsd?: number;
1392
+ /** Format: double */
1393
+ totalReturnCostInUsd?: number;
1394
+ /** Format: double */
1395
+ totalRefundCostInUsd?: number;
1396
+ /** Format: double */
1397
+ totalSurchargesInUsd?: number;
1398
+ /** Format: double */
1399
+ totalAmountInUsd?: number;
1400
+ /** Format: double */
1401
+ totalGlobalDiscountsInUsd?: number;
1402
+ /** Format: double */
1403
+ totalGlobalSurchargesInUsd?: number;
1404
+ /** Format: double */
1405
+ customGlobalSurchargesAmount?: number;
1406
+ /** Format: double */
1407
+ customGlobalDiscountsAmount?: number;
1408
+ /** Format: double */
1409
+ customBaseAmount?: number;
1410
+ /** Format: double */
1411
+ customDetailAmount?: number;
1412
+ /** Format: double */
1413
+ customDiscountsAmount?: number;
1414
+ /** Format: double */
1415
+ customTaxBase?: number;
1416
+ /** Format: double */
1417
+ customSurchargesAmount?: number;
1418
+ /** Format: double */
1419
+ customProfitAmount?: number;
1420
+ /** Format: double */
1421
+ customShippingCostAmount?: number;
1422
+ /** Format: double */
1423
+ customShippingTaxAmount?: number;
1424
+ /** Format: double */
1425
+ customTaxAmount?: number;
1426
+ /** Format: double */
1427
+ customWithholdingTaxAmount?: number;
1428
+ /** Format: double */
1429
+ customTotalAmount?: number;
1430
+ returnPolicyId?: string | null;
1431
+ refundPolicyId?: string | null;
1432
+ warrantyPolicyId?: string | null;
1433
+ itemShipmentPolicyId?: string | null;
1434
+ locationId?: string | null;
1435
+ quoteItemRecordId?: string | null;
1436
+ businessProfileRecordId?: string | null;
1437
+ parentBillingItemRecordId?: string | null;
1438
+ cartId?: string | null;
1439
+ productId?: string | null;
1440
+ itemShortDescription?: string | null;
1441
+ itemTitle?: string | null;
1442
+ itemPrimaryImageUrl?: string | null;
1443
+ };
1444
+ ProductToWishListRequest: {
1445
+ wishListID?: string | null;
1446
+ productID?: string | null;
1447
+ };
1448
+ RefreshRequest: {
1449
+ refreshToken?: string | null;
1450
+ };
1451
+ RegisterRequest: {
1452
+ email?: string | null;
1453
+ password?: string | null;
1454
+ };
1455
+ ResendConfirmationEmailRequest: {
1456
+ email?: string | null;
1457
+ };
1458
+ ResetPasswordRequest: {
1459
+ email?: string | null;
1460
+ resetCode?: string | null;
1461
+ newPassword?: string | null;
1462
+ };
1463
+ ResponseStatus: {
1464
+ success?: boolean;
1465
+ error?: components["schemas"]["Error"];
1466
+ correlationID?: string | null;
1467
+ /** Format: date-time */
1468
+ utcTimestamp?: string;
1469
+ };
1470
+ TwoFactorRequest: {
1471
+ enable?: boolean | null;
1472
+ twoFactorCode?: string | null;
1473
+ resetSharedKey?: boolean;
1474
+ resetRecoveryCodes?: boolean;
1475
+ forgetMachine?: boolean;
1476
+ };
1477
+ TwoFactorResponse: {
1478
+ sharedKey?: string | null;
1479
+ /** Format: int32 */
1480
+ recoveryCodesLeft?: number;
1481
+ recoveryCodes?: string[] | null;
1482
+ isTwoFactorEnabled?: boolean;
1483
+ isMachineRemembered?: boolean;
1484
+ };
1485
+ WishListDto: {
1486
+ id?: string | null;
1487
+ title?: string | null;
1488
+ description?: string | null;
1489
+ cartID?: string | null;
1490
+ public?: boolean;
1491
+ };
1492
+ WishListDtoEnvelope: {
1493
+ errorMessage?: string | null;
1494
+ isSuccess?: boolean;
1495
+ /** Format: date-time */
1496
+ timestamp?: string;
1497
+ activityId?: string | null;
1498
+ correlationId?: string | null;
1499
+ result?: components["schemas"]["WishListDto"];
1500
+ };
1501
+ WishListDtoIReadOnlyListEnvelope: {
1502
+ errorMessage?: string | null;
1503
+ isSuccess?: boolean;
1504
+ /** Format: date-time */
1505
+ timestamp?: string;
1506
+ activityId?: string | null;
1507
+ correlationId?: string | null;
1508
+ result?: components["schemas"]["WishListDto"][] | null;
1509
+ };
1510
+ WishListItemRecordDto: {
1511
+ id?: string | null;
1512
+ /** Format: date-time */
1513
+ timestamp?: string | null;
1514
+ wishListId?: string | null;
1515
+ productId?: string | null;
1516
+ };
1517
+ WishListItemRecordDtoIReadOnlyListEnvelope: {
1518
+ errorMessage?: string | null;
1519
+ isSuccess?: boolean;
1520
+ /** Format: date-time */
1521
+ timestamp?: string;
1522
+ activityId?: string | null;
1523
+ correlationId?: string | null;
1524
+ result?: components["schemas"]["WishListItemRecordDto"][] | null;
1525
+ };
1526
+ WishListUpdateDto: {
1527
+ title: string;
1528
+ description?: string | null;
1529
+ public?: boolean;
1530
+ };
1531
+ };
1532
+ responses: never;
1533
+ parameters: never;
1534
+ requestBodies: never;
1535
+ headers: never;
1536
+ pathItems: never;
1537
+ }
1538
+
1539
+ export type $defs = Record<string, never>;
1540
+
1541
+ export type external = Record<string, never>;
1542
+
1543
+ export interface operations {
1544
+
1545
+ "MapIdentityApi-/confirmEmail": {
1546
+ parameters: {
1547
+ query?: {
1548
+ userId?: string;
1549
+ code?: string;
1550
+ changedEmail?: string;
1551
+ };
1552
+ };
1553
+ responses: {
1554
+ /** @description Success */
1555
+ 200: {
1556
+ content: never;
1557
+ };
1558
+ };
1559
+ };
1560
+ }