@fenixalliance/abs-api-client 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (978) hide show
  1. package/FenixAlliance.ABP.SDK.TypeScript.sln +25 -0
  2. package/FenixAlliance.ABP.SDK.TypeScript.xml +8 -0
  3. package/app/index.ts +5 -0
  4. package/clients/{contactService → accountingService}/core/ApiError.ts +24 -24
  5. package/clients/{contactService → accountingService}/core/ApiRequestOptions.ts +16 -16
  6. package/clients/{contactService → accountingService}/core/ApiResult.ts +10 -10
  7. package/clients/{contactService → accountingService}/core/CancelablePromise.ts +130 -130
  8. package/clients/{contactService → accountingService}/core/OpenAPI.ts +31 -31
  9. package/clients/{contactService → accountingService}/core/request.ts +321 -321
  10. package/clients/accountingService/index.ts +97 -0
  11. package/clients/accountingService/models/AccountCreateDto.ts +30 -0
  12. package/clients/accountingService/models/AccountDto.ts +41 -0
  13. package/clients/{catalogService/models/StockItemDtoEnvelope.ts → accountingService/models/AccountDtoEnvelope.ts} +5 -5
  14. package/clients/accountingService/models/AccountDtoListEnvelope.ts +14 -0
  15. package/clients/accountingService/models/AccountUpdateDto.ts +26 -0
  16. package/clients/accountingService/models/AccountingEntryCreateDto.ts +26 -0
  17. package/clients/accountingService/models/AccountingEntryDto.ts +34 -0
  18. package/clients/{catalogService/models/ItemPricePolicyDtoEnvelope.ts → accountingService/models/AccountingEntryDtoEnvelope.ts} +5 -5
  19. package/clients/accountingService/models/AccountingEntryDtoListEnvelope.ts +14 -0
  20. package/clients/accountingService/models/AccountingEntryUpdateDto.ts +24 -0
  21. package/clients/accountingService/models/BillingProfileCreateDto.ts +30 -0
  22. package/clients/accountingService/models/BillingProfileDto.ts +67 -0
  23. package/clients/accountingService/models/BillingProfileDtoEnvelope.ts +14 -0
  24. package/clients/accountingService/models/BillingProfileDtoListEnvelope.ts +14 -0
  25. package/clients/accountingService/models/BillingProfileUpdateDto.ts +28 -0
  26. package/clients/accountingService/models/BudgetCreateDto.ts +12 -0
  27. package/clients/accountingService/models/BudgetDto.ts +12 -0
  28. package/clients/accountingService/models/BudgetDtoEnvelope.ts +14 -0
  29. package/clients/accountingService/models/BudgetDtoListEnvelope.ts +14 -0
  30. package/clients/accountingService/models/BudgetUpdateDto.ts +9 -0
  31. package/clients/accountingService/models/CreateLedgerDto.ts +15 -0
  32. package/clients/{cartService/models/ForgotPasswordRequest.ts → accountingService/models/Currency.ts} +3 -2
  33. package/clients/{cartService/models/Envelope.ts → accountingService/models/EmptyEnvelope.ts} +3 -4
  34. package/clients/{contactService → accountingService}/models/ErrorEnvelope.ts +2 -2
  35. package/clients/accountingService/models/FinancialBookCreateDto.ts +12 -0
  36. package/clients/accountingService/models/FinancialBookDto.ts +12 -0
  37. package/clients/accountingService/models/FinancialBookDtoEnvelope.ts +14 -0
  38. package/clients/{catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts → accountingService/models/FinancialBookDtoListEnvelope.ts} +5 -5
  39. package/clients/accountingService/models/FinancialBookUpdateDto.ts +10 -0
  40. package/clients/accountingService/models/FiscalAuthorityCreateDto.ts +14 -0
  41. package/clients/accountingService/models/FiscalAuthorityDto.ts +16 -0
  42. package/clients/{cartService/models/WishListDtoIReadOnlyListEnvelope.ts → accountingService/models/FiscalAuthorityDtoEnvelope.ts} +5 -5
  43. package/clients/accountingService/models/FiscalAuthorityDtoListEnvelope.ts +14 -0
  44. package/clients/accountingService/models/FiscalAuthorityUpdateDto.ts +12 -0
  45. package/clients/accountingService/models/FiscalYearCreateDto.ts +16 -0
  46. package/clients/accountingService/models/FiscalYearDto.ts +16 -0
  47. package/clients/accountingService/models/FiscalYearDtoEnvelope.ts +14 -0
  48. package/clients/accountingService/models/FiscalYearDtoListEnvelope.ts +14 -0
  49. package/clients/accountingService/models/FiscalYearUpdateDto.ts +12 -0
  50. package/clients/accountingService/models/Int32Envelope.ts +13 -0
  51. package/clients/accountingService/models/InvoiceEnumerationRangeCreateDto.ts +29 -0
  52. package/clients/accountingService/models/InvoiceEnumerationRangeDto.ts +29 -0
  53. package/clients/{catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts → accountingService/models/InvoiceEnumerationRangeDtoEnvelope.ts} +5 -5
  54. package/clients/accountingService/models/InvoiceEnumerationRangeDtoListEnvelope.ts +14 -0
  55. package/clients/accountingService/models/InvoiceEnumerationRangeUpdateDto.ts +27 -0
  56. package/clients/accountingService/models/JournalCreateDto.ts +17 -0
  57. package/clients/accountingService/models/JournalDto.ts +17 -0
  58. package/clients/accountingService/models/JournalDtoEnvelope.ts +14 -0
  59. package/clients/accountingService/models/JournalDtoListEnvelope.ts +14 -0
  60. package/clients/accountingService/models/JournalEntryCreateDto.ts +20 -0
  61. package/clients/accountingService/models/JournalEntryDto.ts +31 -0
  62. package/clients/accountingService/models/JournalEntryDtoListEnvelope.ts +14 -0
  63. package/clients/accountingService/models/JournalEntryUpdateDto.ts +18 -0
  64. package/clients/accountingService/models/JournalTypeCreateDto.ts +12 -0
  65. package/clients/accountingService/models/JournalTypeDto.ts +12 -0
  66. package/clients/accountingService/models/JournalTypeDtoEnvelope.ts +14 -0
  67. package/clients/{catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts → accountingService/models/JournalTypeDtoListEnvelope.ts} +5 -5
  68. package/clients/{cartService/models/InfoRequest.ts → accountingService/models/JournalTypeUpdateDto.ts} +4 -4
  69. package/clients/accountingService/models/JournalUpdateDto.ts +13 -0
  70. package/clients/accountingService/models/LedgerDto.ts +15 -0
  71. package/clients/accountingService/models/LedgerDtoEnvelope.ts +14 -0
  72. package/clients/accountingService/models/LedgerDtoListEnvelope.ts +14 -0
  73. package/clients/accountingService/models/LoanCreateDto.ts +18 -0
  74. package/clients/accountingService/models/LoanDto.ts +18 -0
  75. package/clients/accountingService/models/LoanDtoEnvelope.ts +14 -0
  76. package/clients/accountingService/models/LoanDtoListEnvelope.ts +14 -0
  77. package/clients/accountingService/models/LoanUpdateDto.ts +15 -0
  78. package/clients/accountingService/models/Money.ts +10 -0
  79. package/clients/accountingService/models/Operation.ts +23 -0
  80. package/clients/accountingService/models/ReceiptCreateDto.ts +48 -0
  81. package/clients/accountingService/models/ReceiptDto.ts +24 -0
  82. package/clients/accountingService/models/ReceiptDtoEnvelope.ts +14 -0
  83. package/clients/accountingService/models/ReceiptDtoListEnvelope.ts +14 -0
  84. package/clients/accountingService/models/ReceiptUpdateDto.ts +19 -0
  85. package/clients/accountingService/models/UpdateLedgerDto.ts +12 -0
  86. package/clients/accountingService/services/AccountsService.ts +788 -0
  87. package/clients/accountingService/services/BillingProfilesService.ts +194 -0
  88. package/clients/accountingService/services/BudgetsService.ts +167 -0
  89. package/clients/accountingService/services/FinancialBooksService.ts +194 -0
  90. package/clients/accountingService/services/FiscalAuthoritiesService.ts +194 -0
  91. package/clients/accountingService/services/FiscalYearsService.ts +194 -0
  92. package/clients/accountingService/services/InvoiceEnumerationRangesService.ts +167 -0
  93. package/clients/accountingService/services/JournalTypesService.ts +167 -0
  94. package/clients/accountingService/services/JournalsService.ts +366 -0
  95. package/clients/accountingService/services/LedgersService.ts +163 -0
  96. package/clients/accountingService/services/LoansService.ts +194 -0
  97. package/clients/accountingService/services/ReceiptsService.ts +164 -0
  98. package/clients/cartService/core/ApiError.ts +24 -24
  99. package/clients/cartService/core/ApiRequestOptions.ts +16 -16
  100. package/clients/cartService/core/ApiResult.ts +10 -10
  101. package/clients/cartService/core/CancelablePromise.ts +130 -130
  102. package/clients/cartService/core/OpenAPI.ts +31 -31
  103. package/clients/cartService/core/request.ts +321 -321
  104. package/clients/cartService/index.ts +41 -52
  105. package/clients/cartService/models/BooleanEnvelope.ts +2 -2
  106. package/clients/cartService/models/CartDto.ts +1 -0
  107. package/clients/cartService/models/CartDtoEnvelope.ts +2 -2
  108. package/clients/cartService/models/CartUpdateRequest.ts +9 -0
  109. package/clients/cartService/models/CountryDto.ts +14 -0
  110. package/clients/cartService/models/CountryDtoEnvelope.ts +14 -0
  111. package/clients/cartService/models/CountrySwitchRequest.ts +9 -0
  112. package/clients/cartService/models/CurrencyDto.ts +13 -0
  113. package/clients/cartService/models/CurrencyDtoEnvelope.ts +14 -0
  114. package/clients/cartService/models/EmptyEnvelope.ts +12 -0
  115. package/clients/cartService/models/ErrorEnvelope.ts +2 -2
  116. package/clients/cartService/models/ItemCartRecordCreateDto.ts +2 -1
  117. package/clients/cartService/models/ItemCartRecordDto.ts +11 -7
  118. package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +2 -2
  119. package/clients/cartService/models/ItemCartRecordDtoListEnvelope.ts +14 -0
  120. package/clients/cartService/models/ItemCartRecordUpdateDto.ts +0 -2
  121. package/clients/cartService/models/ItemToCompareCartRecordDto.ts +14 -1
  122. package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +2 -2
  123. package/clients/cartService/models/{ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts → ItemToCompareCartRecordDtoListEnvelope.ts} +3 -3
  124. package/clients/cartService/models/ProductToWishListRequest.ts +2 -2
  125. package/clients/cartService/models/WishListDto.ts +2 -1
  126. package/clients/cartService/models/WishListDtoEnvelope.ts +2 -2
  127. package/clients/cartService/services/CartsService.ts +1114 -21
  128. package/clients/cartService/services/CompareService.ts +30 -9
  129. package/clients/cartService/services/RecordsService.ts +129 -21
  130. package/clients/cartService/services/WishListsService.ts +126 -19
  131. package/clients/catalogService/core/ApiError.ts +24 -24
  132. package/clients/catalogService/core/ApiRequestOptions.ts +16 -16
  133. package/clients/catalogService/core/ApiResult.ts +10 -10
  134. package/clients/catalogService/core/CancelablePromise.ts +130 -130
  135. package/clients/catalogService/core/OpenAPI.ts +31 -31
  136. package/clients/catalogService/core/request.ts +321 -321
  137. package/clients/catalogService/index.ts +110 -124
  138. package/clients/catalogService/models/CatalogItemCreateDto.ts +167 -0
  139. package/clients/catalogService/models/CatalogItemDto.ts +170 -0
  140. package/clients/catalogService/models/CatalogItemDtoEnvelope.ts +14 -0
  141. package/clients/catalogService/models/CatalogItemDtoListEnvelope.ts +14 -0
  142. package/clients/catalogService/models/CatalogItemUpdateDto.ts +179 -0
  143. package/clients/catalogService/models/Currency.ts +9 -0
  144. package/clients/catalogService/models/EmptyEnvelope.ts +12 -0
  145. package/clients/catalogService/models/ErrorEnvelope.ts +2 -2
  146. package/clients/catalogService/models/Int32Envelope.ts +13 -0
  147. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +8 -10
  148. package/clients/catalogService/models/ItemAttachmentDto.ts +13 -11
  149. package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +2 -2
  150. package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +2 -2
  151. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +6 -6
  152. package/clients/catalogService/models/ItemAttributeCreateDto.ts +3 -2
  153. package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +2 -2
  154. package/clients/catalogService/models/{ItemAttributeDtoIReadOnlyCollectionEnvelope.ts → ItemAttributeDtoListEnvelope.ts} +3 -3
  155. package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +2 -2
  156. package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +2 -2
  157. package/clients/catalogService/models/ItemAttributeUpdateDto.ts +1 -1
  158. package/clients/catalogService/models/ItemBrandCreateDto.ts +4 -3
  159. package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +2 -2
  160. package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +2 -2
  161. package/clients/catalogService/models/ItemBrandUpdateDto.ts +1 -1
  162. package/clients/catalogService/models/ItemCategoryCreateDto.ts +3 -2
  163. package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +2 -2
  164. package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +2 -2
  165. package/clients/catalogService/models/ItemCategoryUpdateDto.ts +1 -1
  166. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +13 -3
  167. package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +2 -2
  168. package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +2 -2
  169. package/clients/catalogService/models/{ItemImagesCreateDto.ts → ItemImageCreateDto.ts} +4 -4
  170. package/clients/catalogService/models/ItemImageDto.ts +0 -1
  171. package/clients/catalogService/models/ItemImageDtoEnvelope.ts +2 -2
  172. package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +2 -2
  173. package/clients/catalogService/models/ItemImageUpdateDto.ts +22 -0
  174. package/clients/catalogService/models/ItemQuestionCreateDto.ts +6 -5
  175. package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +2 -2
  176. package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +2 -2
  177. package/clients/catalogService/models/ItemQuestionRecordCreateDto.ts +14 -0
  178. package/clients/catalogService/models/ItemQuestionUpdateDto.ts +1 -3
  179. package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +2 -2
  180. package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +2 -2
  181. package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +2 -2
  182. package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +2 -2
  183. package/clients/catalogService/models/ItemReviewCreateDto.ts +1 -0
  184. package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +2 -2
  185. package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +2 -2
  186. package/clients/catalogService/models/ItemReviewRecordCreateDto.ts +12 -0
  187. package/clients/catalogService/models/ItemShippingPolicyDto.ts +6 -6
  188. package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +2 -2
  189. package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +2 -2
  190. package/clients/catalogService/models/ItemTagCreateDto.ts +3 -2
  191. package/clients/catalogService/models/ItemTagDtoEnvelope.ts +2 -2
  192. package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +2 -2
  193. package/clients/catalogService/models/ItemTagUpdateDto.ts +1 -1
  194. package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +2 -2
  195. package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +2 -2
  196. package/clients/catalogService/models/ItemTypeCreateDto.ts +3 -2
  197. package/clients/catalogService/models/ItemTypeDto.ts +4 -4
  198. package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +2 -2
  199. package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +2 -2
  200. package/clients/catalogService/models/ItemTypeUpdateDto.ts +1 -1
  201. package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +3 -4
  202. package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +2 -2
  203. package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +2 -2
  204. package/clients/{tenantService/models/BusinessDto.ts → catalogService/models/MerchantDto.ts} +16 -22
  205. package/clients/catalogService/models/MerchantDtoListEnvelope.ts +14 -0
  206. package/clients/catalogService/models/Money.ts +10 -0
  207. package/clients/catalogService/models/MoneyEnvelope.ts +14 -0
  208. package/clients/catalogService/models/PricingRuleCreateDto.ts +1 -1
  209. package/clients/catalogService/models/PricingRuleDto.ts +0 -1
  210. package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +2 -2
  211. package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +2 -2
  212. package/clients/catalogService/services/ItemAttachmentsService.ts +72 -36
  213. package/clients/catalogService/services/ItemAttributesService.ts +69 -34
  214. package/clients/catalogService/services/ItemBrandsService.ts +69 -34
  215. package/clients/catalogService/services/ItemCategoriesService.ts +87 -52
  216. package/clients/catalogService/services/ItemGoogleCategoriesService.ts +182 -0
  217. package/clients/catalogService/services/ItemImagesService.ts +73 -38
  218. package/clients/catalogService/services/ItemQuestionsService.ts +69 -34
  219. package/clients/catalogService/services/ItemReviewsService.ts +69 -34
  220. package/clients/catalogService/services/ItemTagsService.ts +67 -37
  221. package/clients/catalogService/services/ItemTypesService.ts +71 -36
  222. package/clients/catalogService/services/ItemsService.ts +2176 -0
  223. package/clients/catalogService/services/MerchantsService.ts +30 -0
  224. package/clients/catalogService/services/PoliciesService.ts +24 -4
  225. package/clients/catalogService/services/PricingRulesService.ts +75 -42
  226. package/clients/crmService/core/ApiError.ts +25 -0
  227. package/clients/crmService/core/ApiRequestOptions.ts +17 -0
  228. package/clients/crmService/core/ApiResult.ts +11 -0
  229. package/clients/crmService/core/CancelablePromise.ts +131 -0
  230. package/clients/crmService/core/OpenAPI.ts +32 -0
  231. package/clients/crmService/core/request.ts +322 -0
  232. package/clients/crmService/index.ts +28 -0
  233. package/clients/crmService/models/CartDto.ts +18 -0
  234. package/clients/crmService/models/CartDtoEnvelope.ts +14 -0
  235. package/clients/crmService/models/ContactCreateDto.ts +55 -0
  236. package/clients/crmService/models/ContactDto.ts +71 -0
  237. package/clients/{contactService → crmService}/models/ContactDtoEnvelope.ts +2 -2
  238. package/clients/{contactService → crmService}/models/ContactDtoListEnvelope.ts +2 -2
  239. package/clients/crmService/models/ContactProfileDto.ts +38 -0
  240. package/clients/crmService/models/ContactProfileDtoListEnvelope.ts +14 -0
  241. package/clients/crmService/models/ContactUpdateDto.ts +53 -0
  242. package/clients/crmService/models/EmptyEnvelope.ts +12 -0
  243. package/clients/crmService/models/ErrorEnvelope.ts +12 -0
  244. package/clients/crmService/models/Operation.ts +23 -0
  245. package/clients/crmService/models/SocialProfileDto.ts +39 -0
  246. package/clients/crmService/models/SocialProfileDtoEnvelope.ts +14 -0
  247. package/clients/crmService/models/WalletDto.ts +22 -0
  248. package/clients/crmService/models/WalletDtoEnvelope.ts +14 -0
  249. package/clients/crmService/services/ContactsService.ts +755 -0
  250. package/clients/crmService/services/SyncService.ts +117 -0
  251. package/clients/forexService/core/ApiError.ts +24 -24
  252. package/clients/forexService/core/ApiRequestOptions.ts +16 -16
  253. package/clients/forexService/core/ApiResult.ts +10 -10
  254. package/clients/forexService/core/CancelablePromise.ts +130 -130
  255. package/clients/forexService/core/OpenAPI.ts +31 -31
  256. package/clients/forexService/core/request.ts +321 -321
  257. package/clients/forexService/index.ts +21 -30
  258. package/clients/forexService/models/Currency.ts +1 -1
  259. package/clients/forexService/models/ErrorEnvelope.ts +12 -0
  260. package/clients/forexService/models/ExchangeRate.ts +11 -0
  261. package/clients/forexService/models/ExchangeRateEnvelope.ts +14 -0
  262. package/clients/forexService/models/ForexRatesDto.ts +1 -1
  263. package/clients/forexService/models/ForexRatesDtoEnvelope.ts +2 -2
  264. package/clients/forexService/models/MoneyEnvelope.ts +2 -2
  265. package/clients/forexService/services/ExchangeService.ts +10 -2
  266. package/clients/forexService/services/ExchangeVService.ts +65 -0
  267. package/clients/forexService/services/RatesService.ts +78 -3
  268. package/clients/holderService/core/ApiError.ts +24 -24
  269. package/clients/holderService/core/ApiRequestOptions.ts +16 -16
  270. package/clients/holderService/core/ApiResult.ts +10 -10
  271. package/clients/holderService/core/CancelablePromise.ts +130 -130
  272. package/clients/holderService/core/OpenAPI.ts +31 -31
  273. package/clients/holderService/core/request.ts +321 -321
  274. package/clients/holderService/index.ts +46 -31
  275. package/clients/holderService/models/AddressDto.ts +31 -0
  276. package/clients/holderService/models/AddressDtoListEnvelope.ts +14 -0
  277. package/clients/holderService/models/CartDto.ts +18 -0
  278. package/clients/holderService/models/CartDtoEnvelope.ts +14 -0
  279. package/clients/holderService/models/EmptyEnvelope.ts +12 -0
  280. package/clients/holderService/models/EmptyEnvelopeEnvelope.ts +14 -0
  281. package/clients/{tenantService/models/IntPtr.ts → holderService/models/EnrollmentId.ts} +1 -1
  282. package/clients/holderService/models/ErrorEnvelope.ts +2 -2
  283. package/clients/holderService/models/ExtendedPlatformUserDto.ts +79 -0
  284. package/clients/holderService/models/ExtendedPlatformUserDtoEnvelope.ts +14 -0
  285. package/clients/{identityService/models/BusinessDto.ts → holderService/models/ExtendedTenantDto.ts} +20 -22
  286. package/clients/holderService/models/ExtendedTenantDtoListEnvelope.ts +14 -0
  287. package/clients/holderService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  288. package/clients/holderService/models/ExtendedTenantEnrolmentDtoListEnvelope.ts +14 -0
  289. package/clients/holderService/models/NotificationDto.ts +16 -0
  290. package/clients/holderService/models/NotificationDtoListEnvelope.ts +14 -0
  291. package/clients/holderService/models/Operation.ts +23 -0
  292. package/clients/{identityService/models/AccountHolderDto.ts → holderService/models/PlatformUserDto.ts} +28 -30
  293. package/clients/holderService/models/PlatformUserDtoEnvelope.ts +14 -0
  294. package/clients/holderService/models/PlatformUserSettingsDto.ts +21 -0
  295. package/clients/holderService/models/PlatformUserSettingsDtoEnvelope.ts +14 -0
  296. package/clients/holderService/models/PlatformUserSettingsUpdateDto.ts +19 -0
  297. package/clients/holderService/models/PlatformUserUpdateDto.ts +43 -0
  298. package/clients/holderService/models/SocialProfileDto.ts +39 -0
  299. package/clients/holderService/models/SocialProfileDtoEnvelope.ts +14 -0
  300. package/clients/holderService/models/{BusinessDto.ts → TenantDto.ts} +14 -22
  301. package/clients/holderService/models/TenantDtoListEnvelope.ts +14 -0
  302. package/clients/holderService/models/TenantEnrolmentDto.ts +15 -0
  303. package/clients/holderService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  304. package/clients/holderService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  305. package/clients/holderService/models/TenantInvitationDto.ts +16 -0
  306. package/clients/{catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts → holderService/models/TenantInvitationDtoListEnvelope.ts} +5 -5
  307. package/clients/holderService/models/WalletDto.ts +22 -0
  308. package/clients/holderService/models/WalletDtoEnvelope.ts +14 -0
  309. package/clients/holderService/services/HolderService.ts +340 -30
  310. package/clients/identityService/core/ApiError.ts +24 -24
  311. package/clients/identityService/core/ApiRequestOptions.ts +16 -16
  312. package/clients/identityService/core/ApiResult.ts +10 -10
  313. package/clients/identityService/core/CancelablePromise.ts +130 -130
  314. package/clients/identityService/core/OpenAPI.ts +31 -31
  315. package/clients/identityService/core/request.ts +321 -321
  316. package/clients/identityService/index.ts +40 -53
  317. package/clients/identityService/models/AccountHolderCreateDto.ts +21 -15
  318. package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +2 -2
  319. package/clients/identityService/models/ApiResponse.ts +4 -5
  320. package/clients/identityService/models/ApiResponseEnvelope.ts +2 -2
  321. package/clients/identityService/models/ErrorEnvelope.ts +2 -2
  322. package/clients/identityService/models/JsonWebKeySetEnvelope.ts +2 -2
  323. package/clients/identityService/models/JsonWebTokenEnvelope.ts +2 -2
  324. package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +2 -2
  325. package/clients/{holderService/models/AccountHolderDto.ts → identityService/models/PlatformUserDto.ts} +28 -30
  326. package/clients/identityService/models/StringListEnvelope.ts +2 -2
  327. package/clients/identityService/models/TenantDto.ts +45 -0
  328. package/clients/identityService/services/ApplicationsService.ts +30 -5
  329. package/clients/identityService/services/CheckerService.ts +9 -3
  330. package/clients/identityService/services/OAuthService.ts +50 -14
  331. package/clients/identityService/services/ResourceService.ts +8 -2
  332. package/clients/identityService/services/UserInfoService.ts +16 -4
  333. package/clients/inventoryService/core/ApiError.ts +24 -24
  334. package/clients/inventoryService/core/ApiRequestOptions.ts +16 -16
  335. package/clients/inventoryService/core/ApiResult.ts +10 -10
  336. package/clients/inventoryService/core/CancelablePromise.ts +130 -130
  337. package/clients/inventoryService/core/OpenAPI.ts +31 -31
  338. package/clients/inventoryService/core/request.ts +321 -321
  339. package/clients/inventoryService/index.ts +10 -24
  340. package/clients/inventoryService/services/InventoryService.ts +6 -1
  341. package/clients/invoicingService/core/ApiError.ts +24 -24
  342. package/clients/invoicingService/core/ApiRequestOptions.ts +16 -16
  343. package/clients/invoicingService/core/ApiResult.ts +10 -10
  344. package/clients/invoicingService/core/CancelablePromise.ts +130 -130
  345. package/clients/invoicingService/core/OpenAPI.ts +31 -31
  346. package/clients/invoicingService/core/request.ts +321 -321
  347. package/clients/invoicingService/index.ts +48 -28
  348. package/clients/invoicingService/models/Currency.ts +9 -0
  349. package/clients/invoicingService/models/EmptyEnvelope.ts +12 -0
  350. package/clients/invoicingService/models/ErrorEnvelope.ts +2 -2
  351. package/clients/invoicingService/models/ExtendedInvoiceDto.ts +111 -0
  352. package/clients/invoicingService/models/ExtendedInvoiceDtoListEnvelope.ts +14 -0
  353. package/clients/invoicingService/models/Int32Envelope.ts +13 -0
  354. package/clients/invoicingService/models/InvoiceAdjustmentCreateDto.ts +27 -0
  355. package/clients/invoicingService/models/InvoiceAdjustmentDto.ts +27 -0
  356. package/clients/invoicingService/models/InvoiceAdjustmentDtoEnvelope.ts +14 -0
  357. package/clients/invoicingService/models/InvoiceAdjustmentDtoListEnvelope.ts +14 -0
  358. package/clients/invoicingService/models/InvoiceAdjustmentUpdateDto.ts +22 -0
  359. package/clients/invoicingService/models/InvoiceCreateDto.ts +75 -0
  360. package/clients/invoicingService/models/InvoiceDto.ts +91 -2
  361. package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +14 -0
  362. package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +2 -2
  363. package/clients/invoicingService/models/InvoiceItemRecordDto.ts +100 -0
  364. package/clients/invoicingService/models/InvoiceLineAppliedTaxCreateDto.ts +13 -0
  365. package/clients/invoicingService/models/InvoiceLineAppliedTaxDto.ts +20 -0
  366. package/clients/invoicingService/models/InvoiceLineAppliedTaxDtoListEnvelope.ts +14 -0
  367. package/clients/{cartService/models/RefreshRequest.ts → invoicingService/models/InvoiceLineAppliedTaxUpdateDto.ts} +2 -2
  368. package/clients/invoicingService/models/InvoiceLineCreateDto.ts +13 -0
  369. package/clients/invoicingService/models/InvoiceLineDto.ts +100 -0
  370. package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +14 -0
  371. package/clients/invoicingService/models/InvoiceLineDtoListEnvelope.ts +14 -0
  372. package/clients/invoicingService/models/InvoiceLineUpdateDto.ts +20 -0
  373. package/clients/invoicingService/models/InvoiceReferenceCreateDto.ts +13 -0
  374. package/clients/invoicingService/models/InvoiceReferenceDto.ts +13 -0
  375. package/clients/invoicingService/models/InvoiceReferenceDtoEnvelope.ts +14 -0
  376. package/clients/invoicingService/models/InvoiceReferenceDtoListEnvelope.ts +14 -0
  377. package/clients/invoicingService/models/InvoiceReferenceUpdateDto.ts +8 -0
  378. package/clients/invoicingService/models/InvoiceUpdateDto.ts +33 -0
  379. package/clients/invoicingService/models/Money.ts +10 -0
  380. package/clients/invoicingService/models/MoneyEnvelope.ts +14 -0
  381. package/clients/invoicingService/models/SimpleContactDto.ts +40 -0
  382. package/clients/invoicingService/models/SimpleTenantEnrolmentDto.ts +11 -0
  383. package/clients/invoicingService/models/SimpleUserDto.ts +25 -0
  384. package/clients/invoicingService/models/TenantDto.ts +45 -0
  385. package/clients/invoicingService/services/InvoicesService.ts +1029 -15
  386. package/clients/learningService/core/ApiError.ts +25 -0
  387. package/clients/learningService/core/ApiRequestOptions.ts +17 -0
  388. package/clients/learningService/core/ApiResult.ts +11 -0
  389. package/clients/learningService/core/CancelablePromise.ts +131 -0
  390. package/clients/learningService/core/OpenAPI.ts +32 -0
  391. package/clients/learningService/core/request.ts +322 -0
  392. package/clients/learningService/index.ts +50 -0
  393. package/clients/learningService/models/AverageDto.ts +10 -0
  394. package/clients/learningService/models/AverageDtoEnvelope.ts +14 -0
  395. package/clients/learningService/models/CountDto.ts +10 -0
  396. package/clients/learningService/models/CountDtoEnvelope.ts +14 -0
  397. package/clients/learningService/models/CourseCertificateTemplateCreateDto.ts +17 -0
  398. package/clients/learningService/models/CourseCertificateTemplateDto.ts +17 -0
  399. package/clients/learningService/models/CourseCertificateTemplateDtoEnvelope.ts +14 -0
  400. package/clients/learningService/models/CourseCertificateTemplateDtoListEnvelope.ts +14 -0
  401. package/clients/learningService/models/CourseCompletionCertificateCreateDto.ts +15 -0
  402. package/clients/learningService/models/CourseCompletionCertificateDto.ts +15 -0
  403. package/clients/learningService/models/CourseCompletionCertificateDtoEnvelope.ts +14 -0
  404. package/clients/learningService/models/CourseCompletionCertificateDtoListEnvelope.ts +14 -0
  405. package/clients/learningService/models/CourseCompletionCertificateUpdateDto.ts +13 -0
  406. package/clients/learningService/models/CourseDto.ts +170 -0
  407. package/clients/learningService/models/CourseDtoEnvelope.ts +14 -0
  408. package/clients/learningService/models/CourseDtoListEnvelope.ts +14 -0
  409. package/clients/learningService/models/CourseEnrollmentCreateDto.ts +14 -0
  410. package/clients/learningService/models/CourseEnrollmentDto.ts +14 -0
  411. package/clients/learningService/models/CourseEnrollmentDtoEnvelope.ts +14 -0
  412. package/clients/learningService/models/CourseEnrollmentDtoListEnvelope.ts +14 -0
  413. package/clients/learningService/models/CourseEnrollmentUpdateDto.ts +11 -0
  414. package/clients/{tenantService/models/ICustomAttributeProvider.ts → learningService/models/CourseUpdateDto.ts} +1 -1
  415. package/clients/learningService/models/EmptyEnvelope.ts +12 -0
  416. package/clients/learningService/models/ErrorEnvelope.ts +12 -0
  417. package/clients/learningService/models/InstructorProfileCreateDto.ts +39 -0
  418. package/clients/learningService/models/InstructorProfileDto.ts +39 -0
  419. package/clients/learningService/models/InstructorProfileDtoEnvelope.ts +14 -0
  420. package/clients/learningService/models/InstructorProfileDtoListEnvelope.ts +14 -0
  421. package/clients/learningService/models/InstructorProfileUpdateDto.ts +36 -0
  422. package/clients/{cartService/models/ResendConfirmationEmailRequest.ts → learningService/models/Pagination.ts} +3 -2
  423. package/clients/learningService/models/StudentProfileCreateDto.ts +38 -0
  424. package/clients/learningService/models/StudentProfileDto.ts +38 -0
  425. package/clients/learningService/models/StudentProfileDtoEnvelope.ts +14 -0
  426. package/clients/learningService/models/StudentProfileDtoListEnvelope.ts +14 -0
  427. package/clients/learningService/models/StudentProfileUpdateDto.ts +38 -0
  428. package/clients/learningService/services/CourseCertificatesService.ts +270 -0
  429. package/clients/learningService/services/CourseEnrollmentsService.ts +232 -0
  430. package/clients/learningService/services/CoursesService.ts +128 -0
  431. package/clients/learningService/services/InstructorProfilesService.ts +152 -0
  432. package/clients/learningService/services/StudentProfilesService.ts +212 -0
  433. package/clients/marketingService/core/ApiError.ts +25 -0
  434. package/clients/marketingService/core/ApiRequestOptions.ts +17 -0
  435. package/clients/marketingService/core/ApiResult.ts +11 -0
  436. package/clients/marketingService/core/CancelablePromise.ts +131 -0
  437. package/clients/marketingService/core/OpenAPI.ts +32 -0
  438. package/clients/marketingService/core/request.ts +322 -0
  439. package/clients/marketingService/index.ts +64 -0
  440. package/clients/marketingService/models/Currency.ts +9 -0
  441. package/clients/marketingService/models/EmailGroupCreateDto.ts +14 -0
  442. package/clients/marketingService/models/EmailGroupDto.ts +14 -0
  443. package/clients/marketingService/models/EmailGroupDtoEnvelope.ts +14 -0
  444. package/clients/marketingService/models/EmailGroupDtoListEnvelope.ts +14 -0
  445. package/clients/marketingService/models/EmailGroupUpdateDto.ts +12 -0
  446. package/clients/marketingService/models/EmailSignatureCreateDto.ts +16 -0
  447. package/clients/marketingService/models/EmailSignatureDto.ts +64 -0
  448. package/clients/marketingService/models/EmailSignatureDtoEnvelope.ts +14 -0
  449. package/clients/marketingService/models/EmailSignatureDtoListEnvelope.ts +14 -0
  450. package/clients/marketingService/models/EmailSignatureUpdateDto.ts +60 -0
  451. package/clients/marketingService/models/EmailTemplateCreateDto.ts +17 -0
  452. package/clients/marketingService/models/EmailTemplateDto.ts +66 -0
  453. package/clients/marketingService/models/EmailTemplateDtoEnvelope.ts +14 -0
  454. package/clients/{catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts → marketingService/models/EmailTemplateDtoListEnvelope.ts} +5 -5
  455. package/clients/marketingService/models/EmailTemplateUpdateDto.ts +61 -0
  456. package/clients/marketingService/models/EmptyEnvelope.ts +12 -0
  457. package/clients/marketingService/models/ErrorEnvelope.ts +12 -0
  458. package/clients/marketingService/models/Int32Envelope.ts +13 -0
  459. package/clients/marketingService/models/MarketingCampaignCreateDto.ts +25 -0
  460. package/clients/marketingService/models/MarketingCampaignDto.ts +25 -0
  461. package/clients/marketingService/models/MarketingCampaignDtoEnvelope.ts +14 -0
  462. package/clients/marketingService/models/MarketingCampaignUpdateDto.ts +23 -0
  463. package/clients/marketingService/models/MarketingListCreateDto.ts +33 -0
  464. package/clients/marketingService/models/MarketingListDto.ts +33 -0
  465. package/clients/marketingService/models/MarketingListDtoEnvelope.ts +14 -0
  466. package/clients/marketingService/models/MarketingListDtoListEnvelope.ts +14 -0
  467. package/clients/marketingService/models/MarketingListUpdateDto.ts +31 -0
  468. package/clients/marketingService/models/Money.ts +10 -0
  469. package/clients/marketingService/models/NewsletterCreateDto.ts +14 -0
  470. package/clients/marketingService/models/NewsletterDto.ts +14 -0
  471. package/clients/marketingService/models/NewsletterDtoEnvelope.ts +14 -0
  472. package/clients/marketingService/models/NewsletterUpdateDto.ts +12 -0
  473. package/clients/marketingService/models/OrderDto.ts +113 -0
  474. package/clients/marketingService/models/OrderDtoEnvelope.ts +14 -0
  475. package/clients/marketingService/models/SocialMediaPostCreateDto.ts +13 -0
  476. package/clients/marketingService/models/SocialMediaPostDto.ts +15 -0
  477. package/clients/marketingService/models/SocialMediaPostDtoEnvelope.ts +14 -0
  478. package/clients/marketingService/models/SocialMediaPostDtoListEnvelope.ts +14 -0
  479. package/clients/marketingService/models/SocialMediaPostUpdateDto.ts +13 -0
  480. package/clients/marketingService/models/SocialPostBucketCreateDto.ts +12 -0
  481. package/clients/marketingService/models/SocialPostBucketDto.ts +12 -0
  482. package/clients/marketingService/models/SocialPostBucketDtoEnvelope.ts +14 -0
  483. package/clients/marketingService/models/SocialPostBucketDtoListEnvelope.ts +14 -0
  484. package/clients/marketingService/models/SocialPostBucketUpdateDto.ts +10 -0
  485. package/clients/marketingService/services/EmailGroupsService.ts +193 -0
  486. package/clients/marketingService/services/EmailSignaturesService.ts +193 -0
  487. package/clients/marketingService/services/EmailTemplatesService.ts +193 -0
  488. package/clients/marketingService/services/MarketingCampaignsService.ts +193 -0
  489. package/clients/marketingService/services/MarketingListsService.ts +193 -0
  490. package/clients/marketingService/services/NewslettersService.ts +193 -0
  491. package/clients/marketingService/services/SocialMediaPostsService.ts +193 -0
  492. package/clients/marketingService/services/SocialPostBucketsService.ts +193 -0
  493. package/clients/marketingService/services/TrackingPixelsService.ts +31 -0
  494. package/clients/ordersService/core/ApiError.ts +25 -0
  495. package/clients/ordersService/core/ApiRequestOptions.ts +17 -0
  496. package/clients/ordersService/core/ApiResult.ts +11 -0
  497. package/clients/ordersService/core/CancelablePromise.ts +131 -0
  498. package/clients/ordersService/core/OpenAPI.ts +32 -0
  499. package/clients/ordersService/core/request.ts +322 -0
  500. package/clients/ordersService/index.ts +26 -0
  501. package/clients/ordersService/models/Currency.ts +9 -0
  502. package/clients/ordersService/models/EmptyEnvelope.ts +12 -0
  503. package/clients/ordersService/models/ErrorEnvelope.ts +12 -0
  504. package/clients/ordersService/models/Int32Envelope.ts +13 -0
  505. package/clients/ordersService/models/Money.ts +10 -0
  506. package/clients/ordersService/models/OrderCreateDto.ts +74 -0
  507. package/clients/ordersService/models/OrderDto.ts +113 -0
  508. package/clients/ordersService/models/OrderDtoEnvelope.ts +14 -0
  509. package/clients/ordersService/models/OrderDtoListEnvelope.ts +14 -0
  510. package/clients/ordersService/models/OrderLineCreateDto.ts +100 -0
  511. package/clients/ordersService/models/OrderLineDto.ts +100 -0
  512. package/clients/ordersService/models/OrderLineDtoEnvelope.ts +14 -0
  513. package/clients/{catalogService/models/StockItemDtoListEnvelope.ts → ordersService/models/OrderLineDtoListEnvelope.ts} +5 -5
  514. package/clients/{cartService/models/ProductCartRecordDto.ts → ordersService/models/OrderLineUpdateDto.ts} +12 -13
  515. package/clients/ordersService/models/OrderUpdateDto.ts +40 -0
  516. package/clients/ordersService/services/OrdersService.ts +390 -0
  517. package/clients/pricingService/core/ApiError.ts +24 -24
  518. package/clients/pricingService/core/ApiRequestOptions.ts +16 -16
  519. package/clients/pricingService/core/ApiResult.ts +10 -10
  520. package/clients/pricingService/core/CancelablePromise.ts +130 -130
  521. package/clients/pricingService/core/OpenAPI.ts +31 -31
  522. package/clients/pricingService/core/request.ts +321 -321
  523. package/clients/pricingService/index.ts +28 -29
  524. package/clients/pricingService/models/Currency.ts +1 -1
  525. package/clients/pricingService/models/EmptyEnvelope.ts +12 -0
  526. package/clients/pricingService/models/ErrorEnvelope.ts +2 -2
  527. package/clients/pricingService/models/Int32Envelope.ts +13 -0
  528. package/clients/pricingService/models/ItemPriceCreateDto.ts +20 -0
  529. package/clients/pricingService/models/ItemPriceDto.ts +20 -0
  530. package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +14 -0
  531. package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +14 -0
  532. package/clients/pricingService/models/ItemPriceUpdateDto.ts +15 -0
  533. package/clients/pricingService/models/MoneyEnvelope.ts +2 -2
  534. package/clients/pricingService/models/PriceListCreateDto.ts +18 -0
  535. package/clients/pricingService/models/PriceListDto.ts +17 -0
  536. package/clients/pricingService/models/PriceListDtoEnvelope.ts +14 -0
  537. package/clients/pricingService/models/PriceListDtoListEnvelope.ts +14 -0
  538. package/clients/pricingService/models/PriceListUpdateDto.ts +14 -0
  539. package/clients/pricingService/services/PriceListsService.ts +325 -8
  540. package/clients/pricingService/services/PricesService.ts +18 -3
  541. package/clients/securityService/core/ApiError.ts +25 -0
  542. package/clients/securityService/core/ApiRequestOptions.ts +17 -0
  543. package/clients/securityService/core/ApiResult.ts +11 -0
  544. package/clients/securityService/core/CancelablePromise.ts +131 -0
  545. package/clients/securityService/core/OpenAPI.ts +32 -0
  546. package/clients/securityService/core/request.ts +322 -0
  547. package/clients/securityService/index.ts +24 -0
  548. package/clients/securityService/models/EmptyEnvelope.ts +12 -0
  549. package/clients/securityService/models/ErrorEnvelope.ts +12 -0
  550. package/clients/securityService/models/SecurityPermissionCreateDto.ts +12 -0
  551. package/clients/securityService/models/SecurityPermissionDto.ts +13 -0
  552. package/clients/{tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts → securityService/models/SecurityPermissionDtoListEnvelope.ts} +5 -5
  553. package/clients/{tenantService/models/Error.ts → securityService/models/SecurityPermissionUpdateDto.ts} +2 -3
  554. package/clients/securityService/models/SecurityRoleCreateDto.ts +12 -0
  555. package/clients/securityService/models/SecurityRoleDto.ts +13 -0
  556. package/clients/securityService/models/SecurityRoleDtoListEnvelope.ts +14 -0
  557. package/clients/{cartService/models/Error.ts → securityService/models/SecurityRoleUpdateDto.ts} +2 -3
  558. package/clients/securityService/models/TenantEnrolmentDto.ts +15 -0
  559. package/clients/securityService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  560. package/clients/securityService/services/PermissionsService.ts +399 -0
  561. package/clients/securityService/services/RolesService.ts +430 -0
  562. package/clients/supportService/core/ApiError.ts +25 -0
  563. package/clients/supportService/core/ApiRequestOptions.ts +17 -0
  564. package/clients/supportService/core/ApiResult.ts +11 -0
  565. package/clients/supportService/core/CancelablePromise.ts +131 -0
  566. package/clients/supportService/core/OpenAPI.ts +32 -0
  567. package/clients/supportService/core/request.ts +322 -0
  568. package/clients/supportService/index.ts +54 -0
  569. package/clients/supportService/models/EmptyEnvelope.ts +12 -0
  570. package/clients/supportService/models/ErrorEnvelope.ts +12 -0
  571. package/clients/supportService/models/PrivateMessageDto.ts +15 -0
  572. package/clients/supportService/models/PrivateMessageDtoListEnvelope.ts +14 -0
  573. package/clients/supportService/models/SupportEntitlementCreateDto.ts +57 -0
  574. package/clients/supportService/models/SupportEntitlementDto.ts +57 -0
  575. package/clients/{tenantService/models/BusinessEnrollmentDtoEnvelope.ts → supportService/models/SupportEntitlementDtoEnvelope.ts} +5 -5
  576. package/clients/{cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts → supportService/models/SupportEntitlementDtoListEnvelope.ts} +5 -5
  577. package/clients/supportService/models/SupportEntitlementUpdateDto.ts +54 -0
  578. package/clients/supportService/models/SupportRequestAttachmentCreateDto.ts +23 -0
  579. package/clients/{catalogService/models/ItemImagesUpdateDto.ts → supportService/models/SupportRequestAttachmentDto.ts} +7 -4
  580. package/clients/supportService/models/SupportRequestAttachmentDtoEnvelope.ts +14 -0
  581. package/clients/supportService/models/SupportRequestAttachmentDtoListEnvelope.ts +14 -0
  582. package/clients/supportService/models/SupportRequestAttachmentUpdateDto.ts +19 -0
  583. package/clients/supportService/models/SupportRequestCreateDto.ts +18 -0
  584. package/clients/supportService/models/SupportRequestDto.ts +18 -0
  585. package/clients/supportService/models/SupportRequestDtoEnvelope.ts +14 -0
  586. package/clients/supportService/models/SupportRequestDtoListEnvelope.ts +14 -0
  587. package/clients/supportService/models/SupportRequestUpdateDto.ts +12 -0
  588. package/clients/supportService/models/SupportTicketConversationCreateDto.ts +13 -0
  589. package/clients/supportService/models/SupportTicketConversationDto.ts +14 -0
  590. package/clients/supportService/models/SupportTicketConversationDtoEnvelope.ts +14 -0
  591. package/clients/supportService/models/SupportTicketConversationDtoListEnvelope.ts +14 -0
  592. package/clients/supportService/models/SupportTicketCreateDto.ts +17 -0
  593. package/clients/supportService/models/SupportTicketDto.ts +17 -0
  594. package/clients/supportService/models/SupportTicketDtoEnvelope.ts +14 -0
  595. package/clients/supportService/models/SupportTicketDtoListEnvelope.ts +14 -0
  596. package/clients/supportService/models/SupportTicketPriorityCreateDto.ts +11 -0
  597. package/clients/supportService/models/SupportTicketPriorityDto.ts +13 -0
  598. package/clients/supportService/models/SupportTicketPriorityDtoEnvelope.ts +14 -0
  599. package/clients/supportService/models/SupportTicketPriorityDtoListEnvelope.ts +14 -0
  600. package/clients/supportService/models/SupportTicketPriorityUpdateDto.ts +9 -0
  601. package/clients/supportService/models/SupportTicketTypeCreateDto.ts +12 -0
  602. package/clients/supportService/models/SupportTicketTypeDto.ts +12 -0
  603. package/clients/supportService/models/SupportTicketTypeDtoEnvelope.ts +14 -0
  604. package/clients/supportService/models/SupportTicketTypeDtoListEnvelope.ts +14 -0
  605. package/clients/supportService/models/SupportTicketTypeUpdateDto.ts +11 -0
  606. package/clients/supportService/models/SupportTicketUpdateDto.ts +14 -0
  607. package/clients/supportService/services/SupportEntitlementsService.ts +163 -0
  608. package/clients/supportService/services/SupportRequestAttachmentsService.ts +163 -0
  609. package/clients/supportService/services/SupportRequestsService.ts +290 -0
  610. package/clients/supportService/services/SupportTicketPrioritiesService.ts +163 -0
  611. package/clients/supportService/services/SupportTicketTypesService.ts +163 -0
  612. package/clients/supportService/services/SupportTicketsService.ts +331 -0
  613. package/clients/systemService/core/ApiError.ts +25 -0
  614. package/clients/systemService/core/ApiRequestOptions.ts +17 -0
  615. package/clients/systemService/core/ApiResult.ts +11 -0
  616. package/clients/systemService/core/CancelablePromise.ts +131 -0
  617. package/clients/systemService/core/OpenAPI.ts +32 -0
  618. package/clients/systemService/core/request.ts +322 -0
  619. package/clients/systemService/index.ts +33 -0
  620. package/clients/systemService/models/BooleanEnvelope.ts +13 -0
  621. package/clients/systemService/models/ErrorEnvelope.ts +12 -0
  622. package/clients/systemService/models/GeneralValidationFailure.ts +9 -0
  623. package/clients/systemService/models/GeneralValidationFailureListEnvelope.ts +14 -0
  624. package/clients/{cartService/models/InfoResponse.ts → systemService/models/ISwaggerContact.ts} +3 -2
  625. package/clients/systemService/models/ISwaggerEndpoint.ts +10 -0
  626. package/clients/systemService/models/ISwaggerLicense.ts +9 -0
  627. package/clients/systemService/models/ISwaggerSpec.ts +19 -0
  628. package/clients/{catalogService/models/ForgotPasswordRequest.ts → systemService/models/LicenseValidationRequest.ts} +2 -2
  629. package/clients/systemService/models/Module.ts +44 -0
  630. package/clients/systemService/models/ModuleListEnvelope.ts +14 -0
  631. package/clients/systemService/models/StringListEnvelope.ts +13 -0
  632. package/clients/systemService/models/StudioModule.ts +9 -0
  633. package/clients/systemService/models/StudioModuleListEnvelope.ts +14 -0
  634. package/clients/systemService/models/SuiteLicenseAssignmentDto.ts +16 -0
  635. package/clients/systemService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  636. package/clients/systemService/models/SuiteLicenseDto.ts +15 -0
  637. package/clients/systemService/models/SuiteLicenseDtoEnvelope.ts +14 -0
  638. package/clients/systemService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  639. package/clients/systemService/services/AntiforgeryService.ts +41 -0
  640. package/clients/systemService/services/LicensingService.ts +230 -0
  641. package/clients/systemService/services/MigrationsService.ts +55 -0
  642. package/clients/systemService/services/ModulesService.ts +61 -0
  643. package/clients/tenantService/core/ApiError.ts +24 -24
  644. package/clients/tenantService/core/ApiRequestOptions.ts +16 -16
  645. package/clients/tenantService/core/ApiResult.ts +10 -10
  646. package/clients/tenantService/core/CancelablePromise.ts +130 -130
  647. package/clients/tenantService/core/OpenAPI.ts +31 -31
  648. package/clients/tenantService/core/request.ts +321 -321
  649. package/clients/tenantService/index.ts +130 -62
  650. package/clients/tenantService/models/BooleanEnvelope.ts +13 -0
  651. package/clients/tenantService/models/CartDto.ts +18 -0
  652. package/clients/tenantService/models/CartDtoEnvelope.ts +14 -0
  653. package/clients/tenantService/models/EmptyEnvelope.ts +12 -0
  654. package/clients/tenantService/models/ErrorEnvelope.ts +12 -0
  655. package/clients/tenantService/models/ExtendedTenantDto.ts +51 -0
  656. package/clients/tenantService/models/ExtendedTenantDtoEnvelope.ts +14 -0
  657. package/clients/tenantService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  658. package/clients/tenantService/models/ExtendedTenantEnrolmentDtoEnvelope.ts +14 -0
  659. package/clients/tenantService/models/NotificationDtoListEnvelope.ts +2 -2
  660. package/clients/tenantService/models/Operation.ts +23 -0
  661. package/clients/tenantService/models/PlatformUserDto.ts +71 -0
  662. package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +14 -0
  663. package/clients/tenantService/models/SocialProfileDto.ts +39 -0
  664. package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +14 -0
  665. package/clients/tenantService/models/StringListEnvelope.ts +2 -2
  666. package/clients/tenantService/models/SuiteLicenseAssignmentDto.ts +16 -0
  667. package/clients/tenantService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  668. package/clients/tenantService/models/SuiteLicenseDto.ts +15 -0
  669. package/clients/tenantService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  670. package/clients/{cartService/models/RegisterRequest.ts → tenantService/models/SuiteLicenseFeatureDto.ts} +3 -3
  671. package/clients/tenantService/models/SuiteLicenseFeatureDtoListEnvelope.ts +14 -0
  672. package/clients/tenantService/models/{BusinessCreateDto.ts → TenantCreateDto.ts} +9 -8
  673. package/clients/tenantService/models/TenantDepartmentCreateDto.ts +16 -0
  674. package/clients/tenantService/models/TenantDepartmentDto.ts +16 -0
  675. package/clients/tenantService/models/TenantDepartmentDtoEnvelope.ts +14 -0
  676. package/clients/tenantService/models/TenantDepartmentDtoListEnvelope.ts +14 -0
  677. package/clients/tenantService/models/TenantDepartmentUpdateDto.ts +12 -0
  678. package/clients/tenantService/models/TenantDto.ts +45 -0
  679. package/clients/tenantService/models/TenantDtoEnvelope.ts +14 -0
  680. package/clients/tenantService/models/TenantEnrollmentCreateDto.ts +11 -0
  681. package/clients/tenantService/models/TenantEnrollmentUpdateDto.ts +9 -0
  682. package/clients/tenantService/models/TenantEnrolmentDto.ts +15 -0
  683. package/clients/tenantService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  684. package/clients/tenantService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  685. package/clients/tenantService/models/TenantIndustryCreateDto.ts +12 -0
  686. package/clients/tenantService/models/TenantIndustryDto.ts +12 -0
  687. package/clients/tenantService/models/TenantIndustryDtoEnvelope.ts +14 -0
  688. package/clients/tenantService/models/TenantIndustryUpdateDto.ts +10 -0
  689. package/clients/tenantService/models/TenantInvitationCreateDto.ts +12 -0
  690. package/clients/tenantService/models/TenantInvitationDto.ts +16 -0
  691. package/clients/tenantService/models/TenantInvitationDtoEnvelope.ts +14 -0
  692. package/clients/tenantService/models/TenantInvitationDtoListEnvelope.ts +14 -0
  693. package/clients/tenantService/models/TenantPositionCreateDto.ts +13 -0
  694. package/clients/tenantService/models/TenantPositionDto.ts +13 -0
  695. package/clients/tenantService/models/TenantPositionDtoEnvelope.ts +14 -0
  696. package/clients/tenantService/models/TenantPositionDtoListEnvelope.ts +14 -0
  697. package/clients/tenantService/models/TenantPositionUpdateDto.ts +9 -0
  698. package/clients/tenantService/models/TenantSegmentCreateDto.ts +12 -0
  699. package/clients/tenantService/models/TenantSegmentDto.ts +12 -0
  700. package/clients/tenantService/models/TenantSegmentDtoEnvelope.ts +14 -0
  701. package/clients/tenantService/models/TenantSegmentDtoListEnvelope.ts +14 -0
  702. package/clients/tenantService/models/TenantSegmentUpdateDto.ts +10 -0
  703. package/clients/tenantService/models/TenantSizeCreateDto.ts +12 -0
  704. package/clients/tenantService/models/TenantSizeDto.ts +12 -0
  705. package/clients/tenantService/models/TenantSizeDtoEnvelope.ts +14 -0
  706. package/clients/tenantService/models/TenantSizeDtoListEnvelope.ts +14 -0
  707. package/clients/tenantService/models/TenantSizeUpdateDto.ts +10 -0
  708. package/clients/tenantService/models/TenantTeamContactEnrollmentCreateDto.ts +13 -0
  709. package/clients/tenantService/models/TenantTeamContactEnrollmentDto.ts +13 -0
  710. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoEnvelope.ts +14 -0
  711. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  712. package/clients/tenantService/models/TenantTeamContactEnrollmentUpdateDto.ts +11 -0
  713. package/clients/tenantService/models/TenantTeamCreateDto.ts +17 -0
  714. package/clients/tenantService/models/TenantTeamDto.ts +17 -0
  715. package/clients/tenantService/models/TenantTeamDtoEnvelope.ts +14 -0
  716. package/clients/tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.ts +14 -0
  717. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentCreateDto.ts +13 -0
  718. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDto.ts +13 -0
  719. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoEnvelope.ts +14 -0
  720. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  721. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentUpdateDto.ts +11 -0
  722. package/clients/tenantService/models/TenantTeamProjectEnrollmentCreateDto.ts +13 -0
  723. package/clients/tenantService/models/TenantTeamProjectEnrollmentDto.ts +13 -0
  724. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoEnvelope.ts +14 -0
  725. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  726. package/clients/tenantService/models/TenantTeamProjectEnrollmentUpdateDto.ts +11 -0
  727. package/clients/tenantService/models/TenantTeamRecordCreateDto.ts +12 -0
  728. package/clients/tenantService/models/TenantTeamRecordDto.ts +12 -0
  729. package/clients/tenantService/models/TenantTeamRecordDtoEnvelope.ts +14 -0
  730. package/clients/tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts +14 -0
  731. package/clients/tenantService/models/TenantTeamRecordUpdateDto.ts +10 -0
  732. package/clients/tenantService/models/TenantTeamUpdateDto.ts +17 -0
  733. package/clients/tenantService/models/TenantTerritoryCreateDto.ts +14 -0
  734. package/clients/tenantService/models/TenantTerritoryDto.ts +14 -0
  735. package/clients/tenantService/models/TenantTerritoryDtoEnvelope.ts +14 -0
  736. package/clients/tenantService/models/TenantTerritoryDtoListEnvelope.ts +14 -0
  737. package/clients/tenantService/models/TenantTerritoryUpdateDto.ts +9 -0
  738. package/clients/{catalogService/models/StockItemCreateDto.ts → tenantService/models/TenantTypeCreateDto.ts} +4 -4
  739. package/clients/tenantService/models/TenantTypeDto.ts +11 -0
  740. package/clients/tenantService/models/TenantTypeDtoEnvelope.ts +14 -0
  741. package/clients/tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
  742. package/clients/tenantService/models/TenantTypeUpdateDto.ts +9 -0
  743. package/clients/tenantService/models/TenantUnitCreateDto.ts +18 -0
  744. package/clients/tenantService/models/TenantUnitDto.ts +18 -0
  745. package/clients/tenantService/models/TenantUnitDtoEnvelope.ts +14 -0
  746. package/clients/tenantService/models/TenantUnitDtoListEnvelope.ts +14 -0
  747. package/clients/tenantService/models/TenantUnitUpdateDto.ts +14 -0
  748. package/clients/tenantService/models/TenantUpdateDto.ts +31 -0
  749. package/clients/tenantService/models/WalletDto.ts +2 -1
  750. package/clients/tenantService/models/WalletDtoEnvelope.ts +14 -0
  751. package/clients/tenantService/models/WebPortalDto.ts +19 -0
  752. package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +14 -0
  753. package/clients/tenantService/services/DepartmentsService.ts +198 -0
  754. package/clients/tenantService/services/EmployeeEnrollmentsService.ts +181 -0
  755. package/clients/tenantService/services/EnrollmentsService.ts +195 -0
  756. package/clients/tenantService/services/IndustriesService.ts +190 -0
  757. package/clients/tenantService/services/InvitationsService.ts +150 -0
  758. package/clients/tenantService/services/PositionsService.ts +192 -0
  759. package/clients/tenantService/services/SegmentsService.ts +191 -0
  760. package/clients/tenantService/services/SizesService.ts +194 -0
  761. package/clients/tenantService/services/TeamContactEnrollmentsService.ts +191 -0
  762. package/clients/tenantService/services/TeamProjectEnrollmentService.ts +181 -0
  763. package/clients/tenantService/services/TeamRecordsService.ts +192 -0
  764. package/clients/tenantService/services/TeamsService.ts +192 -0
  765. package/clients/tenantService/services/TenantsService.ts +771 -115
  766. package/clients/tenantService/services/TerritoriesService.ts +192 -0
  767. package/clients/tenantService/services/TypesService.ts +176 -0
  768. package/clients/tenantService/services/UnitsService.ts +190 -0
  769. package/clients/walletsService/core/ApiError.ts +25 -0
  770. package/clients/walletsService/core/ApiRequestOptions.ts +17 -0
  771. package/clients/walletsService/core/ApiResult.ts +11 -0
  772. package/clients/walletsService/core/CancelablePromise.ts +131 -0
  773. package/clients/walletsService/core/OpenAPI.ts +32 -0
  774. package/clients/walletsService/core/request.ts +322 -0
  775. package/clients/walletsService/index.ts +24 -0
  776. package/clients/walletsService/models/Currency.ts +9 -0
  777. package/clients/walletsService/models/ErrorEnvelope.ts +12 -0
  778. package/clients/walletsService/models/InvoiceDto.ts +102 -0
  779. package/clients/{invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts → walletsService/models/InvoiceDtoListEnvelope.ts} +3 -3
  780. package/clients/walletsService/models/LocationDto.ts +31 -0
  781. package/clients/walletsService/models/LocationDtoListEnvelope.ts +14 -0
  782. package/clients/walletsService/models/Money.ts +10 -0
  783. package/clients/walletsService/models/OrderDto.ts +113 -0
  784. package/clients/walletsService/models/OrderDtoListEnvelope.ts +14 -0
  785. package/clients/walletsService/models/PaymentDto.ts +94 -0
  786. package/clients/walletsService/models/PaymentDtoListEnvelope.ts +14 -0
  787. package/clients/walletsService/models/WalletDto.ts +22 -0
  788. package/clients/walletsService/models/WalletDtoEnvelope.ts +14 -0
  789. package/clients/walletsService/services/WalletsService.ts +239 -0
  790. package/package.json +26 -23
  791. package/schemas/accountingService/schema.s.ts +5108 -0
  792. package/schemas/cartService/schema.s.ts +2804 -1560
  793. package/schemas/catalogService/schema.s.ts +7056 -6109
  794. package/schemas/crmService/schema.s.ts +1558 -0
  795. package/schemas/forexService/schema.s.ts +373 -526
  796. package/schemas/holderService/schema.s.ts +1327 -831
  797. package/schemas/identityService/schema.s.ts +766 -1119
  798. package/schemas/inventoryService/schema.s.ts +46 -425
  799. package/schemas/invoicingService/schema.s.ts +2243 -521
  800. package/schemas/learningService/schema.s.ts +1723 -0
  801. package/schemas/marketingService/schema.s.ts +3027 -0
  802. package/schemas/ordersService/schema.s.ts +1129 -0
  803. package/schemas/pricingService/schema.s.ts +658 -549
  804. package/schemas/securityService/schema.s.ts +1226 -0
  805. package/schemas/supportService/schema.s.ts +2114 -0
  806. package/schemas/systemService/schema.s.ts +1348 -0
  807. package/schemas/tenantService/schema.s.ts +6094 -1606
  808. package/schemas/walletsService/schema.s.ts +806 -0
  809. package/tsconfig.json +110 -0
  810. package/vite.config.js +29 -0
  811. package/wwwroot/build/bundle.js +1 -0
  812. package/clients/cartService/models/AccessTokenResponse.ts +0 -11
  813. package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
  814. package/clients/cartService/models/LoginRequest.ts +0 -11
  815. package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
  816. package/clients/cartService/models/ResponseStatus.ts +0 -12
  817. package/clients/cartService/models/TwoFactorRequest.ts +0 -12
  818. package/clients/cartService/models/TwoFactorResponse.ts +0 -12
  819. package/clients/cartService/services/FenixAllianceAbsWebService.ts +0 -293
  820. package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
  821. package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
  822. package/clients/catalogService/models/InfoRequest.ts +0 -10
  823. package/clients/catalogService/models/InfoResponse.ts +0 -9
  824. package/clients/catalogService/models/ItemPricePolicyDto.ts +0 -35
  825. package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +0 -14
  826. package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +0 -14
  827. package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +0 -14
  828. package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +0 -14
  829. package/clients/catalogService/models/LoginRequest.ts +0 -11
  830. package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +0 -14
  831. package/clients/catalogService/models/RefreshRequest.ts +0 -8
  832. package/clients/catalogService/models/RegisterRequest.ts +0 -9
  833. package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
  834. package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
  835. package/clients/catalogService/models/StockItemDto.ts +0 -17
  836. package/clients/catalogService/models/StockItemUpdateDto.ts +0 -9
  837. package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
  838. package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
  839. package/clients/catalogService/services/FenixAllianceAbsWebService.ts +0 -293
  840. package/clients/catalogService/services/ProductsService.ts +0 -1743
  841. package/clients/contactService/index.ts +0 -28
  842. package/clients/contactService/models/AccessTokenResponse.ts +0 -11
  843. package/clients/contactService/models/ContactDto.ts +0 -44
  844. package/clients/contactService/models/ForgotPasswordRequest.ts +0 -8
  845. package/clients/contactService/models/HttpValidationProblemDetails.ts +0 -5
  846. package/clients/contactService/models/InfoRequest.ts +0 -10
  847. package/clients/contactService/models/InfoResponse.ts +0 -9
  848. package/clients/contactService/models/LoginRequest.ts +0 -11
  849. package/clients/contactService/models/RefreshRequest.ts +0 -8
  850. package/clients/contactService/models/RegisterRequest.ts +0 -9
  851. package/clients/contactService/models/ResendConfirmationEmailRequest.ts +0 -8
  852. package/clients/contactService/models/ResetPasswordRequest.ts +0 -10
  853. package/clients/contactService/models/TwoFactorRequest.ts +0 -12
  854. package/clients/contactService/models/TwoFactorResponse.ts +0 -12
  855. package/clients/contactService/services/ContactsService.ts +0 -140
  856. package/clients/contactService/services/FenixAllianceAbsWebService.ts +0 -293
  857. package/clients/forexService/models/AccessTokenResponse.ts +0 -11
  858. package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
  859. package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
  860. package/clients/forexService/models/InfoRequest.ts +0 -10
  861. package/clients/forexService/models/InfoResponse.ts +0 -9
  862. package/clients/forexService/models/LoginRequest.ts +0 -11
  863. package/clients/forexService/models/RefreshRequest.ts +0 -8
  864. package/clients/forexService/models/RegisterRequest.ts +0 -9
  865. package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
  866. package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
  867. package/clients/forexService/models/TwoFactorRequest.ts +0 -12
  868. package/clients/forexService/models/TwoFactorResponse.ts +0 -12
  869. package/clients/forexService/services/FenixAllianceAbsWebService.ts +0 -293
  870. package/clients/holderService/models/AccessTokenResponse.ts +0 -11
  871. package/clients/holderService/models/AccountHolderCreateDto.ts +0 -34
  872. package/clients/holderService/models/AccountHolderDtoEnvelope.ts +0 -14
  873. package/clients/holderService/models/BusinessEnrollmentDto.ts +0 -19
  874. package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
  875. package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
  876. package/clients/holderService/models/InfoRequest.ts +0 -10
  877. package/clients/holderService/models/InfoResponse.ts +0 -9
  878. package/clients/holderService/models/LoginRequest.ts +0 -11
  879. package/clients/holderService/models/RefreshRequest.ts +0 -8
  880. package/clients/holderService/models/RegisterRequest.ts +0 -9
  881. package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
  882. package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
  883. package/clients/holderService/models/TwoFactorRequest.ts +0 -12
  884. package/clients/holderService/models/TwoFactorResponse.ts +0 -12
  885. package/clients/holderService/services/FenixAllianceAbsWebService.ts +0 -293
  886. package/clients/identityService/models/AccessTokenResponse.ts +0 -11
  887. package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
  888. package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
  889. package/clients/identityService/models/InfoRequest.ts +0 -10
  890. package/clients/identityService/models/InfoResponse.ts +0 -9
  891. package/clients/identityService/models/LoginRequest.ts +0 -11
  892. package/clients/identityService/models/RefreshRequest.ts +0 -8
  893. package/clients/identityService/models/RegisterRequest.ts +0 -9
  894. package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
  895. package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
  896. package/clients/identityService/models/TwoFactorRequest.ts +0 -12
  897. package/clients/identityService/models/TwoFactorResponse.ts +0 -12
  898. package/clients/identityService/services/FenixAllianceAbsWebService.ts +0 -293
  899. package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
  900. package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
  901. package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
  902. package/clients/inventoryService/models/InfoRequest.ts +0 -10
  903. package/clients/inventoryService/models/InfoResponse.ts +0 -9
  904. package/clients/inventoryService/models/LoginRequest.ts +0 -11
  905. package/clients/inventoryService/models/RefreshRequest.ts +0 -8
  906. package/clients/inventoryService/models/RegisterRequest.ts +0 -9
  907. package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
  908. package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
  909. package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
  910. package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
  911. package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +0 -293
  912. package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
  913. package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
  914. package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
  915. package/clients/invoicingService/models/InfoRequest.ts +0 -10
  916. package/clients/invoicingService/models/InfoResponse.ts +0 -9
  917. package/clients/invoicingService/models/LoginRequest.ts +0 -11
  918. package/clients/invoicingService/models/RefreshRequest.ts +0 -8
  919. package/clients/invoicingService/models/RegisterRequest.ts +0 -9
  920. package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
  921. package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
  922. package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
  923. package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
  924. package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +0 -293
  925. package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
  926. package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
  927. package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
  928. package/clients/pricingService/models/InfoRequest.ts +0 -10
  929. package/clients/pricingService/models/InfoResponse.ts +0 -9
  930. package/clients/pricingService/models/LoginRequest.ts +0 -11
  931. package/clients/pricingService/models/RefreshRequest.ts +0 -8
  932. package/clients/pricingService/models/RegisterRequest.ts +0 -9
  933. package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
  934. package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
  935. package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
  936. package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
  937. package/clients/pricingService/services/FenixAllianceAbsWebService.ts +0 -293
  938. package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
  939. package/clients/tenantService/models/AccountHolderCreateDto.ts +0 -34
  940. package/clients/tenantService/models/AggregateException.ts +0 -18
  941. package/clients/tenantService/models/Assembly.ts +0 -46
  942. package/clients/tenantService/models/BusinessEnrollmentDto.ts +0 -19
  943. package/clients/tenantService/models/ConstructorInfo.ts +0 -103
  944. package/clients/tenantService/models/CustomAttributeData.ts +0 -15
  945. package/clients/tenantService/models/CustomAttributeNamedArgument.ts +0 -13
  946. package/clients/tenantService/models/CustomAttributeTypedArgument.ts +0 -10
  947. package/clients/tenantService/models/EventInfo.ts +0 -44
  948. package/clients/tenantService/models/Exception.ts +0 -16
  949. package/clients/tenantService/models/FieldInfo.ts +0 -74
  950. package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
  951. package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
  952. package/clients/tenantService/models/InfoRequest.ts +0 -10
  953. package/clients/tenantService/models/InfoResponse.ts +0 -9
  954. package/clients/tenantService/models/LoginRequest.ts +0 -11
  955. package/clients/tenantService/models/MemberInfo.ts +0 -31
  956. package/clients/tenantService/models/MethodBase.ts +0 -103
  957. package/clients/tenantService/models/MethodInfo.ts +0 -108
  958. package/clients/tenantService/models/Module.ts +0 -19
  959. package/clients/tenantService/models/ModuleHandle.ts +0 -8
  960. package/clients/tenantService/models/ParameterInfo.ts +0 -40
  961. package/clients/tenantService/models/PropertyInfo.ts +0 -49
  962. package/clients/tenantService/models/RefreshRequest.ts +0 -8
  963. package/clients/tenantService/models/RegisterRequest.ts +0 -9
  964. package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
  965. package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
  966. package/clients/tenantService/models/ResponseStatus.ts +0 -12
  967. package/clients/tenantService/models/RuntimeFieldHandle.ts +0 -9
  968. package/clients/tenantService/models/RuntimeMethodHandle.ts +0 -9
  969. package/clients/tenantService/models/RuntimeTypeHandle.ts +0 -9
  970. package/clients/tenantService/models/StructLayoutAttribute.ts +0 -16
  971. package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
  972. package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
  973. package/clients/tenantService/models/Type.ts +0 -141
  974. package/clients/tenantService/models/TypeInfo.ts +0 -156
  975. package/clients/tenantService/models/WalletDtoTask.ts +0 -40
  976. package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +0 -14
  977. package/clients/tenantService/services/FenixAllianceAbsWebService.ts +0 -293
  978. package/schemas/contactService/schema.s.ts +0 -674
