@fenixalliance/abs-api-client 1.0.2 → 1.0.5

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 (696) hide show
  1. package/FenixAlliance.ABP.SDK.TypeScript.sln +25 -0
  2. package/FenixAlliance.ABP.SDK.TypeScript.xml +8 -0
  3. package/clients/accountingService/core/ApiError.ts +25 -0
  4. package/clients/accountingService/core/ApiRequestOptions.ts +17 -0
  5. package/clients/accountingService/core/ApiResult.ts +11 -0
  6. package/clients/accountingService/core/CancelablePromise.ts +131 -0
  7. package/clients/accountingService/core/OpenAPI.ts +32 -0
  8. package/clients/accountingService/core/request.ts +322 -0
  9. package/clients/accountingService/index.ts +97 -0
  10. package/clients/accountingService/models/AccountCreateDto.ts +30 -0
  11. package/clients/accountingService/models/AccountDto.ts +41 -0
  12. package/clients/{catalogService/models/StockItemDtoEnvelope.ts → accountingService/models/AccountDtoEnvelope.ts} +5 -5
  13. package/clients/{holderService/models/InvoiceDtoListEnvelope.ts → accountingService/models/AccountDtoListEnvelope.ts} +5 -5
  14. package/clients/accountingService/models/AccountUpdateDto.ts +26 -0
  15. package/clients/accountingService/models/AccountingEntryCreateDto.ts +26 -0
  16. package/clients/accountingService/models/AccountingEntryDto.ts +34 -0
  17. package/clients/accountingService/models/AccountingEntryDtoEnvelope.ts +14 -0
  18. package/clients/accountingService/models/AccountingEntryDtoListEnvelope.ts +14 -0
  19. package/clients/accountingService/models/AccountingEntryUpdateDto.ts +24 -0
  20. package/clients/accountingService/models/BillingProfileCreateDto.ts +30 -0
  21. package/clients/accountingService/models/BillingProfileDto.ts +67 -0
  22. package/clients/accountingService/models/BillingProfileDtoEnvelope.ts +14 -0
  23. package/clients/accountingService/models/BillingProfileDtoListEnvelope.ts +14 -0
  24. package/clients/accountingService/models/BillingProfileUpdateDto.ts +28 -0
  25. package/clients/accountingService/models/BudgetCreateDto.ts +12 -0
  26. package/clients/accountingService/models/BudgetDto.ts +12 -0
  27. package/clients/{holderService/models/PaymentDtoListEnvelope.ts → accountingService/models/BudgetDtoEnvelope.ts} +5 -5
  28. package/clients/accountingService/models/BudgetDtoListEnvelope.ts +14 -0
  29. package/clients/accountingService/models/BudgetUpdateDto.ts +9 -0
  30. package/clients/accountingService/models/CreateLedgerDto.ts +15 -0
  31. package/clients/accountingService/models/Currency.ts +9 -0
  32. package/clients/accountingService/models/EmptyEnvelope.ts +12 -0
  33. package/clients/accountingService/models/ErrorEnvelope.ts +12 -0
  34. package/clients/accountingService/models/FinancialBookCreateDto.ts +12 -0
  35. package/clients/{holderService/models/InvoiceDto.ts → accountingService/models/FinancialBookDto.ts} +3 -4
  36. package/clients/accountingService/models/FinancialBookDtoEnvelope.ts +14 -0
  37. package/clients/accountingService/models/FinancialBookDtoListEnvelope.ts +14 -0
  38. package/clients/accountingService/models/FinancialBookUpdateDto.ts +10 -0
  39. package/clients/accountingService/models/FiscalAuthorityCreateDto.ts +14 -0
  40. package/clients/accountingService/models/FiscalAuthorityDto.ts +16 -0
  41. package/clients/accountingService/models/FiscalAuthorityDtoEnvelope.ts +14 -0
  42. package/clients/accountingService/models/FiscalAuthorityDtoListEnvelope.ts +14 -0
  43. package/clients/accountingService/models/FiscalAuthorityUpdateDto.ts +12 -0
  44. package/clients/accountingService/models/FiscalYearCreateDto.ts +16 -0
  45. package/clients/accountingService/models/FiscalYearDto.ts +16 -0
  46. package/clients/accountingService/models/FiscalYearDtoEnvelope.ts +14 -0
  47. package/clients/accountingService/models/FiscalYearDtoListEnvelope.ts +14 -0
  48. package/clients/accountingService/models/FiscalYearUpdateDto.ts +12 -0
  49. package/clients/accountingService/models/Int32Envelope.ts +13 -0
  50. package/clients/accountingService/models/InvoiceEnumerationRangeCreateDto.ts +29 -0
  51. package/clients/accountingService/models/InvoiceEnumerationRangeDto.ts +29 -0
  52. package/clients/accountingService/models/InvoiceEnumerationRangeDtoEnvelope.ts +14 -0
  53. package/clients/accountingService/models/InvoiceEnumerationRangeDtoListEnvelope.ts +14 -0
  54. package/clients/accountingService/models/InvoiceEnumerationRangeUpdateDto.ts +27 -0
  55. package/clients/accountingService/models/JournalCreateDto.ts +17 -0
  56. package/clients/accountingService/models/JournalDto.ts +17 -0
  57. package/clients/accountingService/models/JournalDtoEnvelope.ts +14 -0
  58. package/clients/accountingService/models/JournalDtoListEnvelope.ts +14 -0
  59. package/clients/accountingService/models/JournalEntryCreateDto.ts +20 -0
  60. package/clients/accountingService/models/JournalEntryDto.ts +31 -0
  61. package/clients/accountingService/models/JournalEntryDtoListEnvelope.ts +14 -0
  62. package/clients/accountingService/models/JournalEntryUpdateDto.ts +18 -0
  63. package/clients/accountingService/models/JournalTypeCreateDto.ts +12 -0
  64. package/clients/accountingService/models/JournalTypeDto.ts +12 -0
  65. package/clients/accountingService/models/JournalTypeDtoEnvelope.ts +14 -0
  66. package/clients/accountingService/models/JournalTypeDtoListEnvelope.ts +14 -0
  67. package/clients/accountingService/models/JournalTypeUpdateDto.ts +10 -0
  68. package/clients/accountingService/models/JournalUpdateDto.ts +13 -0
  69. package/clients/accountingService/models/LedgerDto.ts +15 -0
  70. package/clients/accountingService/models/LedgerDtoEnvelope.ts +14 -0
  71. package/clients/accountingService/models/LedgerDtoListEnvelope.ts +14 -0
  72. package/clients/accountingService/models/LoanCreateDto.ts +18 -0
  73. package/clients/accountingService/models/LoanDto.ts +18 -0
  74. package/clients/accountingService/models/LoanDtoEnvelope.ts +14 -0
  75. package/clients/accountingService/models/LoanDtoListEnvelope.ts +14 -0
  76. package/clients/accountingService/models/LoanUpdateDto.ts +15 -0
  77. package/clients/accountingService/models/Money.ts +10 -0
  78. package/clients/accountingService/models/Operation.ts +23 -0
  79. package/clients/accountingService/models/ReceiptCreateDto.ts +48 -0
  80. package/clients/accountingService/models/ReceiptDto.ts +24 -0
  81. package/clients/accountingService/models/ReceiptDtoEnvelope.ts +14 -0
  82. package/clients/accountingService/models/ReceiptDtoListEnvelope.ts +14 -0
  83. package/clients/accountingService/models/ReceiptUpdateDto.ts +19 -0
  84. package/clients/accountingService/models/UpdateLedgerDto.ts +12 -0
  85. package/clients/accountingService/services/AccountsService.ts +788 -0
  86. package/clients/accountingService/services/BillingProfilesService.ts +194 -0
  87. package/clients/accountingService/services/BudgetsService.ts +167 -0
  88. package/clients/accountingService/services/FinancialBooksService.ts +194 -0
  89. package/clients/accountingService/services/FiscalAuthoritiesService.ts +194 -0
  90. package/clients/accountingService/services/FiscalYearsService.ts +194 -0
  91. package/clients/accountingService/services/InvoiceEnumerationRangesService.ts +167 -0
  92. package/clients/accountingService/services/JournalTypesService.ts +167 -0
  93. package/clients/accountingService/services/JournalsService.ts +366 -0
  94. package/clients/accountingService/services/LedgersService.ts +163 -0
  95. package/clients/accountingService/services/LoansService.ts +194 -0
  96. package/clients/accountingService/services/ReceiptsService.ts +164 -0
  97. package/clients/cartService/index.ts +5 -0
  98. package/clients/cartService/models/BooleanEnvelope.ts +2 -2
  99. package/clients/cartService/models/CartDtoEnvelope.ts +2 -2
  100. package/clients/cartService/models/CartUpdateRequest.ts +2 -2
  101. package/clients/cartService/models/CountryDto.ts +14 -0
  102. package/clients/cartService/models/CountryDtoEnvelope.ts +14 -0
  103. package/clients/cartService/models/CurrencyDto.ts +13 -0
  104. package/clients/cartService/models/CurrencyDtoEnvelope.ts +14 -0
  105. package/clients/cartService/models/EmptyEnvelope.ts +2 -1
  106. package/clients/cartService/models/ErrorEnvelope.ts +2 -2
  107. package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -1
  108. package/clients/cartService/models/ItemCartRecordDto.ts +9 -7
  109. package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +2 -2
  110. package/clients/cartService/models/ItemCartRecordDtoListEnvelope.ts +2 -2
  111. package/clients/cartService/models/ItemCartRecordUpdateDto.ts +0 -2
  112. package/clients/cartService/models/ItemToCompareCartRecordDto.ts +14 -1
  113. package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +2 -2
  114. package/clients/cartService/models/ItemToCompareCartRecordDtoListEnvelope.ts +2 -2
  115. package/clients/cartService/models/ProductToWishListRequest.ts +2 -2
  116. package/clients/cartService/models/WishListDtoEnvelope.ts +14 -0
  117. package/clients/cartService/services/CartsService.ts +1069 -22
  118. package/clients/cartService/services/CompareService.ts +24 -4
  119. package/clients/cartService/services/RecordsService.ts +114 -9
  120. package/clients/cartService/services/WishListsService.ts +116 -9
  121. package/clients/catalogService/index.ts +14 -6
  122. package/clients/catalogService/models/CatalogItemCreateDto.ts +167 -0
  123. package/clients/catalogService/models/CatalogItemDto.ts +170 -0
  124. package/clients/catalogService/models/CatalogItemDtoEnvelope.ts +14 -0
  125. package/clients/catalogService/models/CatalogItemDtoListEnvelope.ts +14 -0
  126. package/clients/catalogService/models/{StockItemDto.ts → CatalogItemUpdateDto.ts} +138 -105
  127. package/clients/catalogService/models/Currency.ts +9 -0
  128. package/clients/catalogService/models/EmptyEnvelope.ts +2 -1
  129. package/clients/catalogService/models/ErrorEnvelope.ts +2 -2
  130. package/clients/catalogService/models/Int32Envelope.ts +13 -0
  131. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +6 -4
  132. package/clients/catalogService/models/ItemAttachmentDto.ts +13 -11
  133. package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +2 -2
  134. package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +2 -2
  135. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +5 -2
  136. package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +2 -2
  137. package/clients/catalogService/models/ItemAttributeDtoListEnvelope.ts +2 -2
  138. package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +2 -2
  139. package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +2 -2
  140. package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +2 -2
  141. package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +2 -2
  142. package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +2 -2
  143. package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +2 -2
  144. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +2 -1
  145. package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +2 -2
  146. package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +2 -2
  147. package/clients/catalogService/models/ItemImageDtoEnvelope.ts +2 -2
  148. package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +2 -2
  149. package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +2 -2
  150. package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +2 -2
  151. package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +2 -2
  152. package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +2 -2
  153. package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +2 -2
  154. package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +2 -2
  155. package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +2 -2
  156. package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +2 -2
  157. package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +2 -2
  158. package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +2 -2
  159. package/clients/catalogService/models/ItemTagDtoEnvelope.ts +2 -2
  160. package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +2 -2
  161. package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +2 -2
  162. package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +2 -2
  163. package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +2 -2
  164. package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +2 -2
  165. package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +2 -2
  166. package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +2 -2
  167. package/clients/catalogService/models/MerchantDto.ts +47 -0
  168. package/clients/catalogService/models/MerchantDtoListEnvelope.ts +14 -0
  169. package/clients/catalogService/models/Money.ts +10 -0
  170. package/clients/catalogService/models/MoneyEnvelope.ts +14 -0
  171. package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +2 -2
  172. package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +2 -2
  173. package/clients/catalogService/services/ItemAttachmentsService.ts +55 -30
  174. package/clients/catalogService/services/ItemAttributesService.ts +55 -30
  175. package/clients/catalogService/services/ItemBrandsService.ts +55 -30
  176. package/clients/catalogService/services/ItemCategoriesService.ts +74 -49
  177. package/clients/catalogService/services/ItemGoogleCategoriesService.ts +182 -0
  178. package/clients/catalogService/services/ItemImagesService.ts +55 -30
  179. package/clients/catalogService/services/ItemQuestionsService.ts +55 -30
  180. package/clients/catalogService/services/ItemReviewsService.ts +55 -30
  181. package/clients/catalogService/services/ItemTagsService.ts +55 -30
  182. package/clients/catalogService/services/ItemTypesService.ts +57 -32
  183. package/clients/catalogService/services/ItemsService.ts +2176 -0
  184. package/clients/catalogService/services/MerchantsService.ts +30 -0
  185. package/clients/catalogService/services/PoliciesService.ts +24 -4
  186. package/clients/catalogService/services/PricingRulesService.ts +64 -39
  187. package/clients/crmService/index.ts +5 -0
  188. package/clients/crmService/models/CartDtoEnvelope.ts +2 -2
  189. package/clients/crmService/models/ContactCreateDto.ts +55 -0
  190. package/clients/crmService/models/ContactDto.ts +35 -21
  191. package/clients/crmService/models/ContactDtoEnvelope.ts +2 -2
  192. package/clients/crmService/models/ContactDtoListEnvelope.ts +2 -2
  193. package/clients/crmService/models/ContactProfileDto.ts +38 -0
  194. package/clients/crmService/models/ContactProfileDtoListEnvelope.ts +14 -0
  195. package/clients/crmService/models/ContactUpdateDto.ts +53 -0
  196. package/clients/crmService/models/EmptyEnvelope.ts +2 -1
  197. package/clients/crmService/models/ErrorEnvelope.ts +2 -2
  198. package/clients/crmService/models/Operation.ts +23 -0
  199. package/clients/crmService/models/SocialProfileDtoEnvelope.ts +2 -2
  200. package/clients/crmService/models/WalletDtoEnvelope.ts +2 -2
  201. package/clients/crmService/services/ContactsService.ts +509 -40
  202. package/clients/crmService/services/SyncService.ts +31 -15
  203. package/clients/forexService/index.ts +3 -0
  204. package/clients/forexService/models/Currency.ts +1 -1
  205. package/clients/forexService/models/ErrorEnvelope.ts +2 -2
  206. package/clients/forexService/models/ExchangeRate.ts +11 -0
  207. package/clients/forexService/models/ExchangeRateEnvelope.ts +14 -0
  208. package/clients/forexService/models/ForexRatesDtoEnvelope.ts +2 -2
  209. package/clients/forexService/models/Money.ts +1 -1
  210. package/clients/forexService/models/MoneyEnvelope.ts +2 -2
  211. package/clients/forexService/services/ExchangeService.ts +9 -11
  212. package/clients/forexService/services/ExchangeVService.ts +65 -0
  213. package/clients/forexService/services/RatesService.ts +71 -6
  214. package/clients/holderService/index.ts +19 -8
  215. package/clients/holderService/models/AddressDto.ts +1 -1
  216. package/clients/holderService/models/AddressDtoListEnvelope.ts +2 -2
  217. package/clients/holderService/models/CartDtoEnvelope.ts +2 -2
  218. package/clients/holderService/models/EmptyEnvelope.ts +12 -0
  219. package/clients/holderService/models/EmptyEnvelopeEnvelope.ts +14 -0
  220. package/clients/holderService/models/EnrollmentId.ts +5 -0
  221. package/clients/holderService/models/ErrorEnvelope.ts +2 -2
  222. package/clients/holderService/models/ExtendedPlatformUserDto.ts +79 -0
  223. package/clients/holderService/models/ExtendedPlatformUserDtoEnvelope.ts +14 -0
  224. package/clients/holderService/models/ExtendedTenantDto.ts +51 -0
  225. package/clients/holderService/models/ExtendedTenantDtoListEnvelope.ts +14 -0
  226. package/clients/holderService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  227. package/clients/holderService/models/ExtendedTenantEnrolmentDtoListEnvelope.ts +14 -0
  228. package/clients/holderService/models/NotificationDtoListEnvelope.ts +2 -2
  229. package/clients/holderService/models/Operation.ts +23 -0
  230. package/clients/holderService/models/PlatformUserDto.ts +26 -28
  231. package/clients/holderService/models/PlatformUserDtoEnvelope.ts +2 -2
  232. package/clients/holderService/models/PlatformUserSettingsDto.ts +21 -0
  233. package/clients/holderService/models/PlatformUserSettingsDtoEnvelope.ts +14 -0
  234. package/clients/holderService/models/PlatformUserSettingsUpdateDto.ts +19 -0
  235. package/clients/holderService/models/PlatformUserUpdateDto.ts +43 -0
  236. package/clients/holderService/models/SocialProfileDtoEnvelope.ts +2 -2
  237. package/clients/holderService/models/TenantDto.ts +1 -10
  238. package/clients/holderService/models/TenantDtoListEnvelope.ts +2 -2
  239. package/clients/{tenantService/models/TenantEnrollmentDto.ts → holderService/models/TenantEnrolmentDto.ts} +4 -3
  240. package/clients/holderService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  241. package/clients/holderService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  242. package/clients/holderService/models/TenantInvitationDto.ts +16 -0
  243. package/clients/holderService/models/{TenantEnrollmentDtoListEnvelope.ts → TenantInvitationDtoListEnvelope.ts} +5 -5
  244. package/clients/holderService/models/WalletDtoEnvelope.ts +2 -2
  245. package/clients/holderService/services/HolderService.ts +283 -44
  246. package/clients/identityService/index.ts +1 -1
  247. package/clients/identityService/models/AccountHolderCreateDto.ts +20 -15
  248. package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +2 -2
  249. package/clients/identityService/models/ApiResponseEnvelope.ts +2 -2
  250. package/clients/identityService/models/ErrorEnvelope.ts +2 -2
  251. package/clients/identityService/models/JsonWebKeySetEnvelope.ts +2 -2
  252. package/clients/identityService/models/JsonWebTokenEnvelope.ts +2 -2
  253. package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +2 -2
  254. package/clients/identityService/models/PlatformUserDto.ts +26 -28
  255. package/clients/identityService/models/StringListEnvelope.ts +2 -2
  256. package/clients/identityService/models/TenantDto.ts +1 -10
  257. package/clients/identityService/services/ApplicationsService.ts +30 -5
  258. package/clients/identityService/services/CheckerService.ts +8 -3
  259. package/clients/identityService/services/OAuthService.ts +44 -10
  260. package/clients/identityService/services/ResourceService.ts +8 -2
  261. package/clients/identityService/services/UserInfoService.ts +16 -4
  262. package/clients/inventoryService/services/InventoryService.ts +6 -1
  263. package/clients/invoicingService/index.ts +29 -4
  264. package/clients/invoicingService/models/Currency.ts +9 -0
  265. package/clients/invoicingService/models/EmptyEnvelope.ts +2 -1
  266. package/clients/invoicingService/models/ErrorEnvelope.ts +2 -2
  267. package/clients/invoicingService/models/ExtendedInvoiceDto.ts +111 -0
  268. package/clients/invoicingService/models/ExtendedInvoiceDtoListEnvelope.ts +14 -0
  269. package/clients/invoicingService/models/Int32Envelope.ts +13 -0
  270. package/clients/invoicingService/models/InvoiceAdjustmentCreateDto.ts +27 -0
  271. package/clients/invoicingService/models/InvoiceAdjustmentDto.ts +27 -0
  272. package/clients/invoicingService/models/InvoiceAdjustmentDtoEnvelope.ts +14 -0
  273. package/clients/invoicingService/models/InvoiceAdjustmentDtoListEnvelope.ts +14 -0
  274. package/clients/invoicingService/models/InvoiceAdjustmentUpdateDto.ts +22 -0
  275. package/clients/invoicingService/models/InvoiceCreateDto.ts +64 -0
  276. package/clients/invoicingService/models/InvoiceDto.ts +91 -2
  277. package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +2 -2
  278. package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +2 -2
  279. package/clients/invoicingService/models/InvoiceItemRecordDto.ts +100 -0
  280. package/clients/invoicingService/models/InvoiceLineAppliedTaxCreateDto.ts +13 -0
  281. package/clients/invoicingService/models/InvoiceLineAppliedTaxDto.ts +20 -0
  282. package/clients/invoicingService/models/InvoiceLineAppliedTaxDtoListEnvelope.ts +14 -0
  283. package/clients/invoicingService/models/InvoiceLineAppliedTaxUpdateDto.ts +8 -0
  284. package/clients/invoicingService/models/InvoiceLineCreateDto.ts +13 -0
  285. package/clients/invoicingService/models/InvoiceLineDto.ts +7 -2
  286. package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +2 -2
  287. package/clients/invoicingService/models/InvoiceLineDtoListEnvelope.ts +2 -2
  288. package/clients/invoicingService/models/{ItemPriceCreateDto.ts → InvoiceLineUpdateDto.ts} +9 -9
  289. package/clients/invoicingService/models/InvoiceReferenceCreateDto.ts +13 -0
  290. package/clients/invoicingService/models/InvoiceReferenceDto.ts +13 -0
  291. package/clients/{tenantService/models/TenantEnrollmentDtoEnvelope.ts → invoicingService/models/InvoiceReferenceDtoEnvelope.ts} +5 -5
  292. package/clients/{tenantService/models/TenantEnrollmentDtoListEnvelope.ts → invoicingService/models/InvoiceReferenceDtoListEnvelope.ts} +5 -5
  293. package/clients/invoicingService/models/InvoiceReferenceUpdateDto.ts +8 -0
  294. package/clients/invoicingService/models/InvoiceUpdateDto.ts +29 -1
  295. package/clients/invoicingService/models/Money.ts +10 -0
  296. package/clients/invoicingService/models/MoneyEnvelope.ts +14 -0
  297. package/clients/invoicingService/models/SimpleContactDto.ts +40 -0
  298. package/clients/invoicingService/models/SimpleTenantEnrolmentDto.ts +11 -0
  299. package/clients/invoicingService/models/SimpleUserDto.ts +25 -0
  300. package/clients/invoicingService/models/TenantDto.ts +45 -0
  301. package/clients/invoicingService/services/InvoicesService.ts +799 -23
  302. package/clients/learningService/core/ApiError.ts +25 -0
  303. package/clients/learningService/core/ApiRequestOptions.ts +17 -0
  304. package/clients/learningService/core/ApiResult.ts +11 -0
  305. package/clients/learningService/core/CancelablePromise.ts +131 -0
  306. package/clients/learningService/core/OpenAPI.ts +32 -0
  307. package/clients/learningService/core/request.ts +322 -0
  308. package/clients/learningService/index.ts +50 -0
  309. package/clients/learningService/models/AverageDto.ts +10 -0
  310. package/clients/learningService/models/AverageDtoEnvelope.ts +14 -0
  311. package/clients/learningService/models/CountDto.ts +10 -0
  312. package/clients/learningService/models/CountDtoEnvelope.ts +14 -0
  313. package/clients/learningService/models/CourseCertificateTemplateCreateDto.ts +17 -0
  314. package/clients/learningService/models/CourseCertificateTemplateDto.ts +17 -0
  315. package/clients/learningService/models/CourseCertificateTemplateDtoEnvelope.ts +14 -0
  316. package/clients/learningService/models/CourseCertificateTemplateDtoListEnvelope.ts +14 -0
  317. package/clients/learningService/models/CourseCompletionCertificateCreateDto.ts +15 -0
  318. package/clients/learningService/models/CourseCompletionCertificateDto.ts +15 -0
  319. package/clients/learningService/models/CourseCompletionCertificateDtoEnvelope.ts +14 -0
  320. package/clients/learningService/models/CourseCompletionCertificateDtoListEnvelope.ts +14 -0
  321. package/clients/learningService/models/CourseCompletionCertificateUpdateDto.ts +13 -0
  322. package/clients/learningService/models/CourseDto.ts +170 -0
  323. package/clients/learningService/models/CourseDtoEnvelope.ts +14 -0
  324. package/clients/learningService/models/CourseDtoListEnvelope.ts +14 -0
  325. package/clients/learningService/models/CourseEnrollmentCreateDto.ts +14 -0
  326. package/clients/learningService/models/CourseEnrollmentDto.ts +14 -0
  327. package/clients/learningService/models/CourseEnrollmentDtoEnvelope.ts +14 -0
  328. package/clients/learningService/models/CourseEnrollmentDtoListEnvelope.ts +14 -0
  329. package/clients/learningService/models/CourseEnrollmentUpdateDto.ts +11 -0
  330. package/clients/learningService/models/CourseUpdateDto.ts +5 -0
  331. package/clients/learningService/models/EmptyEnvelope.ts +12 -0
  332. package/clients/learningService/models/ErrorEnvelope.ts +12 -0
  333. package/clients/learningService/models/InstructorProfileCreateDto.ts +39 -0
  334. package/clients/learningService/models/InstructorProfileDto.ts +39 -0
  335. package/clients/learningService/models/InstructorProfileDtoEnvelope.ts +14 -0
  336. package/clients/learningService/models/InstructorProfileDtoListEnvelope.ts +14 -0
  337. package/clients/learningService/models/InstructorProfileUpdateDto.ts +36 -0
  338. package/clients/learningService/models/Pagination.ts +9 -0
  339. package/clients/learningService/models/StudentProfileCreateDto.ts +38 -0
  340. package/clients/learningService/models/StudentProfileDto.ts +38 -0
  341. package/clients/learningService/models/StudentProfileDtoEnvelope.ts +14 -0
  342. package/clients/learningService/models/StudentProfileDtoListEnvelope.ts +14 -0
  343. package/clients/learningService/models/StudentProfileUpdateDto.ts +38 -0
  344. package/clients/learningService/services/CourseCertificatesService.ts +270 -0
  345. package/clients/learningService/services/CourseEnrollmentsService.ts +232 -0
  346. package/clients/learningService/services/CoursesService.ts +128 -0
  347. package/clients/learningService/services/InstructorProfilesService.ts +152 -0
  348. package/clients/learningService/services/StudentProfilesService.ts +212 -0
  349. package/clients/marketingService/core/ApiError.ts +25 -0
  350. package/clients/marketingService/core/ApiRequestOptions.ts +17 -0
  351. package/clients/marketingService/core/ApiResult.ts +11 -0
  352. package/clients/marketingService/core/CancelablePromise.ts +131 -0
  353. package/clients/marketingService/core/OpenAPI.ts +32 -0
  354. package/clients/marketingService/core/request.ts +322 -0
  355. package/clients/marketingService/index.ts +64 -0
  356. package/clients/marketingService/models/Currency.ts +9 -0
  357. package/clients/marketingService/models/EmailGroupCreateDto.ts +14 -0
  358. package/clients/marketingService/models/EmailGroupDto.ts +14 -0
  359. package/clients/marketingService/models/EmailGroupDtoEnvelope.ts +14 -0
  360. package/clients/marketingService/models/EmailGroupDtoListEnvelope.ts +14 -0
  361. package/clients/marketingService/models/EmailGroupUpdateDto.ts +12 -0
  362. package/clients/marketingService/models/EmailSignatureCreateDto.ts +16 -0
  363. package/clients/marketingService/models/EmailSignatureDto.ts +64 -0
  364. package/clients/marketingService/models/EmailSignatureDtoEnvelope.ts +14 -0
  365. package/clients/marketingService/models/EmailSignatureDtoListEnvelope.ts +14 -0
  366. package/clients/marketingService/models/EmailSignatureUpdateDto.ts +60 -0
  367. package/clients/marketingService/models/EmailTemplateCreateDto.ts +17 -0
  368. package/clients/marketingService/models/EmailTemplateDto.ts +66 -0
  369. package/clients/marketingService/models/EmailTemplateDtoEnvelope.ts +14 -0
  370. package/clients/marketingService/models/EmailTemplateDtoListEnvelope.ts +14 -0
  371. package/clients/marketingService/models/EmailTemplateUpdateDto.ts +61 -0
  372. package/clients/marketingService/models/EmptyEnvelope.ts +12 -0
  373. package/clients/marketingService/models/ErrorEnvelope.ts +12 -0
  374. package/clients/marketingService/models/Int32Envelope.ts +13 -0
  375. package/clients/marketingService/models/MarketingCampaignCreateDto.ts +25 -0
  376. package/clients/marketingService/models/MarketingCampaignDto.ts +25 -0
  377. package/clients/marketingService/models/MarketingCampaignDtoEnvelope.ts +14 -0
  378. package/clients/marketingService/models/MarketingCampaignUpdateDto.ts +23 -0
  379. package/clients/marketingService/models/MarketingListCreateDto.ts +33 -0
  380. package/clients/marketingService/models/MarketingListDto.ts +33 -0
  381. package/clients/marketingService/models/MarketingListDtoEnvelope.ts +14 -0
  382. package/clients/marketingService/models/MarketingListDtoListEnvelope.ts +14 -0
  383. package/clients/marketingService/models/MarketingListUpdateDto.ts +31 -0
  384. package/clients/marketingService/models/Money.ts +10 -0
  385. package/clients/marketingService/models/NewsletterCreateDto.ts +14 -0
  386. package/clients/marketingService/models/NewsletterDto.ts +14 -0
  387. package/clients/marketingService/models/NewsletterDtoEnvelope.ts +14 -0
  388. package/clients/marketingService/models/NewsletterUpdateDto.ts +12 -0
  389. package/clients/marketingService/models/OrderDto.ts +113 -0
  390. package/clients/{holderService/models/OrderDtoListEnvelope.ts → marketingService/models/OrderDtoEnvelope.ts} +4 -4
  391. package/clients/marketingService/models/SocialMediaPostCreateDto.ts +13 -0
  392. package/clients/marketingService/models/SocialMediaPostDto.ts +15 -0
  393. package/clients/marketingService/models/SocialMediaPostDtoEnvelope.ts +14 -0
  394. package/clients/marketingService/models/SocialMediaPostDtoListEnvelope.ts +14 -0
  395. package/clients/marketingService/models/SocialMediaPostUpdateDto.ts +13 -0
  396. package/clients/marketingService/models/SocialPostBucketCreateDto.ts +12 -0
  397. package/clients/marketingService/models/SocialPostBucketDto.ts +12 -0
  398. package/clients/marketingService/models/SocialPostBucketDtoEnvelope.ts +14 -0
  399. package/clients/marketingService/models/SocialPostBucketDtoListEnvelope.ts +14 -0
  400. package/clients/marketingService/models/SocialPostBucketUpdateDto.ts +10 -0
  401. package/clients/marketingService/services/EmailGroupsService.ts +193 -0
  402. package/clients/marketingService/services/EmailSignaturesService.ts +193 -0
  403. package/clients/marketingService/services/EmailTemplatesService.ts +193 -0
  404. package/clients/marketingService/services/MarketingCampaignsService.ts +193 -0
  405. package/clients/marketingService/services/MarketingListsService.ts +193 -0
  406. package/clients/marketingService/services/NewslettersService.ts +193 -0
  407. package/clients/marketingService/services/SocialMediaPostsService.ts +193 -0
  408. package/clients/marketingService/services/SocialPostBucketsService.ts +193 -0
  409. package/clients/marketingService/services/TrackingPixelsService.ts +31 -0
  410. package/clients/ordersService/index.ts +7 -4
  411. package/clients/ordersService/models/Currency.ts +9 -0
  412. package/clients/ordersService/models/EmptyEnvelope.ts +2 -1
  413. package/clients/ordersService/models/ErrorEnvelope.ts +2 -2
  414. package/clients/ordersService/models/Int32Envelope.ts +13 -0
  415. package/clients/ordersService/models/Money.ts +10 -0
  416. package/clients/ordersService/models/OrderCreateDto.ts +60 -2
  417. package/clients/ordersService/models/OrderDto.ts +93 -7
  418. package/clients/ordersService/models/OrderDtoEnvelope.ts +2 -2
  419. package/clients/ordersService/models/OrderDtoListEnvelope.ts +2 -2
  420. package/clients/ordersService/models/OrderLineCreateDto.ts +100 -0
  421. package/clients/ordersService/models/OrderLineDto.ts +7 -2
  422. package/clients/ordersService/models/OrderLineDtoEnvelope.ts +2 -2
  423. package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +2 -2
  424. package/clients/ordersService/models/OrderLineUpdateDto.ts +97 -0
  425. package/clients/ordersService/models/OrderUpdateDto.ts +29 -1
  426. package/clients/ordersService/services/OrdersService.ts +115 -21
  427. package/clients/pricingService/index.ts +1 -0
  428. package/clients/pricingService/models/Currency.ts +1 -1
  429. package/clients/pricingService/models/EmptyEnvelope.ts +2 -1
  430. package/clients/pricingService/models/ErrorEnvelope.ts +2 -2
  431. package/clients/pricingService/models/Int32Envelope.ts +13 -0
  432. package/clients/pricingService/models/ItemPriceCreateDto.ts +6 -6
  433. package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +2 -2
  434. package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +2 -2
  435. package/clients/pricingService/models/ItemPriceUpdateDto.ts +2 -1
  436. package/clients/pricingService/models/Money.ts +1 -1
  437. package/clients/pricingService/models/MoneyEnvelope.ts +2 -2
  438. package/clients/pricingService/models/PriceListDtoEnvelope.ts +2 -2
  439. package/clients/pricingService/models/PriceListDtoListEnvelope.ts +2 -2
  440. package/clients/pricingService/services/PriceListsService.ts +100 -29
  441. package/clients/pricingService/services/PricesService.ts +18 -3
  442. package/clients/securityService/core/ApiError.ts +25 -0
  443. package/clients/securityService/core/ApiRequestOptions.ts +17 -0
  444. package/clients/securityService/core/ApiResult.ts +11 -0
  445. package/clients/securityService/core/CancelablePromise.ts +131 -0
  446. package/clients/securityService/core/OpenAPI.ts +32 -0
  447. package/clients/securityService/core/request.ts +322 -0
  448. package/clients/securityService/index.ts +24 -0
  449. package/clients/securityService/models/EmptyEnvelope.ts +12 -0
  450. package/clients/securityService/models/ErrorEnvelope.ts +12 -0
  451. package/clients/securityService/models/SecurityPermissionCreateDto.ts +12 -0
  452. package/clients/securityService/models/SecurityPermissionDto.ts +13 -0
  453. package/clients/securityService/models/SecurityPermissionDtoListEnvelope.ts +14 -0
  454. package/clients/securityService/models/SecurityPermissionUpdateDto.ts +9 -0
  455. package/clients/securityService/models/SecurityRoleCreateDto.ts +12 -0
  456. package/clients/securityService/models/SecurityRoleDto.ts +13 -0
  457. package/clients/securityService/models/SecurityRoleDtoListEnvelope.ts +14 -0
  458. package/clients/securityService/models/SecurityRoleUpdateDto.ts +9 -0
  459. package/clients/{holderService/models/TenantEnrollmentDto.ts → securityService/models/TenantEnrolmentDto.ts} +4 -3
  460. package/clients/securityService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  461. package/clients/securityService/services/PermissionsService.ts +399 -0
  462. package/clients/securityService/services/RolesService.ts +430 -0
  463. package/clients/supportService/core/ApiError.ts +25 -0
  464. package/clients/supportService/core/ApiRequestOptions.ts +17 -0
  465. package/clients/supportService/core/ApiResult.ts +11 -0
  466. package/clients/supportService/core/CancelablePromise.ts +131 -0
  467. package/clients/supportService/core/OpenAPI.ts +32 -0
  468. package/clients/supportService/core/request.ts +322 -0
  469. package/clients/supportService/index.ts +54 -0
  470. package/clients/supportService/models/EmptyEnvelope.ts +12 -0
  471. package/clients/supportService/models/ErrorEnvelope.ts +12 -0
  472. package/clients/supportService/models/PrivateMessageDto.ts +15 -0
  473. package/clients/supportService/models/PrivateMessageDtoListEnvelope.ts +14 -0
  474. package/clients/supportService/models/SupportEntitlementCreateDto.ts +57 -0
  475. package/clients/supportService/models/SupportEntitlementDto.ts +57 -0
  476. package/clients/supportService/models/SupportEntitlementDtoEnvelope.ts +14 -0
  477. package/clients/supportService/models/SupportEntitlementDtoListEnvelope.ts +14 -0
  478. package/clients/supportService/models/SupportEntitlementUpdateDto.ts +54 -0
  479. package/clients/supportService/models/SupportRequestAttachmentCreateDto.ts +23 -0
  480. package/clients/supportService/models/SupportRequestAttachmentDto.ts +28 -0
  481. package/clients/supportService/models/SupportRequestAttachmentDtoEnvelope.ts +14 -0
  482. package/clients/supportService/models/SupportRequestAttachmentDtoListEnvelope.ts +14 -0
  483. package/clients/supportService/models/SupportRequestAttachmentUpdateDto.ts +19 -0
  484. package/clients/supportService/models/SupportRequestCreateDto.ts +18 -0
  485. package/clients/supportService/models/SupportRequestDto.ts +18 -0
  486. package/clients/supportService/models/SupportRequestDtoEnvelope.ts +14 -0
  487. package/clients/supportService/models/SupportRequestDtoListEnvelope.ts +14 -0
  488. package/clients/supportService/models/SupportRequestUpdateDto.ts +12 -0
  489. package/clients/supportService/models/SupportTicketConversationCreateDto.ts +13 -0
  490. package/clients/supportService/models/SupportTicketConversationDto.ts +14 -0
  491. package/clients/supportService/models/SupportTicketConversationDtoEnvelope.ts +14 -0
  492. package/clients/supportService/models/SupportTicketConversationDtoListEnvelope.ts +14 -0
  493. package/clients/supportService/models/SupportTicketCreateDto.ts +17 -0
  494. package/clients/supportService/models/SupportTicketDto.ts +17 -0
  495. package/clients/supportService/models/SupportTicketDtoEnvelope.ts +14 -0
  496. package/clients/supportService/models/SupportTicketDtoListEnvelope.ts +14 -0
  497. package/clients/supportService/models/SupportTicketPriorityCreateDto.ts +11 -0
  498. package/clients/supportService/models/SupportTicketPriorityDto.ts +13 -0
  499. package/clients/supportService/models/SupportTicketPriorityDtoEnvelope.ts +14 -0
  500. package/clients/supportService/models/SupportTicketPriorityDtoListEnvelope.ts +14 -0
  501. package/clients/supportService/models/SupportTicketPriorityUpdateDto.ts +9 -0
  502. package/clients/supportService/models/SupportTicketTypeCreateDto.ts +12 -0
  503. package/clients/supportService/models/SupportTicketTypeDto.ts +12 -0
  504. package/clients/supportService/models/SupportTicketTypeDtoEnvelope.ts +14 -0
  505. package/clients/supportService/models/SupportTicketTypeDtoListEnvelope.ts +14 -0
  506. package/clients/supportService/models/SupportTicketTypeUpdateDto.ts +11 -0
  507. package/clients/supportService/models/SupportTicketUpdateDto.ts +14 -0
  508. package/clients/supportService/services/SupportEntitlementsService.ts +163 -0
  509. package/clients/supportService/services/SupportRequestAttachmentsService.ts +163 -0
  510. package/clients/supportService/services/SupportRequestsService.ts +290 -0
  511. package/clients/supportService/services/SupportTicketPrioritiesService.ts +163 -0
  512. package/clients/supportService/services/SupportTicketTypesService.ts +163 -0
  513. package/clients/supportService/services/SupportTicketsService.ts +331 -0
  514. package/clients/systemService/index.ts +19 -0
  515. package/clients/systemService/models/BooleanEnvelope.ts +13 -0
  516. package/clients/systemService/models/ErrorEnvelope.ts +2 -2
  517. package/clients/systemService/models/GeneralValidationFailure.ts +9 -0
  518. package/clients/systemService/models/GeneralValidationFailureListEnvelope.ts +14 -0
  519. package/clients/systemService/models/ISwaggerContact.ts +10 -0
  520. package/clients/systemService/models/ISwaggerEndpoint.ts +10 -0
  521. package/clients/systemService/models/ISwaggerLicense.ts +9 -0
  522. package/clients/systemService/models/ISwaggerSpec.ts +19 -0
  523. package/clients/systemService/models/LicenseValidationRequest.ts +8 -0
  524. package/clients/systemService/models/Module.ts +44 -0
  525. package/clients/systemService/models/ModuleListEnvelope.ts +14 -0
  526. package/clients/systemService/models/StringListEnvelope.ts +2 -2
  527. package/clients/systemService/models/StudioModule.ts +9 -0
  528. package/clients/{catalogService/models/StockItemDtoListEnvelope.ts → systemService/models/StudioModuleListEnvelope.ts} +5 -5
  529. package/clients/systemService/models/SuiteLicenseAssignmentDto.ts +16 -0
  530. package/clients/systemService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  531. package/clients/systemService/models/SuiteLicenseDto.ts +15 -0
  532. package/clients/systemService/models/SuiteLicenseDtoEnvelope.ts +14 -0
  533. package/clients/systemService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  534. package/clients/systemService/services/AntiforgeryService.ts +16 -4
  535. package/clients/systemService/services/LicensingService.ts +230 -0
  536. package/clients/systemService/services/MigrationsService.ts +14 -3
  537. package/clients/systemService/services/ModulesService.ts +61 -0
  538. package/clients/tenantService/index.ts +100 -3
  539. package/clients/tenantService/models/BooleanEnvelope.ts +2 -2
  540. package/clients/tenantService/models/CartDtoEnvelope.ts +2 -2
  541. package/clients/tenantService/models/EmptyEnvelope.ts +2 -1
  542. package/clients/tenantService/models/ErrorEnvelope.ts +2 -2
  543. package/clients/tenantService/models/ExtendedTenantDto.ts +51 -0
  544. package/clients/tenantService/models/ExtendedTenantDtoEnvelope.ts +14 -0
  545. package/clients/tenantService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  546. package/clients/tenantService/models/ExtendedTenantEnrolmentDtoEnvelope.ts +14 -0
  547. package/clients/tenantService/models/NotificationDtoListEnvelope.ts +2 -2
  548. package/clients/tenantService/models/Operation.ts +23 -0
  549. package/clients/tenantService/models/PlatformUserDto.ts +26 -28
  550. package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +2 -2
  551. package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +2 -2
  552. package/clients/tenantService/models/StringListEnvelope.ts +2 -2
  553. package/clients/tenantService/models/SuiteLicenseAssignmentDto.ts +16 -0
  554. package/clients/tenantService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  555. package/clients/tenantService/models/SuiteLicenseDto.ts +15 -0
  556. package/clients/tenantService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  557. package/clients/tenantService/models/SuiteLicenseFeatureDto.ts +9 -0
  558. package/clients/tenantService/models/SuiteLicenseFeatureDtoListEnvelope.ts +14 -0
  559. package/clients/tenantService/models/TenantCreateDto.ts +7 -7
  560. package/clients/tenantService/models/TenantDepartmentCreateDto.ts +16 -0
  561. package/clients/tenantService/models/TenantDepartmentDto.ts +16 -0
  562. package/clients/tenantService/models/TenantDepartmentDtoEnvelope.ts +14 -0
  563. package/clients/tenantService/models/TenantDepartmentDtoListEnvelope.ts +14 -0
  564. package/clients/tenantService/models/TenantDepartmentUpdateDto.ts +12 -0
  565. package/clients/tenantService/models/TenantDto.ts +1 -10
  566. package/clients/tenantService/models/TenantDtoEnvelope.ts +2 -2
  567. package/clients/tenantService/models/TenantEnrollmentCreateDto.ts +11 -0
  568. package/clients/tenantService/models/TenantEnrollmentUpdateDto.ts +9 -0
  569. package/clients/tenantService/models/TenantEnrolmentDto.ts +15 -0
  570. package/clients/tenantService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  571. package/clients/tenantService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  572. package/clients/tenantService/models/TenantIndustryCreateDto.ts +12 -0
  573. package/clients/tenantService/models/TenantIndustryDto.ts +12 -0
  574. package/clients/tenantService/models/TenantIndustryDtoEnvelope.ts +14 -0
  575. package/clients/tenantService/models/TenantIndustryUpdateDto.ts +10 -0
  576. package/clients/tenantService/models/TenantInvitationCreateDto.ts +12 -0
  577. package/clients/tenantService/models/TenantInvitationDto.ts +16 -0
  578. package/clients/tenantService/models/TenantInvitationDtoEnvelope.ts +14 -0
  579. package/clients/tenantService/models/TenantInvitationDtoListEnvelope.ts +14 -0
  580. package/clients/tenantService/models/TenantPositionCreateDto.ts +13 -0
  581. package/clients/tenantService/models/TenantPositionDto.ts +13 -0
  582. package/clients/tenantService/models/TenantPositionDtoEnvelope.ts +14 -0
  583. package/clients/tenantService/models/TenantPositionDtoListEnvelope.ts +14 -0
  584. package/clients/tenantService/models/TenantPositionUpdateDto.ts +9 -0
  585. package/clients/tenantService/models/TenantSegmentCreateDto.ts +12 -0
  586. package/clients/tenantService/models/TenantSegmentDto.ts +12 -0
  587. package/clients/tenantService/models/TenantSegmentDtoEnvelope.ts +14 -0
  588. package/clients/tenantService/models/TenantSegmentDtoListEnvelope.ts +14 -0
  589. package/clients/tenantService/models/TenantSegmentUpdateDto.ts +10 -0
  590. package/clients/tenantService/models/TenantSizeCreateDto.ts +12 -0
  591. package/clients/tenantService/models/TenantSizeDto.ts +12 -0
  592. package/clients/tenantService/models/TenantSizeDtoEnvelope.ts +14 -0
  593. package/clients/tenantService/models/TenantSizeDtoListEnvelope.ts +14 -0
  594. package/clients/tenantService/models/TenantSizeUpdateDto.ts +10 -0
  595. package/clients/tenantService/models/TenantTeamContactEnrollmentCreateDto.ts +13 -0
  596. package/clients/tenantService/models/TenantTeamContactEnrollmentDto.ts +13 -0
  597. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoEnvelope.ts +14 -0
  598. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  599. package/clients/tenantService/models/TenantTeamContactEnrollmentUpdateDto.ts +11 -0
  600. package/clients/tenantService/models/TenantTeamCreateDto.ts +17 -0
  601. package/clients/tenantService/models/TenantTeamDto.ts +17 -0
  602. package/clients/tenantService/models/TenantTeamDtoEnvelope.ts +14 -0
  603. package/clients/tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.ts +14 -0
  604. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentCreateDto.ts +13 -0
  605. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDto.ts +13 -0
  606. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoEnvelope.ts +14 -0
  607. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  608. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentUpdateDto.ts +11 -0
  609. package/clients/tenantService/models/TenantTeamProjectEnrollmentCreateDto.ts +13 -0
  610. package/clients/tenantService/models/TenantTeamProjectEnrollmentDto.ts +13 -0
  611. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoEnvelope.ts +14 -0
  612. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  613. package/clients/tenantService/models/TenantTeamProjectEnrollmentUpdateDto.ts +11 -0
  614. package/clients/tenantService/models/TenantTeamRecordCreateDto.ts +12 -0
  615. package/clients/tenantService/models/TenantTeamRecordDto.ts +12 -0
  616. package/clients/tenantService/models/TenantTeamRecordDtoEnvelope.ts +14 -0
  617. package/clients/tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts +14 -0
  618. package/clients/tenantService/models/TenantTeamRecordUpdateDto.ts +10 -0
  619. package/clients/tenantService/models/TenantTeamUpdateDto.ts +17 -0
  620. package/clients/tenantService/models/TenantTerritoryCreateDto.ts +14 -0
  621. package/clients/tenantService/models/TenantTerritoryDto.ts +14 -0
  622. package/clients/tenantService/models/TenantTerritoryDtoEnvelope.ts +14 -0
  623. package/clients/tenantService/models/TenantTerritoryDtoListEnvelope.ts +14 -0
  624. package/clients/tenantService/models/TenantTerritoryUpdateDto.ts +9 -0
  625. package/clients/tenantService/models/TenantTypeCreateDto.ts +11 -0
  626. package/clients/tenantService/models/TenantTypeDto.ts +11 -0
  627. package/clients/tenantService/models/TenantTypeDtoEnvelope.ts +14 -0
  628. package/clients/tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
  629. package/clients/tenantService/models/TenantTypeUpdateDto.ts +9 -0
  630. package/clients/tenantService/models/TenantUnitCreateDto.ts +18 -0
  631. package/clients/tenantService/models/TenantUnitDto.ts +18 -0
  632. package/clients/tenantService/models/TenantUnitDtoEnvelope.ts +14 -0
  633. package/clients/tenantService/models/TenantUnitDtoListEnvelope.ts +14 -0
  634. package/clients/tenantService/models/TenantUnitUpdateDto.ts +14 -0
  635. package/clients/tenantService/models/TenantUpdateDto.ts +31 -0
  636. package/clients/tenantService/models/WalletDtoEnvelope.ts +2 -2
  637. package/clients/tenantService/models/WebPortalDto.ts +9 -2
  638. package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +2 -2
  639. package/clients/tenantService/services/DepartmentsService.ts +198 -0
  640. package/clients/tenantService/services/EmployeeEnrollmentsService.ts +181 -0
  641. package/clients/tenantService/services/EnrollmentsService.ts +195 -0
  642. package/clients/tenantService/services/IndustriesService.ts +190 -0
  643. package/clients/tenantService/services/InvitationsService.ts +150 -0
  644. package/clients/tenantService/services/PositionsService.ts +192 -0
  645. package/clients/tenantService/services/SegmentsService.ts +191 -0
  646. package/clients/tenantService/services/SizesService.ts +194 -0
  647. package/clients/tenantService/services/TeamContactEnrollmentsService.ts +191 -0
  648. package/clients/tenantService/services/TeamProjectEnrollmentService.ts +181 -0
  649. package/clients/tenantService/services/TeamRecordsService.ts +192 -0
  650. package/clients/tenantService/services/TeamsService.ts +192 -0
  651. package/clients/tenantService/services/TenantsService.ts +580 -49
  652. package/clients/tenantService/services/TerritoriesService.ts +192 -0
  653. package/clients/tenantService/services/TypesService.ts +176 -0
  654. package/clients/tenantService/services/UnitsService.ts +190 -0
  655. package/clients/walletsService/index.ts +5 -3
  656. package/clients/walletsService/models/Currency.ts +9 -0
  657. package/clients/walletsService/models/ErrorEnvelope.ts +2 -2
  658. package/clients/walletsService/models/InvoiceDto.ts +91 -2
  659. package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +2 -2
  660. package/clients/walletsService/models/LocationDto.ts +1 -1
  661. package/clients/walletsService/models/LocationDtoListEnvelope.ts +2 -2
  662. package/clients/walletsService/models/Money.ts +10 -0
  663. package/clients/walletsService/models/OrderDto.ts +93 -7
  664. package/clients/walletsService/models/OrderDtoListEnvelope.ts +2 -2
  665. package/clients/walletsService/models/PaymentDto.ts +81 -4
  666. package/clients/walletsService/models/PaymentDtoListEnvelope.ts +2 -2
  667. package/clients/walletsService/models/WalletDtoEnvelope.ts +2 -2
  668. package/clients/walletsService/services/WalletsService.ts +73 -8
  669. package/package.json +5 -4
  670. package/schemas/accountingService/schema.s.ts +5108 -0
  671. package/schemas/cartService/schema.s.ts +1716 -78
  672. package/schemas/catalogService/schema.s.ts +2810 -1736
  673. package/schemas/crmService/schema.s.ts +892 -138
  674. package/schemas/forexService/schema.s.ts +116 -345
  675. package/schemas/holderService/schema.s.ts +693 -197
  676. package/schemas/identityService/schema.s.ts +125 -103
  677. package/schemas/inventoryService/schema.s.ts +4 -1
  678. package/schemas/invoicingService/schema.s.ts +1758 -105
  679. package/schemas/learningService/schema.s.ts +1723 -0
  680. package/schemas/marketingService/schema.s.ts +3027 -0
  681. package/schemas/ordersService/schema.s.ts +632 -108
  682. package/schemas/pricingService/schema.s.ts +181 -102
  683. package/schemas/securityService/schema.s.ts +1226 -0
  684. package/schemas/supportService/schema.s.ts +2114 -0
  685. package/schemas/systemService/schema.s.ts +1215 -5
  686. package/schemas/tenantService/schema.s.ts +5405 -427
  687. package/schemas/walletsService/schema.s.ts +374 -34
  688. package/wwwroot/build/bundle.js +1 -1
  689. package/clients/catalogService/models/StockItemCreateDto.ts +0 -108
  690. package/clients/catalogService/models/StockItemUpdateDto.ts +0 -106
  691. package/clients/catalogService/services/ProductsService.ts +0 -1706
  692. package/clients/holderService/models/OrderDto.ts +0 -27
  693. package/clients/holderService/models/PaymentDto.ts +0 -17
  694. package/clients/invoicingService/models/ItemPriceUpdateDto.ts +0 -14
  695. package/clients/ordersService/models/ItemPriceCreateDto.ts +0 -20
  696. package/clients/ordersService/models/ItemPriceUpdateDto.ts +0 -14
