@fenixalliance/abs-api-client 1.0.1 → 1.0.2

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 (461) hide show
  1. package/app/index.ts +5 -0
  2. package/clients/cartService/core/ApiError.ts +24 -24
  3. package/clients/cartService/core/ApiRequestOptions.ts +16 -16
  4. package/clients/cartService/core/ApiResult.ts +10 -10
  5. package/clients/cartService/core/CancelablePromise.ts +130 -130
  6. package/clients/cartService/core/OpenAPI.ts +31 -31
  7. package/clients/cartService/core/request.ts +321 -321
  8. package/clients/cartService/index.ts +36 -52
  9. package/clients/cartService/models/CartDto.ts +1 -0
  10. package/clients/cartService/models/{RegisterRequest.ts → CartUpdateRequest.ts} +3 -3
  11. package/clients/cartService/models/{InfoResponse.ts → CountrySwitchRequest.ts} +3 -3
  12. package/clients/cartService/models/EmptyEnvelope.ts +11 -0
  13. package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -0
  14. package/clients/cartService/models/ItemCartRecordDto.ts +3 -1
  15. package/clients/{catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts → cartService/models/ItemCartRecordDtoListEnvelope.ts} +3 -3
  16. package/clients/cartService/models/{ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts → ItemToCompareCartRecordDtoListEnvelope.ts} +1 -1
  17. package/clients/cartService/models/WishListDto.ts +2 -1
  18. package/clients/cartService/services/CartsService.ts +53 -7
  19. package/clients/cartService/services/CompareService.ts +7 -6
  20. package/clients/cartService/services/RecordsService.ts +23 -20
  21. package/clients/cartService/services/WishListsService.ts +17 -17
  22. package/clients/catalogService/core/ApiError.ts +24 -24
  23. package/clients/catalogService/core/ApiRequestOptions.ts +16 -16
  24. package/clients/catalogService/core/ApiResult.ts +10 -10
  25. package/clients/catalogService/core/CancelablePromise.ts +130 -130
  26. package/clients/catalogService/core/OpenAPI.ts +31 -31
  27. package/clients/catalogService/core/request.ts +321 -321
  28. package/clients/catalogService/index.ts +102 -124
  29. package/clients/catalogService/models/EmptyEnvelope.ts +11 -0
  30. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +4 -8
  31. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +2 -5
  32. package/clients/catalogService/models/ItemAttributeCreateDto.ts +3 -2
  33. package/clients/catalogService/models/{ItemAttributeDtoIReadOnlyCollectionEnvelope.ts → ItemAttributeDtoListEnvelope.ts} +1 -1
  34. package/clients/catalogService/models/ItemAttributeUpdateDto.ts +1 -1
  35. package/clients/catalogService/models/ItemBrandCreateDto.ts +4 -3
  36. package/clients/catalogService/models/ItemBrandUpdateDto.ts +1 -1
  37. package/clients/catalogService/models/ItemCategoryCreateDto.ts +3 -2
  38. package/clients/catalogService/models/ItemCategoryUpdateDto.ts +1 -1
  39. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +12 -3
  40. package/clients/catalogService/models/{ItemImagesCreateDto.ts → ItemImageCreateDto.ts} +4 -4
  41. package/clients/catalogService/models/ItemImageDto.ts +0 -1
  42. package/clients/catalogService/models/{ItemImagesUpdateDto.ts → ItemImageUpdateDto.ts} +6 -9
  43. package/clients/catalogService/models/ItemQuestionCreateDto.ts +6 -5
  44. package/clients/catalogService/models/ItemQuestionRecordCreateDto.ts +14 -0
  45. package/clients/catalogService/models/ItemQuestionUpdateDto.ts +1 -3
  46. package/clients/catalogService/models/ItemReviewCreateDto.ts +1 -0
  47. package/clients/catalogService/models/ItemReviewRecordCreateDto.ts +12 -0
  48. package/clients/catalogService/models/ItemShippingPolicyDto.ts +6 -6
  49. package/clients/catalogService/models/ItemTagCreateDto.ts +3 -2
  50. package/clients/catalogService/models/ItemTagUpdateDto.ts +1 -1
  51. package/clients/catalogService/models/ItemTypeCreateDto.ts +3 -2
  52. package/clients/catalogService/models/ItemTypeDto.ts +4 -4
  53. package/clients/catalogService/models/ItemTypeUpdateDto.ts +1 -1
  54. package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +3 -4
  55. package/clients/catalogService/models/PricingRuleCreateDto.ts +1 -1
  56. package/clients/catalogService/models/PricingRuleDto.ts +0 -1
  57. package/clients/catalogService/models/StockItemCreateDto.ts +100 -3
  58. package/clients/catalogService/models/StockItemDto.ts +133 -4
  59. package/clients/catalogService/models/StockItemUpdateDto.ts +99 -2
  60. package/clients/catalogService/services/ItemAttachmentsService.ts +24 -13
  61. package/clients/catalogService/services/ItemAttributesService.ts +19 -9
  62. package/clients/catalogService/services/ItemBrandsService.ts +19 -9
  63. package/clients/catalogService/services/ItemCategoriesService.ts +19 -9
  64. package/clients/catalogService/services/ItemImagesService.ts +23 -13
  65. package/clients/catalogService/services/ItemQuestionsService.ts +19 -9
  66. package/clients/catalogService/services/ItemReviewsService.ts +18 -8
  67. package/clients/catalogService/services/ItemTagsService.ts +17 -12
  68. package/clients/catalogService/services/ItemTypesService.ts +19 -9
  69. package/clients/catalogService/services/PricingRulesService.ts +19 -11
  70. package/clients/catalogService/services/ProductsService.ts +177 -214
  71. package/clients/{contactService → crmService}/core/ApiError.ts +24 -24
  72. package/clients/{contactService → crmService}/core/ApiRequestOptions.ts +16 -16
  73. package/clients/{contactService → crmService}/core/ApiResult.ts +10 -10
  74. package/clients/{contactService → crmService}/core/CancelablePromise.ts +130 -130
  75. package/clients/{contactService → crmService}/core/OpenAPI.ts +31 -31
  76. package/clients/{contactService → crmService}/core/request.ts +321 -321
  77. package/clients/crmService/index.ts +23 -0
  78. package/clients/crmService/models/CartDto.ts +18 -0
  79. package/clients/{cartService/models/WishListDtoEnvelope.ts → crmService/models/CartDtoEnvelope.ts} +3 -3
  80. package/clients/crmService/models/ContactDto.ts +57 -0
  81. package/clients/crmService/models/EmptyEnvelope.ts +11 -0
  82. package/clients/crmService/models/SocialProfileDto.ts +39 -0
  83. package/clients/crmService/models/SocialProfileDtoEnvelope.ts +14 -0
  84. package/clients/crmService/models/WalletDto.ts +22 -0
  85. package/clients/crmService/models/WalletDtoEnvelope.ts +14 -0
  86. package/clients/crmService/services/ContactsService.ts +286 -0
  87. package/clients/crmService/services/SyncService.ts +101 -0
  88. package/clients/forexService/core/ApiError.ts +24 -24
  89. package/clients/forexService/core/ApiRequestOptions.ts +16 -16
  90. package/clients/forexService/core/ApiResult.ts +10 -10
  91. package/clients/forexService/core/CancelablePromise.ts +130 -130
  92. package/clients/forexService/core/OpenAPI.ts +31 -31
  93. package/clients/forexService/core/request.ts +321 -321
  94. package/clients/forexService/index.ts +18 -30
  95. package/clients/{cartService/models/Envelope.ts → forexService/models/ErrorEnvelope.ts} +1 -2
  96. package/clients/forexService/models/ForexRatesDto.ts +1 -1
  97. package/clients/forexService/models/Money.ts +1 -1
  98. package/clients/forexService/services/ExchangeService.ts +17 -7
  99. package/clients/forexService/services/RatesService.ts +11 -1
  100. package/clients/holderService/core/ApiError.ts +24 -24
  101. package/clients/holderService/core/ApiRequestOptions.ts +16 -16
  102. package/clients/holderService/core/ApiResult.ts +10 -10
  103. package/clients/holderService/core/CancelablePromise.ts +130 -130
  104. package/clients/holderService/core/OpenAPI.ts +31 -31
  105. package/clients/holderService/core/request.ts +321 -321
  106. package/clients/holderService/index.ts +35 -31
  107. package/clients/holderService/models/AddressDto.ts +31 -0
  108. package/clients/holderService/models/AddressDtoListEnvelope.ts +14 -0
  109. package/clients/holderService/models/CartDto.ts +18 -0
  110. package/clients/holderService/models/CartDtoEnvelope.ts +14 -0
  111. package/clients/holderService/models/InvoiceDto.ts +13 -0
  112. package/clients/{invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts → holderService/models/InvoiceDtoListEnvelope.ts} +1 -1
  113. package/clients/holderService/models/NotificationDto.ts +16 -0
  114. package/clients/holderService/models/NotificationDtoListEnvelope.ts +14 -0
  115. package/clients/holderService/models/OrderDto.ts +27 -0
  116. package/clients/holderService/models/OrderDtoListEnvelope.ts +14 -0
  117. package/clients/holderService/models/PaymentDto.ts +17 -0
  118. package/clients/holderService/models/PaymentDtoListEnvelope.ts +14 -0
  119. package/clients/{identityService/models/AccountHolderDto.ts → holderService/models/PlatformUserDto.ts} +4 -4
  120. package/clients/holderService/models/PlatformUserDtoEnvelope.ts +14 -0
  121. package/clients/holderService/models/SocialProfileDto.ts +39 -0
  122. package/clients/holderService/models/SocialProfileDtoEnvelope.ts +14 -0
  123. package/clients/{identityService/models/BusinessDto.ts → holderService/models/TenantDto.ts} +16 -15
  124. package/clients/holderService/models/TenantDtoListEnvelope.ts +14 -0
  125. package/clients/holderService/models/TenantEnrollmentDto.ts +14 -0
  126. package/clients/holderService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
  127. package/clients/holderService/models/WalletDto.ts +22 -0
  128. package/clients/holderService/models/WalletDtoEnvelope.ts +14 -0
  129. package/clients/holderService/services/HolderService.ts +99 -28
  130. package/clients/identityService/core/ApiError.ts +24 -24
  131. package/clients/identityService/core/ApiRequestOptions.ts +16 -16
  132. package/clients/identityService/core/ApiResult.ts +10 -10
  133. package/clients/identityService/core/CancelablePromise.ts +130 -130
  134. package/clients/identityService/core/OpenAPI.ts +31 -31
  135. package/clients/identityService/core/request.ts +321 -321
  136. package/clients/identityService/index.ts +40 -53
  137. package/clients/identityService/models/AccountHolderCreateDto.ts +1 -0
  138. package/clients/identityService/models/ApiResponse.ts +4 -5
  139. package/clients/{holderService/models/AccountHolderDto.ts → identityService/models/PlatformUserDto.ts} +4 -4
  140. package/clients/{holderService/models/BusinessDto.ts → identityService/models/TenantDto.ts} +16 -15
  141. package/clients/identityService/services/CheckerService.ts +3 -2
  142. package/clients/identityService/services/OAuthService.ts +8 -6
  143. package/clients/inventoryService/core/ApiError.ts +24 -24
  144. package/clients/inventoryService/core/ApiRequestOptions.ts +16 -16
  145. package/clients/inventoryService/core/ApiResult.ts +10 -10
  146. package/clients/inventoryService/core/CancelablePromise.ts +130 -130
  147. package/clients/inventoryService/core/OpenAPI.ts +31 -31
  148. package/clients/inventoryService/core/request.ts +321 -321
  149. package/clients/inventoryService/index.ts +10 -24
  150. package/clients/invoicingService/core/ApiError.ts +24 -24
  151. package/clients/invoicingService/core/ApiRequestOptions.ts +16 -16
  152. package/clients/invoicingService/core/ApiResult.ts +10 -10
  153. package/clients/invoicingService/core/CancelablePromise.ts +130 -130
  154. package/clients/invoicingService/core/OpenAPI.ts +31 -31
  155. package/clients/invoicingService/core/request.ts +321 -321
  156. package/clients/invoicingService/index.ts +23 -28
  157. package/clients/invoicingService/models/EmptyEnvelope.ts +11 -0
  158. package/clients/invoicingService/models/InvoiceCreateDto.ts +11 -0
  159. package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +14 -0
  160. package/clients/{cartService/models/ProductCartRecordDto.ts → invoicingService/models/InvoiceLineDto.ts} +7 -10
  161. package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +14 -0
  162. package/clients/{catalogService/models/ItemPricePolicyDtoEnvelope.ts → invoicingService/models/InvoiceLineDtoListEnvelope.ts} +3 -3
  163. package/clients/{tenantService/models/IntPtr.ts → invoicingService/models/InvoiceUpdateDto.ts} +1 -1
  164. package/clients/invoicingService/models/ItemPriceCreateDto.ts +20 -0
  165. package/clients/invoicingService/models/ItemPriceUpdateDto.ts +14 -0
  166. package/clients/invoicingService/services/InvoicesService.ts +253 -15
  167. package/clients/ordersService/core/ApiError.ts +25 -0
  168. package/clients/ordersService/core/ApiRequestOptions.ts +17 -0
  169. package/clients/ordersService/core/ApiResult.ts +11 -0
  170. package/clients/ordersService/core/CancelablePromise.ts +131 -0
  171. package/clients/ordersService/core/OpenAPI.ts +32 -0
  172. package/clients/ordersService/core/request.ts +322 -0
  173. package/clients/ordersService/index.ts +23 -0
  174. package/clients/ordersService/models/EmptyEnvelope.ts +11 -0
  175. package/clients/ordersService/models/ErrorEnvelope.ts +12 -0
  176. package/clients/ordersService/models/ItemPriceCreateDto.ts +20 -0
  177. package/clients/ordersService/models/ItemPriceUpdateDto.ts +14 -0
  178. package/clients/ordersService/models/OrderCreateDto.ts +16 -0
  179. package/clients/ordersService/models/OrderDto.ts +27 -0
  180. package/clients/ordersService/models/OrderDtoEnvelope.ts +14 -0
  181. package/clients/ordersService/models/OrderDtoListEnvelope.ts +14 -0
  182. package/clients/ordersService/models/OrderLineDto.ts +95 -0
  183. package/clients/ordersService/models/OrderLineDtoEnvelope.ts +14 -0
  184. package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +14 -0
  185. package/clients/ordersService/models/OrderUpdateDto.ts +12 -0
  186. package/clients/ordersService/services/OrdersService.ts +296 -0
  187. package/clients/pricingService/core/ApiError.ts +24 -24
  188. package/clients/pricingService/core/ApiRequestOptions.ts +16 -16
  189. package/clients/pricingService/core/ApiResult.ts +10 -10
  190. package/clients/pricingService/core/CancelablePromise.ts +130 -130
  191. package/clients/pricingService/core/OpenAPI.ts +31 -31
  192. package/clients/pricingService/core/request.ts +321 -321
  193. package/clients/pricingService/index.ts +27 -29
  194. package/clients/pricingService/models/EmptyEnvelope.ts +11 -0
  195. package/clients/pricingService/models/ItemPriceCreateDto.ts +20 -0
  196. package/clients/pricingService/models/ItemPriceDto.ts +20 -0
  197. package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +14 -0
  198. package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +14 -0
  199. package/clients/pricingService/models/ItemPriceUpdateDto.ts +14 -0
  200. package/clients/pricingService/models/Money.ts +1 -1
  201. package/clients/pricingService/models/PriceListCreateDto.ts +18 -0
  202. package/clients/pricingService/models/PriceListDto.ts +17 -0
  203. package/clients/pricingService/models/PriceListDtoEnvelope.ts +14 -0
  204. package/clients/pricingService/models/PriceListDtoListEnvelope.ts +14 -0
  205. package/clients/pricingService/models/PriceListUpdateDto.ts +14 -0
  206. package/clients/pricingService/services/PriceListsService.ts +254 -8
  207. package/clients/systemService/core/ApiError.ts +25 -0
  208. package/clients/systemService/core/ApiRequestOptions.ts +17 -0
  209. package/clients/systemService/core/ApiResult.ts +11 -0
  210. package/clients/systemService/core/CancelablePromise.ts +131 -0
  211. package/clients/systemService/core/OpenAPI.ts +32 -0
  212. package/clients/systemService/core/request.ts +322 -0
  213. package/clients/systemService/index.ts +14 -0
  214. package/clients/systemService/models/ErrorEnvelope.ts +12 -0
  215. package/clients/systemService/models/StringListEnvelope.ts +13 -0
  216. package/clients/systemService/services/AntiforgeryService.ts +29 -0
  217. package/clients/systemService/services/MigrationsService.ts +44 -0
  218. package/clients/tenantService/core/ApiError.ts +24 -24
  219. package/clients/tenantService/core/ApiRequestOptions.ts +16 -16
  220. package/clients/tenantService/core/ApiResult.ts +10 -10
  221. package/clients/tenantService/core/CancelablePromise.ts +130 -130
  222. package/clients/tenantService/core/OpenAPI.ts +31 -31
  223. package/clients/tenantService/core/request.ts +321 -321
  224. package/clients/tenantService/index.ts +33 -62
  225. package/clients/tenantService/models/BooleanEnvelope.ts +13 -0
  226. package/clients/tenantService/models/CartDto.ts +18 -0
  227. package/clients/tenantService/models/CartDtoEnvelope.ts +14 -0
  228. package/clients/tenantService/models/EmptyEnvelope.ts +11 -0
  229. package/clients/tenantService/models/ErrorEnvelope.ts +12 -0
  230. package/clients/tenantService/models/PlatformUserDto.ts +73 -0
  231. package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +14 -0
  232. package/clients/tenantService/models/SocialProfileDto.ts +39 -0
  233. package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +14 -0
  234. package/clients/tenantService/models/{BusinessCreateDto.ts → TenantCreateDto.ts} +2 -1
  235. package/clients/tenantService/models/{BusinessDto.ts → TenantDto.ts} +16 -15
  236. package/clients/tenantService/models/TenantDtoEnvelope.ts +14 -0
  237. package/clients/tenantService/models/TenantEnrollmentDto.ts +14 -0
  238. package/clients/{cartService/models/WishListDtoIReadOnlyListEnvelope.ts → tenantService/models/TenantEnrollmentDtoEnvelope.ts} +3 -3
  239. package/clients/tenantService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
  240. package/clients/tenantService/models/WalletDto.ts +2 -1
  241. package/clients/tenantService/models/WalletDtoEnvelope.ts +14 -0
  242. package/clients/tenantService/models/{Error.ts → WebPortalDto.ts} +5 -3
  243. package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +14 -0
  244. package/clients/tenantService/services/TenantsService.ts +230 -105
  245. package/clients/walletsService/core/ApiError.ts +25 -0
  246. package/clients/walletsService/core/ApiRequestOptions.ts +17 -0
  247. package/clients/walletsService/core/ApiResult.ts +11 -0
  248. package/clients/walletsService/core/CancelablePromise.ts +131 -0
  249. package/clients/walletsService/core/OpenAPI.ts +32 -0
  250. package/clients/walletsService/core/request.ts +322 -0
  251. package/clients/walletsService/index.ts +22 -0
  252. package/clients/walletsService/models/ErrorEnvelope.ts +12 -0
  253. package/clients/walletsService/models/InvoiceDto.ts +13 -0
  254. package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +14 -0
  255. package/clients/walletsService/models/LocationDto.ts +31 -0
  256. package/clients/walletsService/models/LocationDtoListEnvelope.ts +14 -0
  257. package/clients/walletsService/models/OrderDto.ts +27 -0
  258. package/clients/walletsService/models/OrderDtoListEnvelope.ts +14 -0
  259. package/clients/walletsService/models/PaymentDto.ts +17 -0
  260. package/clients/walletsService/models/PaymentDtoListEnvelope.ts +14 -0
  261. package/clients/walletsService/models/WalletDto.ts +22 -0
  262. package/clients/walletsService/models/WalletDtoEnvelope.ts +14 -0
  263. package/clients/walletsService/services/WalletsService.ts +174 -0
  264. package/package.json +23 -21
  265. package/schemas/cartService/schema.s.ts +1166 -1560
  266. package/schemas/catalogService/schema.s.ts +5982 -6109
  267. package/schemas/crmService/schema.s.ts +804 -0
  268. package/schemas/forexService/schema.s.ts +602 -526
  269. package/schemas/holderService/schema.s.ts +831 -831
  270. package/schemas/identityService/schema.s.ts +744 -1119
  271. package/schemas/inventoryService/schema.s.ts +43 -425
  272. package/schemas/invoicingService/schema.s.ts +590 -521
  273. package/schemas/ordersService/schema.s.ts +605 -0
  274. package/schemas/pricingService/schema.s.ts +579 -549
  275. package/schemas/systemService/schema.s.ts +138 -0
  276. package/schemas/tenantService/schema.s.ts +1116 -1606
  277. package/schemas/walletsService/schema.s.ts +466 -0
  278. package/tsconfig.json +110 -0
  279. package/vite.config.js +29 -0
  280. package/wwwroot/build/bundle.js +1 -0
  281. package/clients/cartService/models/AccessTokenResponse.ts +0 -11
  282. package/clients/cartService/models/Error.ts +0 -10
  283. package/clients/cartService/models/ForgotPasswordRequest.ts +0 -8
  284. package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
  285. package/clients/cartService/models/InfoRequest.ts +0 -10
  286. package/clients/cartService/models/LoginRequest.ts +0 -11
  287. package/clients/cartService/models/RefreshRequest.ts +0 -8
  288. package/clients/cartService/models/ResendConfirmationEmailRequest.ts +0 -8
  289. package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
  290. package/clients/cartService/models/ResponseStatus.ts +0 -12
  291. package/clients/cartService/models/TwoFactorRequest.ts +0 -12
  292. package/clients/cartService/models/TwoFactorResponse.ts +0 -12
  293. package/clients/cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts +0 -14
  294. package/clients/cartService/services/FenixAllianceAbsWebService.ts +0 -293
  295. package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
  296. package/clients/catalogService/models/ForgotPasswordRequest.ts +0 -8
  297. package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
  298. package/clients/catalogService/models/InfoRequest.ts +0 -10
  299. package/clients/catalogService/models/InfoResponse.ts +0 -9
  300. package/clients/catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts +0 -14
  301. package/clients/catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts +0 -14
  302. package/clients/catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts +0 -14
  303. package/clients/catalogService/models/ItemPricePolicyDto.ts +0 -35
  304. package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +0 -14
  305. package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +0 -14
  306. package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +0 -14
  307. package/clients/catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts +0 -14
  308. package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +0 -14
  309. package/clients/catalogService/models/LoginRequest.ts +0 -11
  310. package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +0 -14
  311. package/clients/catalogService/models/RefreshRequest.ts +0 -8
  312. package/clients/catalogService/models/RegisterRequest.ts +0 -9
  313. package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
  314. package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
  315. package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
  316. package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
  317. package/clients/catalogService/services/FenixAllianceAbsWebService.ts +0 -293
  318. package/clients/contactService/index.ts +0 -28
  319. package/clients/contactService/models/AccessTokenResponse.ts +0 -11
  320. package/clients/contactService/models/ContactDto.ts +0 -44
  321. package/clients/contactService/models/ForgotPasswordRequest.ts +0 -8
  322. package/clients/contactService/models/HttpValidationProblemDetails.ts +0 -5
  323. package/clients/contactService/models/InfoRequest.ts +0 -10
  324. package/clients/contactService/models/InfoResponse.ts +0 -9
  325. package/clients/contactService/models/LoginRequest.ts +0 -11
  326. package/clients/contactService/models/RefreshRequest.ts +0 -8
  327. package/clients/contactService/models/RegisterRequest.ts +0 -9
  328. package/clients/contactService/models/ResendConfirmationEmailRequest.ts +0 -8
  329. package/clients/contactService/models/ResetPasswordRequest.ts +0 -10
  330. package/clients/contactService/models/TwoFactorRequest.ts +0 -12
  331. package/clients/contactService/models/TwoFactorResponse.ts +0 -12
  332. package/clients/contactService/services/ContactsService.ts +0 -140
  333. package/clients/contactService/services/FenixAllianceAbsWebService.ts +0 -293
  334. package/clients/forexService/models/AccessTokenResponse.ts +0 -11
  335. package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
  336. package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
  337. package/clients/forexService/models/InfoRequest.ts +0 -10
  338. package/clients/forexService/models/InfoResponse.ts +0 -9
  339. package/clients/forexService/models/LoginRequest.ts +0 -11
  340. package/clients/forexService/models/RefreshRequest.ts +0 -8
  341. package/clients/forexService/models/RegisterRequest.ts +0 -9
  342. package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
  343. package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
  344. package/clients/forexService/models/TwoFactorRequest.ts +0 -12
  345. package/clients/forexService/models/TwoFactorResponse.ts +0 -12
  346. package/clients/forexService/services/FenixAllianceAbsWebService.ts +0 -293
  347. package/clients/holderService/models/AccessTokenResponse.ts +0 -11
  348. package/clients/holderService/models/AccountHolderCreateDto.ts +0 -34
  349. package/clients/holderService/models/AccountHolderDtoEnvelope.ts +0 -14
  350. package/clients/holderService/models/BusinessEnrollmentDto.ts +0 -19
  351. package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
  352. package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
  353. package/clients/holderService/models/InfoRequest.ts +0 -10
  354. package/clients/holderService/models/InfoResponse.ts +0 -9
  355. package/clients/holderService/models/LoginRequest.ts +0 -11
  356. package/clients/holderService/models/RefreshRequest.ts +0 -8
  357. package/clients/holderService/models/RegisterRequest.ts +0 -9
  358. package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
  359. package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
  360. package/clients/holderService/models/TwoFactorRequest.ts +0 -12
  361. package/clients/holderService/models/TwoFactorResponse.ts +0 -12
  362. package/clients/holderService/services/FenixAllianceAbsWebService.ts +0 -293
  363. package/clients/identityService/models/AccessTokenResponse.ts +0 -11
  364. package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
  365. package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
  366. package/clients/identityService/models/InfoRequest.ts +0 -10
  367. package/clients/identityService/models/InfoResponse.ts +0 -9
  368. package/clients/identityService/models/LoginRequest.ts +0 -11
  369. package/clients/identityService/models/RefreshRequest.ts +0 -8
  370. package/clients/identityService/models/RegisterRequest.ts +0 -9
  371. package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
  372. package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
  373. package/clients/identityService/models/TwoFactorRequest.ts +0 -12
  374. package/clients/identityService/models/TwoFactorResponse.ts +0 -12
  375. package/clients/identityService/services/FenixAllianceAbsWebService.ts +0 -293
  376. package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
  377. package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
  378. package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
  379. package/clients/inventoryService/models/InfoRequest.ts +0 -10
  380. package/clients/inventoryService/models/InfoResponse.ts +0 -9
  381. package/clients/inventoryService/models/LoginRequest.ts +0 -11
  382. package/clients/inventoryService/models/RefreshRequest.ts +0 -8
  383. package/clients/inventoryService/models/RegisterRequest.ts +0 -9
  384. package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
  385. package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
  386. package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
  387. package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
  388. package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +0 -293
  389. package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
  390. package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
  391. package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
  392. package/clients/invoicingService/models/InfoRequest.ts +0 -10
  393. package/clients/invoicingService/models/InfoResponse.ts +0 -9
  394. package/clients/invoicingService/models/LoginRequest.ts +0 -11
  395. package/clients/invoicingService/models/RefreshRequest.ts +0 -8
  396. package/clients/invoicingService/models/RegisterRequest.ts +0 -9
  397. package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
  398. package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
  399. package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
  400. package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
  401. package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +0 -293
  402. package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
  403. package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
  404. package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
  405. package/clients/pricingService/models/InfoRequest.ts +0 -10
  406. package/clients/pricingService/models/InfoResponse.ts +0 -9
  407. package/clients/pricingService/models/LoginRequest.ts +0 -11
  408. package/clients/pricingService/models/RefreshRequest.ts +0 -8
  409. package/clients/pricingService/models/RegisterRequest.ts +0 -9
  410. package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
  411. package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
  412. package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
  413. package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
  414. package/clients/pricingService/services/FenixAllianceAbsWebService.ts +0 -293
  415. package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
  416. package/clients/tenantService/models/AccountHolderCreateDto.ts +0 -34
  417. package/clients/tenantService/models/AggregateException.ts +0 -18
  418. package/clients/tenantService/models/Assembly.ts +0 -46
  419. package/clients/tenantService/models/BusinessEnrollmentDto.ts +0 -19
  420. package/clients/tenantService/models/BusinessEnrollmentDtoEnvelope.ts +0 -14
  421. package/clients/tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts +0 -14
  422. package/clients/tenantService/models/ConstructorInfo.ts +0 -103
  423. package/clients/tenantService/models/CustomAttributeData.ts +0 -15
  424. package/clients/tenantService/models/CustomAttributeNamedArgument.ts +0 -13
  425. package/clients/tenantService/models/CustomAttributeTypedArgument.ts +0 -10
  426. package/clients/tenantService/models/EventInfo.ts +0 -44
  427. package/clients/tenantService/models/Exception.ts +0 -16
  428. package/clients/tenantService/models/FieldInfo.ts +0 -74
  429. package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
  430. package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
  431. package/clients/tenantService/models/ICustomAttributeProvider.ts +0 -5
  432. package/clients/tenantService/models/InfoRequest.ts +0 -10
  433. package/clients/tenantService/models/InfoResponse.ts +0 -9
  434. package/clients/tenantService/models/LoginRequest.ts +0 -11
  435. package/clients/tenantService/models/MemberInfo.ts +0 -31
  436. package/clients/tenantService/models/MethodBase.ts +0 -103
  437. package/clients/tenantService/models/MethodInfo.ts +0 -108
  438. package/clients/tenantService/models/Module.ts +0 -19
  439. package/clients/tenantService/models/ModuleHandle.ts +0 -8
  440. package/clients/tenantService/models/ParameterInfo.ts +0 -40
  441. package/clients/tenantService/models/PropertyInfo.ts +0 -49
  442. package/clients/tenantService/models/RefreshRequest.ts +0 -8
  443. package/clients/tenantService/models/RegisterRequest.ts +0 -9
  444. package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
  445. package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
  446. package/clients/tenantService/models/ResponseStatus.ts +0 -12
  447. package/clients/tenantService/models/RuntimeFieldHandle.ts +0 -9
  448. package/clients/tenantService/models/RuntimeMethodHandle.ts +0 -9
  449. package/clients/tenantService/models/RuntimeTypeHandle.ts +0 -9
  450. package/clients/tenantService/models/StructLayoutAttribute.ts +0 -16
  451. package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
  452. package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
  453. package/clients/tenantService/models/Type.ts +0 -141
  454. package/clients/tenantService/models/TypeInfo.ts +0 -156
  455. package/clients/tenantService/models/WalletDtoTask.ts +0 -40
  456. package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +0 -14
  457. package/clients/tenantService/services/FenixAllianceAbsWebService.ts +0 -293
  458. package/schemas/contactService/schema.s.ts +0 -674
  459. /package/clients/{contactService → crmService}/models/ContactDtoEnvelope.ts +0 -0
  460. /package/clients/{contactService → crmService}/models/ContactDtoListEnvelope.ts +0 -0
  461. /package/clients/{contactService → crmService}/models/ErrorEnvelope.ts +0 -0