@@ -1,1560 +1,2804 @@
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
+ header?: {
15
+ "x-api-version"?: string;
16
+ };
17
+ path: {
18
+ cartId: string;
19
+ };
20
+ };
21
+ responses: {
22
+ /** @description OK */
23
+ 200: {
24
+ content: {
25
+ "application/json": components["schemas"]["CartDtoEnvelope"];
26
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
27
+ };
28
+ };
29
+ /** @description Unauthorized */
30
+ 401: {
31
+ content: {
32
+ "application/json": components["schemas"]["ErrorEnvelope"];
33
+ "application/xml": components["schemas"]["ErrorEnvelope"];
34
+ };
35
+ };
36
+ /** @description Forbidden */
37
+ 403: {
38
+ content: {
39
+ "application/json": components["schemas"]["ErrorEnvelope"];
40
+ "application/xml": components["schemas"]["ErrorEnvelope"];
41
+ };
42
+ };
43
+ };
44
+ };
45
+ put: {
46
+ parameters: {
47
+ query?: {
48
+ "api-version"?: string;
49
+ };
50
+ header?: {
51
+ "x-api-version"?: string;
52
+ };
53
+ path: {
54
+ cartId: string;
55
+ };
56
+ };
57
+ requestBody?: {
58
+ content: {
59
+ "application/json": components["schemas"]["CartUpdateRequest"];
60
+ "application/xml": components["schemas"]["CartUpdateRequest"];
61
+ };
62
+ };
63
+ responses: {
64
+ /** @description OK */
65
+ 200: {
66
+ content: {
67
+ "application/json": components["schemas"]["EmptyEnvelope"];
68
+ "application/xml": components["schemas"]["EmptyEnvelope"];
69
+ };
70
+ };
71
+ /** @description Unauthorized */
72
+ 401: {
73
+ content: {
74
+ "application/json": components["schemas"]["ErrorEnvelope"];
75
+ "application/xml": components["schemas"]["ErrorEnvelope"];
76
+ };
77
+ };
78
+ /** @description Forbidden */
79
+ 403: {
80
+ content: {
81
+ "application/json": components["schemas"]["ErrorEnvelope"];
82
+ "application/xml": components["schemas"]["ErrorEnvelope"];
83
+ };
84
+ };
85
+ };
86
+ };
87
+ };
88
+ "/api/v2/CartService/Carts/{cartId}/Currency": {
89
+ get: {
90
+ parameters: {
91
+ query?: {
92
+ "api-version"?: string;
93
+ };
94
+ header?: {
95
+ "x-api-version"?: string;
96
+ };
97
+ path: {
98
+ cartId: string;
99
+ };
100
+ };
101
+ responses: {
102
+ /** @description OK */
103
+ 200: {
104
+ content: {
105
+ "application/json": components["schemas"]["CurrencyDtoEnvelope"];
106
+ "application/xml": components["schemas"]["CurrencyDtoEnvelope"];
107
+ };
108
+ };
109
+ /** @description Unauthorized */
110
+ 401: {
111
+ content: {
112
+ "application/json": components["schemas"]["ErrorEnvelope"];
113
+ "application/xml": components["schemas"]["ErrorEnvelope"];
114
+ };
115
+ };
116
+ /** @description Forbidden */
117
+ 403: {
118
+ content: {
119
+ "application/json": components["schemas"]["ErrorEnvelope"];
120
+ "application/xml": components["schemas"]["ErrorEnvelope"];
121
+ };
122
+ };
123
+ };
124
+ };
125
+ put: {
126
+ parameters: {
127
+ query?: {
128
+ "api-version"?: string;
129
+ };
130
+ header?: {
131
+ "x-api-version"?: string;
132
+ };
133
+ path: {
134
+ cartId: string;
135
+ };
136
+ };
137
+ requestBody?: {
138
+ content: {
139
+ "application/json": components["schemas"]["CurrencySwitchRequest"];
140
+ "application/xml": components["schemas"]["CurrencySwitchRequest"];
141
+ };
142
+ };
143
+ responses: {
144
+ /** @description OK */
145
+ 200: {
146
+ content: {
147
+ "application/json": components["schemas"]["EmptyEnvelope"];
148
+ "application/xml": components["schemas"]["EmptyEnvelope"];
149
+ };
150
+ };
151
+ /** @description Unauthorized */
152
+ 401: {
153
+ content: {
154
+ "application/json": components["schemas"]["ErrorEnvelope"];
155
+ "application/xml": components["schemas"]["ErrorEnvelope"];
156
+ };
157
+ };
158
+ /** @description Forbidden */
159
+ 403: {
160
+ content: {
161
+ "application/json": components["schemas"]["ErrorEnvelope"];
162
+ "application/xml": components["schemas"]["ErrorEnvelope"];
163
+ };
164
+ };
165
+ };
166
+ };
167
+ };
168
+ "/api/v2/CartService/Carts/{cartId}/Country": {
169
+ get: {
170
+ parameters: {
171
+ query?: {
172
+ "api-version"?: string;
173
+ };
174
+ header?: {
175
+ "x-api-version"?: string;
176
+ };
177
+ path: {
178
+ cartId: string;
179
+ };
180
+ };
181
+ responses: {
182
+ /** @description OK */
183
+ 200: {
184
+ content: {
185
+ "application/json": components["schemas"]["CountryDtoEnvelope"];
186
+ "application/xml": components["schemas"]["CountryDtoEnvelope"];
187
+ };
188
+ };
189
+ /** @description Unauthorized */
190
+ 401: {
191
+ content: {
192
+ "application/json": components["schemas"]["ErrorEnvelope"];
193
+ "application/xml": components["schemas"]["ErrorEnvelope"];
194
+ };
195
+ };
196
+ /** @description Forbidden */
197
+ 403: {
198
+ content: {
199
+ "application/json": components["schemas"]["ErrorEnvelope"];
200
+ "application/xml": components["schemas"]["ErrorEnvelope"];
201
+ };
202
+ };
203
+ };
204
+ };
205
+ put: {
206
+ parameters: {
207
+ query?: {
208
+ "api-version"?: string;
209
+ };
210
+ header?: {
211
+ "x-api-version"?: string;
212
+ };
213
+ path: {
214
+ cartId: string;
215
+ };
216
+ };
217
+ requestBody?: {
218
+ content: {
219
+ "application/json": components["schemas"]["CountrySwitchRequest"];
220
+ "application/xml": components["schemas"]["CountrySwitchRequest"];
221
+ };
222
+ };
223
+ responses: {
224
+ /** @description OK */
225
+ 200: {
226
+ content: {
227
+ "application/json": components["schemas"]["EmptyEnvelope"];
228
+ "application/xml": components["schemas"]["EmptyEnvelope"];
229
+ };
230
+ };
231
+ /** @description Unauthorized */
232
+ 401: {
233
+ content: {
234
+ "application/json": components["schemas"]["ErrorEnvelope"];
235
+ "application/xml": components["schemas"]["ErrorEnvelope"];
236
+ };
237
+ };
238
+ /** @description Forbidden */
239
+ 403: {
240
+ content: {
241
+ "application/json": components["schemas"]["ErrorEnvelope"];
242
+ "application/xml": components["schemas"]["ErrorEnvelope"];
243
+ };
244
+ };
245
+ };
246
+ };
247
+ };
248
+ "/api/v2/CartService/Carts/{cartId}/Submit": {
249
+ post: operations["SubmitCartAsync"];
250
+ };
251
+ "/api/v2/CartService/Carts/ActingCart": {
252
+ get: {
253
+ parameters: {
254
+ query?: {
255
+ "api-version"?: string;
256
+ };
257
+ header?: {
258
+ "x-api-version"?: string;
259
+ };
260
+ };
261
+ responses: {
262
+ /** @description OK */
263
+ 200: {
264
+ content: {
265
+ "application/json": components["schemas"]["CartDtoEnvelope"];
266
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
267
+ };
268
+ };
269
+ /** @description Unauthorized */
270
+ 401: {
271
+ content: {
272
+ "application/json": components["schemas"]["ErrorEnvelope"];
273
+ "application/xml": components["schemas"]["ErrorEnvelope"];
274
+ };
275
+ };
276
+ /** @description Forbidden */
277
+ 403: {
278
+ content: {
279
+ "application/json": components["schemas"]["ErrorEnvelope"];
280
+ "application/xml": components["schemas"]["ErrorEnvelope"];
281
+ };
282
+ };
283
+ };
284
+ };
285
+ };
286
+ "/api/v2/CartService/Carts/GuestCart": {
287
+ get: {
288
+ parameters: {
289
+ query?: {
290
+ "api-version"?: string;
291
+ };
292
+ header?: {
293
+ "x-api-version"?: string;
294
+ };
295
+ };
296
+ responses: {
297
+ /** @description OK */
298
+ 200: {
299
+ content: {
300
+ "application/json": components["schemas"]["CartDtoEnvelope"];
301
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
302
+ };
303
+ };
304
+ /** @description Unauthorized */
305
+ 401: {
306
+ content: {
307
+ "application/json": components["schemas"]["ErrorEnvelope"];
308
+ "application/xml": components["schemas"]["ErrorEnvelope"];
309
+ };
310
+ };
311
+ /** @description Forbidden */
312
+ 403: {
313
+ content: {
314
+ "application/json": components["schemas"]["ErrorEnvelope"];
315
+ "application/xml": components["schemas"]["ErrorEnvelope"];
316
+ };
317
+ };
318
+ };
319
+ };
320
+ };
321
+ "/api/v2/CartService/Carts/UserCart": {
322
+ get: {
323
+ parameters: {
324
+ query?: {
325
+ "api-version"?: string;
326
+ };
327
+ header?: {
328
+ "x-api-version"?: string;
329
+ };
330
+ };
331
+ responses: {
332
+ /** @description OK */
333
+ 200: {
334
+ content: {
335
+ "application/json": components["schemas"]["CartDtoEnvelope"];
336
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
337
+ };
338
+ };
339
+ /** @description Unauthorized */
340
+ 401: {
341
+ content: {
342
+ "application/json": components["schemas"]["ErrorEnvelope"];
343
+ "application/xml": components["schemas"]["ErrorEnvelope"];
344
+ };
345
+ };
346
+ };
347
+ };
348
+ };
349
+ "/api/v2/CartService/Carts/BusinessCart/{tenantId}": {
350
+ get: {
351
+ parameters: {
352
+ query?: {
353
+ "api-version"?: string;
354
+ };
355
+ header?: {
356
+ "x-api-version"?: string;
357
+ };
358
+ path: {
359
+ tenantId: string;
360
+ };
361
+ };
362
+ responses: {
363
+ /** @description OK */
364
+ 200: {
365
+ content: {
366
+ "application/json": components["schemas"]["CartDtoEnvelope"];
367
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
368
+ };
369
+ };
370
+ /** @description Unauthorized */
371
+ 401: {
372
+ content: {
373
+ "application/json": components["schemas"]["ErrorEnvelope"];
374
+ "application/xml": components["schemas"]["ErrorEnvelope"];
375
+ };
376
+ };
377
+ /** @description Forbidden */
378
+ 403: {
379
+ content: {
380
+ "application/json": components["schemas"]["ErrorEnvelope"];
381
+ "application/xml": components["schemas"]["ErrorEnvelope"];
382
+ };
383
+ };
384
+ };
385
+ };
386
+ };
387
+ "/api/v2/CartService/Carts/{cartId}/Items": {
388
+ get: {
389
+ parameters: {
390
+ query?: {
391
+ "api-version"?: string;
392
+ };
393
+ header?: {
394
+ "x-api-version"?: string;
395
+ };
396
+ path: {
397
+ cartId: string;
398
+ };
399
+ };
400
+ responses: {
401
+ /** @description OK */
402
+ 200: {
403
+ content: {
404
+ "application/json": components["schemas"]["ItemCartRecordDtoListEnvelope"];
405
+ "application/xml": components["schemas"]["ItemCartRecordDtoListEnvelope"];
406
+ };
407
+ };
408
+ /** @description Unauthorized */
409
+ 401: {
410
+ content: {
411
+ "application/json": components["schemas"]["ErrorEnvelope"];
412
+ "application/xml": components["schemas"]["ErrorEnvelope"];
413
+ };
414
+ };
415
+ /** @description Not Found */
416
+ 404: {
417
+ content: {
418
+ "application/json": components["schemas"]["ErrorEnvelope"];
419
+ "application/xml": components["schemas"]["ErrorEnvelope"];
420
+ };
421
+ };
422
+ };
423
+ };
424
+ delete: {
425
+ parameters: {
426
+ query?: {
427
+ "api-version"?: string;
428
+ };
429
+ header?: {
430
+ "x-api-version"?: string;
431
+ };
432
+ path: {
433
+ cartId: string;
434
+ };
435
+ };
436
+ responses: {
437
+ /** @description OK */
438
+ 200: {
439
+ content: {
440
+ "application/json": components["schemas"]["EmptyEnvelope"];
441
+ "application/xml": components["schemas"]["EmptyEnvelope"];
442
+ };
443
+ };
444
+ /** @description Unauthorized */
445
+ 401: {
446
+ content: {
447
+ "application/json": components["schemas"]["ErrorEnvelope"];
448
+ "application/xml": components["schemas"]["ErrorEnvelope"];
449
+ };
450
+ };
451
+ /** @description Not Found */
452
+ 404: {
453
+ content: {
454
+ "application/json": components["schemas"]["ErrorEnvelope"];
455
+ "application/xml": components["schemas"]["ErrorEnvelope"];
456
+ };
457
+ };
458
+ };
459
+ };
460
+ };
461
+ "/api/v2/CartService/Carts/{cartId}/Items/{itemId}": {
462
+ put: {
463
+ parameters: {
464
+ query?: {
465
+ "api-version"?: string;
466
+ };
467
+ header?: {
468
+ "x-api-version"?: string;
469
+ };
470
+ path: {
471
+ cartId: string;
472
+ itemId: string;
473
+ };
474
+ };
475
+ requestBody?: {
476
+ content: {
477
+ "application/json": components["schemas"]["ItemCartRecordUpdateDto"];
478
+ "application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
479
+ };
480
+ };
481
+ responses: {
482
+ /** @description OK */
483
+ 200: {
484
+ content: {
485
+ "application/json": components["schemas"]["EmptyEnvelope"];
486
+ "application/xml": components["schemas"]["EmptyEnvelope"];
487
+ };
488
+ };
489
+ /** @description Unauthorized */
490
+ 401: {
491
+ content: {
492
+ "application/json": components["schemas"]["ErrorEnvelope"];
493
+ "application/xml": components["schemas"]["ErrorEnvelope"];
494
+ };
495
+ };
496
+ /** @description Not Found */
497
+ 404: {
498
+ content: {
499
+ "application/json": components["schemas"]["ErrorEnvelope"];
500
+ "application/xml": components["schemas"]["ErrorEnvelope"];
501
+ };
502
+ };
503
+ };
504
+ };
505
+ post: {
506
+ parameters: {
507
+ query?: {
508
+ quantity?: number;
509
+ "api-version"?: string;
510
+ };
511
+ header?: {
512
+ "x-api-version"?: string;
513
+ };
514
+ path: {
515
+ cartId: string;
516
+ itemId: string;
517
+ };
518
+ };
519
+ responses: {
520
+ /** @description OK */
521
+ 200: {
522
+ content: {
523
+ "application/json": components["schemas"]["EmptyEnvelope"];
524
+ "application/xml": components["schemas"]["EmptyEnvelope"];
525
+ };
526
+ };
527
+ /** @description Unauthorized */
528
+ 401: {
529
+ content: {
530
+ "application/json": components["schemas"]["ErrorEnvelope"];
531
+ "application/xml": components["schemas"]["ErrorEnvelope"];
532
+ };
533
+ };
534
+ /** @description Not Found */
535
+ 404: {
536
+ content: {
537
+ "application/json": components["schemas"]["ErrorEnvelope"];
538
+ "application/xml": components["schemas"]["ErrorEnvelope"];
539
+ };
540
+ };
541
+ };
542
+ };
543
+ delete: {
544
+ parameters: {
545
+ query?: {
546
+ "api-version"?: string;
547
+ };
548
+ header?: {
549
+ "x-api-version"?: string;
550
+ };
551
+ path: {
552
+ cartId: string;
553
+ itemId: string;
554
+ };
555
+ };
556
+ responses: {
557
+ /** @description OK */
558
+ 200: {
559
+ content: {
560
+ "application/json": components["schemas"]["EmptyEnvelope"];
561
+ "application/xml": components["schemas"]["EmptyEnvelope"];
562
+ };
563
+ };
564
+ /** @description Unauthorized */
565
+ 401: {
566
+ content: {
567
+ "application/json": components["schemas"]["ErrorEnvelope"];
568
+ "application/xml": components["schemas"]["ErrorEnvelope"];
569
+ };
570
+ };
571
+ /** @description Not Found */
572
+ 404: {
573
+ content: {
574
+ "application/json": components["schemas"]["ErrorEnvelope"];
575
+ "application/xml": components["schemas"]["ErrorEnvelope"];
576
+ };
577
+ };
578
+ };
579
+ };
580
+ };
581
+ "/api/v2/CartService/Carts/{cartId}/Contains/{itemId}": {
582
+ get: {
583
+ parameters: {
584
+ query?: {
585
+ "api-version"?: string;
586
+ };
587
+ header?: {
588
+ "x-api-version"?: string;
589
+ };
590
+ path: {
591
+ cartId: string;
592
+ itemId: string;
593
+ };
594
+ };
595
+ responses: {
596
+ /** @description OK */
597
+ 200: {
598
+ content: {
599
+ "application/json": components["schemas"]["BooleanEnvelope"];
600
+ "application/xml": components["schemas"]["BooleanEnvelope"];
601
+ };
602
+ };
603
+ /** @description Unauthorized */
604
+ 401: {
605
+ content: {
606
+ "application/json": components["schemas"]["ErrorEnvelope"];
607
+ "application/xml": components["schemas"]["ErrorEnvelope"];
608
+ };
609
+ };
610
+ /** @description Not Found */
611
+ 404: {
612
+ content: {
613
+ "application/json": components["schemas"]["EmptyEnvelope"];
614
+ "application/xml": components["schemas"]["EmptyEnvelope"];
615
+ };
616
+ };
617
+ };
618
+ };
619
+ };
620
+ "/api/v2/CartService/Carts/{cartId}/Items/{itemId}/Increase": {
621
+ put: {
622
+ parameters: {
623
+ query?: {
624
+ "api-version"?: string;
625
+ };
626
+ header?: {
627
+ "x-api-version"?: string;
628
+ };
629
+ path: {
630
+ cartId: string;
631
+ itemId: string;
632
+ };
633
+ };
634
+ requestBody?: {
635
+ content: {
636
+ "application/json": components["schemas"]["ItemCartRecordUpdateDto"];
637
+ "application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
638
+ };
639
+ };
640
+ responses: {
641
+ /** @description OK */
642
+ 200: {
643
+ content: {
644
+ "application/json": components["schemas"]["EmptyEnvelope"];
645
+ "application/xml": components["schemas"]["EmptyEnvelope"];
646
+ };
647
+ };
648
+ /** @description Unauthorized */
649
+ 401: {
650
+ content: {
651
+ "application/json": components["schemas"]["ErrorEnvelope"];
652
+ "application/xml": components["schemas"]["ErrorEnvelope"];
653
+ };
654
+ };
655
+ /** @description Not Found */
656
+ 404: {
657
+ content: {
658
+ "application/json": components["schemas"]["ErrorEnvelope"];
659
+ "application/xml": components["schemas"]["ErrorEnvelope"];
660
+ };
661
+ };
662
+ };
663
+ };
664
+ };
665
+ "/api/v2/CartService/Carts/{cartId}/Items/{itemId}/Decrease": {
666
+ put: {
667
+ parameters: {
668
+ query?: {
669
+ "api-version"?: string;
670
+ };
671
+ header?: {
672
+ "x-api-version"?: string;
673
+ };
674
+ path: {
675
+ cartId: string;
676
+ itemId: string;
677
+ };
678
+ };
679
+ requestBody?: {
680
+ content: {
681
+ "application/json": components["schemas"]["ItemCartRecordUpdateDto"];
682
+ "application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
683
+ };
684
+ };
685
+ responses: {
686
+ /** @description OK */
687
+ 200: {
688
+ content: {
689
+ "application/json": components["schemas"]["EmptyEnvelope"];
690
+ "application/xml": components["schemas"]["EmptyEnvelope"];
691
+ };
692
+ };
693
+ /** @description Unauthorized */
694
+ 401: {
695
+ content: {
696
+ "application/json": components["schemas"]["ErrorEnvelope"];
697
+ "application/xml": components["schemas"]["ErrorEnvelope"];
698
+ };
699
+ };
700
+ /** @description Not Found */
701
+ 404: {
702
+ content: {
703
+ "application/json": components["schemas"]["ErrorEnvelope"];
704
+ "application/xml": components["schemas"]["ErrorEnvelope"];
705
+ };
706
+ };
707
+ };
708
+ };
709
+ };
710
+ "/api/v2/CartService/Carts/{cartId}/Lines": {
711
+ get: {
712
+ parameters: {
713
+ query?: {
714
+ "api-version"?: string;
715
+ };
716
+ header?: {
717
+ "x-api-version"?: string;
718
+ };
719
+ path: {
720
+ cartId: string;
721
+ };
722
+ };
723
+ responses: {
724
+ /** @description OK */
725
+ 200: {
726
+ content: {
727
+ "application/json": components["schemas"]["ItemCartRecordDtoListEnvelope"];
728
+ "application/xml": components["schemas"]["ItemCartRecordDtoListEnvelope"];
729
+ };
730
+ };
731
+ /** @description Unauthorized */
732
+ 401: {
733
+ content: {
734
+ "application/json": components["schemas"]["ErrorEnvelope"];
735
+ "application/xml": components["schemas"]["ErrorEnvelope"];
736
+ };
737
+ };
738
+ /** @description Not Found */
739
+ 404: {
740
+ content: {
741
+ "application/json": components["schemas"]["ErrorEnvelope"];
742
+ "application/xml": components["schemas"]["ErrorEnvelope"];
743
+ };
744
+ };
745
+ };
746
+ };
747
+ };
748
+ "/api/v2/CartService/Carts/{cartId}/Lines/{lineId}": {
749
+ get: {
750
+ parameters: {
751
+ query?: {
752
+ "api-version"?: string;
753
+ };
754
+ header?: {
755
+ "x-api-version"?: string;
756
+ };
757
+ path: {
758
+ cartId: string;
759
+ lineId: string;
760
+ };
761
+ };
762
+ responses: {
763
+ /** @description OK */
764
+ 200: {
765
+ content: {
766
+ "application/json": components["schemas"]["EmptyEnvelope"];
767
+ "application/xml": components["schemas"]["EmptyEnvelope"];
768
+ };
769
+ };
770
+ /** @description Unauthorized */
771
+ 401: {
772
+ content: {
773
+ "application/json": components["schemas"]["ItemCartRecordDtoEnvelope"];
774
+ "application/xml": components["schemas"]["ItemCartRecordDtoEnvelope"];
775
+ };
776
+ };
777
+ /** @description Not Found */
778
+ 404: {
779
+ content: {
780
+ "application/json": components["schemas"]["ErrorEnvelope"];
781
+ "application/xml": components["schemas"]["ErrorEnvelope"];
782
+ };
783
+ };
784
+ };
785
+ };
786
+ put: {
787
+ parameters: {
788
+ query?: {
789
+ "api-version"?: string;
790
+ };
791
+ header?: {
792
+ "x-api-version"?: string;
793
+ };
794
+ path: {
795
+ cartId: string;
796
+ lineId: string;
797
+ };
798
+ };
799
+ requestBody?: {
800
+ content: {
801
+ "application/json": components["schemas"]["ItemCartRecordUpdateDto"];
802
+ "application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
803
+ };
804
+ };
805
+ responses: {
806
+ /** @description OK */
807
+ 200: {
808
+ content: {
809
+ "application/json": components["schemas"]["EmptyEnvelope"];
810
+ "application/xml": components["schemas"]["EmptyEnvelope"];
811
+ };
812
+ };
813
+ /** @description Unauthorized */
814
+ 401: {
815
+ content: {
816
+ "application/json": components["schemas"]["ErrorEnvelope"];
817
+ "application/xml": components["schemas"]["ErrorEnvelope"];
818
+ };
819
+ };
820
+ /** @description Not Found */
821
+ 404: {
822
+ content: {
823
+ "application/json": components["schemas"]["ErrorEnvelope"];
824
+ "application/xml": components["schemas"]["ErrorEnvelope"];
825
+ };
826
+ };
827
+ };
828
+ };
829
+ delete: {
830
+ parameters: {
831
+ query?: {
832
+ "api-version"?: string;
833
+ };
834
+ header?: {
835
+ "x-api-version"?: string;
836
+ };
837
+ path: {
838
+ cartId: string;
839
+ lineId: string;
840
+ };
841
+ };
842
+ responses: {
843
+ /** @description OK */
844
+ 200: {
845
+ content: {
846
+ "application/json": components["schemas"]["EmptyEnvelope"];
847
+ "application/xml": components["schemas"]["EmptyEnvelope"];
848
+ };
849
+ };
850
+ /** @description Unauthorized */
851
+ 401: {
852
+ content: {
853
+ "application/json": components["schemas"]["ErrorEnvelope"];
854
+ "application/xml": components["schemas"]["ErrorEnvelope"];
855
+ };
856
+ };
857
+ /** @description Not Found */
858
+ 404: {
859
+ content: {
860
+ "application/json": components["schemas"]["ErrorEnvelope"];
861
+ "application/xml": components["schemas"]["ErrorEnvelope"];
862
+ };
863
+ };
864
+ };
865
+ };
866
+ };
867
+ "/api/v2/CartService/Carts/{cartId}/Lines/{lineId}/Increase": {
868
+ put: {
869
+ parameters: {
870
+ query?: {
871
+ quantity?: number;
872
+ "api-version"?: string;
873
+ };
874
+ header?: {
875
+ "x-api-version"?: string;
876
+ };
877
+ path: {
878
+ cartId: string;
879
+ lineId: string;
880
+ };
881
+ };
882
+ responses: {
883
+ /** @description OK */
884
+ 200: {
885
+ content: {
886
+ "application/json": components["schemas"]["EmptyEnvelope"];
887
+ "application/xml": components["schemas"]["EmptyEnvelope"];
888
+ };
889
+ };
890
+ /** @description Unauthorized */
891
+ 401: {
892
+ content: {
893
+ "application/json": components["schemas"]["ErrorEnvelope"];
894
+ "application/xml": components["schemas"]["ErrorEnvelope"];
895
+ };
896
+ };
897
+ /** @description Not Found */
898
+ 404: {
899
+ content: {
900
+ "application/json": components["schemas"]["ErrorEnvelope"];
901
+ "application/xml": components["schemas"]["ErrorEnvelope"];
902
+ };
903
+ };
904
+ };
905
+ };
906
+ };
907
+ "/api/v2/CartService/Carts/{cartId}/Lines/{lineId}/Decrease": {
908
+ put: {
909
+ parameters: {
910
+ query?: {
911
+ quantity?: number;
912
+ "api-version"?: string;
913
+ };
914
+ header?: {
915
+ "x-api-version"?: string;
916
+ };
917
+ path: {
918
+ cartId: string;
919
+ lineId: string;
920
+ };
921
+ };
922
+ responses: {
923
+ /** @description OK */
924
+ 200: {
925
+ content: {
926
+ "application/json": components["schemas"]["EmptyEnvelope"];
927
+ "application/xml": components["schemas"]["EmptyEnvelope"];
928
+ };
929
+ };
930
+ /** @description Unauthorized */
931
+ 401: {
932
+ content: {
933
+ "application/json": components["schemas"]["ErrorEnvelope"];
934
+ "application/xml": components["schemas"]["ErrorEnvelope"];
935
+ };
936
+ };
937
+ /** @description Not Found */
938
+ 404: {
939
+ content: {
940
+ "application/json": components["schemas"]["ErrorEnvelope"];
941
+ "application/xml": components["schemas"]["ErrorEnvelope"];
942
+ };
943
+ };
944
+ };
945
+ };
946
+ };
947
+ "/api/v2/CartService/Carts/{cartId}/WishLists": {
948
+ get: {
949
+ parameters: {
950
+ query?: {
951
+ "api-version"?: string;
952
+ };
953
+ header?: {
954
+ "x-api-version"?: string;
955
+ };
956
+ path: {
957
+ cartId: string;
958
+ };
959
+ };
960
+ responses: {
961
+ /** @description OK */
962
+ 200: {
963
+ content: {
964
+ "application/json": components["schemas"]["WishListDto"][];
965
+ "application/xml": components["schemas"]["WishListDto"][];
966
+ };
967
+ };
968
+ /** @description Unauthorized */
969
+ 401: {
970
+ content: {
971
+ "application/json": components["schemas"]["ErrorEnvelope"];
972
+ "application/xml": components["schemas"]["ErrorEnvelope"];
973
+ };
974
+ };
975
+ /** @description Not Found */
976
+ 404: {
977
+ content: {
978
+ "application/json": components["schemas"]["ErrorEnvelope"];
979
+ "application/xml": components["schemas"]["ErrorEnvelope"];
980
+ };
981
+ };
982
+ };
983
+ };
984
+ post: {
985
+ parameters: {
986
+ query?: {
987
+ "api-version"?: string;
988
+ };
989
+ header?: {
990
+ "x-api-version"?: string;
991
+ };
992
+ path: {
993
+ cartId: string;
994
+ };
995
+ };
996
+ requestBody?: {
997
+ content: {
998
+ "application/json": components["schemas"]["NewWishListRequest"];
999
+ "application/xml": components["schemas"]["NewWishListRequest"];
1000
+ };
1001
+ };
1002
+ responses: {
1003
+ /** @description OK */
1004
+ 200: {
1005
+ content: {
1006
+ "application/json": components["schemas"]["EmptyEnvelope"];
1007
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1008
+ };
1009
+ };
1010
+ /** @description Unauthorized */
1011
+ 401: {
1012
+ content: {
1013
+ "application/json": components["schemas"]["ErrorEnvelope"];
1014
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1015
+ };
1016
+ };
1017
+ /** @description Not Found */
1018
+ 404: {
1019
+ content: {
1020
+ "application/json": components["schemas"]["ErrorEnvelope"];
1021
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1022
+ };
1023
+ };
1024
+ };
1025
+ };
1026
+ };
1027
+ "/api/v2/CartService/Carts/{cartId}/WishLists/Contains/{itemId}": {
1028
+ get: {
1029
+ parameters: {
1030
+ query?: {
1031
+ "api-version"?: string;
1032
+ };
1033
+ header?: {
1034
+ "x-api-version"?: string;
1035
+ };
1036
+ path: {
1037
+ cartId: string;
1038
+ itemId: string;
1039
+ };
1040
+ };
1041
+ responses: {
1042
+ /** @description OK */
1043
+ 200: {
1044
+ content: {
1045
+ "application/json": components["schemas"]["BooleanEnvelope"];
1046
+ "application/xml": components["schemas"]["BooleanEnvelope"];
1047
+ };
1048
+ };
1049
+ /** @description Unauthorized */
1050
+ 401: {
1051
+ content: {
1052
+ "application/json": components["schemas"]["ErrorEnvelope"];
1053
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1054
+ };
1055
+ };
1056
+ /** @description Not Found */
1057
+ 404: {
1058
+ content: {
1059
+ "application/json": components["schemas"]["ErrorEnvelope"];
1060
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1061
+ };
1062
+ };
1063
+ };
1064
+ };
1065
+ };
1066
+ "/api/v2/CartService/Carts/{cartId}/WishLists/{wishListId}/Exists": {
1067
+ get: {
1068
+ parameters: {
1069
+ query?: {
1070
+ "api-version"?: string;
1071
+ };
1072
+ header?: {
1073
+ "x-api-version"?: string;
1074
+ };
1075
+ path: {
1076
+ cartId: string;
1077
+ wishListId: string;
1078
+ };
1079
+ };
1080
+ responses: {
1081
+ /** @description OK */
1082
+ 200: {
1083
+ content: {
1084
+ "application/json": components["schemas"]["BooleanEnvelope"];
1085
+ "application/xml": components["schemas"]["BooleanEnvelope"];
1086
+ };
1087
+ };
1088
+ /** @description Unauthorized */
1089
+ 401: {
1090
+ content: {
1091
+ "application/json": components["schemas"]["ErrorEnvelope"];
1092
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1093
+ };
1094
+ };
1095
+ /** @description Not Found */
1096
+ 404: {
1097
+ content: {
1098
+ "application/json": components["schemas"]["ErrorEnvelope"];
1099
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1100
+ };
1101
+ };
1102
+ };
1103
+ };
1104
+ head: {
1105
+ parameters: {
1106
+ query?: {
1107
+ "api-version"?: string;
1108
+ };
1109
+ header?: {
1110
+ "x-api-version"?: string;
1111
+ };
1112
+ path: {
1113
+ cartId: string;
1114
+ wishListId: string;
1115
+ };
1116
+ };
1117
+ responses: {
1118
+ /** @description OK */
1119
+ 200: {
1120
+ content: {
1121
+ "application/json": components["schemas"]["EmptyEnvelope"];
1122
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1123
+ };
1124
+ };
1125
+ };
1126
+ };
1127
+ };
1128
+ "/api/v2/CartService/Carts/{cartId}/WishLists/{wishListId}": {
1129
+ get: {
1130
+ parameters: {
1131
+ query?: {
1132
+ "api-version"?: string;
1133
+ };
1134
+ header?: {
1135
+ "x-api-version"?: string;
1136
+ };
1137
+ path: {
1138
+ cartId: string;
1139
+ wishListId: string;
1140
+ };
1141
+ };
1142
+ responses: {
1143
+ /** @description OK */
1144
+ 200: {
1145
+ content: {
1146
+ "application/json": components["schemas"]["WishListDtoEnvelope"];
1147
+ "application/xml": components["schemas"]["WishListDtoEnvelope"];
1148
+ };
1149
+ };
1150
+ /** @description Unauthorized */
1151
+ 401: {
1152
+ content: {
1153
+ "application/json": components["schemas"]["ErrorEnvelope"];
1154
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1155
+ };
1156
+ };
1157
+ /** @description Not Found */
1158
+ 404: {
1159
+ content: {
1160
+ "application/json": components["schemas"]["ErrorEnvelope"];
1161
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1162
+ };
1163
+ };
1164
+ };
1165
+ };
1166
+ put: {
1167
+ parameters: {
1168
+ query?: {
1169
+ "api-version"?: string;
1170
+ };
1171
+ header?: {
1172
+ "x-api-version"?: string;
1173
+ };
1174
+ path: {
1175
+ cartId: string;
1176
+ wishListId: string;
1177
+ };
1178
+ };
1179
+ requestBody?: {
1180
+ content: {
1181
+ "application/json": components["schemas"]["WishListUpdateDto"];
1182
+ "application/xml": components["schemas"]["WishListUpdateDto"];
1183
+ };
1184
+ };
1185
+ responses: {
1186
+ /** @description OK */
1187
+ 200: {
1188
+ content: {
1189
+ "application/json": components["schemas"]["EmptyEnvelope"];
1190
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1191
+ };
1192
+ };
1193
+ /** @description Unauthorized */
1194
+ 401: {
1195
+ content: {
1196
+ "application/json": components["schemas"]["ErrorEnvelope"];
1197
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1198
+ };
1199
+ };
1200
+ /** @description Not Found */
1201
+ 404: {
1202
+ content: {
1203
+ "application/json": components["schemas"]["ErrorEnvelope"];
1204
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1205
+ };
1206
+ };
1207
+ };
1208
+ };
1209
+ delete: {
1210
+ parameters: {
1211
+ query?: {
1212
+ "api-version"?: string;
1213
+ };
1214
+ header?: {
1215
+ "x-api-version"?: string;
1216
+ };
1217
+ path: {
1218
+ cartId: string;
1219
+ wishListId: string;
1220
+ };
1221
+ };
1222
+ responses: {
1223
+ /** @description OK */
1224
+ 200: {
1225
+ content: {
1226
+ "application/json": components["schemas"]["EmptyEnvelope"];
1227
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1228
+ };
1229
+ };
1230
+ /** @description Unauthorized */
1231
+ 401: {
1232
+ content: {
1233
+ "application/json": components["schemas"]["ErrorEnvelope"];
1234
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1235
+ };
1236
+ };
1237
+ /** @description Not Found */
1238
+ 404: {
1239
+ content: {
1240
+ "application/json": components["schemas"]["ErrorEnvelope"];
1241
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1242
+ };
1243
+ };
1244
+ };
1245
+ };
1246
+ };
1247
+ "/api/v2/CartService/Carts/{cartId}/WishLists/{wishListId}/Records": {
1248
+ get: {
1249
+ parameters: {
1250
+ query?: {
1251
+ "api-version"?: string;
1252
+ };
1253
+ header?: {
1254
+ "x-api-version"?: string;
1255
+ };
1256
+ path: {
1257
+ cartId: string;
1258
+ wishListId: string;
1259
+ };
1260
+ };
1261
+ responses: {
1262
+ /** @description OK */
1263
+ 200: {
1264
+ content: {
1265
+ "application/json": components["schemas"]["WishListItemRecordDto"][];
1266
+ "application/xml": components["schemas"]["WishListItemRecordDto"][];
1267
+ };
1268
+ };
1269
+ /** @description Unauthorized */
1270
+ 401: {
1271
+ content: {
1272
+ "application/json": components["schemas"]["ErrorEnvelope"];
1273
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1274
+ };
1275
+ };
1276
+ /** @description Not Found */
1277
+ 404: {
1278
+ content: {
1279
+ "application/json": components["schemas"]["ErrorEnvelope"];
1280
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1281
+ };
1282
+ };
1283
+ };
1284
+ };
1285
+ post: {
1286
+ parameters: {
1287
+ query?: {
1288
+ "api-version"?: string;
1289
+ };
1290
+ header?: {
1291
+ "x-api-version"?: string;
1292
+ };
1293
+ path: {
1294
+ cartId: string;
1295
+ wishListId: string;
1296
+ };
1297
+ };
1298
+ requestBody?: {
1299
+ content: {
1300
+ "application/json": components["schemas"]["ProductToWishListRequest"];
1301
+ "application/xml": components["schemas"]["ProductToWishListRequest"];
1302
+ };
1303
+ };
1304
+ responses: {
1305
+ /** @description OK */
1306
+ 200: {
1307
+ content: {
1308
+ "application/json": components["schemas"]["EmptyEnvelope"];
1309
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1310
+ };
1311
+ };
1312
+ /** @description Unauthorized */
1313
+ 401: {
1314
+ content: {
1315
+ "application/json": components["schemas"]["ErrorEnvelope"];
1316
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1317
+ };
1318
+ };
1319
+ /** @description Not Found */
1320
+ 404: {
1321
+ content: {
1322
+ "application/json": components["schemas"]["ErrorEnvelope"];
1323
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1324
+ };
1325
+ };
1326
+ };
1327
+ };
1328
+ };
1329
+ "/api/v2/CartService/Carts/{cartId}/WishLists/{wishListId}/Records/{recordId}": {
1330
+ get: {
1331
+ parameters: {
1332
+ query?: {
1333
+ "api-version"?: string;
1334
+ };
1335
+ header?: {
1336
+ "x-api-version"?: string;
1337
+ };
1338
+ path: {
1339
+ cartId: string;
1340
+ wishListId: string;
1341
+ recordId: string;
1342
+ };
1343
+ };
1344
+ responses: {
1345
+ /** @description OK */
1346
+ 200: {
1347
+ content: {
1348
+ "application/json": components["schemas"]["WishListItemRecordDto"][];
1349
+ "application/xml": components["schemas"]["WishListItemRecordDto"][];
1350
+ };
1351
+ };
1352
+ };
1353
+ };
1354
+ delete: {
1355
+ parameters: {
1356
+ query?: {
1357
+ "api-version"?: string;
1358
+ };
1359
+ header?: {
1360
+ "x-api-version"?: string;
1361
+ };
1362
+ path: {
1363
+ cartId: string;
1364
+ wishListId: string;
1365
+ recordId: string;
1366
+ };
1367
+ };
1368
+ responses: {
1369
+ /** @description OK */
1370
+ 200: {
1371
+ content: {
1372
+ "application/json": components["schemas"]["EmptyEnvelope"];
1373
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1374
+ };
1375
+ };
1376
+ /** @description Unauthorized */
1377
+ 401: {
1378
+ content: {
1379
+ "application/json": components["schemas"]["ErrorEnvelope"];
1380
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1381
+ };
1382
+ };
1383
+ /** @description Not Found */
1384
+ 404: {
1385
+ content: {
1386
+ "application/json": components["schemas"]["ErrorEnvelope"];
1387
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1388
+ };
1389
+ };
1390
+ };
1391
+ };
1392
+ };
1393
+ "/api/v2/CartService/Carts/{cartId}/Compare": {
1394
+ get: {
1395
+ parameters: {
1396
+ query?: {
1397
+ "api-version"?: string;
1398
+ };
1399
+ header?: {
1400
+ "x-api-version"?: string;
1401
+ };
1402
+ path: {
1403
+ cartId: string;
1404
+ };
1405
+ };
1406
+ responses: {
1407
+ /** @description OK */
1408
+ 200: {
1409
+ content: {
1410
+ "application/json": components["schemas"]["ItemToCompareCartRecordDtoListEnvelope"];
1411
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDtoListEnvelope"];
1412
+ };
1413
+ };
1414
+ /** @description Unauthorized */
1415
+ 401: {
1416
+ content: {
1417
+ "application/json": components["schemas"]["ErrorEnvelope"];
1418
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1419
+ };
1420
+ };
1421
+ /** @description Not Found */
1422
+ 404: {
1423
+ content: {
1424
+ "application/json": components["schemas"]["ErrorEnvelope"];
1425
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1426
+ };
1427
+ };
1428
+ };
1429
+ };
1430
+ };
1431
+ "/api/v2/CartService/Carts/{cartId}/Compare/{itemId}": {
1432
+ get: {
1433
+ parameters: {
1434
+ query?: {
1435
+ "api-version"?: string;
1436
+ };
1437
+ header?: {
1438
+ "x-api-version"?: string;
1439
+ };
1440
+ path: {
1441
+ cartId: string;
1442
+ itemId: string;
1443
+ };
1444
+ };
1445
+ responses: {
1446
+ /** @description OK */
1447
+ 200: {
1448
+ content: {
1449
+ "application/json": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
1450
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
1451
+ };
1452
+ };
1453
+ /** @description Unauthorized */
1454
+ 401: {
1455
+ content: {
1456
+ "application/json": components["schemas"]["ErrorEnvelope"];
1457
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1458
+ };
1459
+ };
1460
+ /** @description Not Found */
1461
+ 404: {
1462
+ content: {
1463
+ "application/json": components["schemas"]["ErrorEnvelope"];
1464
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1465
+ };
1466
+ };
1467
+ };
1468
+ };
1469
+ post: {
1470
+ parameters: {
1471
+ query?: {
1472
+ "api-version"?: string;
1473
+ };
1474
+ header?: {
1475
+ "x-api-version"?: string;
1476
+ };
1477
+ path: {
1478
+ cartId: string;
1479
+ itemId: string;
1480
+ };
1481
+ };
1482
+ responses: {
1483
+ /** @description OK */
1484
+ 200: {
1485
+ content: {
1486
+ "application/json": components["schemas"]["ItemCartRecordDto"];
1487
+ "application/xml": components["schemas"]["ItemCartRecordDto"];
1488
+ };
1489
+ };
1490
+ /** @description Unauthorized */
1491
+ 401: {
1492
+ content: {
1493
+ "application/json": components["schemas"]["ErrorEnvelope"];
1494
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1495
+ };
1496
+ };
1497
+ /** @description Not Found */
1498
+ 404: {
1499
+ content: {
1500
+ "application/json": components["schemas"]["ErrorEnvelope"];
1501
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1502
+ };
1503
+ };
1504
+ };
1505
+ };
1506
+ delete: {
1507
+ parameters: {
1508
+ query?: {
1509
+ "api-version"?: string;
1510
+ };
1511
+ header?: {
1512
+ "x-api-version"?: string;
1513
+ };
1514
+ path: {
1515
+ cartId: string;
1516
+ itemId: string;
1517
+ };
1518
+ };
1519
+ responses: {
1520
+ /** @description OK */
1521
+ 200: {
1522
+ content: {
1523
+ "application/json": components["schemas"]["ItemToCompareCartRecordDto"];
1524
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDto"];
1525
+ };
1526
+ };
1527
+ /** @description Unauthorized */
1528
+ 401: {
1529
+ content: {
1530
+ "application/json": components["schemas"]["ErrorEnvelope"];
1531
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1532
+ };
1533
+ };
1534
+ /** @description Not Found */
1535
+ 404: {
1536
+ content: {
1537
+ "application/json": components["schemas"]["ErrorEnvelope"];
1538
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1539
+ };
1540
+ };
1541
+ };
1542
+ };
1543
+ };
1544
+ "/api/v2/CartService/Carts/{cartId}/Compare/Contains/{itemId}": {
1545
+ get: {
1546
+ parameters: {
1547
+ query?: {
1548
+ "api-version"?: string;
1549
+ };
1550
+ header?: {
1551
+ "x-api-version"?: string;
1552
+ };
1553
+ path: {
1554
+ cartId: string;
1555
+ itemId: string;
1556
+ };
1557
+ };
1558
+ responses: {
1559
+ /** @description OK */
1560
+ 200: {
1561
+ content: {
1562
+ "application/json": components["schemas"]["BooleanEnvelope"];
1563
+ "application/xml": components["schemas"]["BooleanEnvelope"];
1564
+ };
1565
+ };
1566
+ /** @description Unauthorized */
1567
+ 401: {
1568
+ content: {
1569
+ "application/json": components["schemas"]["ErrorEnvelope"];
1570
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1571
+ };
1572
+ };
1573
+ /** @description Not Found */
1574
+ 404: {
1575
+ content: {
1576
+ "application/json": components["schemas"]["ErrorEnvelope"];
1577
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1578
+ };
1579
+ };
1580
+ };
1581
+ };
1582
+ };
1583
+ "/api/v2/CartService/Compare/{cartId}": {
1584
+ get: {
1585
+ parameters: {
1586
+ query?: {
1587
+ "api-version"?: string;
1588
+ };
1589
+ header?: {
1590
+ "x-api-version"?: string;
1591
+ };
1592
+ path: {
1593
+ cartId: string;
1594
+ };
1595
+ };
1596
+ responses: {
1597
+ /** @description OK */
1598
+ 200: {
1599
+ content: {
1600
+ "application/json": components["schemas"]["ItemToCompareCartRecordDtoListEnvelope"];
1601
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDtoListEnvelope"];
1602
+ };
1603
+ };
1604
+ /** @description Unauthorized */
1605
+ 401: {
1606
+ content: {
1607
+ "application/json": components["schemas"]["ErrorEnvelope"];
1608
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1609
+ };
1610
+ };
1611
+ /** @description Not Found */
1612
+ 404: {
1613
+ content: {
1614
+ "application/json": components["schemas"]["ErrorEnvelope"];
1615
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1616
+ };
1617
+ };
1618
+ };
1619
+ };
1620
+ };
1621
+ "/api/v2/CartService/Compare/{recordId}/Details": {
1622
+ get: {
1623
+ parameters: {
1624
+ query?: {
1625
+ "api-version"?: string;
1626
+ };
1627
+ header?: {
1628
+ "x-api-version"?: string;
1629
+ };
1630
+ path: {
1631
+ recordId: string;
1632
+ };
1633
+ };
1634
+ responses: {
1635
+ /** @description OK */
1636
+ 200: {
1637
+ content: {
1638
+ "application/json": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
1639
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
1640
+ };
1641
+ };
1642
+ /** @description Not Found */
1643
+ 404: {
1644
+ content: {
1645
+ "application/json": components["schemas"]["ErrorEnvelope"];
1646
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1647
+ };
1648
+ };
1649
+ };
1650
+ };
1651
+ };
1652
+ "/api/v2/CartService/Compare": {
1653
+ post: {
1654
+ parameters: {
1655
+ query?: {
1656
+ "api-version"?: string;
1657
+ };
1658
+ header?: {
1659
+ "x-api-version"?: string;
1660
+ };
1661
+ };
1662
+ requestBody?: {
1663
+ content: {
1664
+ "application/json": components["schemas"]["AddProductToCompareRequest"];
1665
+ "application/xml": components["schemas"]["AddProductToCompareRequest"];
1666
+ };
1667
+ };
1668
+ responses: {
1669
+ /** @description OK */
1670
+ 200: {
1671
+ content: {
1672
+ "application/json": components["schemas"]["ItemCartRecordDto"];
1673
+ "application/xml": components["schemas"]["ItemCartRecordDto"];
1674
+ };
1675
+ };
1676
+ /** @description Not Found */
1677
+ 404: {
1678
+ content: {
1679
+ "application/json": components["schemas"]["ErrorEnvelope"];
1680
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1681
+ };
1682
+ };
1683
+ };
1684
+ };
1685
+ };
1686
+ "/api/v2/CartService/Compare/{recordId}": {
1687
+ delete: {
1688
+ parameters: {
1689
+ query?: {
1690
+ "api-version"?: string;
1691
+ };
1692
+ header?: {
1693
+ "x-api-version"?: string;
1694
+ };
1695
+ path: {
1696
+ recordId: string;
1697
+ };
1698
+ };
1699
+ responses: {
1700
+ /** @description OK */
1701
+ 200: {
1702
+ content: {
1703
+ "application/json": components["schemas"]["ItemToCompareCartRecordDto"];
1704
+ "application/xml": components["schemas"]["ItemToCompareCartRecordDto"];
1705
+ };
1706
+ };
1707
+ /** @description Not Found */
1708
+ 404: {
1709
+ content: {
1710
+ "application/json": components["schemas"]["ErrorEnvelope"];
1711
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1712
+ };
1713
+ };
1714
+ };
1715
+ };
1716
+ };
1717
+ "/api/v2/CartService/Records/AddItem": {
1718
+ post: {
1719
+ parameters: {
1720
+ query?: {
1721
+ cartId?: string;
1722
+ itemId?: string;
1723
+ quantity?: number;
1724
+ "api-version"?: string;
1725
+ };
1726
+ header?: {
1727
+ "x-api-version"?: string;
1728
+ };
1729
+ };
1730
+ responses: {
1731
+ /** @description OK */
1732
+ 200: {
1733
+ content: {
1734
+ "application/json": components["schemas"]["EmptyEnvelope"];
1735
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1736
+ };
1737
+ };
1738
+ /** @description Unauthorized */
1739
+ 401: {
1740
+ content: {
1741
+ "application/json": components["schemas"]["ErrorEnvelope"];
1742
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1743
+ };
1744
+ };
1745
+ /** @description Not Found */
1746
+ 404: {
1747
+ content: {
1748
+ "application/json": components["schemas"]["ErrorEnvelope"];
1749
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1750
+ };
1751
+ };
1752
+ };
1753
+ };
1754
+ };
1755
+ "/api/v2/CartService/Records/{cartID}": {
1756
+ get: {
1757
+ parameters: {
1758
+ query?: {
1759
+ "api-version"?: string;
1760
+ };
1761
+ header?: {
1762
+ "x-api-version"?: string;
1763
+ };
1764
+ path: {
1765
+ cartId: string;
1766
+ };
1767
+ };
1768
+ responses: {
1769
+ /** @description OK */
1770
+ 200: {
1771
+ content: {
1772
+ "application/json": components["schemas"]["ItemCartRecordDtoListEnvelope"];
1773
+ "application/xml": components["schemas"]["ItemCartRecordDtoListEnvelope"];
1774
+ };
1775
+ };
1776
+ /** @description Unauthorized */
1777
+ 401: {
1778
+ content: {
1779
+ "application/json": components["schemas"]["ErrorEnvelope"];
1780
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1781
+ };
1782
+ };
1783
+ /** @description Not Found */
1784
+ 404: {
1785
+ content: {
1786
+ "application/json": components["schemas"]["ErrorEnvelope"];
1787
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1788
+ };
1789
+ };
1790
+ };
1791
+ };
1792
+ };
1793
+ "/api/v2/CartService/Records": {
1794
+ post: {
1795
+ parameters: {
1796
+ query?: {
1797
+ "api-version"?: string;
1798
+ };
1799
+ header?: {
1800
+ "x-api-version"?: string;
1801
+ };
1802
+ };
1803
+ requestBody?: {
1804
+ content: {
1805
+ "application/json": components["schemas"]["ItemCartRecordCreateDto"];
1806
+ "application/xml": components["schemas"]["ItemCartRecordCreateDto"];
1807
+ };
1808
+ };
1809
+ responses: {
1810
+ /** @description OK */
1811
+ 200: {
1812
+ content: {
1813
+ "application/json": components["schemas"]["EmptyEnvelope"];
1814
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1815
+ };
1816
+ };
1817
+ /** @description Unauthorized */
1818
+ 401: {
1819
+ content: {
1820
+ "application/json": components["schemas"]["ErrorEnvelope"];
1821
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1822
+ };
1823
+ };
1824
+ /** @description Not Found */
1825
+ 404: {
1826
+ content: {
1827
+ "application/json": components["schemas"]["ErrorEnvelope"];
1828
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1829
+ };
1830
+ };
1831
+ };
1832
+ };
1833
+ delete: {
1834
+ parameters: {
1835
+ query?: {
1836
+ cartId?: string;
1837
+ productId?: string;
1838
+ "api-version"?: string;
1839
+ };
1840
+ header?: {
1841
+ "x-api-version"?: string;
1842
+ };
1843
+ };
1844
+ responses: {
1845
+ /** @description OK */
1846
+ 200: {
1847
+ content: {
1848
+ "application/json": components["schemas"]["EmptyEnvelope"];
1849
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1850
+ };
1851
+ };
1852
+ /** @description Unauthorized */
1853
+ 401: {
1854
+ content: {
1855
+ "application/json": components["schemas"]["ErrorEnvelope"];
1856
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1857
+ };
1858
+ };
1859
+ /** @description Not Found */
1860
+ 404: {
1861
+ content: {
1862
+ "application/json": components["schemas"]["ErrorEnvelope"];
1863
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1864
+ };
1865
+ };
1866
+ };
1867
+ };
1868
+ };
1869
+ "/api/v2/CartService/Records/IsInCart": {
1870
+ get: {
1871
+ parameters: {
1872
+ query: {
1873
+ itemID: string;
1874
+ cartID: string;
1875
+ "api-version"?: string;
1876
+ };
1877
+ header?: {
1878
+ "x-api-version"?: string;
1879
+ };
1880
+ };
1881
+ responses: {
1882
+ /** @description OK */
1883
+ 200: {
1884
+ content: {
1885
+ "application/json": components["schemas"]["BooleanEnvelope"];
1886
+ "application/xml": components["schemas"]["BooleanEnvelope"];
1887
+ };
1888
+ };
1889
+ /** @description Unauthorized */
1890
+ 401: {
1891
+ content: {
1892
+ "application/json": components["schemas"]["ErrorEnvelope"];
1893
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1894
+ };
1895
+ };
1896
+ /** @description Not Found */
1897
+ 404: {
1898
+ content: {
1899
+ "application/json": components["schemas"]["EmptyEnvelope"];
1900
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1901
+ };
1902
+ };
1903
+ };
1904
+ };
1905
+ };
1906
+ "/api/v2/CartService/Records/ClearCart": {
1907
+ post: {
1908
+ parameters: {
1909
+ query: {
1910
+ cartID: string;
1911
+ "api-version"?: string;
1912
+ };
1913
+ header?: {
1914
+ "x-api-version"?: string;
1915
+ };
1916
+ };
1917
+ responses: {
1918
+ /** @description OK */
1919
+ 200: {
1920
+ content: {
1921
+ "application/json": components["schemas"]["EmptyEnvelope"];
1922
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1923
+ };
1924
+ };
1925
+ /** @description Unauthorized */
1926
+ 401: {
1927
+ content: {
1928
+ "application/json": components["schemas"]["ErrorEnvelope"];
1929
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1930
+ };
1931
+ };
1932
+ /** @description Not Found */
1933
+ 404: {
1934
+ content: {
1935
+ "application/json": components["schemas"]["ErrorEnvelope"];
1936
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1937
+ };
1938
+ };
1939
+ };
1940
+ };
1941
+ };
1942
+ "/api/v2/CartService/Records/{recordId}/Details": {
1943
+ get: {
1944
+ parameters: {
1945
+ query?: {
1946
+ "api-version"?: string;
1947
+ };
1948
+ header?: {
1949
+ "x-api-version"?: string;
1950
+ };
1951
+ path: {
1952
+ recordId: string;
1953
+ };
1954
+ };
1955
+ responses: {
1956
+ /** @description OK */
1957
+ 200: {
1958
+ content: {
1959
+ "application/json": components["schemas"]["EmptyEnvelope"];
1960
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1961
+ };
1962
+ };
1963
+ /** @description Unauthorized */
1964
+ 401: {
1965
+ content: {
1966
+ "application/json": components["schemas"]["ItemCartRecordDtoEnvelope"];
1967
+ "application/xml": components["schemas"]["ItemCartRecordDtoEnvelope"];
1968
+ };
1969
+ };
1970
+ /** @description Not Found */
1971
+ 404: {
1972
+ content: {
1973
+ "application/json": components["schemas"]["ErrorEnvelope"];
1974
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1975
+ };
1976
+ };
1977
+ };
1978
+ };
1979
+ };
1980
+ "/api/v2/CartService/Records/{recordId}": {
1981
+ put: {
1982
+ parameters: {
1983
+ query?: {
1984
+ "api-version"?: string;
1985
+ };
1986
+ header?: {
1987
+ "x-api-version"?: string;
1988
+ };
1989
+ path: {
1990
+ recordId: string;
1991
+ };
1992
+ };
1993
+ requestBody?: {
1994
+ content: {
1995
+ "application/json": components["schemas"]["ItemCartRecordUpdateDto"];
1996
+ "application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
1997
+ };
1998
+ };
1999
+ responses: {
2000
+ /** @description OK */
2001
+ 200: {
2002
+ content: {
2003
+ "application/json": components["schemas"]["EmptyEnvelope"];
2004
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2005
+ };
2006
+ };
2007
+ /** @description Unauthorized */
2008
+ 401: {
2009
+ content: {
2010
+ "application/json": components["schemas"]["ErrorEnvelope"];
2011
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2012
+ };
2013
+ };
2014
+ /** @description Not Found */
2015
+ 404: {
2016
+ content: {
2017
+ "application/json": components["schemas"]["ErrorEnvelope"];
2018
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2019
+ };
2020
+ };
2021
+ };
2022
+ };
2023
+ delete: {
2024
+ parameters: {
2025
+ query?: {
2026
+ "api-version"?: string;
2027
+ };
2028
+ header?: {
2029
+ "x-api-version"?: string;
2030
+ };
2031
+ path: {
2032
+ recordId: string;
2033
+ };
2034
+ };
2035
+ responses: {
2036
+ /** @description OK */
2037
+ 200: {
2038
+ content: {
2039
+ "application/json": components["schemas"]["EmptyEnvelope"];
2040
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2041
+ };
2042
+ };
2043
+ /** @description Unauthorized */
2044
+ 401: {
2045
+ content: {
2046
+ "application/json": components["schemas"]["ErrorEnvelope"];
2047
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2048
+ };
2049
+ };
2050
+ /** @description Not Found */
2051
+ 404: {
2052
+ content: {
2053
+ "application/json": components["schemas"]["ErrorEnvelope"];
2054
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2055
+ };
2056
+ };
2057
+ };
2058
+ };
2059
+ };
2060
+ "/api/v2/CartService/Records/{recordId}/Increase": {
2061
+ put: {
2062
+ parameters: {
2063
+ query?: {
2064
+ quantity?: number;
2065
+ "api-version"?: string;
2066
+ };
2067
+ header?: {
2068
+ "x-api-version"?: string;
2069
+ };
2070
+ path: {
2071
+ recordId: string;
2072
+ };
2073
+ };
2074
+ responses: {
2075
+ /** @description OK */
2076
+ 200: {
2077
+ content: {
2078
+ "application/json": components["schemas"]["EmptyEnvelope"];
2079
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2080
+ };
2081
+ };
2082
+ /** @description Unauthorized */
2083
+ 401: {
2084
+ content: {
2085
+ "application/json": components["schemas"]["ErrorEnvelope"];
2086
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2087
+ };
2088
+ };
2089
+ /** @description Not Found */
2090
+ 404: {
2091
+ content: {
2092
+ "application/json": components["schemas"]["ErrorEnvelope"];
2093
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2094
+ };
2095
+ };
2096
+ };
2097
+ };
2098
+ };
2099
+ "/api/v2/CartService/Records/{recordId}/Decrease": {
2100
+ put: {
2101
+ parameters: {
2102
+ query?: {
2103
+ quantity?: number;
2104
+ "api-version"?: string;
2105
+ };
2106
+ header?: {
2107
+ "x-api-version"?: string;
2108
+ };
2109
+ path: {
2110
+ recordId: string;
2111
+ };
2112
+ };
2113
+ responses: {
2114
+ /** @description OK */
2115
+ 200: {
2116
+ content: {
2117
+ "application/json": components["schemas"]["EmptyEnvelope"];
2118
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2119
+ };
2120
+ };
2121
+ /** @description Unauthorized */
2122
+ 401: {
2123
+ content: {
2124
+ "application/json": components["schemas"]["ErrorEnvelope"];
2125
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2126
+ };
2127
+ };
2128
+ /** @description Not Found */
2129
+ 404: {
2130
+ content: {
2131
+ "application/json": components["schemas"]["ErrorEnvelope"];
2132
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2133
+ };
2134
+ };
2135
+ };
2136
+ };
2137
+ };
2138
+ "/api/v2/CartService/WishLists/Contains": {
2139
+ get: {
2140
+ parameters: {
2141
+ query?: {
2142
+ cartId?: string;
2143
+ productId?: string;
2144
+ "api-version"?: string;
2145
+ };
2146
+ header?: {
2147
+ "x-api-version"?: string;
2148
+ };
2149
+ };
2150
+ responses: {
2151
+ /** @description OK */
2152
+ 200: {
2153
+ content: {
2154
+ "application/json": components["schemas"]["BooleanEnvelope"];
2155
+ "application/xml": components["schemas"]["BooleanEnvelope"];
2156
+ };
2157
+ };
2158
+ };
2159
+ };
2160
+ };
2161
+ "/api/v2/CartService/WishLists/Exists": {
2162
+ get: {
2163
+ parameters: {
2164
+ query?: {
2165
+ wishListId?: string;
2166
+ "api-version"?: string;
2167
+ };
2168
+ header?: {
2169
+ "x-api-version"?: string;
2170
+ };
2171
+ };
2172
+ responses: {
2173
+ /** @description OK */
2174
+ 200: {
2175
+ content: {
2176
+ "application/json": components["schemas"]["BooleanEnvelope"];
2177
+ "application/xml": components["schemas"]["BooleanEnvelope"];
2178
+ };
2179
+ };
2180
+ };
2181
+ };
2182
+ head: {
2183
+ parameters: {
2184
+ query?: {
2185
+ wishListId?: string;
2186
+ "api-version"?: string;
2187
+ };
2188
+ header?: {
2189
+ "x-api-version"?: string;
2190
+ };
2191
+ };
2192
+ responses: {
2193
+ /** @description OK */
2194
+ 200: {
2195
+ content: {
2196
+ "application/json": components["schemas"]["EmptyEnvelope"];
2197
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2198
+ };
2199
+ };
2200
+ };
2201
+ };
2202
+ };
2203
+ "/api/v2/CartService/WishLists": {
2204
+ post: {
2205
+ parameters: {
2206
+ query?: {
2207
+ "api-version"?: string;
2208
+ };
2209
+ header?: {
2210
+ "x-api-version"?: string;
2211
+ };
2212
+ };
2213
+ requestBody?: {
2214
+ content: {
2215
+ "application/json": components["schemas"]["NewWishListRequest"];
2216
+ "application/xml": components["schemas"]["NewWishListRequest"];
2217
+ };
2218
+ };
2219
+ responses: {
2220
+ /** @description OK */
2221
+ 200: {
2222
+ content: {
2223
+ "application/json": components["schemas"]["EmptyEnvelope"];
2224
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2225
+ };
2226
+ };
2227
+ };
2228
+ };
2229
+ };
2230
+ "/api/v2/CartService/WishLists/{wishListId}": {
2231
+ put: {
2232
+ parameters: {
2233
+ query?: {
2234
+ "api-version"?: string;
2235
+ };
2236
+ header?: {
2237
+ "x-api-version"?: string;
2238
+ };
2239
+ path: {
2240
+ wishListId: string;
2241
+ };
2242
+ };
2243
+ requestBody?: {
2244
+ content: {
2245
+ "application/json": components["schemas"]["WishListUpdateDto"];
2246
+ "application/xml": components["schemas"]["WishListUpdateDto"];
2247
+ };
2248
+ };
2249
+ responses: {
2250
+ /** @description OK */
2251
+ 200: {
2252
+ content: {
2253
+ "application/json": components["schemas"]["EmptyEnvelope"];
2254
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2255
+ };
2256
+ };
2257
+ };
2258
+ };
2259
+ delete: {
2260
+ parameters: {
2261
+ query?: {
2262
+ "api-version"?: string;
2263
+ };
2264
+ header?: {
2265
+ "x-api-version"?: string;
2266
+ };
2267
+ path: {
2268
+ wishListId: string;
2269
+ };
2270
+ };
2271
+ responses: {
2272
+ /** @description OK */
2273
+ 200: {
2274
+ content: {
2275
+ "application/json": components["schemas"]["EmptyEnvelope"];
2276
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2277
+ };
2278
+ };
2279
+ };
2280
+ };
2281
+ };
2282
+ "/api/v2/CartService/WishLists/{cartId}": {
2283
+ get: {
2284
+ parameters: {
2285
+ query?: {
2286
+ "api-version"?: string;
2287
+ };
2288
+ header?: {
2289
+ "x-api-version"?: string;
2290
+ };
2291
+ path: {
2292
+ cartId: string;
2293
+ };
2294
+ };
2295
+ responses: {
2296
+ /** @description OK */
2297
+ 200: {
2298
+ content: {
2299
+ "application/json": components["schemas"]["WishListDto"][];
2300
+ "application/xml": components["schemas"]["WishListDto"][];
2301
+ };
2302
+ };
2303
+ };
2304
+ };
2305
+ };
2306
+ "/api/v2/CartService/WishLists/{wishListId}/Records": {
2307
+ get: {
2308
+ parameters: {
2309
+ query?: {
2310
+ "api-version"?: string;
2311
+ };
2312
+ header?: {
2313
+ "x-api-version"?: string;
2314
+ };
2315
+ path: {
2316
+ wishListId: string;
2317
+ };
2318
+ };
2319
+ responses: {
2320
+ /** @description OK */
2321
+ 200: {
2322
+ content: {
2323
+ "application/json": components["schemas"]["WishListItemRecordDto"][];
2324
+ "application/xml": components["schemas"]["WishListItemRecordDto"][];
2325
+ };
2326
+ };
2327
+ };
2328
+ };
2329
+ };
2330
+ "/api/v2/CartService/WishLists/{wishListId}/Details": {
2331
+ get: {
2332
+ parameters: {
2333
+ query?: {
2334
+ "api-version"?: string;
2335
+ };
2336
+ header?: {
2337
+ "x-api-version"?: string;
2338
+ };
2339
+ path: {
2340
+ wishListId: string;
2341
+ };
2342
+ };
2343
+ responses: {
2344
+ /** @description OK */
2345
+ 200: {
2346
+ content: {
2347
+ "application/json": components["schemas"]["WishListDto"];
2348
+ "application/xml": components["schemas"]["WishListDto"];
2349
+ };
2350
+ };
2351
+ };
2352
+ };
2353
+ };
2354
+ "/api/v2/CartService/WishLists/Records": {
2355
+ post: {
2356
+ parameters: {
2357
+ query?: {
2358
+ "api-version"?: string;
2359
+ };
2360
+ header?: {
2361
+ "x-api-version"?: string;
2362
+ };
2363
+ };
2364
+ requestBody?: {
2365
+ content: {
2366
+ "application/json": components["schemas"]["ProductToWishListRequest"];
2367
+ "application/xml": components["schemas"]["ProductToWishListRequest"];
2368
+ };
2369
+ };
2370
+ responses: {
2371
+ /** @description OK */
2372
+ 200: {
2373
+ content: {
2374
+ "application/json": components["schemas"]["EmptyEnvelope"];
2375
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2376
+ };
2377
+ };
2378
+ };
2379
+ };
2380
+ };
2381
+ "/api/v2/CartService/WishLists/Records/{recordId}": {
2382
+ delete: {
2383
+ parameters: {
2384
+ query?: {
2385
+ "api-version"?: string;
2386
+ };
2387
+ header?: {
2388
+ "x-api-version"?: string;
2389
+ };
2390
+ path: {
2391
+ recordId: string;
2392
+ };
2393
+ };
2394
+ responses: {
2395
+ /** @description OK */
2396
+ 200: {
2397
+ content: never;
2398
+ };
2399
+ };
2400
+ };
2401
+ };
2402
+ }
2403
+
2404
+ export type webhooks = Record<string, never>;
2405
+
2406
+ export interface components {
2407
+ schemas: {
2408
+ AddProductToCompareRequest: {
2409
+ id?: string | null;
2410
+ cartID?: string | null;
2411
+ productID?: string | null;
2412
+ };
2413
+ BooleanEnvelope: {
2414
+ isSuccess?: boolean;
2415
+ errorMessage?: string | null;
2416
+ correlationId?: string | null;
2417
+ /** Format: date-time */
2418
+ timestamp?: string;
2419
+ activityId?: string | null;
2420
+ result?: boolean;
2421
+ };
2422
+ CartDto: {
2423
+ id?: string | null;
2424
+ ip?: string | null;
2425
+ type?: string | null;
2426
+ /** Format: double */
2427
+ total?: number;
2428
+ /** Format: double */
2429
+ taxes?: number;
2430
+ /** Format: double */
2431
+ freight?: number;
2432
+ /** Format: double */
2433
+ subTotal?: number;
2434
+ currencyId?: string | null;
2435
+ countryId?: string | null;
2436
+ /** Format: int32 */
2437
+ itemCartRecordsCount?: number | null;
2438
+ /** Format: int32 */
2439
+ itemToCompareRecordsCount?: number | null;
2440
+ };
2441
+ CartDtoEnvelope: {
2442
+ isSuccess?: boolean;
2443
+ errorMessage?: string | null;
2444
+ correlationId?: string | null;
2445
+ /** Format: date-time */
2446
+ timestamp?: string;
2447
+ activityId?: string | null;
2448
+ result?: components["schemas"]["CartDto"];
2449
+ };
2450
+ CartUpdateRequest: {
2451
+ currencyId?: string | null;
2452
+ countryId?: string | null;
2453
+ };
2454
+ CountryDto: {
2455
+ id?: string | null;
2456
+ /** Format: date-time */
2457
+ timestamp?: string | null;
2458
+ iso3?: string | null;
2459
+ iso2?: string | null;
2460
+ name?: string | null;
2461
+ nativeName?: string | null;
2462
+ flagUrl?: string | null;
2463
+ };
2464
+ CountryDtoEnvelope: {
2465
+ isSuccess?: boolean;
2466
+ errorMessage?: string | null;
2467
+ correlationId?: string | null;
2468
+ /** Format: date-time */
2469
+ timestamp?: string;
2470
+ activityId?: string | null;
2471
+ result?: components["schemas"]["CountryDto"];
2472
+ };
2473
+ CountrySwitchRequest: {
2474
+ cartID?: string | null;
2475
+ countryID?: string | null;
2476
+ };
2477
+ CurrencyDto: {
2478
+ id?: string | null;
2479
+ code?: string | null;
2480
+ name?: string | null;
2481
+ symbol?: string | null;
2482
+ country?: components["schemas"]["CountryDto"];
2483
+ };
2484
+ CurrencyDtoEnvelope: {
2485
+ isSuccess?: boolean;
2486
+ errorMessage?: string | null;
2487
+ correlationId?: string | null;
2488
+ /** Format: date-time */
2489
+ timestamp?: string;
2490
+ activityId?: string | null;
2491
+ result?: components["schemas"]["CurrencyDto"];
2492
+ };
2493
+ CurrencySwitchRequest: {
2494
+ cartID?: string | null;
2495
+ currencyID?: string | null;
2496
+ };
2497
+ EmptyEnvelope: {
2498
+ isSuccess?: boolean;
2499
+ errorMessage?: string | null;
2500
+ correlationId?: string | null;
2501
+ /** Format: date-time */
2502
+ timestamp?: string;
2503
+ activityId?: string | null;
2504
+ };
2505
+ ErrorEnvelope: {
2506
+ isSuccess?: boolean;
2507
+ errorMessage?: string | null;
2508
+ correlationId?: string | null;
2509
+ /** Format: date-time */
2510
+ timestamp?: string;
2511
+ activityId?: string | null;
2512
+ };
2513
+ ItemCartRecordCreateDto: {
2514
+ /** Format: uuid */
2515
+ id?: string;
2516
+ /** Format: date-time */
2517
+ timestamp?: string;
2518
+ cartId?: string | null;
2519
+ productId?: string | null;
2520
+ /** Format: double */
2521
+ quantity?: number;
2522
+ };
2523
+ ItemCartRecordDto: {
2524
+ id?: string | null;
2525
+ /** Format: date-time */
2526
+ timestamp?: string | null;
2527
+ closed?: boolean;
2528
+ itemId?: string | null;
2529
+ itemTitle?: string | null;
2530
+ itemShortDescription?: string | null;
2531
+ itemPrimaryImageUrl?: string | null;
2532
+ shippingPolicyId?: string | null;
2533
+ tenantId?: string | null;
2534
+ enrollmentId?: string | null;
2535
+ currencyId?: string | null;
2536
+ description?: string | null;
2537
+ /** Format: double */
2538
+ quantity?: number;
2539
+ free?: boolean;
2540
+ freeReason?: string | null;
2541
+ freeReasonCode?: string | null;
2542
+ data?: string | null;
2543
+ dataLabel?: string | null;
2544
+ data1?: string | null;
2545
+ data1Label?: string | null;
2546
+ data2?: string | null;
2547
+ data2Label?: string | null;
2548
+ data3?: string | null;
2549
+ data3Label?: string | null;
2550
+ data4?: string | null;
2551
+ data4Label?: string | null;
2552
+ data5?: string | null;
2553
+ data5Label?: string | null;
2554
+ data6?: string | null;
2555
+ data6Label?: string | null;
2556
+ data7?: string | null;
2557
+ data7Label?: string | null;
2558
+ data8?: string | null;
2559
+ data8Label?: string | null;
2560
+ data9?: string | null;
2561
+ data9Label?: string | null;
2562
+ itemPriceId?: string | null;
2563
+ priceListItemId?: string | null;
2564
+ unitId?: string | null;
2565
+ unitGroupId?: string | null;
2566
+ /**
2567
+ * Format: int32
2568
+ * @enum {integer}
2569
+ */
2570
+ taxCalculationMethod?: 0 | 1;
2571
+ /**
2572
+ * Format: int32
2573
+ * @enum {integer}
2574
+ */
2575
+ costCalculationMethod?: 0 | 1;
2576
+ forexRatesSnapshot?: string | null;
2577
+ /** Format: double */
2578
+ forexRate?: number;
2579
+ /** Format: double */
2580
+ totalBaseAmountInUsd?: number;
2581
+ /** Format: double */
2582
+ totalProfitInUsd?: number;
2583
+ /** Format: double */
2584
+ totalDetailAmountInUsd?: number;
2585
+ /** Format: double */
2586
+ totalTaxBaseInUsd?: number;
2587
+ /** Format: double */
2588
+ totalDiscountsInUsd?: number;
2589
+ /** Format: double */
2590
+ totalTaxesInUsd?: number;
2591
+ /** Format: double */
2592
+ totalWithholdingTaxesInUsd?: number;
2593
+ /** Format: double */
2594
+ totalShippingCostInUsd?: number;
2595
+ /** Format: double */
2596
+ totalShippingTaxesInUsd?: number;
2597
+ /** Format: double */
2598
+ totalWarrantyCostInUsd?: number;
2599
+ /** Format: double */
2600
+ totalReturnCostInUsd?: number;
2601
+ /** Format: double */
2602
+ totalRefundCostInUsd?: number;
2603
+ /** Format: double */
2604
+ totalSurchargesInUsd?: number;
2605
+ /** Format: double */
2606
+ totalAmountInUsd?: number;
2607
+ /** Format: double */
2608
+ totalGlobalDiscountsInUsd?: number;
2609
+ /** Format: double */
2610
+ totalGlobalSurchargesInUsd?: number;
2611
+ /** Format: double */
2612
+ customGlobalSurchargesAmount?: number;
2613
+ /** Format: double */
2614
+ customGlobalDiscountsAmount?: number;
2615
+ /** Format: double */
2616
+ customBaseAmount?: number;
2617
+ /** Format: double */
2618
+ customDetailAmount?: number;
2619
+ /** Format: double */
2620
+ customDiscountsAmount?: number;
2621
+ /** Format: double */
2622
+ customTaxBase?: number;
2623
+ /** Format: double */
2624
+ customSurchargesAmount?: number;
2625
+ /** Format: double */
2626
+ customProfitAmount?: number;
2627
+ /** Format: double */
2628
+ customShippingCostAmount?: number;
2629
+ /** Format: double */
2630
+ customShippingTaxAmount?: number;
2631
+ /** Format: double */
2632
+ customTaxAmount?: number;
2633
+ /** Format: double */
2634
+ customWithholdingTaxAmount?: number;
2635
+ /** Format: double */
2636
+ customTotalAmount?: number;
2637
+ returnPolicyId?: string | null;
2638
+ refundPolicyId?: string | null;
2639
+ warrantyPolicyId?: string | null;
2640
+ shipmentPolicyId?: string | null;
2641
+ shippingLocationId?: string | null;
2642
+ locationId?: string | null;
2643
+ quoteItemRecordId?: string | null;
2644
+ businessProfileRecordId?: string | null;
2645
+ parentBillingItemRecordId?: string | null;
2646
+ cartId?: string | null;
2647
+ itemID?: string | null;
2648
+ shippingAddressID?: string | null;
2649
+ };
2650
+ ItemCartRecordDtoEnvelope: {
2651
+ isSuccess?: boolean;
2652
+ errorMessage?: string | null;
2653
+ correlationId?: string | null;
2654
+ /** Format: date-time */
2655
+ timestamp?: string;
2656
+ activityId?: string | null;
2657
+ result?: components["schemas"]["ItemCartRecordDto"];
2658
+ };
2659
+ ItemCartRecordDtoListEnvelope: {
2660
+ isSuccess?: boolean;
2661
+ errorMessage?: string | null;
2662
+ correlationId?: string | null;
2663
+ /** Format: date-time */
2664
+ timestamp?: string;
2665
+ activityId?: string | null;
2666
+ result?: components["schemas"]["ItemCartRecordDto"][] | null;
2667
+ };
2668
+ ItemCartRecordUpdateDto: {
2669
+ /** Format: double */
2670
+ quantity?: number;
2671
+ };
2672
+ ItemToCompareCartRecordDto: {
2673
+ id?: string | null;
2674
+ /** Format: date-time */
2675
+ timestamp?: string | null;
2676
+ cartId?: string | null;
2677
+ itemId?: string | null;
2678
+ itemTitle?: string | null;
2679
+ itemShortDescription?: string | null;
2680
+ itemPrimaryImageUrl?: string | null;
2681
+ brandId?: string | null;
2682
+ brandName?: string | null;
2683
+ categoryName?: string | null;
2684
+ categoryId?: string | null;
2685
+ googleCategoryId?: string | null;
2686
+ googleCategoryName?: string | null;
2687
+ /** Format: double */
2688
+ totalTaxesInUsd?: number;
2689
+ /** Format: double */
2690
+ totalPriceInUsd?: number;
2691
+ shippingCountryId?: string | null;
2692
+ tenantId?: string | null;
2693
+ };
2694
+ ItemToCompareCartRecordDtoEnvelope: {
2695
+ isSuccess?: boolean;
2696
+ errorMessage?: string | null;
2697
+ correlationId?: string | null;
2698
+ /** Format: date-time */
2699
+ timestamp?: string;
2700
+ activityId?: string | null;
2701
+ result?: components["schemas"]["ItemToCompareCartRecordDto"];
2702
+ };
2703
+ ItemToCompareCartRecordDtoListEnvelope: {
2704
+ isSuccess?: boolean;
2705
+ errorMessage?: string | null;
2706
+ correlationId?: string | null;
2707
+ /** Format: date-time */
2708
+ timestamp?: string;
2709
+ activityId?: string | null;
2710
+ result?: components["schemas"]["ItemToCompareCartRecordDto"][] | null;
2711
+ };
2712
+ NewWishListRequest: {
2713
+ title?: string | null;
2714
+ description?: string | null;
2715
+ /** Format: uuid */
2716
+ cartID?: string;
2717
+ public?: boolean;
2718
+ };
2719
+ ProductToWishListRequest: {
2720
+ wishListId?: string | null;
2721
+ productId?: string | null;
2722
+ };
2723
+ WishListDto: {
2724
+ /** Format: date-time */
2725
+ timestamp?: string | null;
2726
+ id?: string | null;
2727
+ title?: string | null;
2728
+ description?: string | null;
2729
+ cartId?: string | null;
2730
+ public?: boolean;
2731
+ };
2732
+ WishListDtoEnvelope: {
2733
+ isSuccess?: boolean;
2734
+ errorMessage?: string | null;
2735
+ correlationId?: string | null;
2736
+ /** Format: date-time */
2737
+ timestamp?: string;
2738
+ activityId?: string | null;
2739
+ result?: components["schemas"]["WishListDto"];
2740
+ };
2741
+ WishListItemRecordDto: {
2742
+ id?: string | null;
2743
+ /** Format: date-time */
2744
+ timestamp?: string | null;
2745
+ wishListId?: string | null;
2746
+ productId?: string | null;
2747
+ };
2748
+ WishListUpdateDto: {
2749
+ title: string;
2750
+ description?: string | null;
2751
+ public?: boolean;
2752
+ };
2753
+ };
2754
+ responses: never;
2755
+ parameters: never;
2756
+ requestBodies: never;
2757
+ headers: never;
2758
+ pathItems: never;
2759
+ }
2760
+
2761
+ export type $defs = Record<string, never>;
2762
+
2763
+ export type external = Record<string, never>;
2764
+
2765
+ export interface operations {
2766
+
2767
+ SubmitCartAsync: {
2768
+ parameters: {
2769
+ query?: {
2770
+ tenantId?: string;
2771
+ "api-version"?: string;
2772
+ };
2773
+ header?: {
2774
+ "x-api-version"?: string;
2775
+ };
2776
+ path: {
2777
+ cartId: string;
2778
+ };
2779
+ };
2780
+ responses: {
2781
+ /** @description OK */
2782
+ 200: {
2783
+ content: {
2784
+ "application/json": components["schemas"]["EmptyEnvelope"];
2785
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2786
+ };
2787
+ };
2788
+ /** @description Unauthorized */
2789
+ 401: {
2790
+ content: {
2791
+ "application/json": components["schemas"]["ErrorEnvelope"];
2792
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2793
+ };
2794
+ };
2795
+ /** @description Forbidden */
2796
+ 403: {
2797
+ content: {
2798
+ "application/json": components["schemas"]["ErrorEnvelope"];
2799
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2800
+ };
2801
+ };
2802
+ };
2803
+ };
2804
+ }