@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
@@ -0,0 +1,1723 @@
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/LearningService/CourseCertificates": {
9
+ get: {
10
+ parameters: {
11
+ query: {
12
+ tenantId: string;
13
+ "api-version"?: string;
14
+ };
15
+ header?: {
16
+ "x-api-version"?: string;
17
+ };
18
+ };
19
+ responses: {
20
+ /** @description OK */
21
+ 200: {
22
+ content: {
23
+ "application/json": components["schemas"]["CourseCompletionCertificateDtoListEnvelope"];
24
+ "application/xml": components["schemas"]["CourseCompletionCertificateDtoListEnvelope"];
25
+ };
26
+ };
27
+ /** @description Not Found */
28
+ 404: {
29
+ content: {
30
+ "application/json": components["schemas"]["ErrorEnvelope"];
31
+ "application/xml": components["schemas"]["ErrorEnvelope"];
32
+ };
33
+ };
34
+ };
35
+ };
36
+ post: {
37
+ parameters: {
38
+ query: {
39
+ tenantId: string;
40
+ "api-version"?: string;
41
+ };
42
+ header?: {
43
+ "x-api-version"?: string;
44
+ };
45
+ };
46
+ requestBody?: {
47
+ content: {
48
+ "application/json": components["schemas"]["CourseCompletionCertificateCreateDto"];
49
+ "application/xml": components["schemas"]["CourseCompletionCertificateCreateDto"];
50
+ };
51
+ };
52
+ responses: {
53
+ /** @description OK */
54
+ 200: {
55
+ content: {
56
+ "application/json": components["schemas"]["EmptyEnvelope"];
57
+ "application/xml": components["schemas"]["EmptyEnvelope"];
58
+ };
59
+ };
60
+ /** @description Not Found */
61
+ 404: {
62
+ content: {
63
+ "application/json": components["schemas"]["ErrorEnvelope"];
64
+ "application/xml": components["schemas"]["ErrorEnvelope"];
65
+ };
66
+ };
67
+ };
68
+ };
69
+ };
70
+ "/api/v2/LearningService/CourseCertificates/{CourseCertificateId}": {
71
+ get: {
72
+ parameters: {
73
+ query: {
74
+ tenantId: string;
75
+ "api-version"?: string;
76
+ };
77
+ header?: {
78
+ "x-api-version"?: string;
79
+ };
80
+ path: {
81
+ courseCertificateId: string;
82
+ };
83
+ };
84
+ responses: {
85
+ /** @description OK */
86
+ 200: {
87
+ content: {
88
+ "application/json": components["schemas"]["CourseCompletionCertificateDtoEnvelope"];
89
+ "application/xml": components["schemas"]["CourseCompletionCertificateDtoEnvelope"];
90
+ };
91
+ };
92
+ /** @description Not Found */
93
+ 404: {
94
+ content: {
95
+ "application/json": components["schemas"]["ErrorEnvelope"];
96
+ "application/xml": components["schemas"]["ErrorEnvelope"];
97
+ };
98
+ };
99
+ };
100
+ };
101
+ put: {
102
+ parameters: {
103
+ query: {
104
+ tenantId: string;
105
+ "api-version"?: string;
106
+ };
107
+ header?: {
108
+ "x-api-version"?: string;
109
+ };
110
+ path: {
111
+ courseCertificateId: string;
112
+ };
113
+ };
114
+ requestBody?: {
115
+ content: {
116
+ "application/json": components["schemas"]["CourseCompletionCertificateUpdateDto"];
117
+ "application/xml": components["schemas"]["CourseCompletionCertificateUpdateDto"];
118
+ };
119
+ };
120
+ responses: {
121
+ /** @description OK */
122
+ 200: {
123
+ content: {
124
+ "application/json": components["schemas"]["EmptyEnvelope"];
125
+ "application/xml": components["schemas"]["EmptyEnvelope"];
126
+ };
127
+ };
128
+ /** @description Not Found */
129
+ 404: {
130
+ content: {
131
+ "application/json": components["schemas"]["ErrorEnvelope"];
132
+ "application/xml": components["schemas"]["ErrorEnvelope"];
133
+ };
134
+ };
135
+ };
136
+ };
137
+ delete: {
138
+ parameters: {
139
+ query: {
140
+ tenantId: string;
141
+ "api-version"?: string;
142
+ };
143
+ header?: {
144
+ "x-api-version"?: string;
145
+ };
146
+ path: {
147
+ courseCertificateId: string;
148
+ };
149
+ };
150
+ responses: {
151
+ /** @description OK */
152
+ 200: {
153
+ content: {
154
+ "application/json": components["schemas"]["EmptyEnvelope"];
155
+ "application/xml": components["schemas"]["EmptyEnvelope"];
156
+ };
157
+ };
158
+ /** @description Not Found */
159
+ 404: {
160
+ content: {
161
+ "application/json": components["schemas"]["ErrorEnvelope"];
162
+ "application/xml": components["schemas"]["ErrorEnvelope"];
163
+ };
164
+ };
165
+ };
166
+ };
167
+ };
168
+ "/api/v2/LearningService/CourseCertificates/Template": {
169
+ get: {
170
+ parameters: {
171
+ query: {
172
+ tenantId: string;
173
+ "api-version"?: string;
174
+ };
175
+ header?: {
176
+ "x-api-version"?: string;
177
+ };
178
+ };
179
+ responses: {
180
+ /** @description OK */
181
+ 200: {
182
+ content: {
183
+ "application/json": components["schemas"]["CourseCertificateTemplateDtoListEnvelope"];
184
+ "application/xml": components["schemas"]["CourseCertificateTemplateDtoListEnvelope"];
185
+ };
186
+ };
187
+ /** @description Not Found */
188
+ 404: {
189
+ content: {
190
+ "application/json": components["schemas"]["ErrorEnvelope"];
191
+ "application/xml": components["schemas"]["ErrorEnvelope"];
192
+ };
193
+ };
194
+ };
195
+ };
196
+ post: {
197
+ parameters: {
198
+ query: {
199
+ tenantId: string;
200
+ "api-version"?: string;
201
+ };
202
+ header?: {
203
+ "x-api-version"?: string;
204
+ };
205
+ };
206
+ requestBody?: {
207
+ content: {
208
+ "application/json": components["schemas"]["CourseCertificateTemplateCreateDto"];
209
+ "application/xml": components["schemas"]["CourseCertificateTemplateCreateDto"];
210
+ };
211
+ };
212
+ responses: {
213
+ /** @description OK */
214
+ 200: {
215
+ content: {
216
+ "application/json": components["schemas"]["EmptyEnvelope"];
217
+ "application/xml": components["schemas"]["EmptyEnvelope"];
218
+ };
219
+ };
220
+ /** @description Not Found */
221
+ 404: {
222
+ content: {
223
+ "application/json": components["schemas"]["ErrorEnvelope"];
224
+ "application/xml": components["schemas"]["ErrorEnvelope"];
225
+ };
226
+ };
227
+ };
228
+ };
229
+ };
230
+ "/api/v2/LearningService/CourseCertificates/Template/{CourseCertificateTemplateId}": {
231
+ get: {
232
+ parameters: {
233
+ query: {
234
+ tenantId: string;
235
+ "api-version"?: string;
236
+ };
237
+ header?: {
238
+ "x-api-version"?: string;
239
+ };
240
+ path: {
241
+ courseCertificateTemplateId: string;
242
+ };
243
+ };
244
+ responses: {
245
+ /** @description OK */
246
+ 200: {
247
+ content: {
248
+ "application/json": components["schemas"]["CourseCertificateTemplateDtoEnvelope"];
249
+ "application/xml": components["schemas"]["CourseCertificateTemplateDtoEnvelope"];
250
+ };
251
+ };
252
+ /** @description Not Found */
253
+ 404: {
254
+ content: {
255
+ "application/json": components["schemas"]["ErrorEnvelope"];
256
+ "application/xml": components["schemas"]["ErrorEnvelope"];
257
+ };
258
+ };
259
+ };
260
+ };
261
+ delete: {
262
+ parameters: {
263
+ query: {
264
+ tenantId: string;
265
+ "api-version"?: string;
266
+ };
267
+ header?: {
268
+ "x-api-version"?: string;
269
+ };
270
+ path: {
271
+ courseCertificateTemplateId: string;
272
+ };
273
+ };
274
+ responses: {
275
+ /** @description OK */
276
+ 200: {
277
+ content: {
278
+ "application/json": components["schemas"]["EmptyEnvelope"];
279
+ "application/xml": components["schemas"]["EmptyEnvelope"];
280
+ };
281
+ };
282
+ /** @description Not Found */
283
+ 404: {
284
+ content: {
285
+ "application/json": components["schemas"]["ErrorEnvelope"];
286
+ "application/xml": components["schemas"]["ErrorEnvelope"];
287
+ };
288
+ };
289
+ };
290
+ };
291
+ };
292
+ "/api/v2/LearningService/CourseEnrollments": {
293
+ get: {
294
+ parameters: {
295
+ query: {
296
+ tenantId: string;
297
+ "api-version"?: string;
298
+ };
299
+ header?: {
300
+ "x-api-version"?: string;
301
+ };
302
+ };
303
+ requestBody?: {
304
+ content: {
305
+ "application/json": components["schemas"]["Pagination"];
306
+ "application/xml": components["schemas"]["Pagination"];
307
+ };
308
+ };
309
+ responses: {
310
+ /** @description OK */
311
+ 200: {
312
+ content: {
313
+ "application/json": components["schemas"]["CourseEnrollmentDtoListEnvelope"];
314
+ "application/xml": components["schemas"]["CourseEnrollmentDtoListEnvelope"];
315
+ };
316
+ };
317
+ /** @description Not Found */
318
+ 404: {
319
+ content: {
320
+ "application/json": components["schemas"]["ErrorEnvelope"];
321
+ "application/xml": components["schemas"]["ErrorEnvelope"];
322
+ };
323
+ };
324
+ };
325
+ };
326
+ post: {
327
+ parameters: {
328
+ query: {
329
+ tenantId: string;
330
+ "api-version"?: string;
331
+ };
332
+ header?: {
333
+ "x-api-version"?: string;
334
+ };
335
+ };
336
+ requestBody?: {
337
+ content: {
338
+ "application/json": components["schemas"]["CourseEnrollmentCreateDto"];
339
+ "application/xml": components["schemas"]["CourseEnrollmentCreateDto"];
340
+ };
341
+ };
342
+ responses: {
343
+ /** @description OK */
344
+ 200: {
345
+ content: {
346
+ "application/json": components["schemas"]["EmptyEnvelope"];
347
+ "application/xml": components["schemas"]["EmptyEnvelope"];
348
+ };
349
+ };
350
+ /** @description Not Found */
351
+ 404: {
352
+ content: {
353
+ "application/json": components["schemas"]["ErrorEnvelope"];
354
+ "application/xml": components["schemas"]["ErrorEnvelope"];
355
+ };
356
+ };
357
+ };
358
+ };
359
+ };
360
+ "/api/v2/LearningService/CourseEnrollments/{courseEnrollmentId}": {
361
+ get: {
362
+ parameters: {
363
+ query: {
364
+ tenantId: string;
365
+ "api-version"?: string;
366
+ };
367
+ header?: {
368
+ "x-api-version"?: string;
369
+ };
370
+ path: {
371
+ courseEnrollmentId: string;
372
+ };
373
+ };
374
+ responses: {
375
+ /** @description OK */
376
+ 200: {
377
+ content: {
378
+ "application/json": components["schemas"]["CourseEnrollmentDtoEnvelope"];
379
+ "application/xml": components["schemas"]["CourseEnrollmentDtoEnvelope"];
380
+ };
381
+ };
382
+ /** @description Not Found */
383
+ 404: {
384
+ content: {
385
+ "application/json": components["schemas"]["ErrorEnvelope"];
386
+ "application/xml": components["schemas"]["ErrorEnvelope"];
387
+ };
388
+ };
389
+ };
390
+ };
391
+ put: {
392
+ parameters: {
393
+ query: {
394
+ tenantId: string;
395
+ "api-version"?: string;
396
+ };
397
+ header?: {
398
+ "x-api-version"?: string;
399
+ };
400
+ path: {
401
+ courseEnrollmentId: string;
402
+ };
403
+ };
404
+ requestBody?: {
405
+ content: {
406
+ "application/json": components["schemas"]["CourseEnrollmentUpdateDto"];
407
+ "application/xml": components["schemas"]["CourseEnrollmentUpdateDto"];
408
+ };
409
+ };
410
+ responses: {
411
+ /** @description OK */
412
+ 200: {
413
+ content: {
414
+ "application/json": components["schemas"]["EmptyEnvelope"];
415
+ "application/xml": components["schemas"]["EmptyEnvelope"];
416
+ };
417
+ };
418
+ /** @description Not Found */
419
+ 404: {
420
+ content: {
421
+ "application/json": components["schemas"]["ErrorEnvelope"];
422
+ "application/xml": components["schemas"]["ErrorEnvelope"];
423
+ };
424
+ };
425
+ };
426
+ };
427
+ delete: {
428
+ parameters: {
429
+ query: {
430
+ tenantId: string;
431
+ "api-version"?: string;
432
+ };
433
+ header?: {
434
+ "x-api-version"?: string;
435
+ };
436
+ path: {
437
+ courseEnrollmentId: string;
438
+ };
439
+ };
440
+ responses: {
441
+ /** @description OK */
442
+ 200: {
443
+ content: {
444
+ "application/json": components["schemas"]["EmptyEnvelope"];
445
+ "application/xml": components["schemas"]["EmptyEnvelope"];
446
+ };
447
+ };
448
+ /** @description Not Found */
449
+ 404: {
450
+ content: {
451
+ "application/json": components["schemas"]["ErrorEnvelope"];
452
+ "application/xml": components["schemas"]["ErrorEnvelope"];
453
+ };
454
+ };
455
+ };
456
+ };
457
+ };
458
+ "/api/v2/LearningService/CourseEnrollments/Course/{courseId}": {
459
+ get: {
460
+ parameters: {
461
+ query: {
462
+ tenantId: string;
463
+ pageNumber?: number;
464
+ pageSize?: number;
465
+ "api-version"?: string;
466
+ };
467
+ header?: {
468
+ "x-api-version"?: string;
469
+ };
470
+ path: {
471
+ courseId: string;
472
+ };
473
+ };
474
+ responses: {
475
+ /** @description OK */
476
+ 200: {
477
+ content: {
478
+ "application/json": components["schemas"]["CourseEnrollmentDtoListEnvelope"];
479
+ "application/xml": components["schemas"]["CourseEnrollmentDtoListEnvelope"];
480
+ };
481
+ };
482
+ /** @description Not Found */
483
+ 404: {
484
+ content: {
485
+ "application/json": components["schemas"]["ErrorEnvelope"];
486
+ "application/xml": components["schemas"]["ErrorEnvelope"];
487
+ };
488
+ };
489
+ };
490
+ };
491
+ };
492
+ "/api/v2/LearningService/CourseEnrollments/Student/{studentProfileId}": {
493
+ get: {
494
+ parameters: {
495
+ query: {
496
+ tenantId: string;
497
+ pageNumber?: number;
498
+ pageSize?: number;
499
+ "api-version"?: string;
500
+ };
501
+ header?: {
502
+ "x-api-version"?: string;
503
+ };
504
+ path: {
505
+ studentProfileId: string;
506
+ };
507
+ };
508
+ responses: {
509
+ /** @description OK */
510
+ 200: {
511
+ content: {
512
+ "application/json": components["schemas"]["CourseEnrollmentDtoListEnvelope"];
513
+ "application/xml": components["schemas"]["CourseEnrollmentDtoListEnvelope"];
514
+ };
515
+ };
516
+ /** @description Not Found */
517
+ 404: {
518
+ content: {
519
+ "application/json": components["schemas"]["ErrorEnvelope"];
520
+ "application/xml": components["schemas"]["ErrorEnvelope"];
521
+ };
522
+ };
523
+ };
524
+ };
525
+ };
526
+ "/api/v2/LearningService/Courses": {
527
+ get: {
528
+ parameters: {
529
+ query: {
530
+ tenantId: string;
531
+ "api-version"?: string;
532
+ };
533
+ header?: {
534
+ "x-api-version"?: string;
535
+ };
536
+ };
537
+ responses: {
538
+ /** @description OK */
539
+ 200: {
540
+ content: {
541
+ "application/json": components["schemas"]["CourseDtoListEnvelope"];
542
+ "application/xml": components["schemas"]["CourseDtoListEnvelope"];
543
+ };
544
+ };
545
+ /** @description Not Found */
546
+ 404: {
547
+ content: {
548
+ "application/json": components["schemas"]["ErrorEnvelope"];
549
+ "application/xml": components["schemas"]["ErrorEnvelope"];
550
+ };
551
+ };
552
+ };
553
+ };
554
+ };
555
+ "/api/v2/LearningService/Courses/{courseId}": {
556
+ get: {
557
+ parameters: {
558
+ query: {
559
+ tenantId: string;
560
+ "api-version"?: string;
561
+ };
562
+ header?: {
563
+ "x-api-version"?: string;
564
+ };
565
+ path: {
566
+ courseId: string;
567
+ };
568
+ };
569
+ responses: {
570
+ /** @description OK */
571
+ 200: {
572
+ content: {
573
+ "application/json": components["schemas"]["CourseDtoEnvelope"];
574
+ "application/xml": components["schemas"]["CourseDtoEnvelope"];
575
+ };
576
+ };
577
+ /** @description Not Found */
578
+ 404: {
579
+ content: {
580
+ "application/json": components["schemas"]["ErrorEnvelope"];
581
+ "application/xml": components["schemas"]["ErrorEnvelope"];
582
+ };
583
+ };
584
+ };
585
+ };
586
+ put: {
587
+ parameters: {
588
+ query: {
589
+ tenantId: string;
590
+ "api-version"?: string;
591
+ };
592
+ header?: {
593
+ "x-api-version"?: string;
594
+ };
595
+ path: {
596
+ courseId: string;
597
+ };
598
+ };
599
+ requestBody?: {
600
+ content: {
601
+ "application/json": components["schemas"]["CourseUpdateDto"];
602
+ "application/xml": components["schemas"]["CourseUpdateDto"];
603
+ };
604
+ };
605
+ responses: {
606
+ /** @description OK */
607
+ 200: {
608
+ content: {
609
+ "application/json": components["schemas"]["EmptyEnvelope"];
610
+ "application/xml": components["schemas"]["EmptyEnvelope"];
611
+ };
612
+ };
613
+ /** @description Not Found */
614
+ 404: {
615
+ content: {
616
+ "application/json": components["schemas"]["ErrorEnvelope"];
617
+ "application/xml": components["schemas"]["ErrorEnvelope"];
618
+ };
619
+ };
620
+ };
621
+ };
622
+ delete: {
623
+ parameters: {
624
+ query: {
625
+ tenantId: string;
626
+ "api-version"?: string;
627
+ };
628
+ header?: {
629
+ "x-api-version"?: string;
630
+ };
631
+ path: {
632
+ courseId: string;
633
+ };
634
+ };
635
+ responses: {
636
+ /** @description OK */
637
+ 200: {
638
+ content: {
639
+ "application/json": components["schemas"]["EmptyEnvelope"];
640
+ "application/xml": components["schemas"]["EmptyEnvelope"];
641
+ };
642
+ };
643
+ /** @description Not Found */
644
+ 404: {
645
+ content: {
646
+ "application/json": components["schemas"]["ErrorEnvelope"];
647
+ "application/xml": components["schemas"]["ErrorEnvelope"];
648
+ };
649
+ };
650
+ };
651
+ };
652
+ };
653
+ "/api/v2/LearningService/InstructorProfiles": {
654
+ get: {
655
+ parameters: {
656
+ query: {
657
+ tenantId: string;
658
+ "api-version"?: string;
659
+ };
660
+ header?: {
661
+ "x-api-version"?: string;
662
+ };
663
+ };
664
+ responses: {
665
+ /** @description OK */
666
+ 200: {
667
+ content: {
668
+ "application/json": components["schemas"]["InstructorProfileDtoListEnvelope"];
669
+ "application/xml": components["schemas"]["InstructorProfileDtoListEnvelope"];
670
+ };
671
+ };
672
+ /** @description Not Found */
673
+ 404: {
674
+ content: {
675
+ "application/json": components["schemas"]["ErrorEnvelope"];
676
+ "application/xml": components["schemas"]["ErrorEnvelope"];
677
+ };
678
+ };
679
+ };
680
+ };
681
+ post: {
682
+ parameters: {
683
+ query?: {
684
+ "api-version"?: string;
685
+ };
686
+ header?: {
687
+ "x-api-version"?: string;
688
+ };
689
+ };
690
+ requestBody?: {
691
+ content: {
692
+ "application/json": components["schemas"]["InstructorProfileCreateDto"];
693
+ "application/xml": components["schemas"]["InstructorProfileCreateDto"];
694
+ };
695
+ };
696
+ responses: {
697
+ /** @description OK */
698
+ 200: {
699
+ content: {
700
+ "application/json": components["schemas"]["EmptyEnvelope"];
701
+ "application/xml": components["schemas"]["EmptyEnvelope"];
702
+ };
703
+ };
704
+ /** @description Not Found */
705
+ 404: {
706
+ content: {
707
+ "application/json": components["schemas"]["ErrorEnvelope"];
708
+ "application/xml": components["schemas"]["ErrorEnvelope"];
709
+ };
710
+ };
711
+ };
712
+ };
713
+ };
714
+ "/api/v2/LearningService/InstructorProfiles/{InstructorProfileId}": {
715
+ get: {
716
+ parameters: {
717
+ query: {
718
+ tenantId: string;
719
+ "api-version"?: string;
720
+ };
721
+ header?: {
722
+ "x-api-version"?: string;
723
+ };
724
+ path: {
725
+ instructorProfileId: string;
726
+ };
727
+ };
728
+ responses: {
729
+ /** @description OK */
730
+ 200: {
731
+ content: {
732
+ "application/json": components["schemas"]["InstructorProfileDtoEnvelope"];
733
+ "application/xml": components["schemas"]["InstructorProfileDtoEnvelope"];
734
+ };
735
+ };
736
+ /** @description Not Found */
737
+ 404: {
738
+ content: {
739
+ "application/json": components["schemas"]["ErrorEnvelope"];
740
+ "application/xml": components["schemas"]["ErrorEnvelope"];
741
+ };
742
+ };
743
+ };
744
+ };
745
+ put: {
746
+ parameters: {
747
+ query: {
748
+ tenantId: string;
749
+ "api-version"?: string;
750
+ };
751
+ header?: {
752
+ "x-api-version"?: string;
753
+ };
754
+ path: {
755
+ instructorProfileId: string;
756
+ };
757
+ };
758
+ requestBody?: {
759
+ content: {
760
+ "application/json": components["schemas"]["InstructorProfileUpdateDto"];
761
+ "application/xml": components["schemas"]["InstructorProfileUpdateDto"];
762
+ };
763
+ };
764
+ responses: {
765
+ /** @description OK */
766
+ 200: {
767
+ content: {
768
+ "application/json": components["schemas"]["EmptyEnvelope"];
769
+ "application/xml": components["schemas"]["EmptyEnvelope"];
770
+ };
771
+ };
772
+ /** @description Not Found */
773
+ 404: {
774
+ content: {
775
+ "application/json": components["schemas"]["ErrorEnvelope"];
776
+ "application/xml": components["schemas"]["ErrorEnvelope"];
777
+ };
778
+ };
779
+ };
780
+ };
781
+ delete: {
782
+ parameters: {
783
+ query: {
784
+ tenantId: string;
785
+ "api-version"?: string;
786
+ };
787
+ header?: {
788
+ "x-api-version"?: string;
789
+ };
790
+ path: {
791
+ instructorProfileId: string;
792
+ };
793
+ };
794
+ responses: {
795
+ /** @description OK */
796
+ 200: {
797
+ content: {
798
+ "application/json": components["schemas"]["EmptyEnvelope"];
799
+ "application/xml": components["schemas"]["EmptyEnvelope"];
800
+ };
801
+ };
802
+ /** @description Not Found */
803
+ 404: {
804
+ content: {
805
+ "application/json": components["schemas"]["ErrorEnvelope"];
806
+ "application/xml": components["schemas"]["ErrorEnvelope"];
807
+ };
808
+ };
809
+ };
810
+ };
811
+ };
812
+ "/api/v2/LearningService/StudentProfiles": {
813
+ get: {
814
+ parameters: {
815
+ query: {
816
+ tenantId: string;
817
+ "api-version"?: string;
818
+ };
819
+ header?: {
820
+ "x-api-version"?: string;
821
+ };
822
+ };
823
+ responses: {
824
+ /** @description OK */
825
+ 200: {
826
+ content: {
827
+ "application/json": components["schemas"]["StudentProfileDtoListEnvelope"];
828
+ "application/xml": components["schemas"]["StudentProfileDtoListEnvelope"];
829
+ };
830
+ };
831
+ /** @description Not Found */
832
+ 404: {
833
+ content: {
834
+ "application/json": components["schemas"]["ErrorEnvelope"];
835
+ "application/xml": components["schemas"]["ErrorEnvelope"];
836
+ };
837
+ };
838
+ };
839
+ };
840
+ post: {
841
+ parameters: {
842
+ query?: {
843
+ "api-version"?: string;
844
+ };
845
+ header?: {
846
+ "x-api-version"?: string;
847
+ };
848
+ };
849
+ requestBody?: {
850
+ content: {
851
+ "application/json": components["schemas"]["StudentProfileCreateDto"];
852
+ "application/xml": components["schemas"]["StudentProfileCreateDto"];
853
+ };
854
+ };
855
+ responses: {
856
+ /** @description OK */
857
+ 200: {
858
+ content: {
859
+ "application/json": components["schemas"]["EmptyEnvelope"];
860
+ "application/xml": components["schemas"]["EmptyEnvelope"];
861
+ };
862
+ };
863
+ /** @description Not Found */
864
+ 404: {
865
+ content: {
866
+ "application/json": components["schemas"]["ErrorEnvelope"];
867
+ "application/xml": components["schemas"]["ErrorEnvelope"];
868
+ };
869
+ };
870
+ };
871
+ };
872
+ };
873
+ "/api/v2/LearningService/StudentProfiles/{studentProfileId}": {
874
+ get: {
875
+ parameters: {
876
+ query: {
877
+ tenantId: string;
878
+ "api-version"?: string;
879
+ };
880
+ header?: {
881
+ "x-api-version"?: string;
882
+ };
883
+ path: {
884
+ studentProfileId: string;
885
+ };
886
+ };
887
+ responses: {
888
+ /** @description OK */
889
+ 200: {
890
+ content: {
891
+ "application/json": components["schemas"]["StudentProfileDtoEnvelope"];
892
+ "application/xml": components["schemas"]["StudentProfileDtoEnvelope"];
893
+ };
894
+ };
895
+ /** @description Not Found */
896
+ 404: {
897
+ content: {
898
+ "application/json": components["schemas"]["ErrorEnvelope"];
899
+ "application/xml": components["schemas"]["ErrorEnvelope"];
900
+ };
901
+ };
902
+ };
903
+ };
904
+ delete: {
905
+ parameters: {
906
+ query: {
907
+ tenantId: string;
908
+ "api-version"?: string;
909
+ };
910
+ header?: {
911
+ "x-api-version"?: string;
912
+ };
913
+ path: {
914
+ studentProfileId: string;
915
+ };
916
+ };
917
+ responses: {
918
+ /** @description OK */
919
+ 200: {
920
+ content: {
921
+ "application/json": components["schemas"]["EmptyEnvelope"];
922
+ "application/xml": components["schemas"]["EmptyEnvelope"];
923
+ };
924
+ };
925
+ /** @description Not Found */
926
+ 404: {
927
+ content: {
928
+ "application/json": components["schemas"]["ErrorEnvelope"];
929
+ "application/xml": components["schemas"]["ErrorEnvelope"];
930
+ };
931
+ };
932
+ };
933
+ };
934
+ };
935
+ "/api/v2/LearningService/StudentProfiles/{StudentProfileId}": {
936
+ put: {
937
+ parameters: {
938
+ query: {
939
+ tenantId: string;
940
+ "api-version"?: string;
941
+ };
942
+ header?: {
943
+ "x-api-version"?: string;
944
+ };
945
+ path: {
946
+ studentProfileId: string;
947
+ };
948
+ };
949
+ requestBody?: {
950
+ content: {
951
+ "application/json": components["schemas"]["StudentProfileUpdateDto"];
952
+ "application/xml": components["schemas"]["StudentProfileUpdateDto"];
953
+ };
954
+ };
955
+ responses: {
956
+ /** @description OK */
957
+ 200: {
958
+ content: {
959
+ "application/json": components["schemas"]["EmptyEnvelope"];
960
+ "application/xml": components["schemas"]["EmptyEnvelope"];
961
+ };
962
+ };
963
+ /** @description Not Found */
964
+ 404: {
965
+ content: {
966
+ "application/json": components["schemas"]["ErrorEnvelope"];
967
+ "application/xml": components["schemas"]["ErrorEnvelope"];
968
+ };
969
+ };
970
+ };
971
+ };
972
+ };
973
+ "/api/v2/LearningService/StudentProfiles/{studentProfileId}/Average": {
974
+ get: {
975
+ parameters: {
976
+ query: {
977
+ tenantId: string;
978
+ "api-version"?: string;
979
+ };
980
+ header?: {
981
+ "x-api-version"?: string;
982
+ };
983
+ path: {
984
+ studentProfileId: string;
985
+ };
986
+ };
987
+ responses: {
988
+ /** @description OK */
989
+ 200: {
990
+ content: {
991
+ "application/json": components["schemas"]["AverageDtoEnvelope"];
992
+ "application/xml": components["schemas"]["AverageDtoEnvelope"];
993
+ };
994
+ };
995
+ /** @description Not Found */
996
+ 404: {
997
+ content: {
998
+ "application/json": components["schemas"]["ErrorEnvelope"];
999
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1000
+ };
1001
+ };
1002
+ };
1003
+ };
1004
+ };
1005
+ "/api/v2/LearningService/StudentProfiles/{studentProfileId}/HoursCompleted": {
1006
+ get: {
1007
+ parameters: {
1008
+ query: {
1009
+ tenantId: string;
1010
+ "api-version"?: string;
1011
+ };
1012
+ header?: {
1013
+ "x-api-version"?: string;
1014
+ };
1015
+ path: {
1016
+ studentProfileId: string;
1017
+ };
1018
+ };
1019
+ responses: {
1020
+ /** @description OK */
1021
+ 200: {
1022
+ content: {
1023
+ "application/json": components["schemas"]["CountDtoEnvelope"];
1024
+ "application/xml": components["schemas"]["CountDtoEnvelope"];
1025
+ };
1026
+ };
1027
+ /** @description Not Found */
1028
+ 404: {
1029
+ content: {
1030
+ "application/json": components["schemas"]["ErrorEnvelope"];
1031
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1032
+ };
1033
+ };
1034
+ };
1035
+ };
1036
+ };
1037
+ }
1038
+
1039
+ export type webhooks = Record<string, never>;
1040
+
1041
+ export interface components {
1042
+ schemas: {
1043
+ AverageDto: {
1044
+ id?: string | null;
1045
+ /** Format: date-time */
1046
+ timestamp?: string | null;
1047
+ /** Format: double */
1048
+ average?: number;
1049
+ };
1050
+ AverageDtoEnvelope: {
1051
+ isSuccess?: boolean;
1052
+ errorMessage?: string | null;
1053
+ correlationId?: string | null;
1054
+ /** Format: date-time */
1055
+ timestamp?: string;
1056
+ activityId?: string | null;
1057
+ result?: components["schemas"]["AverageDto"];
1058
+ };
1059
+ CountDto: {
1060
+ id?: string | null;
1061
+ /** Format: date-time */
1062
+ timestamp?: string | null;
1063
+ /** Format: int32 */
1064
+ count?: number;
1065
+ };
1066
+ CountDtoEnvelope: {
1067
+ isSuccess?: boolean;
1068
+ errorMessage?: string | null;
1069
+ correlationId?: string | null;
1070
+ /** Format: date-time */
1071
+ timestamp?: string;
1072
+ activityId?: string | null;
1073
+ result?: components["schemas"]["CountDto"];
1074
+ };
1075
+ CourseCertificateTemplateCreateDto: {
1076
+ /** Format: uuid */
1077
+ id?: string;
1078
+ /** Format: date-time */
1079
+ timestamp?: string;
1080
+ courseID: string;
1081
+ businessID: string;
1082
+ webPortalID?: string | null;
1083
+ websiteThemeID?: string | null;
1084
+ businessProfileRecordID?: string | null;
1085
+ socialProfileID?: string | null;
1086
+ parentWebContentID?: string | null;
1087
+ parentWebContentVersionID?: string | null;
1088
+ };
1089
+ CourseCertificateTemplateDto: {
1090
+ id?: string | null;
1091
+ /** Format: date-time */
1092
+ timestamp?: string | null;
1093
+ courseID?: string | null;
1094
+ businessID?: string | null;
1095
+ webPortalID?: string | null;
1096
+ websiteThemeID?: string | null;
1097
+ businessProfileRecordID?: string | null;
1098
+ socialProfileID?: string | null;
1099
+ parentWebContentID?: string | null;
1100
+ parentWebContentVersionID?: string | null;
1101
+ };
1102
+ CourseCertificateTemplateDtoEnvelope: {
1103
+ isSuccess?: boolean;
1104
+ errorMessage?: string | null;
1105
+ correlationId?: string | null;
1106
+ /** Format: date-time */
1107
+ timestamp?: string;
1108
+ activityId?: string | null;
1109
+ result?: components["schemas"]["CourseCertificateTemplateDto"];
1110
+ };
1111
+ CourseCertificateTemplateDtoListEnvelope: {
1112
+ isSuccess?: boolean;
1113
+ errorMessage?: string | null;
1114
+ correlationId?: string | null;
1115
+ /** Format: date-time */
1116
+ timestamp?: string;
1117
+ activityId?: string | null;
1118
+ result?: components["schemas"]["CourseCertificateTemplateDto"][] | null;
1119
+ };
1120
+ CourseCompletionCertificateCreateDto: {
1121
+ /** Format: uuid */
1122
+ id?: string;
1123
+ /** Format: date-time */
1124
+ timestamp?: string;
1125
+ studentProfileID: string;
1126
+ courseEnrollmentID: string;
1127
+ businessID?: string | null;
1128
+ businessProfileRecordID?: string | null;
1129
+ courseCompletionCertificateTemplateID?: string | null;
1130
+ courseID?: string | null;
1131
+ };
1132
+ CourseCompletionCertificateDto: {
1133
+ id?: string | null;
1134
+ /** Format: date-time */
1135
+ timestamp?: string | null;
1136
+ studentProfileID?: string | null;
1137
+ courseEnrollmentID?: string | null;
1138
+ businessID?: string | null;
1139
+ businessProfileRecordID?: string | null;
1140
+ courseCompletionCertificateTemplateID?: string | null;
1141
+ courseID?: string | null;
1142
+ };
1143
+ CourseCompletionCertificateDtoEnvelope: {
1144
+ isSuccess?: boolean;
1145
+ errorMessage?: string | null;
1146
+ correlationId?: string | null;
1147
+ /** Format: date-time */
1148
+ timestamp?: string;
1149
+ activityId?: string | null;
1150
+ result?: components["schemas"]["CourseCompletionCertificateDto"];
1151
+ };
1152
+ CourseCompletionCertificateDtoListEnvelope: {
1153
+ isSuccess?: boolean;
1154
+ errorMessage?: string | null;
1155
+ correlationId?: string | null;
1156
+ /** Format: date-time */
1157
+ timestamp?: string;
1158
+ activityId?: string | null;
1159
+ result?: components["schemas"]["CourseCompletionCertificateDto"][] | null;
1160
+ };
1161
+ CourseCompletionCertificateUpdateDto: {
1162
+ studentProfileID?: string | null;
1163
+ courseEnrollmentID?: string | null;
1164
+ businessID?: string | null;
1165
+ businessProfileRecordID?: string | null;
1166
+ courseCompletionCertificateTemplateID?: string | null;
1167
+ courseID?: string | null;
1168
+ };
1169
+ CourseDto: {
1170
+ id?: string | null;
1171
+ /** Format: date-time */
1172
+ timestamp?: string | null;
1173
+ sku?: string | null;
1174
+ upc?: string | null;
1175
+ ean?: string | null;
1176
+ mpn?: string | null;
1177
+ skUs?: string | null;
1178
+ isbn?: string | null;
1179
+ upCs?: string | null;
1180
+ eaNs?: string | null;
1181
+ asin?: string | null;
1182
+ gtin?: string | null;
1183
+ mpNs?: string | null;
1184
+ part?: string | null;
1185
+ name?: string | null;
1186
+ isbNs?: string | null;
1187
+ asiNs?: string | null;
1188
+ gtiNs?: string | null;
1189
+ model?: string | null;
1190
+ title?: string | null;
1191
+ color?: string | null;
1192
+ isbN13?: string | null;
1193
+ unspsc?: string | null;
1194
+ unitId?: string | null;
1195
+ series?: string | null;
1196
+ barcode?: string | null;
1197
+ unspsCs?: string | null;
1198
+ pattern?: string | null;
1199
+ summary?: string | null;
1200
+ brandId?: string | null;
1201
+ features?: string | null;
1202
+ material?: string | null;
1203
+ tenantId?: string | null;
1204
+ permalink?: string | null;
1205
+ brandName?: string | null;
1206
+ languageId?: string | null;
1207
+ itemTypeId?: string | null;
1208
+ categoryId?: string | null;
1209
+ currencyId?: string | null;
1210
+ unitGroupId?: string | null;
1211
+ description?: string | null;
1212
+ ingredients?: string | null;
1213
+ releaseDate?: string | null;
1214
+ enrollmentId?: string | null;
1215
+ supplierCode?: string | null;
1216
+ shipsToRules?: string | null;
1217
+ purchaseNote?: string | null;
1218
+ parentItemId?: string | null;
1219
+ itemTypeName?: string | null;
1220
+ discriminator?: string | null;
1221
+ tariffHeading?: string | null;
1222
+ nutritionFacts?: string | null;
1223
+ mozaicCoverUrl?: string | null;
1224
+ packageContent?: string | null;
1225
+ youtubeVideoId?: string | null;
1226
+ primaryImageUrl?: string | null;
1227
+ longDescription?: string | null;
1228
+ measurementUnit?: string | null;
1229
+ shortDescription?: string | null;
1230
+ googleCategories?: string | null;
1231
+ supplierProfileId?: string | null;
1232
+ shippingCountryId?: string | null;
1233
+ systemRequirements?: string | null;
1234
+ customTaxDescription?: string | null;
1235
+ officialDescriptionUrl?: string | null;
1236
+ energyEfficiencyRating?: string | null;
1237
+ pageCoverBackgroundUrl?: string | null;
1238
+ primaryGoogleCategoryId?: string | null;
1239
+ operatingSystemSupported?: string | null;
1240
+ supportedOperatingSystem?: string | null;
1241
+ primaryGoogleCategoryName?: string | null;
1242
+ hot?: boolean;
1243
+ onSale?: boolean;
1244
+ auction?: boolean;
1245
+ deleted?: boolean;
1246
+ digital?: boolean;
1247
+ preSale?: boolean;
1248
+ taxable?: boolean;
1249
+ inStock?: boolean;
1250
+ featured?: boolean;
1251
+ trending?: boolean;
1252
+ lowStock?: boolean;
1253
+ published?: boolean;
1254
+ byRequest?: boolean;
1255
+ onDiscount?: boolean;
1256
+ isDailyDeal?: boolean;
1257
+ isNewArrival?: boolean;
1258
+ isWeeklyDeal?: boolean;
1259
+ isBestSeller?: boolean;
1260
+ isMonthlyDeal?: boolean;
1261
+ hasVariations?: boolean;
1262
+ isFixedDiscount?: boolean;
1263
+ isDealersChoice?: boolean;
1264
+ manageInventory?: boolean;
1265
+ isOfficialChoice?: boolean;
1266
+ validPrimaryImage?: boolean;
1267
+ isDeadlineDiscount?: boolean;
1268
+ displayShowcaseTab?: boolean;
1269
+ taxIncludedInPrice?: boolean;
1270
+ isProductOfTheWeek?: boolean;
1271
+ isProductOfTheMonth?: boolean;
1272
+ isPercentageDiscount?: boolean;
1273
+ displayOnGlobalMozaic?: boolean;
1274
+ displayOnBrandsMozaic?: boolean;
1275
+ disableDefaultPolicies?: boolean;
1276
+ displayOnCategoryMozaic?: boolean;
1277
+ displayDescriptionEditor?: boolean;
1278
+ displayShortDescriptionEditor?: boolean;
1279
+ displayOnBannerMarketingRotation?: boolean;
1280
+ /** Format: date-time */
1281
+ auctionEnd?: string | null;
1282
+ /** Format: date-time */
1283
+ auctionStart?: string | null;
1284
+ /** Format: date-time */
1285
+ publishedDate?: string | null;
1286
+ /** Format: date-time */
1287
+ deadlineDiscountFromDate?: string | null;
1288
+ /** Format: date-time */
1289
+ deadlineDiscountDueDate?: string | null;
1290
+ /** Format: date-time */
1291
+ lastFixedPricesUpdateDateTime?: string | null;
1292
+ images?: string[] | null;
1293
+ /** Format: int32 */
1294
+ viewsCount?: number;
1295
+ /** Format: int32 */
1296
+ reviewsCount?: number;
1297
+ /** Format: int32 */
1298
+ questionsCount?: number;
1299
+ /** Format: int32 */
1300
+ packagedQuantity?: number;
1301
+ /** Format: double */
1302
+ reviewsAvg?: number | null;
1303
+ /** Format: double */
1304
+ recurrency?: number;
1305
+ /** Format: double */
1306
+ currentStock?: number;
1307
+ /** Format: double */
1308
+ width?: number | null;
1309
+ /** Format: double */
1310
+ weight?: number | null;
1311
+ /** Format: double */
1312
+ length?: number | null;
1313
+ /** Format: double */
1314
+ height?: number | null;
1315
+ /** Format: double */
1316
+ regularPrice?: number | null;
1317
+ /** Format: double */
1318
+ discountPrice?: number | null;
1319
+ /** Format: double */
1320
+ customTaxValue?: number | null;
1321
+ /** Format: double */
1322
+ discountAmount?: number | null;
1323
+ /** Format: double */
1324
+ inCartQuantity?: number | null;
1325
+ /** Format: double */
1326
+ customTaxAmount?: number | null;
1327
+ /** Format: double */
1328
+ discountPercentage?: number | null;
1329
+ /** Format: double */
1330
+ customTaxPercentage?: number | null;
1331
+ /** Format: double */
1332
+ estimatedTaxesInUsd?: number | null;
1333
+ /** Format: double */
1334
+ estimatedProfitInUsd?: number | null;
1335
+ /** Format: double */
1336
+ estimatedBasePriceInUsd?: number | null;
1337
+ /** Format: double */
1338
+ estimatedDiscountsInUsd?: number | null;
1339
+ /** Format: double */
1340
+ estimatedSurchargesInUsd?: number | null;
1341
+ /** Format: double */
1342
+ estimatedPaymentTaxInUsd?: number | null;
1343
+ /** Format: double */
1344
+ estimatedTotalPriceInUsd?: number | null;
1345
+ /** Format: double */
1346
+ estimatedPaymentCostInUsd?: number | null;
1347
+ /** Format: double */
1348
+ estimatedDealSavingsInUsd?: number | null;
1349
+ /** Format: double */
1350
+ estimatedRegularPriceInUsd?: number | null;
1351
+ /** Format: double */
1352
+ estimatedTaxBasePriceInUsd?: number | null;
1353
+ /** Format: double */
1354
+ estimatedWithholdingTaxesInUsd?: number | null;
1355
+ /** Format: double */
1356
+ estimatedDefaultShippingTaxInUsd?: number | null;
1357
+ /** Format: double */
1358
+ estimatedDefaultShippingCostInUsd?: number | null;
1359
+ selectedTags?: string[] | null;
1360
+ selectedTypes?: string[] | null;
1361
+ selectedBrands?: string[] | null;
1362
+ selectedCategories?: string[] | null;
1363
+ selectedTaxPolicies?: string[] | null;
1364
+ selectedPricingRules?: string[] | null;
1365
+ selectedRefundPolicies?: string[] | null;
1366
+ selectedReturnPolicies?: string[] | null;
1367
+ selectedPricingPolicies?: string[] | null;
1368
+ selectedGoogleCategories?: string[] | null;
1369
+ selectedWarrantyPolicies?: string[] | null;
1370
+ selectedShipmentPolicies?: string[] | null;
1371
+ selectedAttributesOptions?: string[] | null;
1372
+ selectedSellingMarginPolicies?: string[] | null;
1373
+ };
1374
+ CourseDtoEnvelope: {
1375
+ isSuccess?: boolean;
1376
+ errorMessage?: string | null;
1377
+ correlationId?: string | null;
1378
+ /** Format: date-time */
1379
+ timestamp?: string;
1380
+ activityId?: string | null;
1381
+ result?: components["schemas"]["CourseDto"];
1382
+ };
1383
+ CourseDtoListEnvelope: {
1384
+ isSuccess?: boolean;
1385
+ errorMessage?: string | null;
1386
+ correlationId?: string | null;
1387
+ /** Format: date-time */
1388
+ timestamp?: string;
1389
+ activityId?: string | null;
1390
+ result?: components["schemas"]["CourseDto"][] | null;
1391
+ };
1392
+ CourseEnrollmentCreateDto: {
1393
+ /** Format: uuid */
1394
+ id?: string;
1395
+ /** Format: date-time */
1396
+ timestamp?: string;
1397
+ courseID?: string | null;
1398
+ courseCohortID?: string | null;
1399
+ studentProfileID?: string | null;
1400
+ businessProfileRecordID?: string | null;
1401
+ courseCompletionCertificateID?: string | null;
1402
+ };
1403
+ CourseEnrollmentDto: {
1404
+ id?: string | null;
1405
+ /** Format: date-time */
1406
+ timestamp?: string | null;
1407
+ courseID?: string | null;
1408
+ courseCohortID?: string | null;
1409
+ studentProfileID?: string | null;
1410
+ businessProfileRecordID?: string | null;
1411
+ courseCompletionCertificateID?: string | null;
1412
+ };
1413
+ CourseEnrollmentDtoEnvelope: {
1414
+ isSuccess?: boolean;
1415
+ errorMessage?: string | null;
1416
+ correlationId?: string | null;
1417
+ /** Format: date-time */
1418
+ timestamp?: string;
1419
+ activityId?: string | null;
1420
+ result?: components["schemas"]["CourseEnrollmentDto"];
1421
+ };
1422
+ CourseEnrollmentDtoListEnvelope: {
1423
+ isSuccess?: boolean;
1424
+ errorMessage?: string | null;
1425
+ correlationId?: string | null;
1426
+ /** Format: date-time */
1427
+ timestamp?: string;
1428
+ activityId?: string | null;
1429
+ result?: components["schemas"]["CourseEnrollmentDto"][] | null;
1430
+ };
1431
+ CourseEnrollmentUpdateDto: {
1432
+ /** Format: uuid */
1433
+ id?: string;
1434
+ /** Format: date-time */
1435
+ timestamp?: string;
1436
+ courseCohortID?: string | null;
1437
+ courseCompletionCertificateID?: string | null;
1438
+ };
1439
+ CourseUpdateDto: Record<string, never>;
1440
+ EmptyEnvelope: {
1441
+ isSuccess?: boolean;
1442
+ errorMessage?: string | null;
1443
+ correlationId?: string | null;
1444
+ /** Format: date-time */
1445
+ timestamp?: string;
1446
+ activityId?: string | null;
1447
+ };
1448
+ ErrorEnvelope: {
1449
+ isSuccess?: boolean;
1450
+ errorMessage?: string | null;
1451
+ correlationId?: string | null;
1452
+ /** Format: date-time */
1453
+ timestamp?: string;
1454
+ activityId?: string | null;
1455
+ };
1456
+ InstructorProfileCreateDto: {
1457
+ /** Format: uuid */
1458
+ id?: string;
1459
+ /** Format: date-time */
1460
+ timestamp?: string;
1461
+ authorized?: boolean;
1462
+ about?: string | null;
1463
+ verified?: boolean;
1464
+ submitted?: boolean;
1465
+ avatarUrl?: string | null;
1466
+ qualifiedName?: string | null;
1467
+ /** Format: date-time */
1468
+ verificationTimestamp?: string;
1469
+ data?: string | null;
1470
+ dataLabel?: string | null;
1471
+ data1?: string | null;
1472
+ data1Label?: string | null;
1473
+ data2?: string | null;
1474
+ data2Label?: string | null;
1475
+ data3?: string | null;
1476
+ data3Label?: string | null;
1477
+ data4?: string | null;
1478
+ data4Label?: string | null;
1479
+ data5?: string | null;
1480
+ data5Label?: string | null;
1481
+ data6?: string | null;
1482
+ data6Label?: string | null;
1483
+ data7?: string | null;
1484
+ data7Label?: string | null;
1485
+ data8?: string | null;
1486
+ data8Label?: string | null;
1487
+ data9?: string | null;
1488
+ data9Label?: string | null;
1489
+ businessID?: string | null;
1490
+ contactID?: string | null;
1491
+ businessProfileRecordID?: string | null;
1492
+ };
1493
+ InstructorProfileDto: {
1494
+ id?: string | null;
1495
+ /** Format: date-time */
1496
+ timestamp?: string | null;
1497
+ authorized?: boolean;
1498
+ about?: string | null;
1499
+ verified?: boolean;
1500
+ submitted?: boolean;
1501
+ avatarUrl?: string | null;
1502
+ qualifiedName?: string | null;
1503
+ /** Format: date-time */
1504
+ verificationTimestamp?: string;
1505
+ data?: string | null;
1506
+ dataLabel?: string | null;
1507
+ data1?: string | null;
1508
+ data1Label?: string | null;
1509
+ data2?: string | null;
1510
+ data2Label?: string | null;
1511
+ data3?: string | null;
1512
+ data3Label?: string | null;
1513
+ data4?: string | null;
1514
+ data4Label?: string | null;
1515
+ data5?: string | null;
1516
+ data5Label?: string | null;
1517
+ data6?: string | null;
1518
+ data6Label?: string | null;
1519
+ data7?: string | null;
1520
+ data7Label?: string | null;
1521
+ data8?: string | null;
1522
+ data8Label?: string | null;
1523
+ data9?: string | null;
1524
+ data9Label?: string | null;
1525
+ businessID?: string | null;
1526
+ contactID?: string | null;
1527
+ businessProfileRecordID?: string | null;
1528
+ };
1529
+ InstructorProfileDtoEnvelope: {
1530
+ isSuccess?: boolean;
1531
+ errorMessage?: string | null;
1532
+ correlationId?: string | null;
1533
+ /** Format: date-time */
1534
+ timestamp?: string;
1535
+ activityId?: string | null;
1536
+ result?: components["schemas"]["InstructorProfileDto"];
1537
+ };
1538
+ InstructorProfileDtoListEnvelope: {
1539
+ isSuccess?: boolean;
1540
+ errorMessage?: string | null;
1541
+ correlationId?: string | null;
1542
+ /** Format: date-time */
1543
+ timestamp?: string;
1544
+ activityId?: string | null;
1545
+ result?: components["schemas"]["InstructorProfileDto"][] | null;
1546
+ };
1547
+ InstructorProfileUpdateDto: {
1548
+ id?: string | null;
1549
+ /** Format: date-time */
1550
+ timestamp?: string | null;
1551
+ authorized?: boolean;
1552
+ about?: string | null;
1553
+ verified?: boolean;
1554
+ submitted?: boolean;
1555
+ avatarUrl?: string | null;
1556
+ qualifiedName?: string | null;
1557
+ /** Format: date-time */
1558
+ verificationTimestamp?: string;
1559
+ data?: string | null;
1560
+ dataLabel?: string | null;
1561
+ data1?: string | null;
1562
+ data1Label?: string | null;
1563
+ data2?: string | null;
1564
+ data2Label?: string | null;
1565
+ data3?: string | null;
1566
+ data3Label?: string | null;
1567
+ data4?: string | null;
1568
+ data4Label?: string | null;
1569
+ data5?: string | null;
1570
+ data5Label?: string | null;
1571
+ data6?: string | null;
1572
+ data6Label?: string | null;
1573
+ data7?: string | null;
1574
+ data7Label?: string | null;
1575
+ data8?: string | null;
1576
+ data8Label?: string | null;
1577
+ data9?: string | null;
1578
+ data9Label?: string | null;
1579
+ };
1580
+ Pagination: {
1581
+ /** Format: int32 */
1582
+ pageNumber?: number;
1583
+ /** Format: int32 */
1584
+ pageSize?: number;
1585
+ };
1586
+ StudentProfileCreateDto: {
1587
+ /** Format: uuid */
1588
+ id?: string;
1589
+ /** Format: date-time */
1590
+ timestamp?: string;
1591
+ about?: string | null;
1592
+ verified?: boolean;
1593
+ submitted?: boolean;
1594
+ avatarUrl?: string | null;
1595
+ qualifiedName?: string | null;
1596
+ /** Format: date-time */
1597
+ verificationTimestamp?: string;
1598
+ data?: string | null;
1599
+ dataLabel?: string | null;
1600
+ data1?: string | null;
1601
+ data1Label?: string | null;
1602
+ data2?: string | null;
1603
+ data2Label?: string | null;
1604
+ data3?: string | null;
1605
+ data3Label?: string | null;
1606
+ data4?: string | null;
1607
+ data4Label?: string | null;
1608
+ data5?: string | null;
1609
+ data5Label?: string | null;
1610
+ data6?: string | null;
1611
+ data6Label?: string | null;
1612
+ data7?: string | null;
1613
+ data7Label?: string | null;
1614
+ data8?: string | null;
1615
+ data8Label?: string | null;
1616
+ data9?: string | null;
1617
+ data9Label?: string | null;
1618
+ businessID?: string | null;
1619
+ contactID?: string | null;
1620
+ businessProfileRecordID?: string | null;
1621
+ };
1622
+ StudentProfileDto: {
1623
+ id?: string | null;
1624
+ /** Format: date-time */
1625
+ timestamp?: string | null;
1626
+ about?: string | null;
1627
+ verified?: boolean;
1628
+ submitted?: boolean;
1629
+ avatarUrl?: string | null;
1630
+ qualifiedName?: string | null;
1631
+ /** Format: date-time */
1632
+ verificationTimestamp?: string;
1633
+ data?: string | null;
1634
+ dataLabel?: string | null;
1635
+ data1?: string | null;
1636
+ data1Label?: string | null;
1637
+ data2?: string | null;
1638
+ data2Label?: string | null;
1639
+ data3?: string | null;
1640
+ data3Label?: string | null;
1641
+ data4?: string | null;
1642
+ data4Label?: string | null;
1643
+ data5?: string | null;
1644
+ data5Label?: string | null;
1645
+ data6?: string | null;
1646
+ data6Label?: string | null;
1647
+ data7?: string | null;
1648
+ data7Label?: string | null;
1649
+ data8?: string | null;
1650
+ data8Label?: string | null;
1651
+ data9?: string | null;
1652
+ data9Label?: string | null;
1653
+ businessID?: string | null;
1654
+ contactID?: string | null;
1655
+ businessProfileRecordID?: string | null;
1656
+ };
1657
+ StudentProfileDtoEnvelope: {
1658
+ isSuccess?: boolean;
1659
+ errorMessage?: string | null;
1660
+ correlationId?: string | null;
1661
+ /** Format: date-time */
1662
+ timestamp?: string;
1663
+ activityId?: string | null;
1664
+ result?: components["schemas"]["StudentProfileDto"];
1665
+ };
1666
+ StudentProfileDtoListEnvelope: {
1667
+ isSuccess?: boolean;
1668
+ errorMessage?: string | null;
1669
+ correlationId?: string | null;
1670
+ /** Format: date-time */
1671
+ timestamp?: string;
1672
+ activityId?: string | null;
1673
+ result?: components["schemas"]["StudentProfileDto"][] | null;
1674
+ };
1675
+ StudentProfileUpdateDto: {
1676
+ /** Format: uuid */
1677
+ id?: string;
1678
+ /** Format: date-time */
1679
+ timestamp?: string;
1680
+ about?: string | null;
1681
+ verified?: boolean;
1682
+ submitted?: boolean;
1683
+ avatarUrl?: string | null;
1684
+ qualifiedName?: string | null;
1685
+ /** Format: date-time */
1686
+ verificationTimestamp?: string;
1687
+ data?: string | null;
1688
+ dataLabel?: string | null;
1689
+ data1?: string | null;
1690
+ data1Label?: string | null;
1691
+ data2?: string | null;
1692
+ data2Label?: string | null;
1693
+ data3?: string | null;
1694
+ data3Label?: string | null;
1695
+ data4?: string | null;
1696
+ data4Label?: string | null;
1697
+ data5?: string | null;
1698
+ data5Label?: string | null;
1699
+ data6?: string | null;
1700
+ data6Label?: string | null;
1701
+ data7?: string | null;
1702
+ data7Label?: string | null;
1703
+ data8?: string | null;
1704
+ data8Label?: string | null;
1705
+ data9?: string | null;
1706
+ data9Label?: string | null;
1707
+ businessID?: string | null;
1708
+ contactID?: string | null;
1709
+ businessProfileRecordID?: string | null;
1710
+ };
1711
+ };
1712
+ responses: never;
1713
+ parameters: never;
1714
+ requestBodies: never;
1715
+ headers: never;
1716
+ pathItems: never;
1717
+ }
1718
+
1719
+ export type $defs = Record<string, never>;
1720
+
1721
+ export type external = Record<string, never>;
1722
+
1723
+ export type operations = Record<string, never>;