@@ -1,1560 +1,1166 @@
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
- }
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"]["CartDtoEnvelope"];
23
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
24
+ };
25
+ };
26
+ /** @description Unauthorized */
27
+ 401: {
28
+ content: {
29
+ "application/json": components["schemas"]["ErrorEnvelope"];
30
+ "application/xml": components["schemas"]["ErrorEnvelope"];
31
+ };
32
+ };
33
+ /** @description Forbidden */
34
+ 403: {
35
+ content: {
36
+ "application/json": components["schemas"]["ErrorEnvelope"];
37
+ "application/xml": components["schemas"]["ErrorEnvelope"];
38
+ };
39
+ };
40
+ };
41
+ };
42
+ };
43
+ "/api/v2/CartService/Carts/{cartId}": {
44
+ put: {
45
+ parameters: {
46
+ query?: {
47
+ "api-version"?: string;
48
+ };
49
+ path: {
50
+ cartId: string;
51
+ };
52
+ };
53
+ requestBody?: {
54
+ content: {
55
+ "application/json": components["schemas"]["CartUpdateRequest"];
56
+ "application/xml": components["schemas"]["CartUpdateRequest"];
57
+ };
58
+ };
59
+ responses: {
60
+ /** @description Success */
61
+ 200: {
62
+ content: {
63
+ "application/json": components["schemas"]["EmptyEnvelope"];
64
+ "application/xml": components["schemas"]["EmptyEnvelope"];
65
+ };
66
+ };
67
+ /** @description Unauthorized */
68
+ 401: {
69
+ content: {
70
+ "application/json": components["schemas"]["ErrorEnvelope"];
71
+ "application/xml": components["schemas"]["ErrorEnvelope"];
72
+ };
73
+ };
74
+ /** @description Forbidden */
75
+ 403: {
76
+ content: {
77
+ "application/json": components["schemas"]["ErrorEnvelope"];
78
+ "application/xml": components["schemas"]["ErrorEnvelope"];
79
+ };
80
+ };
81
+ };
82
+ };
83
+ };
84
+ "/api/v2/CartService/Carts/ActingCart": {
85
+ get: {
86
+ parameters: {
87
+ query?: {
88
+ "api-version"?: string;
89
+ };
90
+ };
91
+ responses: {
92
+ /** @description Success */
93
+ 200: {
94
+ content: {
95
+ "application/json": components["schemas"]["CartDtoEnvelope"];
96
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
97
+ };
98
+ };
99
+ /** @description Unauthorized */
100
+ 401: {
101
+ content: {
102
+ "application/json": components["schemas"]["ErrorEnvelope"];
103
+ "application/xml": components["schemas"]["ErrorEnvelope"];
104
+ };
105
+ };
106
+ /** @description Forbidden */
107
+ 403: {
108
+ content: {
109
+ "application/json": components["schemas"]["ErrorEnvelope"];
110
+ "application/xml": components["schemas"]["ErrorEnvelope"];
111
+ };
112
+ };
113
+ };
114
+ };
115
+ };
116
+ "/api/v2/CartService/Carts/GuestCart": {
117
+ get: {
118
+ parameters: {
119
+ query?: {
120
+ "api-version"?: string;
121
+ };
122
+ };
123
+ responses: {
124
+ /** @description Success */
125
+ 200: {
126
+ content: {
127
+ "application/json": components["schemas"]["CartDtoEnvelope"];
128
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
129
+ };
130
+ };
131
+ /** @description Unauthorized */
132
+ 401: {
133
+ content: {
134
+ "application/json": components["schemas"]["ErrorEnvelope"];
135
+ "application/xml": components["schemas"]["ErrorEnvelope"];
136
+ };
137
+ };
138
+ /** @description Forbidden */
139
+ 403: {
140
+ content: {
141
+ "application/json": components["schemas"]["ErrorEnvelope"];
142
+ "application/xml": components["schemas"]["ErrorEnvelope"];
143
+ };
144
+ };
145
+ };
146
+ };
147
+ };
148
+ "/api/v2/CartService/Carts/UserCart": {
149
+ get: {
150
+ parameters: {
151
+ query?: {
152
+ "api-version"?: string;
153
+ };
154
+ };
155
+ responses: {
156
+ /** @description Success */
157
+ 200: {
158
+ content: {
159
+ "application/json": components["schemas"]["CartDtoEnvelope"];
160
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
161
+ };
162
+ };
163
+ /** @description Unauthorized */
164
+ 401: {
165
+ content: {
166
+ "application/json": components["schemas"]["ErrorEnvelope"];
167
+ "application/xml": components["schemas"]["ErrorEnvelope"];
168
+ };
169
+ };
170
+ };
171
+ };
172
+ };
173
+ "/api/v2/CartService/Carts/BusinessCart/{tenantId}": {
174
+ get: {
175
+ parameters: {
176
+ query?: {
177
+ "api-version"?: string;
178
+ };
179
+ path: {
180
+ tenantId: string;
181
+ };
182
+ };
183
+ responses: {
184
+ /** @description Success */
185
+ 200: {
186
+ content: {
187
+ "application/json": components["schemas"]["CartDtoEnvelope"];
188
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
189
+ };
190
+ };
191
+ /** @description Unauthorized */
192
+ 401: {
193
+ content: {
194
+ "application/json": components["schemas"]["ErrorEnvelope"];
195
+ "application/xml": components["schemas"]["ErrorEnvelope"];
196
+ };
197
+ };
198
+ /** @description Forbidden */
199
+ 403: {
200
+ content: {
201
+ "application/json": components["schemas"]["ErrorEnvelope"];
202
+ "application/xml": components["schemas"]["ErrorEnvelope"];
203
+ };
204
+ };
205
+ };
206
+ };
207
+ };
208
+ "/api/v2/CartService/Carts/SetCurrency": {
209
+ post: {
210
+ parameters: {
211
+ query?: {
212
+ "api-version"?: string;
213
+ };
214
+ };
215
+ requestBody?: {
216
+ content: {
217
+ "application/json": components["schemas"]["CurrencySwitchRequest"];
218
+ "application/xml": components["schemas"]["CurrencySwitchRequest"];
219
+ };
220
+ };
221
+ responses: {
222
+ /** @description Success */
223
+ 200: {
224
+ content: never;
225
+ };
226
+ };
227
+ };
228
+ };
229
+ "/api/v2/CartService/Carts/SetCountry": {
230
+ post: {
231
+ parameters: {
232
+ query?: {
233
+ "api-version"?: string;
234
+ };
235
+ };
236
+ requestBody?: {
237
+ content: {
238
+ "application/json": components["schemas"]["CountrySwitchRequest"];
239
+ "application/xml": components["schemas"]["CountrySwitchRequest"];
240
+ };
241
+ };
242
+ responses: {
243
+ /** @description Success */
244
+ 200: {
245
+ content: never;
246
+ };
247
+ };
248
+ };
249
+ };
250
+ "/api/v2/CartService/Compare/{cartId}": {
251
+ get: {
252
+ parameters: {
253
+ query?: {
254
+ "api-version"?: string;
255
+ };
256
+ path: {
257
+ cartId: string;
258
+ };
259
+ };
260
+ responses: {
261
+ /** @description Success */
262
+ 200: {
263
+ content: {
264
+ "application/json": components["schemas"]["ItemToCompareCartRecordDtoListEnvelope"];
265
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDtoListEnvelope"];
266
+ };
267
+ };
268
+ /** @description Unauthorized */
269
+ 401: {
270
+ content: {
271
+ "application/json": components["schemas"]["ErrorEnvelope"];
272
+ "application/xml": components["schemas"]["ErrorEnvelope"];
273
+ };
274
+ };
275
+ /** @description Not Found */
276
+ 404: {
277
+ content: {
278
+ "application/json": components["schemas"]["ErrorEnvelope"];
279
+ "application/xml": components["schemas"]["ErrorEnvelope"];
280
+ };
281
+ };
282
+ };
283
+ };
284
+ };
285
+ "/api/v2/CartService/Compare/{recordId}/Details": {
286
+ get: {
287
+ parameters: {
288
+ query?: {
289
+ "api-version"?: string;
290
+ };
291
+ path: {
292
+ recordId: string;
293
+ };
294
+ };
295
+ responses: {
296
+ /** @description Success */
297
+ 200: {
298
+ content: {
299
+ "application/json": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
300
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
301
+ };
302
+ };
303
+ /** @description Not Found */
304
+ 404: {
305
+ content: {
306
+ "application/json": components["schemas"]["ErrorEnvelope"];
307
+ "application/xml": components["schemas"]["ErrorEnvelope"];
308
+ };
309
+ };
310
+ };
311
+ };
312
+ };
313
+ "/api/v2/CartService/Compare": {
314
+ post: {
315
+ parameters: {
316
+ query?: {
317
+ "api-version"?: string;
318
+ };
319
+ };
320
+ requestBody?: {
321
+ content: {
322
+ "application/json": components["schemas"]["AddProductToCompareRequest"];
323
+ "application/xml": components["schemas"]["AddProductToCompareRequest"];
324
+ };
325
+ };
326
+ responses: {
327
+ /** @description Success */
328
+ 200: {
329
+ content: {
330
+ "application/json": components["schemas"]["ItemCartRecordDto"];
331
+ "application/xml": components["schemas"]["ItemCartRecordDto"];
332
+ };
333
+ };
334
+ /** @description Not Found */
335
+ 404: {
336
+ content: {
337
+ "application/json": components["schemas"]["ErrorEnvelope"];
338
+ "application/xml": components["schemas"]["ErrorEnvelope"];
339
+ };
340
+ };
341
+ };
342
+ };
343
+ };
344
+ "/api/v2/CartService/Compare/{recordId}": {
345
+ delete: {
346
+ parameters: {
347
+ query?: {
348
+ "api-version"?: string;
349
+ };
350
+ path: {
351
+ recordId: string;
352
+ };
353
+ };
354
+ responses: {
355
+ /** @description Success */
356
+ 200: {
357
+ content: {
358
+ "application/json": components["schemas"]["ItemToCompareCartRecordDto"];
359
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDto"];
360
+ };
361
+ };
362
+ /** @description Not Found */
363
+ 404: {
364
+ content: {
365
+ "application/json": components["schemas"]["ErrorEnvelope"];
366
+ "application/xml": components["schemas"]["ErrorEnvelope"];
367
+ };
368
+ };
369
+ };
370
+ };
371
+ };
372
+ "/api/v2/CartService/Records/AddItem": {
373
+ post: {
374
+ parameters: {
375
+ query?: {
376
+ cartId?: string;
377
+ itemId?: string;
378
+ quantity?: number;
379
+ "api-version"?: string;
380
+ };
381
+ };
382
+ responses: {
383
+ /** @description Success */
384
+ 200: {
385
+ content: {
386
+ "application/json": components["schemas"]["EmptyEnvelope"];
387
+ "application/xml": components["schemas"]["EmptyEnvelope"];
388
+ };
389
+ };
390
+ /** @description Unauthorized */
391
+ 401: {
392
+ content: {
393
+ "application/json": components["schemas"]["ErrorEnvelope"];
394
+ "application/xml": components["schemas"]["ErrorEnvelope"];
395
+ };
396
+ };
397
+ /** @description Not Found */
398
+ 404: {
399
+ content: {
400
+ "application/json": components["schemas"]["ErrorEnvelope"];
401
+ "application/xml": components["schemas"]["ErrorEnvelope"];
402
+ };
403
+ };
404
+ };
405
+ };
406
+ };
407
+ "/api/v2/CartService/Records/{cartID}": {
408
+ get: {
409
+ parameters: {
410
+ query?: {
411
+ "api-version"?: string;
412
+ };
413
+ path: {
414
+ cartId: string;
415
+ };
416
+ };
417
+ responses: {
418
+ /** @description Success */
419
+ 200: {
420
+ content: {
421
+ "application/json": components["schemas"]["ItemCartRecordDtoListEnvelope"];
422
+ "application/xml": components["schemas"]["ItemCartRecordDtoListEnvelope"];
423
+ };
424
+ };
425
+ /** @description Unauthorized */
426
+ 401: {
427
+ content: {
428
+ "application/json": components["schemas"]["ErrorEnvelope"];
429
+ "application/xml": components["schemas"]["ErrorEnvelope"];
430
+ };
431
+ };
432
+ /** @description Not Found */
433
+ 404: {
434
+ content: {
435
+ "application/json": components["schemas"]["ErrorEnvelope"];
436
+ "application/xml": components["schemas"]["ErrorEnvelope"];
437
+ };
438
+ };
439
+ };
440
+ };
441
+ };
442
+ "/api/v2/CartService/Records": {
443
+ post: {
444
+ parameters: {
445
+ query?: {
446
+ "api-version"?: string;
447
+ };
448
+ };
449
+ requestBody?: {
450
+ content: {
451
+ "application/json": components["schemas"]["ItemCartRecordCreateDto"];
452
+ "application/xml": components["schemas"]["ItemCartRecordCreateDto"];
453
+ };
454
+ };
455
+ responses: {
456
+ /** @description Success */
457
+ 200: {
458
+ content: {
459
+ "application/json": components["schemas"]["EmptyEnvelope"];
460
+ "application/xml": components["schemas"]["EmptyEnvelope"];
461
+ };
462
+ };
463
+ /** @description Unauthorized */
464
+ 401: {
465
+ content: {
466
+ "application/json": components["schemas"]["ErrorEnvelope"];
467
+ "application/xml": components["schemas"]["ErrorEnvelope"];
468
+ };
469
+ };
470
+ /** @description Not Found */
471
+ 404: {
472
+ content: {
473
+ "application/json": components["schemas"]["ErrorEnvelope"];
474
+ "application/xml": components["schemas"]["ErrorEnvelope"];
475
+ };
476
+ };
477
+ };
478
+ };
479
+ delete: {
480
+ parameters: {
481
+ query?: {
482
+ cartId?: string;
483
+ productId?: string;
484
+ "api-version"?: string;
485
+ };
486
+ };
487
+ responses: {
488
+ /** @description Success */
489
+ 200: {
490
+ content: {
491
+ "application/json": components["schemas"]["EmptyEnvelope"];
492
+ "application/xml": components["schemas"]["EmptyEnvelope"];
493
+ };
494
+ };
495
+ /** @description Unauthorized */
496
+ 401: {
497
+ content: {
498
+ "application/json": components["schemas"]["ErrorEnvelope"];
499
+ "application/xml": components["schemas"]["ErrorEnvelope"];
500
+ };
501
+ };
502
+ /** @description Not Found */
503
+ 404: {
504
+ content: {
505
+ "application/json": components["schemas"]["ErrorEnvelope"];
506
+ "application/xml": components["schemas"]["ErrorEnvelope"];
507
+ };
508
+ };
509
+ };
510
+ };
511
+ };
512
+ "/api/v2/CartService/Records/IsInCart": {
513
+ get: {
514
+ parameters: {
515
+ query: {
516
+ itemID: string;
517
+ cartID: string;
518
+ "api-version"?: string;
519
+ };
520
+ };
521
+ responses: {
522
+ /** @description Success */
523
+ 200: {
524
+ content: {
525
+ "application/json": components["schemas"]["BooleanEnvelope"];
526
+ "application/xml": components["schemas"]["BooleanEnvelope"];
527
+ };
528
+ };
529
+ /** @description Unauthorized */
530
+ 401: {
531
+ content: {
532
+ "application/json": components["schemas"]["ErrorEnvelope"];
533
+ "application/xml": components["schemas"]["ErrorEnvelope"];
534
+ };
535
+ };
536
+ /** @description Not Found */
537
+ 404: {
538
+ content: {
539
+ "application/json": components["schemas"]["EmptyEnvelope"];
540
+ "application/xml": components["schemas"]["EmptyEnvelope"];
541
+ };
542
+ };
543
+ };
544
+ };
545
+ };
546
+ "/api/v2/CartService/Records/ClearCart": {
547
+ post: {
548
+ parameters: {
549
+ query: {
550
+ cartID: string;
551
+ "api-version"?: string;
552
+ };
553
+ };
554
+ responses: {
555
+ /** @description Success */
556
+ 200: {
557
+ content: {
558
+ "application/json": components["schemas"]["EmptyEnvelope"];
559
+ "application/xml": components["schemas"]["EmptyEnvelope"];
560
+ };
561
+ };
562
+ /** @description Unauthorized */
563
+ 401: {
564
+ content: {
565
+ "application/json": components["schemas"]["ErrorEnvelope"];
566
+ "application/xml": components["schemas"]["ErrorEnvelope"];
567
+ };
568
+ };
569
+ /** @description Not Found */
570
+ 404: {
571
+ content: {
572
+ "application/json": components["schemas"]["ErrorEnvelope"];
573
+ "application/xml": components["schemas"]["ErrorEnvelope"];
574
+ };
575
+ };
576
+ };
577
+ };
578
+ };
579
+ "/api/v2/CartService/Records/{recordId}/Details": {
580
+ get: {
581
+ parameters: {
582
+ query?: {
583
+ "api-version"?: string;
584
+ };
585
+ path: {
586
+ recordId: string;
587
+ };
588
+ };
589
+ responses: {
590
+ /** @description Success */
591
+ 200: {
592
+ content: {
593
+ "application/json": components["schemas"]["EmptyEnvelope"];
594
+ "application/xml": components["schemas"]["EmptyEnvelope"];
595
+ };
596
+ };
597
+ /** @description Unauthorized */
598
+ 401: {
599
+ content: {
600
+ "application/json": components["schemas"]["ItemCartRecordDtoEnvelope"];
601
+ "application/xml": components["schemas"]["ItemCartRecordDtoEnvelope"];
602
+ };
603
+ };
604
+ /** @description Not Found */
605
+ 404: {
606
+ content: {
607
+ "application/json": components["schemas"]["ErrorEnvelope"];
608
+ "application/xml": components["schemas"]["ErrorEnvelope"];
609
+ };
610
+ };
611
+ };
612
+ };
613
+ };
614
+ "/api/v2/CartService/Records/{recordId}": {
615
+ put: {
616
+ parameters: {
617
+ query?: {
618
+ "api-version"?: string;
619
+ };
620
+ path: {
621
+ recordId: string;
622
+ };
623
+ };
624
+ requestBody?: {
625
+ content: {
626
+ "application/json": components["schemas"]["ItemCartRecordUpdateDto"];
627
+ "application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
628
+ };
629
+ };
630
+ responses: {
631
+ /** @description Success */
632
+ 200: {
633
+ content: {
634
+ "application/json": components["schemas"]["EmptyEnvelope"];
635
+ "application/xml": components["schemas"]["EmptyEnvelope"];
636
+ };
637
+ };
638
+ /** @description Unauthorized */
639
+ 401: {
640
+ content: {
641
+ "application/json": components["schemas"]["ErrorEnvelope"];
642
+ "application/xml": components["schemas"]["ErrorEnvelope"];
643
+ };
644
+ };
645
+ /** @description Not Found */
646
+ 404: {
647
+ content: {
648
+ "application/json": components["schemas"]["ErrorEnvelope"];
649
+ "application/xml": components["schemas"]["ErrorEnvelope"];
650
+ };
651
+ };
652
+ };
653
+ };
654
+ delete: {
655
+ parameters: {
656
+ query?: {
657
+ "api-version"?: string;
658
+ };
659
+ path: {
660
+ recordId: string;
661
+ };
662
+ };
663
+ responses: {
664
+ /** @description Success */
665
+ 200: {
666
+ content: {
667
+ "application/json": components["schemas"]["EmptyEnvelope"];
668
+ "application/xml": components["schemas"]["EmptyEnvelope"];
669
+ };
670
+ };
671
+ /** @description Unauthorized */
672
+ 401: {
673
+ content: {
674
+ "application/json": components["schemas"]["ErrorEnvelope"];
675
+ "application/xml": components["schemas"]["ErrorEnvelope"];
676
+ };
677
+ };
678
+ /** @description Not Found */
679
+ 404: {
680
+ content: {
681
+ "application/json": components["schemas"]["ErrorEnvelope"];
682
+ "application/xml": components["schemas"]["ErrorEnvelope"];
683
+ };
684
+ };
685
+ };
686
+ };
687
+ };
688
+ "/api/v2/CartService/WishLists": {
689
+ post: {
690
+ parameters: {
691
+ query?: {
692
+ "api-version"?: string;
693
+ };
694
+ };
695
+ requestBody?: {
696
+ content: {
697
+ "application/json": components["schemas"]["NewWishListRequest"];
698
+ "application/xml": components["schemas"]["NewWishListRequest"];
699
+ };
700
+ };
701
+ responses: {
702
+ /** @description Success */
703
+ 200: {
704
+ content: {
705
+ "application/json": components["schemas"]["EmptyEnvelope"];
706
+ "application/xml": components["schemas"]["EmptyEnvelope"];
707
+ };
708
+ };
709
+ };
710
+ };
711
+ };
712
+ "/api/v2/CartService/WishLists/{wishListId}": {
713
+ put: {
714
+ parameters: {
715
+ query?: {
716
+ "api-version"?: string;
717
+ };
718
+ path: {
719
+ wishListId: string;
720
+ };
721
+ };
722
+ requestBody?: {
723
+ content: {
724
+ "application/json": components["schemas"]["WishListUpdateDto"];
725
+ "application/xml": components["schemas"]["WishListUpdateDto"];
726
+ };
727
+ };
728
+ responses: {
729
+ /** @description Success */
730
+ 200: {
731
+ content: {
732
+ "application/json": components["schemas"]["EmptyEnvelope"];
733
+ "application/xml": components["schemas"]["EmptyEnvelope"];
734
+ };
735
+ };
736
+ };
737
+ };
738
+ delete: {
739
+ parameters: {
740
+ query?: {
741
+ "api-version"?: string;
742
+ };
743
+ path: {
744
+ wishListID: string;
745
+ };
746
+ };
747
+ responses: {
748
+ /** @description Success */
749
+ 200: {
750
+ content: {
751
+ "application/json": components["schemas"]["EmptyEnvelope"];
752
+ "application/xml": components["schemas"]["EmptyEnvelope"];
753
+ };
754
+ };
755
+ };
756
+ };
757
+ };
758
+ "/api/v2/CartService/WishLists/{cartId}": {
759
+ get: {
760
+ parameters: {
761
+ query?: {
762
+ "api-version"?: string;
763
+ };
764
+ path: {
765
+ cartId: string;
766
+ };
767
+ };
768
+ responses: {
769
+ /** @description Success */
770
+ 200: {
771
+ content: {
772
+ "application/json": components["schemas"]["WishListDto"][];
773
+ "application/xml": components["schemas"]["WishListDto"][];
774
+ };
775
+ };
776
+ };
777
+ };
778
+ };
779
+ "/api/v2/CartService/WishLists/{wishListId}/Records": {
780
+ get: {
781
+ parameters: {
782
+ query?: {
783
+ "api-version"?: string;
784
+ };
785
+ path: {
786
+ wishListId: string;
787
+ };
788
+ };
789
+ responses: {
790
+ /** @description Success */
791
+ 200: {
792
+ content: {
793
+ "application/json": components["schemas"]["WishListItemRecordDto"][];
794
+ "application/xml": components["schemas"]["WishListItemRecordDto"][];
795
+ };
796
+ };
797
+ };
798
+ };
799
+ };
800
+ "/api/v2/CartService/WishLists/{wishListId}/Details": {
801
+ get: {
802
+ parameters: {
803
+ query?: {
804
+ "api-version"?: string;
805
+ };
806
+ path: {
807
+ wishListId: string;
808
+ };
809
+ };
810
+ responses: {
811
+ /** @description Success */
812
+ 200: {
813
+ content: {
814
+ "application/json": components["schemas"]["WishListDto"];
815
+ "application/xml": components["schemas"]["WishListDto"];
816
+ };
817
+ };
818
+ };
819
+ };
820
+ };
821
+ "/api/v2/CartService/WishLists/Records": {
822
+ post: {
823
+ parameters: {
824
+ query?: {
825
+ "api-version"?: string;
826
+ };
827
+ };
828
+ requestBody?: {
829
+ content: {
830
+ "application/json": components["schemas"]["ProductToWishListRequest"];
831
+ "application/xml": components["schemas"]["ProductToWishListRequest"];
832
+ };
833
+ };
834
+ responses: {
835
+ /** @description Success */
836
+ 200: {
837
+ content: {
838
+ "application/json": components["schemas"]["EmptyEnvelope"];
839
+ "application/xml": components["schemas"]["EmptyEnvelope"];
840
+ };
841
+ };
842
+ };
843
+ };
844
+ };
845
+ "/api/v2/CartService/WishLists/Records/{recordId}": {
846
+ delete: {
847
+ parameters: {
848
+ query?: {
849
+ "api-version"?: string;
850
+ };
851
+ path: {
852
+ recordId: string;
853
+ };
854
+ };
855
+ responses: {
856
+ /** @description Success */
857
+ 200: {
858
+ content: never;
859
+ };
860
+ };
861
+ };
862
+ };
863
+ }
864
+
865
+ export type webhooks = Record<string, never>;
866
+
867
+ export interface components {
868
+ schemas: {
869
+ AddProductToCompareRequest: {
870
+ id?: string | null;
871
+ cartID?: string | null;
872
+ productID?: string | null;
873
+ };
874
+ BooleanEnvelope: {
875
+ errorMessage?: string | null;
876
+ isSuccess?: boolean;
877
+ /** Format: date-time */
878
+ timestamp?: string;
879
+ activityId?: string | null;
880
+ correlationId?: string | null;
881
+ result?: boolean;
882
+ };
883
+ CartDto: {
884
+ id?: string | null;
885
+ ip?: string | null;
886
+ type?: string | null;
887
+ /** Format: double */
888
+ total?: number;
889
+ /** Format: double */
890
+ taxes?: number;
891
+ /** Format: double */
892
+ freight?: number;
893
+ /** Format: double */
894
+ subTotal?: number;
895
+ currencyId?: string | null;
896
+ countryId?: string | null;
897
+ /** Format: int32 */
898
+ itemCartRecordsCount?: number | null;
899
+ /** Format: int32 */
900
+ itemToCompareRecordsCount?: number | null;
901
+ };
902
+ CartDtoEnvelope: {
903
+ errorMessage?: string | null;
904
+ isSuccess?: boolean;
905
+ /** Format: date-time */
906
+ timestamp?: string;
907
+ activityId?: string | null;
908
+ correlationId?: string | null;
909
+ result?: components["schemas"]["CartDto"];
910
+ };
911
+ CartUpdateRequest: {
912
+ currencyID?: string | null;
913
+ countryID?: string | null;
914
+ };
915
+ CountrySwitchRequest: {
916
+ cartID?: string | null;
917
+ countryID?: string | null;
918
+ };
919
+ CurrencySwitchRequest: {
920
+ cartID?: string | null;
921
+ currencyID?: string | null;
922
+ };
923
+ EmptyEnvelope: {
924
+ errorMessage?: string | null;
925
+ isSuccess?: boolean;
926
+ /** Format: date-time */
927
+ timestamp?: string;
928
+ activityId?: string | null;
929
+ };
930
+ ErrorEnvelope: {
931
+ errorMessage?: string | null;
932
+ isSuccess?: boolean;
933
+ /** Format: date-time */
934
+ timestamp?: string;
935
+ activityId?: string | null;
936
+ correlationId?: string | null;
937
+ };
938
+ ItemCartRecordCreateDto: {
939
+ id?: string | null;
940
+ /** Format: date-time */
941
+ timestamp?: string;
942
+ cartId?: string | null;
943
+ productId?: string | null;
944
+ /** Format: double */
945
+ quantity?: number;
946
+ };
947
+ ItemCartRecordDto: {
948
+ id?: string | null;
949
+ closed?: boolean;
950
+ itemId?: string | null;
951
+ businessId?: string | null;
952
+ currencyId?: string | null;
953
+ description?: string | null;
954
+ /** Format: double */
955
+ quantity?: number;
956
+ /** Format: date-time */
957
+ timestamp?: string;
958
+ free?: boolean;
959
+ freeReason?: string | null;
960
+ freeReasonCode?: string | null;
961
+ data?: string | null;
962
+ dataLabel?: string | null;
963
+ data1?: string | null;
964
+ data1Label?: string | null;
965
+ data2?: string | null;
966
+ data2Label?: string | null;
967
+ data3?: string | null;
968
+ data3Label?: string | null;
969
+ data4?: string | null;
970
+ data4Label?: string | null;
971
+ data5?: string | null;
972
+ data5Label?: string | null;
973
+ data6?: string | null;
974
+ data6Label?: string | null;
975
+ data7?: string | null;
976
+ data7Label?: string | null;
977
+ data8?: string | null;
978
+ data8Label?: string | null;
979
+ data9?: string | null;
980
+ data9Label?: string | null;
981
+ itemPriceId?: string | null;
982
+ priceListItemId?: string | null;
983
+ unitId?: string | null;
984
+ unitGroupId?: string | null;
985
+ /**
986
+ * Format: int32
987
+ * @enum {integer}
988
+ */
989
+ taxCalculationMethod?: 0 | 1;
990
+ /**
991
+ * Format: int32
992
+ * @enum {integer}
993
+ */
994
+ costCalculationMethod?: 0 | 1;
995
+ forexRatesSnapshot?: string | null;
996
+ /** Format: double */
997
+ forexRate?: number;
998
+ /** Format: double */
999
+ totalBaseAmountInUsd?: number;
1000
+ /** Format: double */
1001
+ totalProfitInUsd?: number;
1002
+ /** Format: double */
1003
+ totalDetailAmountInUsd?: number;
1004
+ /** Format: double */
1005
+ totalTaxBaseInUsd?: number;
1006
+ /** Format: double */
1007
+ totalDiscountsInUsd?: number;
1008
+ /** Format: double */
1009
+ totalTaxesInUsd?: number;
1010
+ /** Format: double */
1011
+ totalWithholdingTaxesInUsd?: number;
1012
+ /** Format: double */
1013
+ totalShippingCostInUsd?: number;
1014
+ /** Format: double */
1015
+ totalShippingTaxesInUsd?: number;
1016
+ /** Format: double */
1017
+ totalWarrantyCostInUsd?: number;
1018
+ /** Format: double */
1019
+ totalReturnCostInUsd?: number;
1020
+ /** Format: double */
1021
+ totalRefundCostInUsd?: number;
1022
+ /** Format: double */
1023
+ totalSurchargesInUsd?: number;
1024
+ /** Format: double */
1025
+ totalAmountInUsd?: number;
1026
+ /** Format: double */
1027
+ totalGlobalDiscountsInUsd?: number;
1028
+ /** Format: double */
1029
+ totalGlobalSurchargesInUsd?: number;
1030
+ /** Format: double */
1031
+ customGlobalSurchargesAmount?: number;
1032
+ /** Format: double */
1033
+ customGlobalDiscountsAmount?: number;
1034
+ /** Format: double */
1035
+ customBaseAmount?: number;
1036
+ /** Format: double */
1037
+ customDetailAmount?: number;
1038
+ /** Format: double */
1039
+ customDiscountsAmount?: number;
1040
+ /** Format: double */
1041
+ customTaxBase?: number;
1042
+ /** Format: double */
1043
+ customSurchargesAmount?: number;
1044
+ /** Format: double */
1045
+ customProfitAmount?: number;
1046
+ /** Format: double */
1047
+ customShippingCostAmount?: number;
1048
+ /** Format: double */
1049
+ customShippingTaxAmount?: number;
1050
+ /** Format: double */
1051
+ customTaxAmount?: number;
1052
+ /** Format: double */
1053
+ customWithholdingTaxAmount?: number;
1054
+ /** Format: double */
1055
+ customTotalAmount?: number;
1056
+ returnPolicyId?: string | null;
1057
+ refundPolicyId?: string | null;
1058
+ warrantyPolicyId?: string | null;
1059
+ shipmentPolicyId?: string | null;
1060
+ shippingLocationId?: string | null;
1061
+ locationId?: string | null;
1062
+ quoteItemRecordId?: string | null;
1063
+ businessProfileRecordId?: string | null;
1064
+ parentBillingItemRecordId?: string | null;
1065
+ cartId?: string | null;
1066
+ productId?: string | null;
1067
+ itemShortDescription?: string | null;
1068
+ itemTitle?: string | null;
1069
+ itemPrimaryImageUrl?: string | null;
1070
+ shippingPolicyId?: string | null;
1071
+ };
1072
+ ItemCartRecordDtoEnvelope: {
1073
+ errorMessage?: string | null;
1074
+ isSuccess?: boolean;
1075
+ /** Format: date-time */
1076
+ timestamp?: string;
1077
+ activityId?: string | null;
1078
+ correlationId?: string | null;
1079
+ result?: components["schemas"]["ItemCartRecordDto"];
1080
+ };
1081
+ ItemCartRecordDtoListEnvelope: {
1082
+ errorMessage?: string | null;
1083
+ isSuccess?: boolean;
1084
+ /** Format: date-time */
1085
+ timestamp?: string;
1086
+ activityId?: string | null;
1087
+ correlationId?: string | null;
1088
+ result?: components["schemas"]["ItemCartRecordDto"][] | null;
1089
+ };
1090
+ ItemCartRecordUpdateDto: {
1091
+ id?: string | null;
1092
+ /** Format: date-time */
1093
+ timestamp?: string | null;
1094
+ /** Format: double */
1095
+ quantity?: number;
1096
+ };
1097
+ ItemToCompareCartRecordDto: {
1098
+ id?: string | null;
1099
+ /** Format: date-time */
1100
+ timestamp?: string | null;
1101
+ cartId?: string | null;
1102
+ productId?: string | null;
1103
+ };
1104
+ ItemToCompareCartRecordDtoEnvelope: {
1105
+ errorMessage?: string | null;
1106
+ isSuccess?: boolean;
1107
+ /** Format: date-time */
1108
+ timestamp?: string;
1109
+ activityId?: string | null;
1110
+ correlationId?: string | null;
1111
+ result?: components["schemas"]["ItemToCompareCartRecordDto"];
1112
+ };
1113
+ ItemToCompareCartRecordDtoListEnvelope: {
1114
+ errorMessage?: string | null;
1115
+ isSuccess?: boolean;
1116
+ /** Format: date-time */
1117
+ timestamp?: string;
1118
+ activityId?: string | null;
1119
+ correlationId?: string | null;
1120
+ result?: components["schemas"]["ItemToCompareCartRecordDto"][] | null;
1121
+ };
1122
+ NewWishListRequest: {
1123
+ title?: string | null;
1124
+ description?: string | null;
1125
+ /** Format: uuid */
1126
+ cartID?: string;
1127
+ public?: boolean;
1128
+ };
1129
+ ProductToWishListRequest: {
1130
+ wishListID?: string | null;
1131
+ productID?: string | null;
1132
+ };
1133
+ WishListDto: {
1134
+ /** Format: date-time */
1135
+ timestamp?: string | null;
1136
+ id?: string | null;
1137
+ title?: string | null;
1138
+ description?: string | null;
1139
+ cartId?: string | null;
1140
+ public?: boolean;
1141
+ };
1142
+ WishListItemRecordDto: {
1143
+ id?: string | null;
1144
+ /** Format: date-time */
1145
+ timestamp?: string | null;
1146
+ wishListId?: string | null;
1147
+ productId?: string | null;
1148
+ };
1149
+ WishListUpdateDto: {
1150
+ title: string;
1151
+ description?: string | null;
1152
+ public?: boolean;
1153
+ };
1154
+ };
1155
+ responses: never;
1156
+ parameters: never;
1157
+ requestBodies: never;
1158
+ headers: never;
1159
+ pathItems: never;
1160
+ }
1161
+
1162
+ export type $defs = Record<string, never>;
1163
+
1164
+ export type external = Record<string, never>;
1165
+
1166
+ export type operations = Record<string, never>;