@@ -6,19 +6,196 @@
6
6
 
7
7
  export interface paths {
8
8
  "/api/v2/Me": {
9
- /** Get the current user profile */
10
9
  get: {
11
10
  parameters: {
12
11
  query?: {
13
12
  "api-version"?: string;
14
13
  };
14
+ header?: {
15
+ "x-api-version"?: string;
16
+ };
15
17
  };
16
18
  responses: {
17
- /** @description Success */
19
+ /** @description OK */
18
20
  200: {
19
21
  content: {
20
22
  "application/json": components["schemas"]["PlatformUserDtoEnvelope"];
21
23
  "application/xml": components["schemas"]["PlatformUserDtoEnvelope"];
24
+ "multipart/form-data": components["schemas"]["PlatformUserDtoEnvelope"];
25
+ };
26
+ };
27
+ /** @description Unauthorized */
28
+ 401: {
29
+ content: {
30
+ "application/json": components["schemas"]["ErrorEnvelope"];
31
+ "application/xml": components["schemas"]["ErrorEnvelope"];
32
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
33
+ };
34
+ };
35
+ };
36
+ };
37
+ put: {
38
+ parameters: {
39
+ query?: {
40
+ "api-version"?: string;
41
+ };
42
+ header?: {
43
+ "x-api-version"?: string;
44
+ };
45
+ };
46
+ requestBody?: {
47
+ content: {
48
+ "application/json": components["schemas"]["PlatformUserUpdateDto"];
49
+ "application/xml": components["schemas"]["PlatformUserUpdateDto"];
50
+ "multipart/form-data": components["schemas"]["PlatformUserUpdateDto"];
51
+ };
52
+ };
53
+ responses: {
54
+ /** @description OK */
55
+ 200: {
56
+ content: {
57
+ "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
58
+ "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
59
+ "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
60
+ };
61
+ };
62
+ /** @description Unauthorized */
63
+ 401: {
64
+ content: {
65
+ "application/json": components["schemas"]["ErrorEnvelope"];
66
+ "application/xml": components["schemas"]["ErrorEnvelope"];
67
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
68
+ };
69
+ };
70
+ };
71
+ };
72
+ patch: {
73
+ parameters: {
74
+ query?: {
75
+ "api-version"?: string;
76
+ };
77
+ header?: {
78
+ "x-api-version"?: string;
79
+ };
80
+ };
81
+ requestBody?: {
82
+ content: {
83
+ "application/json": components["schemas"]["Operation"][];
84
+ "application/xml": components["schemas"]["Operation"][];
85
+ "multipart/form-data": components["schemas"]["Operation"][];
86
+ };
87
+ };
88
+ responses: {
89
+ /** @description OK */
90
+ 200: {
91
+ content: {
92
+ "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
93
+ "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
94
+ "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
95
+ };
96
+ };
97
+ /** @description Unauthorized */
98
+ 401: {
99
+ content: {
100
+ "application/json": components["schemas"]["ErrorEnvelope"];
101
+ "application/xml": components["schemas"]["ErrorEnvelope"];
102
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
103
+ };
104
+ };
105
+ };
106
+ };
107
+ };
108
+ "/api/v2/Me/Extended": {
109
+ get: {
110
+ parameters: {
111
+ query?: {
112
+ "api-version"?: string;
113
+ };
114
+ header?: {
115
+ "x-api-version"?: string;
116
+ };
117
+ };
118
+ responses: {
119
+ /** @description OK */
120
+ 200: {
121
+ content: {
122
+ "application/json": components["schemas"]["ExtendedPlatformUserDtoEnvelope"];
123
+ "application/xml": components["schemas"]["ExtendedPlatformUserDtoEnvelope"];
124
+ "multipart/form-data": components["schemas"]["ExtendedPlatformUserDtoEnvelope"];
125
+ };
126
+ };
127
+ /** @description Unauthorized */
128
+ 401: {
129
+ content: {
130
+ "application/json": components["schemas"]["ErrorEnvelope"];
131
+ "application/xml": components["schemas"]["ErrorEnvelope"];
132
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
133
+ };
134
+ };
135
+ };
136
+ };
137
+ };
138
+ "/api/v2/Me/Avatar": {
139
+ get: {
140
+ parameters: {
141
+ query?: {
142
+ "api-version"?: string;
143
+ };
144
+ header?: {
145
+ "x-api-version"?: string;
146
+ };
147
+ };
148
+ responses: {
149
+ /** @description OK */
150
+ 200: {
151
+ content: {
152
+ "application/json": components["schemas"]["FollowRecordDto"][];
153
+ "application/xml": components["schemas"]["FollowRecordDto"][];
154
+ "multipart/form-data": components["schemas"]["FollowRecordDto"][];
155
+ };
156
+ };
157
+ /** @description Unauthorized */
158
+ 401: {
159
+ content: {
160
+ "application/json": components["schemas"]["ErrorEnvelope"];
161
+ "application/xml": components["schemas"]["ErrorEnvelope"];
162
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
163
+ };
164
+ };
165
+ };
166
+ };
167
+ post: {
168
+ parameters: {
169
+ query?: {
170
+ "api-version"?: string;
171
+ };
172
+ header?: {
173
+ "x-api-version"?: string;
174
+ };
175
+ };
176
+ requestBody?: {
177
+ content: {
178
+ "multipart/form-data": {
179
+ /** Format: binary */
180
+ avatar?: string;
181
+ };
182
+ "application/json": {
183
+ /** Format: binary */
184
+ avatar?: string;
185
+ };
186
+ "application/xml": {
187
+ /** Format: binary */
188
+ avatar?: string;
189
+ };
190
+ };
191
+ };
192
+ responses: {
193
+ /** @description OK */
194
+ 200: {
195
+ content: {
196
+ "application/json": components["schemas"]["EmptyEnvelope"];
197
+ "application/xml": components["schemas"]["EmptyEnvelope"];
198
+ "multipart/form-data": components["schemas"]["EmptyEnvelope"];
22
199
  };
23
200
  };
24
201
  /** @description Unauthorized */
@@ -26,6 +203,15 @@ export interface paths {
26
203
  content: {
27
204
  "application/json": components["schemas"]["ErrorEnvelope"];
28
205
  "application/xml": components["schemas"]["ErrorEnvelope"];
206
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
207
+ };
208
+ };
209
+ /** @description Forbidden */
210
+ 403: {
211
+ content: {
212
+ "application/json": components["schemas"]["ErrorEnvelope"];
213
+ "application/xml": components["schemas"]["ErrorEnvelope"];
214
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
29
215
  };
30
216
  };
31
217
  };
@@ -39,13 +225,17 @@ export interface paths {
39
225
  pageIndex?: number;
40
226
  "api-version"?: string;
41
227
  };
228
+ header?: {
229
+ "x-api-version"?: string;
230
+ };
42
231
  };
43
232
  responses: {
44
- /** @description Success */
233
+ /** @description OK */
45
234
  200: {
46
235
  content: {
47
236
  "application/json": components["schemas"]["FollowRecordDto"][];
48
237
  "application/xml": components["schemas"]["FollowRecordDto"][];
238
+ "multipart/form-data": components["schemas"]["FollowRecordDto"][];
49
239
  };
50
240
  };
51
241
  /** @description Unauthorized */
@@ -53,6 +243,7 @@ export interface paths {
53
243
  content: {
54
244
  "application/json": components["schemas"]["ErrorEnvelope"];
55
245
  "application/xml": components["schemas"]["ErrorEnvelope"];
246
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
56
247
  };
57
248
  };
58
249
  };
@@ -66,13 +257,17 @@ export interface paths {
66
257
  pageIndex?: number;
67
258
  "api-version"?: string;
68
259
  };
260
+ header?: {
261
+ "x-api-version"?: string;
262
+ };
69
263
  };
70
264
  responses: {
71
- /** @description Success */
265
+ /** @description OK */
72
266
  200: {
73
267
  content: {
74
268
  "application/json": components["schemas"]["FollowRecordDto"][];
75
269
  "application/xml": components["schemas"]["FollowRecordDto"][];
270
+ "multipart/form-data": components["schemas"]["FollowRecordDto"][];
76
271
  };
77
272
  };
78
273
  /** @description Unauthorized */
@@ -80,6 +275,7 @@ export interface paths {
80
275
  content: {
81
276
  "application/json": components["schemas"]["ErrorEnvelope"];
82
277
  "application/xml": components["schemas"]["ErrorEnvelope"];
278
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
83
279
  };
84
280
  };
85
281
  };
@@ -91,13 +287,17 @@ export interface paths {
91
287
  query?: {
92
288
  "api-version"?: string;
93
289
  };
290
+ header?: {
291
+ "x-api-version"?: string;
292
+ };
94
293
  };
95
294
  responses: {
96
- /** @description Success */
295
+ /** @description OK */
97
296
  200: {
98
297
  content: {
99
298
  "application/json": components["schemas"]["TenantDtoListEnvelope"];
100
299
  "application/xml": components["schemas"]["TenantDtoListEnvelope"];
300
+ "multipart/form-data": components["schemas"]["TenantDtoListEnvelope"];
101
301
  };
102
302
  };
103
303
  /** @description Unauthorized */
@@ -105,6 +305,7 @@ export interface paths {
105
305
  content: {
106
306
  "application/json": components["schemas"]["ErrorEnvelope"];
107
307
  "application/xml": components["schemas"]["ErrorEnvelope"];
308
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
108
309
  };
109
310
  };
110
311
  /** @description Forbidden */
@@ -112,24 +313,29 @@ export interface paths {
112
313
  content: {
113
314
  "application/json": components["schemas"]["ErrorEnvelope"];
114
315
  "application/xml": components["schemas"]["ErrorEnvelope"];
316
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
115
317
  };
116
318
  };
117
319
  };
118
320
  };
119
321
  };
120
- "/api/v2/Me/Enrollments": {
322
+ "/api/v2/Me/Businesses/Extended": {
121
323
  get: {
122
324
  parameters: {
123
325
  query?: {
124
326
  "api-version"?: string;
125
327
  };
328
+ header?: {
329
+ "x-api-version"?: string;
330
+ };
126
331
  };
127
332
  responses: {
128
- /** @description Success */
333
+ /** @description OK */
129
334
  200: {
130
335
  content: {
131
- "application/json": components["schemas"]["TenantEnrollmentDtoListEnvelope"];
132
- "application/xml": components["schemas"]["TenantEnrollmentDtoListEnvelope"];
336
+ "application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
337
+ "application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
338
+ "multipart/form-data": components["schemas"]["ExtendedTenantDtoListEnvelope"];
133
339
  };
134
340
  };
135
341
  /** @description Unauthorized */
@@ -137,24 +343,37 @@ export interface paths {
137
343
  content: {
138
344
  "application/json": components["schemas"]["ErrorEnvelope"];
139
345
  "application/xml": components["schemas"]["ErrorEnvelope"];
346
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
347
+ };
348
+ };
349
+ /** @description Forbidden */
350
+ 403: {
351
+ content: {
352
+ "application/json": components["schemas"]["ErrorEnvelope"];
353
+ "application/xml": components["schemas"]["ErrorEnvelope"];
354
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
140
355
  };
141
356
  };
142
357
  };
143
358
  };
144
359
  };
145
- "/api/v2/Me/SocialProfile": {
360
+ "/api/v2/Me/Enrollments": {
146
361
  get: {
147
362
  parameters: {
148
363
  query?: {
149
364
  "api-version"?: string;
150
365
  };
366
+ header?: {
367
+ "x-api-version"?: string;
368
+ };
151
369
  };
152
370
  responses: {
153
- /** @description Success */
371
+ /** @description OK */
154
372
  200: {
155
373
  content: {
156
- "application/json": components["schemas"]["SocialProfileDtoEnvelope"];
157
- "application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
374
+ "application/json": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
375
+ "application/xml": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
376
+ "multipart/form-data": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
158
377
  };
159
378
  };
160
379
  /** @description Unauthorized */
@@ -162,24 +381,29 @@ export interface paths {
162
381
  content: {
163
382
  "application/json": components["schemas"]["ErrorEnvelope"];
164
383
  "application/xml": components["schemas"]["ErrorEnvelope"];
384
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
165
385
  };
166
386
  };
167
387
  };
168
388
  };
169
389
  };
170
- "/api/v2/Me/Cart": {
390
+ "/api/v2/Me/Enrollments/Extended": {
171
391
  get: {
172
392
  parameters: {
173
393
  query?: {
174
394
  "api-version"?: string;
175
395
  };
396
+ header?: {
397
+ "x-api-version"?: string;
398
+ };
176
399
  };
177
400
  responses: {
178
- /** @description Success */
401
+ /** @description OK */
179
402
  200: {
180
403
  content: {
181
- "application/json": components["schemas"]["CartDtoEnvelope"];
182
- "application/xml": components["schemas"]["CartDtoEnvelope"];
404
+ "application/json": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
405
+ "application/xml": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
406
+ "multipart/form-data": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
183
407
  };
184
408
  };
185
409
  /** @description Unauthorized */
@@ -187,24 +411,39 @@ export interface paths {
187
411
  content: {
188
412
  "application/json": components["schemas"]["ErrorEnvelope"];
189
413
  "application/xml": components["schemas"]["ErrorEnvelope"];
414
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
190
415
  };
191
416
  };
192
417
  };
193
418
  };
194
419
  };
195
- "/api/v2/Me/Wallet": {
420
+ "/api/v2/Me/Enrollments/{enrollmentId}": {
196
421
  get: {
197
422
  parameters: {
198
423
  query?: {
199
424
  "api-version"?: string;
200
425
  };
426
+ header?: {
427
+ "x-api-version"?: string;
428
+ };
429
+ path: {
430
+ enrollmentId: string;
431
+ };
432
+ };
433
+ requestBody?: {
434
+ content: {
435
+ "application/json": components["schemas"]["EnrollmentId"];
436
+ "application/xml": components["schemas"]["EnrollmentId"];
437
+ "multipart/form-data": components["schemas"]["EnrollmentId"];
438
+ };
201
439
  };
202
440
  responses: {
203
- /** @description Success */
441
+ /** @description OK */
204
442
  200: {
205
443
  content: {
206
- "application/json": components["schemas"]["WalletDtoEnvelope"];
207
- "application/xml": components["schemas"]["WalletDtoEnvelope"];
444
+ "application/json": components["schemas"]["TenantEnrolmentDtoEnvelope"];
445
+ "application/xml": components["schemas"]["TenantEnrolmentDtoEnvelope"];
446
+ "multipart/form-data": components["schemas"]["TenantEnrolmentDtoEnvelope"];
208
447
  };
209
448
  };
210
449
  /** @description Unauthorized */
@@ -212,24 +451,29 @@ export interface paths {
212
451
  content: {
213
452
  "application/json": components["schemas"]["ErrorEnvelope"];
214
453
  "application/xml": components["schemas"]["ErrorEnvelope"];
454
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
215
455
  };
216
456
  };
217
457
  };
218
458
  };
219
459
  };
220
- "/api/v2/Me/Notifications": {
460
+ "/api/v2/Me/SocialProfile": {
221
461
  get: {
222
462
  parameters: {
223
463
  query?: {
224
464
  "api-version"?: string;
225
465
  };
466
+ header?: {
467
+ "x-api-version"?: string;
468
+ };
226
469
  };
227
470
  responses: {
228
- /** @description Success */
471
+ /** @description OK */
229
472
  200: {
230
473
  content: {
231
- "application/json": components["schemas"]["NotificationDtoListEnvelope"];
232
- "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
474
+ "application/json": components["schemas"]["SocialProfileDtoEnvelope"];
475
+ "application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
476
+ "multipart/form-data": components["schemas"]["SocialProfileDtoEnvelope"];
233
477
  };
234
478
  };
235
479
  /** @description Unauthorized */
@@ -237,64 +481,89 @@ export interface paths {
237
481
  content: {
238
482
  "application/json": components["schemas"]["ErrorEnvelope"];
239
483
  "application/xml": components["schemas"]["ErrorEnvelope"];
484
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
240
485
  };
241
486
  };
242
487
  };
243
488
  };
244
489
  };
245
- "/api/v2/Me/Settings": {
490
+ "/api/v2/Me/Cart": {
246
491
  get: {
247
492
  parameters: {
248
493
  query?: {
249
494
  "api-version"?: string;
250
495
  };
496
+ header?: {
497
+ "x-api-version"?: string;
498
+ };
251
499
  };
252
500
  responses: {
501
+ /** @description OK */
502
+ 200: {
503
+ content: {
504
+ "application/json": components["schemas"]["CartDtoEnvelope"];
505
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
506
+ "multipart/form-data": components["schemas"]["CartDtoEnvelope"];
507
+ };
508
+ };
253
509
  /** @description Unauthorized */
254
510
  401: {
255
511
  content: {
256
512
  "application/json": components["schemas"]["ErrorEnvelope"];
257
513
  "application/xml": components["schemas"]["ErrorEnvelope"];
514
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
258
515
  };
259
516
  };
260
517
  };
261
518
  };
262
519
  };
263
- "/api/v2/Me/Library": {
520
+ "/api/v2/Me/Wallet": {
264
521
  get: {
265
522
  parameters: {
266
523
  query?: {
267
524
  "api-version"?: string;
268
525
  };
526
+ header?: {
527
+ "x-api-version"?: string;
528
+ };
269
529
  };
270
530
  responses: {
271
- /** @description Success */
531
+ /** @description OK */
272
532
  200: {
273
- content: never;
533
+ content: {
534
+ "application/json": components["schemas"]["WalletDtoEnvelope"];
535
+ "application/xml": components["schemas"]["WalletDtoEnvelope"];
536
+ "multipart/form-data": components["schemas"]["WalletDtoEnvelope"];
537
+ };
274
538
  };
275
539
  /** @description Unauthorized */
276
540
  401: {
277
541
  content: {
278
542
  "application/json": components["schemas"]["ErrorEnvelope"];
279
543
  "application/xml": components["schemas"]["ErrorEnvelope"];
544
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
280
545
  };
281
546
  };
282
547
  };
283
548
  };
284
549
  };
285
- "/api/v2/Me/Addresses": {
550
+ "/api/v2/Me/Notifications": {
286
551
  get: {
287
552
  parameters: {
288
553
  query?: {
289
554
  "api-version"?: string;
290
555
  };
556
+ header?: {
557
+ "x-api-version"?: string;
558
+ };
291
559
  };
292
560
  responses: {
293
- /** @description Success */
561
+ /** @description OK */
294
562
  200: {
295
563
  content: {
296
- "application/json": components["schemas"]["AddressDtoListEnvelope"];
297
- "application/xml": components["schemas"]["AddressDtoListEnvelope"];
564
+ "application/json": components["schemas"]["NotificationDtoListEnvelope"];
565
+ "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
566
+ "multipart/form-data": components["schemas"]["NotificationDtoListEnvelope"];
298
567
  };
299
568
  };
300
569
  /** @description Unauthorized */
@@ -302,24 +571,64 @@ export interface paths {
302
571
  content: {
303
572
  "application/json": components["schemas"]["ErrorEnvelope"];
304
573
  "application/xml": components["schemas"]["ErrorEnvelope"];
574
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
305
575
  };
306
576
  };
307
577
  };
308
578
  };
309
579
  };
310
- "/api/v2/Me/Orders": {
580
+ "/api/v2/Me/Settings": {
311
581
  get: {
312
582
  parameters: {
313
583
  query?: {
314
584
  "api-version"?: string;
315
585
  };
586
+ header?: {
587
+ "x-api-version"?: string;
588
+ };
589
+ };
590
+ responses: {
591
+ /** @description OK */
592
+ 200: {
593
+ content: {
594
+ "application/json": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
595
+ "application/xml": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
596
+ "multipart/form-data": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
597
+ };
598
+ };
599
+ /** @description Unauthorized */
600
+ 401: {
601
+ content: {
602
+ "application/json": components["schemas"]["ErrorEnvelope"];
603
+ "application/xml": components["schemas"]["ErrorEnvelope"];
604
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
605
+ };
606
+ };
607
+ };
608
+ };
609
+ put: {
610
+ parameters: {
611
+ query?: {
612
+ "api-version"?: string;
613
+ };
614
+ header?: {
615
+ "x-api-version"?: string;
616
+ };
617
+ };
618
+ requestBody?: {
619
+ content: {
620
+ "application/json": components["schemas"]["PlatformUserSettingsUpdateDto"];
621
+ "application/xml": components["schemas"]["PlatformUserSettingsUpdateDto"];
622
+ "multipart/form-data": components["schemas"]["PlatformUserSettingsUpdateDto"];
623
+ };
316
624
  };
317
625
  responses: {
318
- /** @description Success */
626
+ /** @description OK */
319
627
  200: {
320
628
  content: {
321
- "application/json": components["schemas"]["OrderDtoListEnvelope"];
322
- "application/xml": components["schemas"]["OrderDtoListEnvelope"];
629
+ "application/json": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
630
+ "application/xml": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
631
+ "multipart/form-data": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
323
632
  };
324
633
  };
325
634
  /** @description Unauthorized */
@@ -327,24 +636,29 @@ export interface paths {
327
636
  content: {
328
637
  "application/json": components["schemas"]["ErrorEnvelope"];
329
638
  "application/xml": components["schemas"]["ErrorEnvelope"];
639
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
330
640
  };
331
641
  };
332
642
  };
333
643
  };
334
644
  };
335
- "/api/v2/Me/Invoices": {
645
+ "/api/v2/Me/Addresses": {
336
646
  get: {
337
647
  parameters: {
338
648
  query?: {
339
649
  "api-version"?: string;
340
650
  };
651
+ header?: {
652
+ "x-api-version"?: string;
653
+ };
341
654
  };
342
655
  responses: {
343
- /** @description Success */
656
+ /** @description OK */
344
657
  200: {
345
658
  content: {
346
- "application/json": components["schemas"]["InvoiceDtoListEnvelope"];
347
- "application/xml": components["schemas"]["InvoiceDtoListEnvelope"];
659
+ "application/json": components["schemas"]["AddressDtoListEnvelope"];
660
+ "application/xml": components["schemas"]["AddressDtoListEnvelope"];
661
+ "multipart/form-data": components["schemas"]["AddressDtoListEnvelope"];
348
662
  };
349
663
  };
350
664
  /** @description Unauthorized */
@@ -352,24 +666,29 @@ export interface paths {
352
666
  content: {
353
667
  "application/json": components["schemas"]["ErrorEnvelope"];
354
668
  "application/xml": components["schemas"]["ErrorEnvelope"];
669
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
355
670
  };
356
671
  };
357
672
  };
358
673
  };
359
674
  };
360
- "/api/v2/Me/Payments": {
675
+ "/api/v2/Me/Invitations": {
361
676
  get: {
362
677
  parameters: {
363
678
  query?: {
364
679
  "api-version"?: string;
365
680
  };
681
+ header?: {
682
+ "x-api-version"?: string;
683
+ };
366
684
  };
367
685
  responses: {
368
- /** @description Success */
686
+ /** @description OK */
369
687
  200: {
370
688
  content: {
371
- "application/json": components["schemas"]["PaymentDtoListEnvelope"];
372
- "application/xml": components["schemas"]["PaymentDtoListEnvelope"];
689
+ "application/json": components["schemas"]["TenantInvitationDtoListEnvelope"];
690
+ "application/xml": components["schemas"]["TenantInvitationDtoListEnvelope"];
691
+ "multipart/form-data": components["schemas"]["TenantInvitationDtoListEnvelope"];
373
692
  };
374
693
  };
375
694
  /** @description Unauthorized */
@@ -377,6 +696,7 @@ export interface paths {
377
696
  content: {
378
697
  "application/json": components["schemas"]["ErrorEnvelope"];
379
698
  "application/xml": components["schemas"]["ErrorEnvelope"];
699
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
380
700
  };
381
701
  };
382
702
  };
@@ -402,7 +722,7 @@ export interface components {
402
722
  address3?: string | null;
403
723
  unit?: string | null;
404
724
  cityId?: string | null;
405
- countryStateId?: string | null;
725
+ stateId?: string | null;
406
726
  postalCode?: string | null;
407
727
  countryId?: string | null;
408
728
  /** Format: double */
@@ -418,12 +738,12 @@ export interface components {
418
738
  isDefaultSuppingLocation?: boolean;
419
739
  };
420
740
  AddressDtoListEnvelope: {
421
- errorMessage?: string | null;
422
741
  isSuccess?: boolean;
742
+ errorMessage?: string | null;
743
+ correlationId?: string | null;
423
744
  /** Format: date-time */
424
745
  timestamp?: string;
425
746
  activityId?: string | null;
426
- correlationId?: string | null;
427
747
  result?: components["schemas"]["AddressDto"][] | null;
428
748
  };
429
749
  CartDto: {
@@ -446,154 +766,243 @@ export interface components {
446
766
  itemToCompareRecordsCount?: number | null;
447
767
  };
448
768
  CartDtoEnvelope: {
449
- errorMessage?: string | null;
450
769
  isSuccess?: boolean;
770
+ errorMessage?: string | null;
771
+ correlationId?: string | null;
451
772
  /** Format: date-time */
452
773
  timestamp?: string;
453
774
  activityId?: string | null;
454
- correlationId?: string | null;
455
775
  result?: components["schemas"]["CartDto"];
456
776
  };
457
- ErrorEnvelope: {
458
- errorMessage?: string | null;
777
+ EmptyEnvelope: {
459
778
  isSuccess?: boolean;
779
+ errorMessage?: string | null;
780
+ correlationId?: string | null;
460
781
  /** Format: date-time */
461
782
  timestamp?: string;
462
783
  activityId?: string | null;
463
- correlationId?: string | null;
464
- };
465
- FollowRecordDto: {
466
- id?: string | null;
467
- type?: string | null;
468
- followerID?: string | null;
469
- followedID?: string | null;
470
- alerts?: boolean;
471
784
  };
472
- InvoiceDto: {
473
- id?: string | null;
785
+ EmptyEnvelopeEnvelope: {
786
+ isSuccess?: boolean;
787
+ errorMessage?: string | null;
788
+ correlationId?: string | null;
474
789
  /** Format: date-time */
475
- timestamp?: string | null;
476
- orderID?: string | null;
477
- businessID?: string | null;
478
- /** Format: double */
479
- forexRate?: number;
480
- /** Format: double */
481
- totalAmountInUsd?: number;
790
+ timestamp?: string;
791
+ activityId?: string | null;
792
+ result?: components["schemas"]["EmptyEnvelope"];
482
793
  };
483
- InvoiceDtoListEnvelope: {
484
- errorMessage?: string | null;
794
+ EnrollmentId: Record<string, never>;
795
+ ErrorEnvelope: {
485
796
  isSuccess?: boolean;
797
+ errorMessage?: string | null;
798
+ correlationId?: string | null;
486
799
  /** Format: date-time */
487
800
  timestamp?: string;
488
801
  activityId?: string | null;
489
- correlationId?: string | null;
490
- result?: components["schemas"]["InvoiceDto"][] | null;
491
802
  };
492
- NotificationDto: {
803
+ ExtendedPlatformUserDto: {
493
804
  id?: string | null;
494
805
  /** Format: date-time */
495
806
  timestamp?: string | null;
496
- read?: boolean;
497
- icon?: string | null;
498
- message?: string | null;
499
- redirectUrl?: string | null;
500
- socialProfileID?: string | null;
501
- /** Format: date-time */
502
- readTimestamp?: string;
503
- /** Format: date-time */
504
- issuedTimestamp?: string;
505
- };
506
- NotificationDtoListEnvelope: {
507
- errorMessage?: string | null;
807
+ fullName?: string | null;
808
+ socialProfileId?: string | null;
809
+ publicName?: string | null;
810
+ firstName?: string | null;
811
+ lastName?: string | null;
812
+ coverUrl?: string | null;
813
+ avatarUrl?: string | null;
814
+ timezoneId?: string | null;
815
+ gitHubUrl?: string | null;
816
+ websiteUrl?: string | null;
817
+ twitterUrl?: string | null;
818
+ facebookUrl?: string | null;
819
+ youTubeUrl?: string | null;
820
+ linkedInUrl?: string | null;
821
+ instagramUrl?: string | null;
822
+ countryId?: string | null;
823
+ /** Format: date-time */
824
+ birthday?: string | null;
825
+ qualifiedName?: string | null;
826
+ idProvider?: string | null;
827
+ languageId?: string | null;
828
+ /**
829
+ * Format: int32
830
+ * @enum {integer|null}
831
+ */
832
+ gender?: 0 | 1 | 2 | null;
833
+ cityId?: string | null;
834
+ stateId?: string | null;
835
+ email?: string | null;
836
+ about?: string | null;
837
+ jobTitle?: string | null;
838
+ socialFeedId?: string | null;
839
+ currentTenantId?: string | null;
840
+ currentEnrollmentId?: string | null;
841
+ status?: string | null;
842
+ cartId?: string | null;
843
+ walletId?: string | null;
844
+ userName?: string | null;
845
+ currencyId?: string | null;
846
+ phoneNumber?: string | null;
847
+ publicIdentifier?: string | null;
848
+ identityProvider?: string | null;
849
+ phoneNumberConfirmed?: boolean;
850
+ emailConfirmed?: boolean;
851
+ lockoutEnabled?: boolean;
852
+ /**
853
+ * Format: int32
854
+ * @enum {integer|null}
855
+ */
856
+ availability?: 0 | 1 | 2 | 3 | 4 | null;
857
+ /** Format: int32 */
858
+ enrollmentsCount?: number | null;
859
+ /**
860
+ * Format: int32
861
+ * @enum {integer|null}
862
+ */
863
+ siteTheme?: 0 | 1 | 2 | null;
864
+ cart?: components["schemas"]["CartDto"];
865
+ wallet?: components["schemas"]["WalletDto"];
866
+ socialProfile?: components["schemas"]["SocialProfileDto"];
867
+ settings?: components["schemas"]["PlatformUserSettingsDto"];
868
+ };
869
+ ExtendedPlatformUserDtoEnvelope: {
508
870
  isSuccess?: boolean;
871
+ errorMessage?: string | null;
872
+ correlationId?: string | null;
509
873
  /** Format: date-time */
510
874
  timestamp?: string;
511
875
  activityId?: string | null;
512
- correlationId?: string | null;
513
- result?: components["schemas"]["NotificationDto"][] | null;
876
+ result?: components["schemas"]["ExtendedPlatformUserDto"];
514
877
  };
515
- OrderDto: {
878
+ ExtendedTenantDto: {
516
879
  id?: string | null;
517
880
  /** Format: date-time */
518
881
  timestamp?: string | null;
519
- firstName?: string | null;
520
- lastName?: string | null;
521
- billingEmail?: string | null;
522
- companyName?: string | null;
523
- addressLine1?: string | null;
524
- addressLine2?: string | null;
525
- postalCode?: string | null;
882
+ qualifiedName?: string | null;
883
+ taxId?: string | null;
884
+ about?: string | null;
885
+ walletId?: string | null;
886
+ socialFeedId?: string | null;
887
+ businessIndustryId?: string | null;
888
+ businessSegmentId?: string | null;
889
+ socialProfileId?: string | null;
890
+ languageId?: string | null;
891
+ name?: string | null;
892
+ duns?: string | null;
893
+ slogan?: string | null;
894
+ legalName?: string | null;
895
+ coverUrl?: string | null;
896
+ avatarUrl?: string | null;
897
+ cartId?: string | null;
898
+ currencyId?: string | null;
899
+ timezoneId?: string | null;
526
900
  countryId?: string | null;
527
- countryStateId?: string | null;
901
+ stateId?: string | null;
528
902
  cityId?: string | null;
529
- customerNotes?: string | null;
530
- businessId?: string | null;
531
- currencyId?: string | null;
532
- orderStatus?: string | null;
533
- /** Format: double */
534
- forexRate?: number;
535
- /** Format: int32 */
536
- orderLinesCount?: number;
537
- /** Format: double */
538
- totalAmountInUsd?: number;
539
- /** Format: double */
540
- totalTaxesInUsd?: number;
903
+ email?: string | null;
904
+ phone?: string | null;
905
+ webUrl?: string | null;
906
+ facebookUrl?: string | null;
907
+ twitterUrl?: string | null;
908
+ gitHubUrl?: string | null;
909
+ linkedInUrl?: string | null;
910
+ instagramUrl?: string | null;
911
+ youTubeUrl?: string | null;
912
+ whatsAppNumber?: string | null;
913
+ supportPhoneNumber?: string | null;
914
+ verified?: boolean;
915
+ businessName?: string | null;
916
+ businessLegalName?: string | null;
917
+ twitterUsername?: string | null;
918
+ cart?: components["schemas"]["CartDto"];
919
+ wallet?: components["schemas"]["WalletDto"];
920
+ socialProfile?: components["schemas"]["SocialProfileDto"];
541
921
  };
542
- OrderDtoListEnvelope: {
543
- errorMessage?: string | null;
922
+ ExtendedTenantDtoListEnvelope: {
544
923
  isSuccess?: boolean;
924
+ errorMessage?: string | null;
925
+ correlationId?: string | null;
545
926
  /** Format: date-time */
546
927
  timestamp?: string;
547
928
  activityId?: string | null;
548
- correlationId?: string | null;
549
- result?: components["schemas"]["OrderDto"][] | null;
929
+ result?: components["schemas"]["ExtendedTenantDto"][] | null;
550
930
  };
551
- PaymentDto: {
931
+ ExtendedTenantEnrolmentDto: {
552
932
  id?: string | null;
553
933
  /** Format: date-time */
554
- timestamp?: string;
555
- invoiceID?: string | null;
556
- businessID?: string | null;
557
- emisorWalletId?: string | null;
558
- receptorWalletId?: string | null;
559
- currencyID?: string | null;
560
- /** Format: double */
561
- forexRate?: number;
562
- /** Format: double */
563
- totalCost?: number;
564
- /** Format: double */
565
- totalTaxes?: number;
934
+ timestamp?: string | null;
935
+ tenantId?: string | null;
936
+ userId?: string | null;
937
+ isRoot?: boolean;
938
+ isOwner?: boolean;
939
+ isAdmin?: boolean;
940
+ isDisabled?: boolean;
941
+ tenant?: components["schemas"]["TenantDto"];
942
+ user?: components["schemas"]["PlatformUserDto"];
566
943
  };
567
- PaymentDtoListEnvelope: {
568
- errorMessage?: string | null;
944
+ ExtendedTenantEnrolmentDtoListEnvelope: {
569
945
  isSuccess?: boolean;
946
+ errorMessage?: string | null;
947
+ correlationId?: string | null;
570
948
  /** Format: date-time */
571
949
  timestamp?: string;
572
950
  activityId?: string | null;
951
+ result?: components["schemas"]["ExtendedTenantEnrolmentDto"][] | null;
952
+ };
953
+ FollowRecordDto: {
954
+ id?: string | null;
955
+ type?: string | null;
956
+ followerID?: string | null;
957
+ followedID?: string | null;
958
+ alerts?: boolean;
959
+ };
960
+ NotificationDto: {
961
+ id?: string | null;
962
+ /** Format: date-time */
963
+ timestamp?: string | null;
964
+ read?: boolean;
965
+ icon?: string | null;
966
+ message?: string | null;
967
+ redirectUrl?: string | null;
968
+ socialProfileID?: string | null;
969
+ /** Format: date-time */
970
+ readTimestamp?: string;
971
+ /** Format: date-time */
972
+ issuedTimestamp?: string;
973
+ };
974
+ NotificationDtoListEnvelope: {
975
+ isSuccess?: boolean;
976
+ errorMessage?: string | null;
573
977
  correlationId?: string | null;
574
- result?: components["schemas"]["PaymentDto"][] | null;
978
+ /** Format: date-time */
979
+ timestamp?: string;
980
+ activityId?: string | null;
981
+ result?: components["schemas"]["NotificationDto"][] | null;
982
+ };
983
+ Operation: {
984
+ /**
985
+ * Format: int32
986
+ * @enum {integer}
987
+ */
988
+ operationType?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
989
+ path?: string | null;
990
+ op?: string | null;
991
+ from?: string | null;
992
+ value?: unknown;
575
993
  };
576
994
  PlatformUserDto: {
577
995
  id?: string | null;
578
996
  /** Format: date-time */
579
997
  timestamp?: string | null;
580
- qualifiedName?: string | null;
581
- /** Format: date-time */
582
- birthday?: string;
998
+ fullName?: string | null;
999
+ socialProfileId?: string | null;
1000
+ publicName?: string | null;
583
1001
  firstName?: string | null;
584
1002
  lastName?: string | null;
585
- publicName?: string | null;
586
- idProvider?: string | null;
587
- languageId?: string | null;
588
- timezoneId?: string | null;
589
- gender?: string | null;
590
- cityId?: string | null;
591
- stateId?: string | null;
592
- email?: string | null;
593
- about?: string | null;
594
- jobTitle?: string | null;
595
1003
  coverUrl?: string | null;
596
1004
  avatarUrl?: string | null;
1005
+ timezoneId?: string | null;
597
1006
  gitHubUrl?: string | null;
598
1007
  websiteUrl?: string | null;
599
1008
  twitterUrl?: string | null;
@@ -601,57 +1010,128 @@ export interface components {
601
1010
  youTubeUrl?: string | null;
602
1011
  linkedInUrl?: string | null;
603
1012
  instagramUrl?: string | null;
604
- lockoutEnabled?: boolean;
1013
+ countryId?: string | null;
1014
+ /** Format: date-time */
1015
+ birthday?: string | null;
1016
+ qualifiedName?: string | null;
1017
+ idProvider?: string | null;
1018
+ languageId?: string | null;
1019
+ /**
1020
+ * Format: int32
1021
+ * @enum {integer|null}
1022
+ */
1023
+ gender?: 0 | 1 | 2 | null;
1024
+ cityId?: string | null;
1025
+ stateId?: string | null;
1026
+ email?: string | null;
1027
+ about?: string | null;
1028
+ jobTitle?: string | null;
605
1029
  socialFeedId?: string | null;
606
- socialProfileId?: string | null;
607
1030
  currentTenantId?: string | null;
608
1031
  currentEnrollmentId?: string | null;
1032
+ status?: string | null;
609
1033
  cartId?: string | null;
610
1034
  walletId?: string | null;
611
- countryId?: string | null;
612
- currencyId?: string | null;
613
1035
  userName?: string | null;
614
- status?: string | null;
1036
+ currencyId?: string | null;
615
1037
  phoneNumber?: string | null;
616
1038
  publicIdentifier?: string | null;
617
1039
  identityProvider?: string | null;
618
1040
  phoneNumberConfirmed?: boolean;
619
1041
  emailConfirmed?: boolean;
1042
+ lockoutEnabled?: boolean;
620
1043
  /**
621
1044
  * Format: int32
622
- * @enum {integer}
1045
+ * @enum {integer|null}
623
1046
  */
624
- themeMode?: 0 | 1 | 2;
1047
+ availability?: 0 | 1 | 2 | 3 | 4 | null;
1048
+ /** Format: int32 */
1049
+ enrollmentsCount?: number | null;
625
1050
  /**
626
1051
  * Format: int32
627
- * @enum {integer}
1052
+ * @enum {integer|null}
628
1053
  */
629
- availability?: 0 | 1 | 2 | 3 | 4;
630
- /** Format: int32 */
631
- followsCount?: number | null;
632
- /** Format: int32 */
633
- followersCount?: number | null;
634
- /** Format: int32 */
635
- enrollmentsCount?: number | null;
636
- /** Format: int32 */
637
- socialPostsCount?: number | null;
638
- /** Format: int32 */
639
- unreadMessagesCount?: number | null;
640
- /** Format: int32 */
641
- unreadNotificationsCount?: number | null;
642
- webUrl?: string | null;
643
- countryStateId?: string | null;
644
- selectedBusinessId?: string | null;
1054
+ siteTheme?: 0 | 1 | 2 | null;
645
1055
  };
646
1056
  PlatformUserDtoEnvelope: {
647
- errorMessage?: string | null;
648
1057
  isSuccess?: boolean;
1058
+ errorMessage?: string | null;
1059
+ correlationId?: string | null;
649
1060
  /** Format: date-time */
650
1061
  timestamp?: string;
651
1062
  activityId?: string | null;
652
- correlationId?: string | null;
653
1063
  result?: components["schemas"]["PlatformUserDto"];
654
1064
  };
1065
+ PlatformUserSettingsDto: {
1066
+ id?: string | null;
1067
+ /** Format: date-time */
1068
+ timestamp?: string | null;
1069
+ /** Format: int32 */
1070
+ pageSize?: number;
1071
+ dateFormat?: string | null;
1072
+ currencyFormat?: string | null;
1073
+ dateTimeFormat?: string | null;
1074
+ /**
1075
+ * Format: int32
1076
+ * @enum {integer}
1077
+ */
1078
+ siteTheme?: 0 | 1 | 2;
1079
+ };
1080
+ PlatformUserSettingsDtoEnvelope: {
1081
+ isSuccess?: boolean;
1082
+ errorMessage?: string | null;
1083
+ correlationId?: string | null;
1084
+ /** Format: date-time */
1085
+ timestamp?: string;
1086
+ activityId?: string | null;
1087
+ result?: components["schemas"]["PlatformUserSettingsDto"];
1088
+ };
1089
+ PlatformUserSettingsUpdateDto: {
1090
+ /** Format: int32 */
1091
+ pageSize?: number | null;
1092
+ dateFormat: string;
1093
+ currencyFormat: string;
1094
+ dateTimeFormat: string;
1095
+ /**
1096
+ * Format: int32
1097
+ * @enum {integer}
1098
+ */
1099
+ siteTheme: 0 | 1 | 2;
1100
+ };
1101
+ PlatformUserUpdateDto: {
1102
+ /** Format: date-time */
1103
+ birthday?: string | null;
1104
+ firstName?: string | null;
1105
+ lastName?: string | null;
1106
+ publicName?: string | null;
1107
+ idProvider?: string | null;
1108
+ languageId?: string | null;
1109
+ timezoneId?: string | null;
1110
+ gender?: string | null;
1111
+ cityId?: string | null;
1112
+ currencyId?: string | null;
1113
+ status?: string | null;
1114
+ stateId?: string | null;
1115
+ about?: string | null;
1116
+ webUrl?: string | null;
1117
+ jobTitle?: string | null;
1118
+ coverUrl?: string | null;
1119
+ avatarUrl?: string | null;
1120
+ gitHubUrl?: string | null;
1121
+ websiteUrl?: string | null;
1122
+ twitterUrl?: string | null;
1123
+ facebookUrl?: string | null;
1124
+ youTubeUrl?: string | null;
1125
+ linkedInUrl?: string | null;
1126
+ instagramUrl?: string | null;
1127
+ countryId?: string | null;
1128
+ githubUsername?: string | null;
1129
+ /**
1130
+ * Format: int32
1131
+ * @enum {integer}
1132
+ */
1133
+ availability?: 0 | 1 | 2 | 3 | 4;
1134
+ };
655
1135
  SocialProfileDto: {
656
1136
  id?: string | null;
657
1137
  /** Format: date-time */
@@ -690,12 +1170,12 @@ export interface components {
690
1170
  notes?: string | null;
691
1171
  };
692
1172
  SocialProfileDtoEnvelope: {
693
- errorMessage?: string | null;
694
1173
  isSuccess?: boolean;
1174
+ errorMessage?: string | null;
1175
+ correlationId?: string | null;
695
1176
  /** Format: date-time */
696
1177
  timestamp?: string;
697
1178
  activityId?: string | null;
698
- correlationId?: string | null;
699
1179
  result?: components["schemas"]["SocialProfileDto"];
700
1180
  };
701
1181
  TenantDto: {
@@ -721,25 +1201,8 @@ export interface components {
721
1201
  currencyId?: string | null;
722
1202
  timezoneId?: string | null;
723
1203
  countryId?: string | null;
724
- countryStateId?: string | null;
1204
+ stateId?: string | null;
725
1205
  cityId?: string | null;
726
- /** Format: double */
727
- reviewsAvg?: number | null;
728
- /** Format: int32 */
729
- reviewsCount?: number | null;
730
- /** Format: int32 */
731
- followsCount?: number | null;
732
- /** Format: int32 */
733
- followersCount?: number | null;
734
- /** Format: int32 */
735
- enrollmentsCount?: number | null;
736
- /** Format: int32 */
737
- socialPostsCount?: number | null;
738
- /** Format: int32 */
739
- unreadMessagesCount?: number | null;
740
- /** Format: int32 */
741
- unreadNotificationsCount?: number | null;
742
- enrollmentID?: string | null;
743
1206
  email?: string | null;
744
1207
  phone?: string | null;
745
1208
  webUrl?: string | null;
@@ -757,31 +1220,64 @@ export interface components {
757
1220
  twitterUsername?: string | null;
758
1221
  };
759
1222
  TenantDtoListEnvelope: {
760
- errorMessage?: string | null;
761
1223
  isSuccess?: boolean;
1224
+ errorMessage?: string | null;
1225
+ correlationId?: string | null;
762
1226
  /** Format: date-time */
763
1227
  timestamp?: string;
764
1228
  activityId?: string | null;
765
- correlationId?: string | null;
766
1229
  result?: components["schemas"]["TenantDto"][] | null;
767
1230
  };
768
- TenantEnrollmentDto: {
1231
+ TenantEnrolmentDto: {
769
1232
  id?: string | null;
1233
+ /** Format: date-time */
1234
+ timestamp?: string | null;
1235
+ tenantId?: string | null;
1236
+ userId?: string | null;
770
1237
  isRoot?: boolean;
771
1238
  isOwner?: boolean;
772
1239
  isAdmin?: boolean;
773
1240
  isDisabled?: boolean;
774
- tenantId?: string | null;
775
- userId?: string | null;
776
1241
  };
777
- TenantEnrollmentDtoListEnvelope: {
1242
+ TenantEnrolmentDtoEnvelope: {
1243
+ isSuccess?: boolean;
778
1244
  errorMessage?: string | null;
1245
+ correlationId?: string | null;
1246
+ /** Format: date-time */
1247
+ timestamp?: string;
1248
+ activityId?: string | null;
1249
+ result?: components["schemas"]["TenantEnrolmentDto"];
1250
+ };
1251
+ TenantEnrolmentDtoListEnvelope: {
779
1252
  isSuccess?: boolean;
1253
+ errorMessage?: string | null;
1254
+ correlationId?: string | null;
780
1255
  /** Format: date-time */
781
1256
  timestamp?: string;
782
1257
  activityId?: string | null;
1258
+ result?: components["schemas"]["TenantEnrolmentDto"][] | null;
1259
+ };
1260
+ TenantInvitationDto: {
1261
+ id?: string | null;
1262
+ /** Format: date-time */
1263
+ timestamp?: string | null;
1264
+ tenantId?: string | null;
1265
+ revoked?: boolean;
1266
+ redeemed?: boolean;
1267
+ /** Format: date-time */
1268
+ redeemedTimestamp?: string | null;
1269
+ userEmail?: string | null;
1270
+ creatorEnrollmentId?: string | null;
1271
+ relatedEnrollmentId?: string | null;
1272
+ };
1273
+ TenantInvitationDtoListEnvelope: {
1274
+ isSuccess?: boolean;
1275
+ errorMessage?: string | null;
783
1276
  correlationId?: string | null;
784
- result?: components["schemas"]["TenantEnrollmentDto"][] | null;
1277
+ /** Format: date-time */
1278
+ timestamp?: string;
1279
+ activityId?: string | null;
1280
+ result?: components["schemas"]["TenantInvitationDto"][] | null;
785
1281
  };
786
1282
  WalletDto: {
787
1283
  id?: string | null;
@@ -808,12 +1304,12 @@ export interface components {
808
1304
  rollingReservePercent?: number;
809
1305
  };
810
1306
  WalletDtoEnvelope: {
811
- errorMessage?: string | null;
812
1307
  isSuccess?: boolean;
1308
+ errorMessage?: string | null;
1309
+ correlationId?: string | null;
813
1310
  /** Format: date-time */
814
1311
  timestamp?: string;
815
1312
  activityId?: string | null;
816
- correlationId?: string | null;
817
1313
  result?: components["schemas"]["WalletDto"];
818
1314
  };
819
1315
  };