@fenixalliance/abs-api-client 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (978) hide show
  1. package/FenixAlliance.ABP.SDK.TypeScript.sln +25 -0
  2. package/FenixAlliance.ABP.SDK.TypeScript.xml +8 -0
  3. package/app/index.ts +5 -0
  4. package/clients/{contactService → accountingService}/core/ApiError.ts +24 -24
  5. package/clients/{contactService → accountingService}/core/ApiRequestOptions.ts +16 -16
  6. package/clients/{contactService → accountingService}/core/ApiResult.ts +10 -10
  7. package/clients/{contactService → accountingService}/core/CancelablePromise.ts +130 -130
  8. package/clients/{contactService → accountingService}/core/OpenAPI.ts +31 -31
  9. package/clients/{contactService → accountingService}/core/request.ts +321 -321
  10. package/clients/accountingService/index.ts +97 -0
  11. package/clients/accountingService/models/AccountCreateDto.ts +30 -0
  12. package/clients/accountingService/models/AccountDto.ts +41 -0
  13. package/clients/{catalogService/models/StockItemDtoEnvelope.ts → accountingService/models/AccountDtoEnvelope.ts} +5 -5
  14. package/clients/accountingService/models/AccountDtoListEnvelope.ts +14 -0
  15. package/clients/accountingService/models/AccountUpdateDto.ts +26 -0
  16. package/clients/accountingService/models/AccountingEntryCreateDto.ts +26 -0
  17. package/clients/accountingService/models/AccountingEntryDto.ts +34 -0
  18. package/clients/{catalogService/models/ItemPricePolicyDtoEnvelope.ts → accountingService/models/AccountingEntryDtoEnvelope.ts} +5 -5
  19. package/clients/accountingService/models/AccountingEntryDtoListEnvelope.ts +14 -0
  20. package/clients/accountingService/models/AccountingEntryUpdateDto.ts +24 -0
  21. package/clients/accountingService/models/BillingProfileCreateDto.ts +30 -0
  22. package/clients/accountingService/models/BillingProfileDto.ts +67 -0
  23. package/clients/accountingService/models/BillingProfileDtoEnvelope.ts +14 -0
  24. package/clients/accountingService/models/BillingProfileDtoListEnvelope.ts +14 -0
  25. package/clients/accountingService/models/BillingProfileUpdateDto.ts +28 -0
  26. package/clients/accountingService/models/BudgetCreateDto.ts +12 -0
  27. package/clients/accountingService/models/BudgetDto.ts +12 -0
  28. package/clients/accountingService/models/BudgetDtoEnvelope.ts +14 -0
  29. package/clients/accountingService/models/BudgetDtoListEnvelope.ts +14 -0
  30. package/clients/accountingService/models/BudgetUpdateDto.ts +9 -0
  31. package/clients/accountingService/models/CreateLedgerDto.ts +15 -0
  32. package/clients/{cartService/models/ForgotPasswordRequest.ts → accountingService/models/Currency.ts} +3 -2
  33. package/clients/{cartService/models/Envelope.ts → accountingService/models/EmptyEnvelope.ts} +3 -4
  34. package/clients/{contactService → accountingService}/models/ErrorEnvelope.ts +2 -2
  35. package/clients/accountingService/models/FinancialBookCreateDto.ts +12 -0
  36. package/clients/accountingService/models/FinancialBookDto.ts +12 -0
  37. package/clients/accountingService/models/FinancialBookDtoEnvelope.ts +14 -0
  38. package/clients/{catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts → accountingService/models/FinancialBookDtoListEnvelope.ts} +5 -5
  39. package/clients/accountingService/models/FinancialBookUpdateDto.ts +10 -0
  40. package/clients/accountingService/models/FiscalAuthorityCreateDto.ts +14 -0
  41. package/clients/accountingService/models/FiscalAuthorityDto.ts +16 -0
  42. package/clients/{cartService/models/WishListDtoIReadOnlyListEnvelope.ts → accountingService/models/FiscalAuthorityDtoEnvelope.ts} +5 -5
  43. package/clients/accountingService/models/FiscalAuthorityDtoListEnvelope.ts +14 -0
  44. package/clients/accountingService/models/FiscalAuthorityUpdateDto.ts +12 -0
  45. package/clients/accountingService/models/FiscalYearCreateDto.ts +16 -0
  46. package/clients/accountingService/models/FiscalYearDto.ts +16 -0
  47. package/clients/accountingService/models/FiscalYearDtoEnvelope.ts +14 -0
  48. package/clients/accountingService/models/FiscalYearDtoListEnvelope.ts +14 -0
  49. package/clients/accountingService/models/FiscalYearUpdateDto.ts +12 -0
  50. package/clients/accountingService/models/Int32Envelope.ts +13 -0
  51. package/clients/accountingService/models/InvoiceEnumerationRangeCreateDto.ts +29 -0
  52. package/clients/accountingService/models/InvoiceEnumerationRangeDto.ts +29 -0
  53. package/clients/{catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts → accountingService/models/InvoiceEnumerationRangeDtoEnvelope.ts} +5 -5
  54. package/clients/accountingService/models/InvoiceEnumerationRangeDtoListEnvelope.ts +14 -0
  55. package/clients/accountingService/models/InvoiceEnumerationRangeUpdateDto.ts +27 -0
  56. package/clients/accountingService/models/JournalCreateDto.ts +17 -0
  57. package/clients/accountingService/models/JournalDto.ts +17 -0
  58. package/clients/accountingService/models/JournalDtoEnvelope.ts +14 -0
  59. package/clients/accountingService/models/JournalDtoListEnvelope.ts +14 -0
  60. package/clients/accountingService/models/JournalEntryCreateDto.ts +20 -0
  61. package/clients/accountingService/models/JournalEntryDto.ts +31 -0
  62. package/clients/accountingService/models/JournalEntryDtoListEnvelope.ts +14 -0
  63. package/clients/accountingService/models/JournalEntryUpdateDto.ts +18 -0
  64. package/clients/accountingService/models/JournalTypeCreateDto.ts +12 -0
  65. package/clients/accountingService/models/JournalTypeDto.ts +12 -0
  66. package/clients/accountingService/models/JournalTypeDtoEnvelope.ts +14 -0
  67. package/clients/{catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts → accountingService/models/JournalTypeDtoListEnvelope.ts} +5 -5
  68. package/clients/{cartService/models/InfoRequest.ts → accountingService/models/JournalTypeUpdateDto.ts} +4 -4
  69. package/clients/accountingService/models/JournalUpdateDto.ts +13 -0
  70. package/clients/accountingService/models/LedgerDto.ts +15 -0
  71. package/clients/accountingService/models/LedgerDtoEnvelope.ts +14 -0
  72. package/clients/accountingService/models/LedgerDtoListEnvelope.ts +14 -0
  73. package/clients/accountingService/models/LoanCreateDto.ts +18 -0
  74. package/clients/accountingService/models/LoanDto.ts +18 -0
  75. package/clients/accountingService/models/LoanDtoEnvelope.ts +14 -0
  76. package/clients/accountingService/models/LoanDtoListEnvelope.ts +14 -0
  77. package/clients/accountingService/models/LoanUpdateDto.ts +15 -0
  78. package/clients/accountingService/models/Money.ts +10 -0
  79. package/clients/accountingService/models/Operation.ts +23 -0
  80. package/clients/accountingService/models/ReceiptCreateDto.ts +48 -0
  81. package/clients/accountingService/models/ReceiptDto.ts +24 -0
  82. package/clients/accountingService/models/ReceiptDtoEnvelope.ts +14 -0
  83. package/clients/accountingService/models/ReceiptDtoListEnvelope.ts +14 -0
  84. package/clients/accountingService/models/ReceiptUpdateDto.ts +19 -0
  85. package/clients/accountingService/models/UpdateLedgerDto.ts +12 -0
  86. package/clients/accountingService/services/AccountsService.ts +788 -0
  87. package/clients/accountingService/services/BillingProfilesService.ts +194 -0
  88. package/clients/accountingService/services/BudgetsService.ts +167 -0
  89. package/clients/accountingService/services/FinancialBooksService.ts +194 -0
  90. package/clients/accountingService/services/FiscalAuthoritiesService.ts +194 -0
  91. package/clients/accountingService/services/FiscalYearsService.ts +194 -0
  92. package/clients/accountingService/services/InvoiceEnumerationRangesService.ts +167 -0
  93. package/clients/accountingService/services/JournalTypesService.ts +167 -0
  94. package/clients/accountingService/services/JournalsService.ts +366 -0
  95. package/clients/accountingService/services/LedgersService.ts +163 -0
  96. package/clients/accountingService/services/LoansService.ts +194 -0
  97. package/clients/accountingService/services/ReceiptsService.ts +164 -0
  98. package/clients/cartService/core/ApiError.ts +24 -24
  99. package/clients/cartService/core/ApiRequestOptions.ts +16 -16
  100. package/clients/cartService/core/ApiResult.ts +10 -10
  101. package/clients/cartService/core/CancelablePromise.ts +130 -130
  102. package/clients/cartService/core/OpenAPI.ts +31 -31
  103. package/clients/cartService/core/request.ts +321 -321
  104. package/clients/cartService/index.ts +41 -52
  105. package/clients/cartService/models/BooleanEnvelope.ts +2 -2
  106. package/clients/cartService/models/CartDto.ts +1 -0
  107. package/clients/cartService/models/CartDtoEnvelope.ts +2 -2
  108. package/clients/cartService/models/CartUpdateRequest.ts +9 -0
  109. package/clients/cartService/models/CountryDto.ts +14 -0
  110. package/clients/cartService/models/CountryDtoEnvelope.ts +14 -0
  111. package/clients/cartService/models/CountrySwitchRequest.ts +9 -0
  112. package/clients/cartService/models/CurrencyDto.ts +13 -0
  113. package/clients/cartService/models/CurrencyDtoEnvelope.ts +14 -0
  114. package/clients/cartService/models/EmptyEnvelope.ts +12 -0
  115. package/clients/cartService/models/ErrorEnvelope.ts +2 -2
  116. package/clients/cartService/models/ItemCartRecordCreateDto.ts +2 -1
  117. package/clients/cartService/models/ItemCartRecordDto.ts +11 -7
  118. package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +2 -2
  119. package/clients/cartService/models/ItemCartRecordDtoListEnvelope.ts +14 -0
  120. package/clients/cartService/models/ItemCartRecordUpdateDto.ts +0 -2
  121. package/clients/cartService/models/ItemToCompareCartRecordDto.ts +14 -1
  122. package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +2 -2
  123. package/clients/cartService/models/{ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts → ItemToCompareCartRecordDtoListEnvelope.ts} +3 -3
  124. package/clients/cartService/models/ProductToWishListRequest.ts +2 -2
  125. package/clients/cartService/models/WishListDto.ts +2 -1
  126. package/clients/cartService/models/WishListDtoEnvelope.ts +2 -2
  127. package/clients/cartService/services/CartsService.ts +1114 -21
  128. package/clients/cartService/services/CompareService.ts +30 -9
  129. package/clients/cartService/services/RecordsService.ts +129 -21
  130. package/clients/cartService/services/WishListsService.ts +126 -19
  131. package/clients/catalogService/core/ApiError.ts +24 -24
  132. package/clients/catalogService/core/ApiRequestOptions.ts +16 -16
  133. package/clients/catalogService/core/ApiResult.ts +10 -10
  134. package/clients/catalogService/core/CancelablePromise.ts +130 -130
  135. package/clients/catalogService/core/OpenAPI.ts +31 -31
  136. package/clients/catalogService/core/request.ts +321 -321
  137. package/clients/catalogService/index.ts +110 -124
  138. package/clients/catalogService/models/CatalogItemCreateDto.ts +167 -0
  139. package/clients/catalogService/models/CatalogItemDto.ts +170 -0
  140. package/clients/catalogService/models/CatalogItemDtoEnvelope.ts +14 -0
  141. package/clients/catalogService/models/CatalogItemDtoListEnvelope.ts +14 -0
  142. package/clients/catalogService/models/CatalogItemUpdateDto.ts +179 -0
  143. package/clients/catalogService/models/Currency.ts +9 -0
  144. package/clients/catalogService/models/EmptyEnvelope.ts +12 -0
  145. package/clients/catalogService/models/ErrorEnvelope.ts +2 -2
  146. package/clients/catalogService/models/Int32Envelope.ts +13 -0
  147. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +8 -10
  148. package/clients/catalogService/models/ItemAttachmentDto.ts +13 -11
  149. package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +2 -2
  150. package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +2 -2
  151. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +6 -6
  152. package/clients/catalogService/models/ItemAttributeCreateDto.ts +3 -2
  153. package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +2 -2
  154. package/clients/catalogService/models/{ItemAttributeDtoIReadOnlyCollectionEnvelope.ts → ItemAttributeDtoListEnvelope.ts} +3 -3
  155. package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +2 -2
  156. package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +2 -2
  157. package/clients/catalogService/models/ItemAttributeUpdateDto.ts +1 -1
  158. package/clients/catalogService/models/ItemBrandCreateDto.ts +4 -3
  159. package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +2 -2
  160. package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +2 -2
  161. package/clients/catalogService/models/ItemBrandUpdateDto.ts +1 -1
  162. package/clients/catalogService/models/ItemCategoryCreateDto.ts +3 -2
  163. package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +2 -2
  164. package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +2 -2
  165. package/clients/catalogService/models/ItemCategoryUpdateDto.ts +1 -1
  166. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +13 -3
  167. package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +2 -2
  168. package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +2 -2
  169. package/clients/catalogService/models/{ItemImagesCreateDto.ts → ItemImageCreateDto.ts} +4 -4
  170. package/clients/catalogService/models/ItemImageDto.ts +0 -1
  171. package/clients/catalogService/models/ItemImageDtoEnvelope.ts +2 -2
  172. package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +2 -2
  173. package/clients/catalogService/models/ItemImageUpdateDto.ts +22 -0
  174. package/clients/catalogService/models/ItemQuestionCreateDto.ts +6 -5
  175. package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +2 -2
  176. package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +2 -2
  177. package/clients/catalogService/models/ItemQuestionRecordCreateDto.ts +14 -0
  178. package/clients/catalogService/models/ItemQuestionUpdateDto.ts +1 -3
  179. package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +2 -2
  180. package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +2 -2
  181. package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +2 -2
  182. package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +2 -2
  183. package/clients/catalogService/models/ItemReviewCreateDto.ts +1 -0
  184. package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +2 -2
  185. package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +2 -2
  186. package/clients/catalogService/models/ItemReviewRecordCreateDto.ts +12 -0
  187. package/clients/catalogService/models/ItemShippingPolicyDto.ts +6 -6
  188. package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +2 -2
  189. package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +2 -2
  190. package/clients/catalogService/models/ItemTagCreateDto.ts +3 -2
  191. package/clients/catalogService/models/ItemTagDtoEnvelope.ts +2 -2
  192. package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +2 -2
  193. package/clients/catalogService/models/ItemTagUpdateDto.ts +1 -1
  194. package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +2 -2
  195. package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +2 -2
  196. package/clients/catalogService/models/ItemTypeCreateDto.ts +3 -2
  197. package/clients/catalogService/models/ItemTypeDto.ts +4 -4
  198. package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +2 -2
  199. package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +2 -2
  200. package/clients/catalogService/models/ItemTypeUpdateDto.ts +1 -1
  201. package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +3 -4
  202. package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +2 -2
  203. package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +2 -2
  204. package/clients/{tenantService/models/BusinessDto.ts → catalogService/models/MerchantDto.ts} +16 -22
  205. package/clients/catalogService/models/MerchantDtoListEnvelope.ts +14 -0
  206. package/clients/catalogService/models/Money.ts +10 -0
  207. package/clients/catalogService/models/MoneyEnvelope.ts +14 -0
  208. package/clients/catalogService/models/PricingRuleCreateDto.ts +1 -1
  209. package/clients/catalogService/models/PricingRuleDto.ts +0 -1
  210. package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +2 -2
  211. package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +2 -2
  212. package/clients/catalogService/services/ItemAttachmentsService.ts +72 -36
  213. package/clients/catalogService/services/ItemAttributesService.ts +69 -34
  214. package/clients/catalogService/services/ItemBrandsService.ts +69 -34
  215. package/clients/catalogService/services/ItemCategoriesService.ts +87 -52
  216. package/clients/catalogService/services/ItemGoogleCategoriesService.ts +182 -0
  217. package/clients/catalogService/services/ItemImagesService.ts +73 -38
  218. package/clients/catalogService/services/ItemQuestionsService.ts +69 -34
  219. package/clients/catalogService/services/ItemReviewsService.ts +69 -34
  220. package/clients/catalogService/services/ItemTagsService.ts +67 -37
  221. package/clients/catalogService/services/ItemTypesService.ts +71 -36
  222. package/clients/catalogService/services/ItemsService.ts +2176 -0
  223. package/clients/catalogService/services/MerchantsService.ts +30 -0
  224. package/clients/catalogService/services/PoliciesService.ts +24 -4
  225. package/clients/catalogService/services/PricingRulesService.ts +75 -42
  226. package/clients/crmService/core/ApiError.ts +25 -0
  227. package/clients/crmService/core/ApiRequestOptions.ts +17 -0
  228. package/clients/crmService/core/ApiResult.ts +11 -0
  229. package/clients/crmService/core/CancelablePromise.ts +131 -0
  230. package/clients/crmService/core/OpenAPI.ts +32 -0
  231. package/clients/crmService/core/request.ts +322 -0
  232. package/clients/crmService/index.ts +28 -0
  233. package/clients/crmService/models/CartDto.ts +18 -0
  234. package/clients/crmService/models/CartDtoEnvelope.ts +14 -0
  235. package/clients/crmService/models/ContactCreateDto.ts +55 -0
  236. package/clients/crmService/models/ContactDto.ts +71 -0
  237. package/clients/{contactService → crmService}/models/ContactDtoEnvelope.ts +2 -2
  238. package/clients/{contactService → crmService}/models/ContactDtoListEnvelope.ts +2 -2
  239. package/clients/crmService/models/ContactProfileDto.ts +38 -0
  240. package/clients/crmService/models/ContactProfileDtoListEnvelope.ts +14 -0
  241. package/clients/crmService/models/ContactUpdateDto.ts +53 -0
  242. package/clients/crmService/models/EmptyEnvelope.ts +12 -0
  243. package/clients/crmService/models/ErrorEnvelope.ts +12 -0
  244. package/clients/crmService/models/Operation.ts +23 -0
  245. package/clients/crmService/models/SocialProfileDto.ts +39 -0
  246. package/clients/crmService/models/SocialProfileDtoEnvelope.ts +14 -0
  247. package/clients/crmService/models/WalletDto.ts +22 -0
  248. package/clients/crmService/models/WalletDtoEnvelope.ts +14 -0
  249. package/clients/crmService/services/ContactsService.ts +755 -0
  250. package/clients/crmService/services/SyncService.ts +117 -0
  251. package/clients/forexService/core/ApiError.ts +24 -24
  252. package/clients/forexService/core/ApiRequestOptions.ts +16 -16
  253. package/clients/forexService/core/ApiResult.ts +10 -10
  254. package/clients/forexService/core/CancelablePromise.ts +130 -130
  255. package/clients/forexService/core/OpenAPI.ts +31 -31
  256. package/clients/forexService/core/request.ts +321 -321
  257. package/clients/forexService/index.ts +21 -30
  258. package/clients/forexService/models/Currency.ts +1 -1
  259. package/clients/forexService/models/ErrorEnvelope.ts +12 -0
  260. package/clients/forexService/models/ExchangeRate.ts +11 -0
  261. package/clients/forexService/models/ExchangeRateEnvelope.ts +14 -0
  262. package/clients/forexService/models/ForexRatesDto.ts +1 -1
  263. package/clients/forexService/models/ForexRatesDtoEnvelope.ts +2 -2
  264. package/clients/forexService/models/MoneyEnvelope.ts +2 -2
  265. package/clients/forexService/services/ExchangeService.ts +10 -2
  266. package/clients/forexService/services/ExchangeVService.ts +65 -0
  267. package/clients/forexService/services/RatesService.ts +78 -3
  268. package/clients/holderService/core/ApiError.ts +24 -24
  269. package/clients/holderService/core/ApiRequestOptions.ts +16 -16
  270. package/clients/holderService/core/ApiResult.ts +10 -10
  271. package/clients/holderService/core/CancelablePromise.ts +130 -130
  272. package/clients/holderService/core/OpenAPI.ts +31 -31
  273. package/clients/holderService/core/request.ts +321 -321
  274. package/clients/holderService/index.ts +46 -31
  275. package/clients/holderService/models/AddressDto.ts +31 -0
  276. package/clients/holderService/models/AddressDtoListEnvelope.ts +14 -0
  277. package/clients/holderService/models/CartDto.ts +18 -0
  278. package/clients/holderService/models/CartDtoEnvelope.ts +14 -0
  279. package/clients/holderService/models/EmptyEnvelope.ts +12 -0
  280. package/clients/holderService/models/EmptyEnvelopeEnvelope.ts +14 -0
  281. package/clients/{tenantService/models/IntPtr.ts → holderService/models/EnrollmentId.ts} +1 -1
  282. package/clients/holderService/models/ErrorEnvelope.ts +2 -2
  283. package/clients/holderService/models/ExtendedPlatformUserDto.ts +79 -0
  284. package/clients/holderService/models/ExtendedPlatformUserDtoEnvelope.ts +14 -0
  285. package/clients/{identityService/models/BusinessDto.ts → holderService/models/ExtendedTenantDto.ts} +20 -22
  286. package/clients/holderService/models/ExtendedTenantDtoListEnvelope.ts +14 -0
  287. package/clients/holderService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  288. package/clients/holderService/models/ExtendedTenantEnrolmentDtoListEnvelope.ts +14 -0
  289. package/clients/holderService/models/NotificationDto.ts +16 -0
  290. package/clients/holderService/models/NotificationDtoListEnvelope.ts +14 -0
  291. package/clients/holderService/models/Operation.ts +23 -0
  292. package/clients/{identityService/models/AccountHolderDto.ts → holderService/models/PlatformUserDto.ts} +28 -30
  293. package/clients/holderService/models/PlatformUserDtoEnvelope.ts +14 -0
  294. package/clients/holderService/models/PlatformUserSettingsDto.ts +21 -0
  295. package/clients/holderService/models/PlatformUserSettingsDtoEnvelope.ts +14 -0
  296. package/clients/holderService/models/PlatformUserSettingsUpdateDto.ts +19 -0
  297. package/clients/holderService/models/PlatformUserUpdateDto.ts +43 -0
  298. package/clients/holderService/models/SocialProfileDto.ts +39 -0
  299. package/clients/holderService/models/SocialProfileDtoEnvelope.ts +14 -0
  300. package/clients/holderService/models/{BusinessDto.ts → TenantDto.ts} +14 -22
  301. package/clients/holderService/models/TenantDtoListEnvelope.ts +14 -0
  302. package/clients/holderService/models/TenantEnrolmentDto.ts +15 -0
  303. package/clients/holderService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  304. package/clients/holderService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  305. package/clients/holderService/models/TenantInvitationDto.ts +16 -0
  306. package/clients/{catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts → holderService/models/TenantInvitationDtoListEnvelope.ts} +5 -5
  307. package/clients/holderService/models/WalletDto.ts +22 -0
  308. package/clients/holderService/models/WalletDtoEnvelope.ts +14 -0
  309. package/clients/holderService/services/HolderService.ts +340 -30
  310. package/clients/identityService/core/ApiError.ts +24 -24
  311. package/clients/identityService/core/ApiRequestOptions.ts +16 -16
  312. package/clients/identityService/core/ApiResult.ts +10 -10
  313. package/clients/identityService/core/CancelablePromise.ts +130 -130
  314. package/clients/identityService/core/OpenAPI.ts +31 -31
  315. package/clients/identityService/core/request.ts +321 -321
  316. package/clients/identityService/index.ts +40 -53
  317. package/clients/identityService/models/AccountHolderCreateDto.ts +21 -15
  318. package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +2 -2
  319. package/clients/identityService/models/ApiResponse.ts +4 -5
  320. package/clients/identityService/models/ApiResponseEnvelope.ts +2 -2
  321. package/clients/identityService/models/ErrorEnvelope.ts +2 -2
  322. package/clients/identityService/models/JsonWebKeySetEnvelope.ts +2 -2
  323. package/clients/identityService/models/JsonWebTokenEnvelope.ts +2 -2
  324. package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +2 -2
  325. package/clients/{holderService/models/AccountHolderDto.ts → identityService/models/PlatformUserDto.ts} +28 -30
  326. package/clients/identityService/models/StringListEnvelope.ts +2 -2
  327. package/clients/identityService/models/TenantDto.ts +45 -0
  328. package/clients/identityService/services/ApplicationsService.ts +30 -5
  329. package/clients/identityService/services/CheckerService.ts +9 -3
  330. package/clients/identityService/services/OAuthService.ts +50 -14
  331. package/clients/identityService/services/ResourceService.ts +8 -2
  332. package/clients/identityService/services/UserInfoService.ts +16 -4
  333. package/clients/inventoryService/core/ApiError.ts +24 -24
  334. package/clients/inventoryService/core/ApiRequestOptions.ts +16 -16
  335. package/clients/inventoryService/core/ApiResult.ts +10 -10
  336. package/clients/inventoryService/core/CancelablePromise.ts +130 -130
  337. package/clients/inventoryService/core/OpenAPI.ts +31 -31
  338. package/clients/inventoryService/core/request.ts +321 -321
  339. package/clients/inventoryService/index.ts +10 -24
  340. package/clients/inventoryService/services/InventoryService.ts +6 -1
  341. package/clients/invoicingService/core/ApiError.ts +24 -24
  342. package/clients/invoicingService/core/ApiRequestOptions.ts +16 -16
  343. package/clients/invoicingService/core/ApiResult.ts +10 -10
  344. package/clients/invoicingService/core/CancelablePromise.ts +130 -130
  345. package/clients/invoicingService/core/OpenAPI.ts +31 -31
  346. package/clients/invoicingService/core/request.ts +321 -321
  347. package/clients/invoicingService/index.ts +48 -28
  348. package/clients/invoicingService/models/Currency.ts +9 -0
  349. package/clients/invoicingService/models/EmptyEnvelope.ts +12 -0
  350. package/clients/invoicingService/models/ErrorEnvelope.ts +2 -2
  351. package/clients/invoicingService/models/ExtendedInvoiceDto.ts +111 -0
  352. package/clients/invoicingService/models/ExtendedInvoiceDtoListEnvelope.ts +14 -0
  353. package/clients/invoicingService/models/Int32Envelope.ts +13 -0
  354. package/clients/invoicingService/models/InvoiceAdjustmentCreateDto.ts +27 -0
  355. package/clients/invoicingService/models/InvoiceAdjustmentDto.ts +27 -0
  356. package/clients/invoicingService/models/InvoiceAdjustmentDtoEnvelope.ts +14 -0
  357. package/clients/invoicingService/models/InvoiceAdjustmentDtoListEnvelope.ts +14 -0
  358. package/clients/invoicingService/models/InvoiceAdjustmentUpdateDto.ts +22 -0
  359. package/clients/invoicingService/models/InvoiceCreateDto.ts +75 -0
  360. package/clients/invoicingService/models/InvoiceDto.ts +91 -2
  361. package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +14 -0
  362. package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +2 -2
  363. package/clients/invoicingService/models/InvoiceItemRecordDto.ts +100 -0
  364. package/clients/invoicingService/models/InvoiceLineAppliedTaxCreateDto.ts +13 -0
  365. package/clients/invoicingService/models/InvoiceLineAppliedTaxDto.ts +20 -0
  366. package/clients/invoicingService/models/InvoiceLineAppliedTaxDtoListEnvelope.ts +14 -0
  367. package/clients/{cartService/models/RefreshRequest.ts → invoicingService/models/InvoiceLineAppliedTaxUpdateDto.ts} +2 -2
  368. package/clients/invoicingService/models/InvoiceLineCreateDto.ts +13 -0
  369. package/clients/invoicingService/models/InvoiceLineDto.ts +100 -0
  370. package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +14 -0
  371. package/clients/invoicingService/models/InvoiceLineDtoListEnvelope.ts +14 -0
  372. package/clients/invoicingService/models/InvoiceLineUpdateDto.ts +20 -0
  373. package/clients/invoicingService/models/InvoiceReferenceCreateDto.ts +13 -0
  374. package/clients/invoicingService/models/InvoiceReferenceDto.ts +13 -0
  375. package/clients/invoicingService/models/InvoiceReferenceDtoEnvelope.ts +14 -0
  376. package/clients/invoicingService/models/InvoiceReferenceDtoListEnvelope.ts +14 -0
  377. package/clients/invoicingService/models/InvoiceReferenceUpdateDto.ts +8 -0
  378. package/clients/invoicingService/models/InvoiceUpdateDto.ts +33 -0
  379. package/clients/invoicingService/models/Money.ts +10 -0
  380. package/clients/invoicingService/models/MoneyEnvelope.ts +14 -0
  381. package/clients/invoicingService/models/SimpleContactDto.ts +40 -0
  382. package/clients/invoicingService/models/SimpleTenantEnrolmentDto.ts +11 -0
  383. package/clients/invoicingService/models/SimpleUserDto.ts +25 -0
  384. package/clients/invoicingService/models/TenantDto.ts +45 -0
  385. package/clients/invoicingService/services/InvoicesService.ts +1029 -15
  386. package/clients/learningService/core/ApiError.ts +25 -0
  387. package/clients/learningService/core/ApiRequestOptions.ts +17 -0
  388. package/clients/learningService/core/ApiResult.ts +11 -0
  389. package/clients/learningService/core/CancelablePromise.ts +131 -0
  390. package/clients/learningService/core/OpenAPI.ts +32 -0
  391. package/clients/learningService/core/request.ts +322 -0
  392. package/clients/learningService/index.ts +50 -0
  393. package/clients/learningService/models/AverageDto.ts +10 -0
  394. package/clients/learningService/models/AverageDtoEnvelope.ts +14 -0
  395. package/clients/learningService/models/CountDto.ts +10 -0
  396. package/clients/learningService/models/CountDtoEnvelope.ts +14 -0
  397. package/clients/learningService/models/CourseCertificateTemplateCreateDto.ts +17 -0
  398. package/clients/learningService/models/CourseCertificateTemplateDto.ts +17 -0
  399. package/clients/learningService/models/CourseCertificateTemplateDtoEnvelope.ts +14 -0
  400. package/clients/learningService/models/CourseCertificateTemplateDtoListEnvelope.ts +14 -0
  401. package/clients/learningService/models/CourseCompletionCertificateCreateDto.ts +15 -0
  402. package/clients/learningService/models/CourseCompletionCertificateDto.ts +15 -0
  403. package/clients/learningService/models/CourseCompletionCertificateDtoEnvelope.ts +14 -0
  404. package/clients/learningService/models/CourseCompletionCertificateDtoListEnvelope.ts +14 -0
  405. package/clients/learningService/models/CourseCompletionCertificateUpdateDto.ts +13 -0
  406. package/clients/learningService/models/CourseDto.ts +170 -0
  407. package/clients/learningService/models/CourseDtoEnvelope.ts +14 -0
  408. package/clients/learningService/models/CourseDtoListEnvelope.ts +14 -0
  409. package/clients/learningService/models/CourseEnrollmentCreateDto.ts +14 -0
  410. package/clients/learningService/models/CourseEnrollmentDto.ts +14 -0
  411. package/clients/learningService/models/CourseEnrollmentDtoEnvelope.ts +14 -0
  412. package/clients/learningService/models/CourseEnrollmentDtoListEnvelope.ts +14 -0
  413. package/clients/learningService/models/CourseEnrollmentUpdateDto.ts +11 -0
  414. package/clients/{tenantService/models/ICustomAttributeProvider.ts → learningService/models/CourseUpdateDto.ts} +1 -1
  415. package/clients/learningService/models/EmptyEnvelope.ts +12 -0
  416. package/clients/learningService/models/ErrorEnvelope.ts +12 -0
  417. package/clients/learningService/models/InstructorProfileCreateDto.ts +39 -0
  418. package/clients/learningService/models/InstructorProfileDto.ts +39 -0
  419. package/clients/learningService/models/InstructorProfileDtoEnvelope.ts +14 -0
  420. package/clients/learningService/models/InstructorProfileDtoListEnvelope.ts +14 -0
  421. package/clients/learningService/models/InstructorProfileUpdateDto.ts +36 -0
  422. package/clients/{cartService/models/ResendConfirmationEmailRequest.ts → learningService/models/Pagination.ts} +3 -2
  423. package/clients/learningService/models/StudentProfileCreateDto.ts +38 -0
  424. package/clients/learningService/models/StudentProfileDto.ts +38 -0
  425. package/clients/learningService/models/StudentProfileDtoEnvelope.ts +14 -0
  426. package/clients/learningService/models/StudentProfileDtoListEnvelope.ts +14 -0
  427. package/clients/learningService/models/StudentProfileUpdateDto.ts +38 -0
  428. package/clients/learningService/services/CourseCertificatesService.ts +270 -0
  429. package/clients/learningService/services/CourseEnrollmentsService.ts +232 -0
  430. package/clients/learningService/services/CoursesService.ts +128 -0
  431. package/clients/learningService/services/InstructorProfilesService.ts +152 -0
  432. package/clients/learningService/services/StudentProfilesService.ts +212 -0
  433. package/clients/marketingService/core/ApiError.ts +25 -0
  434. package/clients/marketingService/core/ApiRequestOptions.ts +17 -0
  435. package/clients/marketingService/core/ApiResult.ts +11 -0
  436. package/clients/marketingService/core/CancelablePromise.ts +131 -0
  437. package/clients/marketingService/core/OpenAPI.ts +32 -0
  438. package/clients/marketingService/core/request.ts +322 -0
  439. package/clients/marketingService/index.ts +64 -0
  440. package/clients/marketingService/models/Currency.ts +9 -0
  441. package/clients/marketingService/models/EmailGroupCreateDto.ts +14 -0
  442. package/clients/marketingService/models/EmailGroupDto.ts +14 -0
  443. package/clients/marketingService/models/EmailGroupDtoEnvelope.ts +14 -0
  444. package/clients/marketingService/models/EmailGroupDtoListEnvelope.ts +14 -0
  445. package/clients/marketingService/models/EmailGroupUpdateDto.ts +12 -0
  446. package/clients/marketingService/models/EmailSignatureCreateDto.ts +16 -0
  447. package/clients/marketingService/models/EmailSignatureDto.ts +64 -0
  448. package/clients/marketingService/models/EmailSignatureDtoEnvelope.ts +14 -0
  449. package/clients/marketingService/models/EmailSignatureDtoListEnvelope.ts +14 -0
  450. package/clients/marketingService/models/EmailSignatureUpdateDto.ts +60 -0
  451. package/clients/marketingService/models/EmailTemplateCreateDto.ts +17 -0
  452. package/clients/marketingService/models/EmailTemplateDto.ts +66 -0
  453. package/clients/marketingService/models/EmailTemplateDtoEnvelope.ts +14 -0
  454. package/clients/{catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts → marketingService/models/EmailTemplateDtoListEnvelope.ts} +5 -5
  455. package/clients/marketingService/models/EmailTemplateUpdateDto.ts +61 -0
  456. package/clients/marketingService/models/EmptyEnvelope.ts +12 -0
  457. package/clients/marketingService/models/ErrorEnvelope.ts +12 -0
  458. package/clients/marketingService/models/Int32Envelope.ts +13 -0
  459. package/clients/marketingService/models/MarketingCampaignCreateDto.ts +25 -0
  460. package/clients/marketingService/models/MarketingCampaignDto.ts +25 -0
  461. package/clients/marketingService/models/MarketingCampaignDtoEnvelope.ts +14 -0
  462. package/clients/marketingService/models/MarketingCampaignUpdateDto.ts +23 -0
  463. package/clients/marketingService/models/MarketingListCreateDto.ts +33 -0
  464. package/clients/marketingService/models/MarketingListDto.ts +33 -0
  465. package/clients/marketingService/models/MarketingListDtoEnvelope.ts +14 -0
  466. package/clients/marketingService/models/MarketingListDtoListEnvelope.ts +14 -0
  467. package/clients/marketingService/models/MarketingListUpdateDto.ts +31 -0
  468. package/clients/marketingService/models/Money.ts +10 -0
  469. package/clients/marketingService/models/NewsletterCreateDto.ts +14 -0
  470. package/clients/marketingService/models/NewsletterDto.ts +14 -0
  471. package/clients/marketingService/models/NewsletterDtoEnvelope.ts +14 -0
  472. package/clients/marketingService/models/NewsletterUpdateDto.ts +12 -0
  473. package/clients/marketingService/models/OrderDto.ts +113 -0
  474. package/clients/marketingService/models/OrderDtoEnvelope.ts +14 -0
  475. package/clients/marketingService/models/SocialMediaPostCreateDto.ts +13 -0
  476. package/clients/marketingService/models/SocialMediaPostDto.ts +15 -0
  477. package/clients/marketingService/models/SocialMediaPostDtoEnvelope.ts +14 -0
  478. package/clients/marketingService/models/SocialMediaPostDtoListEnvelope.ts +14 -0
  479. package/clients/marketingService/models/SocialMediaPostUpdateDto.ts +13 -0
  480. package/clients/marketingService/models/SocialPostBucketCreateDto.ts +12 -0
  481. package/clients/marketingService/models/SocialPostBucketDto.ts +12 -0
  482. package/clients/marketingService/models/SocialPostBucketDtoEnvelope.ts +14 -0
  483. package/clients/marketingService/models/SocialPostBucketDtoListEnvelope.ts +14 -0
  484. package/clients/marketingService/models/SocialPostBucketUpdateDto.ts +10 -0
  485. package/clients/marketingService/services/EmailGroupsService.ts +193 -0
  486. package/clients/marketingService/services/EmailSignaturesService.ts +193 -0
  487. package/clients/marketingService/services/EmailTemplatesService.ts +193 -0
  488. package/clients/marketingService/services/MarketingCampaignsService.ts +193 -0
  489. package/clients/marketingService/services/MarketingListsService.ts +193 -0
  490. package/clients/marketingService/services/NewslettersService.ts +193 -0
  491. package/clients/marketingService/services/SocialMediaPostsService.ts +193 -0
  492. package/clients/marketingService/services/SocialPostBucketsService.ts +193 -0
  493. package/clients/marketingService/services/TrackingPixelsService.ts +31 -0
  494. package/clients/ordersService/core/ApiError.ts +25 -0
  495. package/clients/ordersService/core/ApiRequestOptions.ts +17 -0
  496. package/clients/ordersService/core/ApiResult.ts +11 -0
  497. package/clients/ordersService/core/CancelablePromise.ts +131 -0
  498. package/clients/ordersService/core/OpenAPI.ts +32 -0
  499. package/clients/ordersService/core/request.ts +322 -0
  500. package/clients/ordersService/index.ts +26 -0
  501. package/clients/ordersService/models/Currency.ts +9 -0
  502. package/clients/ordersService/models/EmptyEnvelope.ts +12 -0
  503. package/clients/ordersService/models/ErrorEnvelope.ts +12 -0
  504. package/clients/ordersService/models/Int32Envelope.ts +13 -0
  505. package/clients/ordersService/models/Money.ts +10 -0
  506. package/clients/ordersService/models/OrderCreateDto.ts +74 -0
  507. package/clients/ordersService/models/OrderDto.ts +113 -0
  508. package/clients/ordersService/models/OrderDtoEnvelope.ts +14 -0
  509. package/clients/ordersService/models/OrderDtoListEnvelope.ts +14 -0
  510. package/clients/ordersService/models/OrderLineCreateDto.ts +100 -0
  511. package/clients/ordersService/models/OrderLineDto.ts +100 -0
  512. package/clients/ordersService/models/OrderLineDtoEnvelope.ts +14 -0
  513. package/clients/{catalogService/models/StockItemDtoListEnvelope.ts → ordersService/models/OrderLineDtoListEnvelope.ts} +5 -5
  514. package/clients/{cartService/models/ProductCartRecordDto.ts → ordersService/models/OrderLineUpdateDto.ts} +12 -13
  515. package/clients/ordersService/models/OrderUpdateDto.ts +40 -0
  516. package/clients/ordersService/services/OrdersService.ts +390 -0
  517. package/clients/pricingService/core/ApiError.ts +24 -24
  518. package/clients/pricingService/core/ApiRequestOptions.ts +16 -16
  519. package/clients/pricingService/core/ApiResult.ts +10 -10
  520. package/clients/pricingService/core/CancelablePromise.ts +130 -130
  521. package/clients/pricingService/core/OpenAPI.ts +31 -31
  522. package/clients/pricingService/core/request.ts +321 -321
  523. package/clients/pricingService/index.ts +28 -29
  524. package/clients/pricingService/models/Currency.ts +1 -1
  525. package/clients/pricingService/models/EmptyEnvelope.ts +12 -0
  526. package/clients/pricingService/models/ErrorEnvelope.ts +2 -2
  527. package/clients/pricingService/models/Int32Envelope.ts +13 -0
  528. package/clients/pricingService/models/ItemPriceCreateDto.ts +20 -0
  529. package/clients/pricingService/models/ItemPriceDto.ts +20 -0
  530. package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +14 -0
  531. package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +14 -0
  532. package/clients/pricingService/models/ItemPriceUpdateDto.ts +15 -0
  533. package/clients/pricingService/models/MoneyEnvelope.ts +2 -2
  534. package/clients/pricingService/models/PriceListCreateDto.ts +18 -0
  535. package/clients/pricingService/models/PriceListDto.ts +17 -0
  536. package/clients/pricingService/models/PriceListDtoEnvelope.ts +14 -0
  537. package/clients/pricingService/models/PriceListDtoListEnvelope.ts +14 -0
  538. package/clients/pricingService/models/PriceListUpdateDto.ts +14 -0
  539. package/clients/pricingService/services/PriceListsService.ts +325 -8
  540. package/clients/pricingService/services/PricesService.ts +18 -3
  541. package/clients/securityService/core/ApiError.ts +25 -0
  542. package/clients/securityService/core/ApiRequestOptions.ts +17 -0
  543. package/clients/securityService/core/ApiResult.ts +11 -0
  544. package/clients/securityService/core/CancelablePromise.ts +131 -0
  545. package/clients/securityService/core/OpenAPI.ts +32 -0
  546. package/clients/securityService/core/request.ts +322 -0
  547. package/clients/securityService/index.ts +24 -0
  548. package/clients/securityService/models/EmptyEnvelope.ts +12 -0
  549. package/clients/securityService/models/ErrorEnvelope.ts +12 -0
  550. package/clients/securityService/models/SecurityPermissionCreateDto.ts +12 -0
  551. package/clients/securityService/models/SecurityPermissionDto.ts +13 -0
  552. package/clients/{tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts → securityService/models/SecurityPermissionDtoListEnvelope.ts} +5 -5
  553. package/clients/{tenantService/models/Error.ts → securityService/models/SecurityPermissionUpdateDto.ts} +2 -3
  554. package/clients/securityService/models/SecurityRoleCreateDto.ts +12 -0
  555. package/clients/securityService/models/SecurityRoleDto.ts +13 -0
  556. package/clients/securityService/models/SecurityRoleDtoListEnvelope.ts +14 -0
  557. package/clients/{cartService/models/Error.ts → securityService/models/SecurityRoleUpdateDto.ts} +2 -3
  558. package/clients/securityService/models/TenantEnrolmentDto.ts +15 -0
  559. package/clients/securityService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  560. package/clients/securityService/services/PermissionsService.ts +399 -0
  561. package/clients/securityService/services/RolesService.ts +430 -0
  562. package/clients/supportService/core/ApiError.ts +25 -0
  563. package/clients/supportService/core/ApiRequestOptions.ts +17 -0
  564. package/clients/supportService/core/ApiResult.ts +11 -0
  565. package/clients/supportService/core/CancelablePromise.ts +131 -0
  566. package/clients/supportService/core/OpenAPI.ts +32 -0
  567. package/clients/supportService/core/request.ts +322 -0
  568. package/clients/supportService/index.ts +54 -0
  569. package/clients/supportService/models/EmptyEnvelope.ts +12 -0
  570. package/clients/supportService/models/ErrorEnvelope.ts +12 -0
  571. package/clients/supportService/models/PrivateMessageDto.ts +15 -0
  572. package/clients/supportService/models/PrivateMessageDtoListEnvelope.ts +14 -0
  573. package/clients/supportService/models/SupportEntitlementCreateDto.ts +57 -0
  574. package/clients/supportService/models/SupportEntitlementDto.ts +57 -0
  575. package/clients/{tenantService/models/BusinessEnrollmentDtoEnvelope.ts → supportService/models/SupportEntitlementDtoEnvelope.ts} +5 -5
  576. package/clients/{cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts → supportService/models/SupportEntitlementDtoListEnvelope.ts} +5 -5
  577. package/clients/supportService/models/SupportEntitlementUpdateDto.ts +54 -0
  578. package/clients/supportService/models/SupportRequestAttachmentCreateDto.ts +23 -0
  579. package/clients/{catalogService/models/ItemImagesUpdateDto.ts → supportService/models/SupportRequestAttachmentDto.ts} +7 -4
  580. package/clients/supportService/models/SupportRequestAttachmentDtoEnvelope.ts +14 -0
  581. package/clients/supportService/models/SupportRequestAttachmentDtoListEnvelope.ts +14 -0
  582. package/clients/supportService/models/SupportRequestAttachmentUpdateDto.ts +19 -0
  583. package/clients/supportService/models/SupportRequestCreateDto.ts +18 -0
  584. package/clients/supportService/models/SupportRequestDto.ts +18 -0
  585. package/clients/supportService/models/SupportRequestDtoEnvelope.ts +14 -0
  586. package/clients/supportService/models/SupportRequestDtoListEnvelope.ts +14 -0
  587. package/clients/supportService/models/SupportRequestUpdateDto.ts +12 -0
  588. package/clients/supportService/models/SupportTicketConversationCreateDto.ts +13 -0
  589. package/clients/supportService/models/SupportTicketConversationDto.ts +14 -0
  590. package/clients/supportService/models/SupportTicketConversationDtoEnvelope.ts +14 -0
  591. package/clients/supportService/models/SupportTicketConversationDtoListEnvelope.ts +14 -0
  592. package/clients/supportService/models/SupportTicketCreateDto.ts +17 -0
  593. package/clients/supportService/models/SupportTicketDto.ts +17 -0
  594. package/clients/supportService/models/SupportTicketDtoEnvelope.ts +14 -0
  595. package/clients/supportService/models/SupportTicketDtoListEnvelope.ts +14 -0
  596. package/clients/supportService/models/SupportTicketPriorityCreateDto.ts +11 -0
  597. package/clients/supportService/models/SupportTicketPriorityDto.ts +13 -0
  598. package/clients/supportService/models/SupportTicketPriorityDtoEnvelope.ts +14 -0
  599. package/clients/supportService/models/SupportTicketPriorityDtoListEnvelope.ts +14 -0
  600. package/clients/supportService/models/SupportTicketPriorityUpdateDto.ts +9 -0
  601. package/clients/supportService/models/SupportTicketTypeCreateDto.ts +12 -0
  602. package/clients/supportService/models/SupportTicketTypeDto.ts +12 -0
  603. package/clients/supportService/models/SupportTicketTypeDtoEnvelope.ts +14 -0
  604. package/clients/supportService/models/SupportTicketTypeDtoListEnvelope.ts +14 -0
  605. package/clients/supportService/models/SupportTicketTypeUpdateDto.ts +11 -0
  606. package/clients/supportService/models/SupportTicketUpdateDto.ts +14 -0
  607. package/clients/supportService/services/SupportEntitlementsService.ts +163 -0
  608. package/clients/supportService/services/SupportRequestAttachmentsService.ts +163 -0
  609. package/clients/supportService/services/SupportRequestsService.ts +290 -0
  610. package/clients/supportService/services/SupportTicketPrioritiesService.ts +163 -0
  611. package/clients/supportService/services/SupportTicketTypesService.ts +163 -0
  612. package/clients/supportService/services/SupportTicketsService.ts +331 -0
  613. package/clients/systemService/core/ApiError.ts +25 -0
  614. package/clients/systemService/core/ApiRequestOptions.ts +17 -0
  615. package/clients/systemService/core/ApiResult.ts +11 -0
  616. package/clients/systemService/core/CancelablePromise.ts +131 -0
  617. package/clients/systemService/core/OpenAPI.ts +32 -0
  618. package/clients/systemService/core/request.ts +322 -0
  619. package/clients/systemService/index.ts +33 -0
  620. package/clients/systemService/models/BooleanEnvelope.ts +13 -0
  621. package/clients/systemService/models/ErrorEnvelope.ts +12 -0
  622. package/clients/systemService/models/GeneralValidationFailure.ts +9 -0
  623. package/clients/systemService/models/GeneralValidationFailureListEnvelope.ts +14 -0
  624. package/clients/{cartService/models/InfoResponse.ts → systemService/models/ISwaggerContact.ts} +3 -2
  625. package/clients/systemService/models/ISwaggerEndpoint.ts +10 -0
  626. package/clients/systemService/models/ISwaggerLicense.ts +9 -0
  627. package/clients/systemService/models/ISwaggerSpec.ts +19 -0
  628. package/clients/{catalogService/models/ForgotPasswordRequest.ts → systemService/models/LicenseValidationRequest.ts} +2 -2
  629. package/clients/systemService/models/Module.ts +44 -0
  630. package/clients/systemService/models/ModuleListEnvelope.ts +14 -0
  631. package/clients/systemService/models/StringListEnvelope.ts +13 -0
  632. package/clients/systemService/models/StudioModule.ts +9 -0
  633. package/clients/systemService/models/StudioModuleListEnvelope.ts +14 -0
  634. package/clients/systemService/models/SuiteLicenseAssignmentDto.ts +16 -0
  635. package/clients/systemService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  636. package/clients/systemService/models/SuiteLicenseDto.ts +15 -0
  637. package/clients/systemService/models/SuiteLicenseDtoEnvelope.ts +14 -0
  638. package/clients/systemService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  639. package/clients/systemService/services/AntiforgeryService.ts +41 -0
  640. package/clients/systemService/services/LicensingService.ts +230 -0
  641. package/clients/systemService/services/MigrationsService.ts +55 -0
  642. package/clients/systemService/services/ModulesService.ts +61 -0
  643. package/clients/tenantService/core/ApiError.ts +24 -24
  644. package/clients/tenantService/core/ApiRequestOptions.ts +16 -16
  645. package/clients/tenantService/core/ApiResult.ts +10 -10
  646. package/clients/tenantService/core/CancelablePromise.ts +130 -130
  647. package/clients/tenantService/core/OpenAPI.ts +31 -31
  648. package/clients/tenantService/core/request.ts +321 -321
  649. package/clients/tenantService/index.ts +130 -62
  650. package/clients/tenantService/models/BooleanEnvelope.ts +13 -0
  651. package/clients/tenantService/models/CartDto.ts +18 -0
  652. package/clients/tenantService/models/CartDtoEnvelope.ts +14 -0
  653. package/clients/tenantService/models/EmptyEnvelope.ts +12 -0
  654. package/clients/tenantService/models/ErrorEnvelope.ts +12 -0
  655. package/clients/tenantService/models/ExtendedTenantDto.ts +51 -0
  656. package/clients/tenantService/models/ExtendedTenantDtoEnvelope.ts +14 -0
  657. package/clients/tenantService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  658. package/clients/tenantService/models/ExtendedTenantEnrolmentDtoEnvelope.ts +14 -0
  659. package/clients/tenantService/models/NotificationDtoListEnvelope.ts +2 -2
  660. package/clients/tenantService/models/Operation.ts +23 -0
  661. package/clients/tenantService/models/PlatformUserDto.ts +71 -0
  662. package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +14 -0
  663. package/clients/tenantService/models/SocialProfileDto.ts +39 -0
  664. package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +14 -0
  665. package/clients/tenantService/models/StringListEnvelope.ts +2 -2
  666. package/clients/tenantService/models/SuiteLicenseAssignmentDto.ts +16 -0
  667. package/clients/tenantService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  668. package/clients/tenantService/models/SuiteLicenseDto.ts +15 -0
  669. package/clients/tenantService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  670. package/clients/{cartService/models/RegisterRequest.ts → tenantService/models/SuiteLicenseFeatureDto.ts} +3 -3
  671. package/clients/tenantService/models/SuiteLicenseFeatureDtoListEnvelope.ts +14 -0
  672. package/clients/tenantService/models/{BusinessCreateDto.ts → TenantCreateDto.ts} +9 -8
  673. package/clients/tenantService/models/TenantDepartmentCreateDto.ts +16 -0
  674. package/clients/tenantService/models/TenantDepartmentDto.ts +16 -0
  675. package/clients/tenantService/models/TenantDepartmentDtoEnvelope.ts +14 -0
  676. package/clients/tenantService/models/TenantDepartmentDtoListEnvelope.ts +14 -0
  677. package/clients/tenantService/models/TenantDepartmentUpdateDto.ts +12 -0
  678. package/clients/tenantService/models/TenantDto.ts +45 -0
  679. package/clients/tenantService/models/TenantDtoEnvelope.ts +14 -0
  680. package/clients/tenantService/models/TenantEnrollmentCreateDto.ts +11 -0
  681. package/clients/tenantService/models/TenantEnrollmentUpdateDto.ts +9 -0
  682. package/clients/tenantService/models/TenantEnrolmentDto.ts +15 -0
  683. package/clients/tenantService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  684. package/clients/tenantService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  685. package/clients/tenantService/models/TenantIndustryCreateDto.ts +12 -0
  686. package/clients/tenantService/models/TenantIndustryDto.ts +12 -0
  687. package/clients/tenantService/models/TenantIndustryDtoEnvelope.ts +14 -0
  688. package/clients/tenantService/models/TenantIndustryUpdateDto.ts +10 -0
  689. package/clients/tenantService/models/TenantInvitationCreateDto.ts +12 -0
  690. package/clients/tenantService/models/TenantInvitationDto.ts +16 -0
  691. package/clients/tenantService/models/TenantInvitationDtoEnvelope.ts +14 -0
  692. package/clients/tenantService/models/TenantInvitationDtoListEnvelope.ts +14 -0
  693. package/clients/tenantService/models/TenantPositionCreateDto.ts +13 -0
  694. package/clients/tenantService/models/TenantPositionDto.ts +13 -0
  695. package/clients/tenantService/models/TenantPositionDtoEnvelope.ts +14 -0
  696. package/clients/tenantService/models/TenantPositionDtoListEnvelope.ts +14 -0
  697. package/clients/tenantService/models/TenantPositionUpdateDto.ts +9 -0
  698. package/clients/tenantService/models/TenantSegmentCreateDto.ts +12 -0
  699. package/clients/tenantService/models/TenantSegmentDto.ts +12 -0
  700. package/clients/tenantService/models/TenantSegmentDtoEnvelope.ts +14 -0
  701. package/clients/tenantService/models/TenantSegmentDtoListEnvelope.ts +14 -0
  702. package/clients/tenantService/models/TenantSegmentUpdateDto.ts +10 -0
  703. package/clients/tenantService/models/TenantSizeCreateDto.ts +12 -0
  704. package/clients/tenantService/models/TenantSizeDto.ts +12 -0
  705. package/clients/tenantService/models/TenantSizeDtoEnvelope.ts +14 -0
  706. package/clients/tenantService/models/TenantSizeDtoListEnvelope.ts +14 -0
  707. package/clients/tenantService/models/TenantSizeUpdateDto.ts +10 -0
  708. package/clients/tenantService/models/TenantTeamContactEnrollmentCreateDto.ts +13 -0
  709. package/clients/tenantService/models/TenantTeamContactEnrollmentDto.ts +13 -0
  710. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoEnvelope.ts +14 -0
  711. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  712. package/clients/tenantService/models/TenantTeamContactEnrollmentUpdateDto.ts +11 -0
  713. package/clients/tenantService/models/TenantTeamCreateDto.ts +17 -0
  714. package/clients/tenantService/models/TenantTeamDto.ts +17 -0
  715. package/clients/tenantService/models/TenantTeamDtoEnvelope.ts +14 -0
  716. package/clients/tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.ts +14 -0
  717. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentCreateDto.ts +13 -0
  718. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDto.ts +13 -0
  719. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoEnvelope.ts +14 -0
  720. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  721. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentUpdateDto.ts +11 -0
  722. package/clients/tenantService/models/TenantTeamProjectEnrollmentCreateDto.ts +13 -0
  723. package/clients/tenantService/models/TenantTeamProjectEnrollmentDto.ts +13 -0
  724. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoEnvelope.ts +14 -0
  725. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  726. package/clients/tenantService/models/TenantTeamProjectEnrollmentUpdateDto.ts +11 -0
  727. package/clients/tenantService/models/TenantTeamRecordCreateDto.ts +12 -0
  728. package/clients/tenantService/models/TenantTeamRecordDto.ts +12 -0
  729. package/clients/tenantService/models/TenantTeamRecordDtoEnvelope.ts +14 -0
  730. package/clients/tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts +14 -0
  731. package/clients/tenantService/models/TenantTeamRecordUpdateDto.ts +10 -0
  732. package/clients/tenantService/models/TenantTeamUpdateDto.ts +17 -0
  733. package/clients/tenantService/models/TenantTerritoryCreateDto.ts +14 -0
  734. package/clients/tenantService/models/TenantTerritoryDto.ts +14 -0
  735. package/clients/tenantService/models/TenantTerritoryDtoEnvelope.ts +14 -0
  736. package/clients/tenantService/models/TenantTerritoryDtoListEnvelope.ts +14 -0
  737. package/clients/tenantService/models/TenantTerritoryUpdateDto.ts +9 -0
  738. package/clients/{catalogService/models/StockItemCreateDto.ts → tenantService/models/TenantTypeCreateDto.ts} +4 -4
  739. package/clients/tenantService/models/TenantTypeDto.ts +11 -0
  740. package/clients/tenantService/models/TenantTypeDtoEnvelope.ts +14 -0
  741. package/clients/tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
  742. package/clients/tenantService/models/TenantTypeUpdateDto.ts +9 -0
  743. package/clients/tenantService/models/TenantUnitCreateDto.ts +18 -0
  744. package/clients/tenantService/models/TenantUnitDto.ts +18 -0
  745. package/clients/tenantService/models/TenantUnitDtoEnvelope.ts +14 -0
  746. package/clients/tenantService/models/TenantUnitDtoListEnvelope.ts +14 -0
  747. package/clients/tenantService/models/TenantUnitUpdateDto.ts +14 -0
  748. package/clients/tenantService/models/TenantUpdateDto.ts +31 -0
  749. package/clients/tenantService/models/WalletDto.ts +2 -1
  750. package/clients/tenantService/models/WalletDtoEnvelope.ts +14 -0
  751. package/clients/tenantService/models/WebPortalDto.ts +19 -0
  752. package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +14 -0
  753. package/clients/tenantService/services/DepartmentsService.ts +198 -0
  754. package/clients/tenantService/services/EmployeeEnrollmentsService.ts +181 -0
  755. package/clients/tenantService/services/EnrollmentsService.ts +195 -0
  756. package/clients/tenantService/services/IndustriesService.ts +190 -0
  757. package/clients/tenantService/services/InvitationsService.ts +150 -0
  758. package/clients/tenantService/services/PositionsService.ts +192 -0
  759. package/clients/tenantService/services/SegmentsService.ts +191 -0
  760. package/clients/tenantService/services/SizesService.ts +194 -0
  761. package/clients/tenantService/services/TeamContactEnrollmentsService.ts +191 -0
  762. package/clients/tenantService/services/TeamProjectEnrollmentService.ts +181 -0
  763. package/clients/tenantService/services/TeamRecordsService.ts +192 -0
  764. package/clients/tenantService/services/TeamsService.ts +192 -0
  765. package/clients/tenantService/services/TenantsService.ts +771 -115
  766. package/clients/tenantService/services/TerritoriesService.ts +192 -0
  767. package/clients/tenantService/services/TypesService.ts +176 -0
  768. package/clients/tenantService/services/UnitsService.ts +190 -0
  769. package/clients/walletsService/core/ApiError.ts +25 -0
  770. package/clients/walletsService/core/ApiRequestOptions.ts +17 -0
  771. package/clients/walletsService/core/ApiResult.ts +11 -0
  772. package/clients/walletsService/core/CancelablePromise.ts +131 -0
  773. package/clients/walletsService/core/OpenAPI.ts +32 -0
  774. package/clients/walletsService/core/request.ts +322 -0
  775. package/clients/walletsService/index.ts +24 -0
  776. package/clients/walletsService/models/Currency.ts +9 -0
  777. package/clients/walletsService/models/ErrorEnvelope.ts +12 -0
  778. package/clients/walletsService/models/InvoiceDto.ts +102 -0
  779. package/clients/{invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts → walletsService/models/InvoiceDtoListEnvelope.ts} +3 -3
  780. package/clients/walletsService/models/LocationDto.ts +31 -0
  781. package/clients/walletsService/models/LocationDtoListEnvelope.ts +14 -0
  782. package/clients/walletsService/models/Money.ts +10 -0
  783. package/clients/walletsService/models/OrderDto.ts +113 -0
  784. package/clients/walletsService/models/OrderDtoListEnvelope.ts +14 -0
  785. package/clients/walletsService/models/PaymentDto.ts +94 -0
  786. package/clients/walletsService/models/PaymentDtoListEnvelope.ts +14 -0
  787. package/clients/walletsService/models/WalletDto.ts +22 -0
  788. package/clients/walletsService/models/WalletDtoEnvelope.ts +14 -0
  789. package/clients/walletsService/services/WalletsService.ts +239 -0
  790. package/package.json +26 -23
  791. package/schemas/accountingService/schema.s.ts +5108 -0
  792. package/schemas/cartService/schema.s.ts +2804 -1560
  793. package/schemas/catalogService/schema.s.ts +7056 -6109
  794. package/schemas/crmService/schema.s.ts +1558 -0
  795. package/schemas/forexService/schema.s.ts +373 -526
  796. package/schemas/holderService/schema.s.ts +1327 -831
  797. package/schemas/identityService/schema.s.ts +766 -1119
  798. package/schemas/inventoryService/schema.s.ts +46 -425
  799. package/schemas/invoicingService/schema.s.ts +2243 -521
  800. package/schemas/learningService/schema.s.ts +1723 -0
  801. package/schemas/marketingService/schema.s.ts +3027 -0
  802. package/schemas/ordersService/schema.s.ts +1129 -0
  803. package/schemas/pricingService/schema.s.ts +658 -549
  804. package/schemas/securityService/schema.s.ts +1226 -0
  805. package/schemas/supportService/schema.s.ts +2114 -0
  806. package/schemas/systemService/schema.s.ts +1348 -0
  807. package/schemas/tenantService/schema.s.ts +6094 -1606
  808. package/schemas/walletsService/schema.s.ts +806 -0
  809. package/tsconfig.json +110 -0
  810. package/vite.config.js +29 -0
  811. package/wwwroot/build/bundle.js +1 -0
  812. package/clients/cartService/models/AccessTokenResponse.ts +0 -11
  813. package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
  814. package/clients/cartService/models/LoginRequest.ts +0 -11
  815. package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
  816. package/clients/cartService/models/ResponseStatus.ts +0 -12
  817. package/clients/cartService/models/TwoFactorRequest.ts +0 -12
  818. package/clients/cartService/models/TwoFactorResponse.ts +0 -12
  819. package/clients/cartService/services/FenixAllianceAbsWebService.ts +0 -293
  820. package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
  821. package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
  822. package/clients/catalogService/models/InfoRequest.ts +0 -10
  823. package/clients/catalogService/models/InfoResponse.ts +0 -9
  824. package/clients/catalogService/models/ItemPricePolicyDto.ts +0 -35
  825. package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +0 -14
  826. package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +0 -14
  827. package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +0 -14
  828. package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +0 -14
  829. package/clients/catalogService/models/LoginRequest.ts +0 -11
  830. package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +0 -14
  831. package/clients/catalogService/models/RefreshRequest.ts +0 -8
  832. package/clients/catalogService/models/RegisterRequest.ts +0 -9
  833. package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
  834. package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
  835. package/clients/catalogService/models/StockItemDto.ts +0 -17
  836. package/clients/catalogService/models/StockItemUpdateDto.ts +0 -9
  837. package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
  838. package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
  839. package/clients/catalogService/services/FenixAllianceAbsWebService.ts +0 -293
  840. package/clients/catalogService/services/ProductsService.ts +0 -1743
  841. package/clients/contactService/index.ts +0 -28
  842. package/clients/contactService/models/AccessTokenResponse.ts +0 -11
  843. package/clients/contactService/models/ContactDto.ts +0 -44
  844. package/clients/contactService/models/ForgotPasswordRequest.ts +0 -8
  845. package/clients/contactService/models/HttpValidationProblemDetails.ts +0 -5
  846. package/clients/contactService/models/InfoRequest.ts +0 -10
  847. package/clients/contactService/models/InfoResponse.ts +0 -9
  848. package/clients/contactService/models/LoginRequest.ts +0 -11
  849. package/clients/contactService/models/RefreshRequest.ts +0 -8
  850. package/clients/contactService/models/RegisterRequest.ts +0 -9
  851. package/clients/contactService/models/ResendConfirmationEmailRequest.ts +0 -8
  852. package/clients/contactService/models/ResetPasswordRequest.ts +0 -10
  853. package/clients/contactService/models/TwoFactorRequest.ts +0 -12
  854. package/clients/contactService/models/TwoFactorResponse.ts +0 -12
  855. package/clients/contactService/services/ContactsService.ts +0 -140
  856. package/clients/contactService/services/FenixAllianceAbsWebService.ts +0 -293
  857. package/clients/forexService/models/AccessTokenResponse.ts +0 -11
  858. package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
  859. package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
  860. package/clients/forexService/models/InfoRequest.ts +0 -10
  861. package/clients/forexService/models/InfoResponse.ts +0 -9
  862. package/clients/forexService/models/LoginRequest.ts +0 -11
  863. package/clients/forexService/models/RefreshRequest.ts +0 -8
  864. package/clients/forexService/models/RegisterRequest.ts +0 -9
  865. package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
  866. package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
  867. package/clients/forexService/models/TwoFactorRequest.ts +0 -12
  868. package/clients/forexService/models/TwoFactorResponse.ts +0 -12
  869. package/clients/forexService/services/FenixAllianceAbsWebService.ts +0 -293
  870. package/clients/holderService/models/AccessTokenResponse.ts +0 -11
  871. package/clients/holderService/models/AccountHolderCreateDto.ts +0 -34
  872. package/clients/holderService/models/AccountHolderDtoEnvelope.ts +0 -14
  873. package/clients/holderService/models/BusinessEnrollmentDto.ts +0 -19
  874. package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
  875. package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
  876. package/clients/holderService/models/InfoRequest.ts +0 -10
  877. package/clients/holderService/models/InfoResponse.ts +0 -9
  878. package/clients/holderService/models/LoginRequest.ts +0 -11
  879. package/clients/holderService/models/RefreshRequest.ts +0 -8
  880. package/clients/holderService/models/RegisterRequest.ts +0 -9
  881. package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
  882. package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
  883. package/clients/holderService/models/TwoFactorRequest.ts +0 -12
  884. package/clients/holderService/models/TwoFactorResponse.ts +0 -12
  885. package/clients/holderService/services/FenixAllianceAbsWebService.ts +0 -293
  886. package/clients/identityService/models/AccessTokenResponse.ts +0 -11
  887. package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
  888. package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
  889. package/clients/identityService/models/InfoRequest.ts +0 -10
  890. package/clients/identityService/models/InfoResponse.ts +0 -9
  891. package/clients/identityService/models/LoginRequest.ts +0 -11
  892. package/clients/identityService/models/RefreshRequest.ts +0 -8
  893. package/clients/identityService/models/RegisterRequest.ts +0 -9
  894. package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
  895. package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
  896. package/clients/identityService/models/TwoFactorRequest.ts +0 -12
  897. package/clients/identityService/models/TwoFactorResponse.ts +0 -12
  898. package/clients/identityService/services/FenixAllianceAbsWebService.ts +0 -293
  899. package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
  900. package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
  901. package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
  902. package/clients/inventoryService/models/InfoRequest.ts +0 -10
  903. package/clients/inventoryService/models/InfoResponse.ts +0 -9
  904. package/clients/inventoryService/models/LoginRequest.ts +0 -11
  905. package/clients/inventoryService/models/RefreshRequest.ts +0 -8
  906. package/clients/inventoryService/models/RegisterRequest.ts +0 -9
  907. package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
  908. package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
  909. package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
  910. package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
  911. package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +0 -293
  912. package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
  913. package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
  914. package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
  915. package/clients/invoicingService/models/InfoRequest.ts +0 -10
  916. package/clients/invoicingService/models/InfoResponse.ts +0 -9
  917. package/clients/invoicingService/models/LoginRequest.ts +0 -11
  918. package/clients/invoicingService/models/RefreshRequest.ts +0 -8
  919. package/clients/invoicingService/models/RegisterRequest.ts +0 -9
  920. package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
  921. package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
  922. package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
  923. package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
  924. package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +0 -293
  925. package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
  926. package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
  927. package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
  928. package/clients/pricingService/models/InfoRequest.ts +0 -10
  929. package/clients/pricingService/models/InfoResponse.ts +0 -9
  930. package/clients/pricingService/models/LoginRequest.ts +0 -11
  931. package/clients/pricingService/models/RefreshRequest.ts +0 -8
  932. package/clients/pricingService/models/RegisterRequest.ts +0 -9
  933. package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
  934. package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
  935. package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
  936. package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
  937. package/clients/pricingService/services/FenixAllianceAbsWebService.ts +0 -293
  938. package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
  939. package/clients/tenantService/models/AccountHolderCreateDto.ts +0 -34
  940. package/clients/tenantService/models/AggregateException.ts +0 -18
  941. package/clients/tenantService/models/Assembly.ts +0 -46
  942. package/clients/tenantService/models/BusinessEnrollmentDto.ts +0 -19
  943. package/clients/tenantService/models/ConstructorInfo.ts +0 -103
  944. package/clients/tenantService/models/CustomAttributeData.ts +0 -15
  945. package/clients/tenantService/models/CustomAttributeNamedArgument.ts +0 -13
  946. package/clients/tenantService/models/CustomAttributeTypedArgument.ts +0 -10
  947. package/clients/tenantService/models/EventInfo.ts +0 -44
  948. package/clients/tenantService/models/Exception.ts +0 -16
  949. package/clients/tenantService/models/FieldInfo.ts +0 -74
  950. package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
  951. package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
  952. package/clients/tenantService/models/InfoRequest.ts +0 -10
  953. package/clients/tenantService/models/InfoResponse.ts +0 -9
  954. package/clients/tenantService/models/LoginRequest.ts +0 -11
  955. package/clients/tenantService/models/MemberInfo.ts +0 -31
  956. package/clients/tenantService/models/MethodBase.ts +0 -103
  957. package/clients/tenantService/models/MethodInfo.ts +0 -108
  958. package/clients/tenantService/models/Module.ts +0 -19
  959. package/clients/tenantService/models/ModuleHandle.ts +0 -8
  960. package/clients/tenantService/models/ParameterInfo.ts +0 -40
  961. package/clients/tenantService/models/PropertyInfo.ts +0 -49
  962. package/clients/tenantService/models/RefreshRequest.ts +0 -8
  963. package/clients/tenantService/models/RegisterRequest.ts +0 -9
  964. package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
  965. package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
  966. package/clients/tenantService/models/ResponseStatus.ts +0 -12
  967. package/clients/tenantService/models/RuntimeFieldHandle.ts +0 -9
  968. package/clients/tenantService/models/RuntimeMethodHandle.ts +0 -9
  969. package/clients/tenantService/models/RuntimeTypeHandle.ts +0 -9
  970. package/clients/tenantService/models/StructLayoutAttribute.ts +0 -16
  971. package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
  972. package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
  973. package/clients/tenantService/models/Type.ts +0 -141
  974. package/clients/tenantService/models/TypeInfo.ts +0 -156
  975. package/clients/tenantService/models/WalletDtoTask.ts +0 -40
  976. package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +0 -14
  977. package/clients/tenantService/services/FenixAllianceAbsWebService.ts +0 -293
  978. package/schemas/contactService/schema.s.ts +0 -674
@@ -1,831 +1,1327 @@
1
- /**
2
- * This file was auto-generated by openapi-typescript.
3
- * Do not make direct changes to the file.
4
- */
5
-
6
-
7
- export interface paths {
8
- "/version": {
9
- get: {
10
- responses: {
11
- /** @description Success */
12
- 200: {
13
- content: never;
14
- };
15
- };
16
- };
17
- };
18
- "/health": {
19
- get: {
20
- responses: {
21
- /** @description Success */
22
- 200: {
23
- content: never;
24
- };
25
- };
26
- };
27
- };
28
- "/hello": {
29
- get: {
30
- responses: {
31
- /** @description Success */
32
- 200: {
33
- content: never;
34
- };
35
- };
36
- };
37
- };
38
- "/register": {
39
- post: {
40
- requestBody?: {
41
- content: {
42
- "application/json": components["schemas"]["RegisterRequest"];
43
- };
44
- };
45
- responses: {
46
- /** @description Success */
47
- 200: {
48
- content: never;
49
- };
50
- /** @description Bad Request */
51
- 400: {
52
- content: {
53
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
54
- };
55
- };
56
- };
57
- };
58
- };
59
- "/login": {
60
- post: {
61
- parameters: {
62
- query?: {
63
- useCookies?: boolean;
64
- useSessionCookies?: boolean;
65
- };
66
- };
67
- requestBody?: {
68
- content: {
69
- "application/json": components["schemas"]["LoginRequest"];
70
- };
71
- };
72
- responses: {
73
- /** @description Success */
74
- 200: {
75
- content: {
76
- "application/json": components["schemas"]["AccessTokenResponse"];
77
- };
78
- };
79
- };
80
- };
81
- };
82
- "/refresh": {
83
- post: {
84
- requestBody?: {
85
- content: {
86
- "application/json": components["schemas"]["RefreshRequest"];
87
- };
88
- };
89
- responses: {
90
- /** @description Success */
91
- 200: {
92
- content: {
93
- "application/json": components["schemas"]["AccessTokenResponse"];
94
- };
95
- };
96
- };
97
- };
98
- };
99
- "/confirmEmail": {
100
- get: operations["MapIdentityApi-/confirmEmail"];
101
- };
102
- "/resendConfirmationEmail": {
103
- post: {
104
- requestBody?: {
105
- content: {
106
- "application/json": components["schemas"]["ResendConfirmationEmailRequest"];
107
- };
108
- };
109
- responses: {
110
- /** @description Success */
111
- 200: {
112
- content: never;
113
- };
114
- };
115
- };
116
- };
117
- "/forgotPassword": {
118
- post: {
119
- requestBody?: {
120
- content: {
121
- "application/json": components["schemas"]["ForgotPasswordRequest"];
122
- };
123
- };
124
- responses: {
125
- /** @description Success */
126
- 200: {
127
- content: never;
128
- };
129
- /** @description Bad Request */
130
- 400: {
131
- content: {
132
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
133
- };
134
- };
135
- };
136
- };
137
- };
138
- "/resetPassword": {
139
- post: {
140
- requestBody?: {
141
- content: {
142
- "application/json": components["schemas"]["ResetPasswordRequest"];
143
- };
144
- };
145
- responses: {
146
- /** @description Success */
147
- 200: {
148
- content: never;
149
- };
150
- /** @description Bad Request */
151
- 400: {
152
- content: {
153
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
154
- };
155
- };
156
- };
157
- };
158
- };
159
- "/manage/2fa": {
160
- post: {
161
- requestBody?: {
162
- content: {
163
- "application/json": components["schemas"]["TwoFactorRequest"];
164
- };
165
- };
166
- responses: {
167
- /** @description Success */
168
- 200: {
169
- content: {
170
- "application/json": components["schemas"]["TwoFactorResponse"];
171
- };
172
- };
173
- /** @description Bad Request */
174
- 400: {
175
- content: {
176
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
177
- };
178
- };
179
- /** @description Not Found */
180
- 404: {
181
- content: never;
182
- };
183
- };
184
- };
185
- };
186
- "/manage/info": {
187
- get: {
188
- responses: {
189
- /** @description Success */
190
- 200: {
191
- content: {
192
- "application/json": components["schemas"]["InfoResponse"];
193
- };
194
- };
195
- /** @description Bad Request */
196
- 400: {
197
- content: {
198
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
199
- };
200
- };
201
- /** @description Not Found */
202
- 404: {
203
- content: never;
204
- };
205
- };
206
- };
207
- post: {
208
- requestBody?: {
209
- content: {
210
- "application/json": components["schemas"]["InfoRequest"];
211
- };
212
- };
213
- responses: {
214
- /** @description Success */
215
- 200: {
216
- content: {
217
- "application/json": components["schemas"]["InfoResponse"];
218
- };
219
- };
220
- /** @description Bad Request */
221
- 400: {
222
- content: {
223
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
224
- };
225
- };
226
- /** @description Not Found */
227
- 404: {
228
- content: never;
229
- };
230
- };
231
- };
232
- };
233
- "/Account/PerformExternalLogin": {
234
- post: {
235
- requestBody?: {
236
- content: {
237
- "multipart/form-data": {
238
- provider: string;
239
- returnUrl: string;
240
- };
241
- "application/x-www-form-urlencoded": {
242
- provider: string;
243
- returnUrl: string;
244
- };
245
- };
246
- };
247
- responses: {
248
- /** @description Success */
249
- 200: {
250
- content: never;
251
- };
252
- };
253
- };
254
- };
255
- "/Account/Logout": {
256
- post: {
257
- requestBody?: {
258
- content: {
259
- "multipart/form-data": {
260
- returnUrl: string;
261
- };
262
- "application/x-www-form-urlencoded": {
263
- returnUrl: string;
264
- };
265
- };
266
- };
267
- responses: {
268
- /** @description Success */
269
- 200: {
270
- content: never;
271
- };
272
- };
273
- };
274
- };
275
- "/Account/Manage/LinkExternalLogin": {
276
- post: {
277
- requestBody?: {
278
- content: {
279
- "multipart/form-data": {
280
- provider: string;
281
- };
282
- "application/x-www-form-urlencoded": {
283
- provider: string;
284
- };
285
- };
286
- };
287
- responses: {
288
- /** @description Success */
289
- 200: {
290
- content: never;
291
- };
292
- };
293
- };
294
- };
295
- "/Account/Manage/DownloadPersonalData": {
296
- post: {
297
- responses: {
298
- /** @description Success */
299
- 200: {
300
- content: never;
301
- };
302
- };
303
- };
304
- };
305
- "/api/v2/Me": {
306
- get: {
307
- parameters: {
308
- query?: {
309
- "api-version"?: string;
310
- };
311
- };
312
- responses: {
313
- /** @description Success */
314
- 200: {
315
- content: {
316
- "application/json": components["schemas"]["AccountHolderDtoEnvelope"];
317
- "application/xml": components["schemas"]["AccountHolderDtoEnvelope"];
318
- };
319
- };
320
- /** @description Unauthorized */
321
- 401: {
322
- content: {
323
- "application/json": components["schemas"]["ErrorEnvelope"];
324
- "application/xml": components["schemas"]["ErrorEnvelope"];
325
- };
326
- };
327
- };
328
- };
329
- };
330
- "/api/v2/Me/Follows": {
331
- get: {
332
- parameters: {
333
- query?: {
334
- pageSize?: number;
335
- pageIndex?: number;
336
- "api-version"?: string;
337
- };
338
- };
339
- responses: {
340
- /** @description Success */
341
- 200: {
342
- content: {
343
- "application/json": components["schemas"]["FollowRecordDto"][];
344
- "application/xml": components["schemas"]["FollowRecordDto"][];
345
- };
346
- };
347
- /** @description Unauthorized */
348
- 401: {
349
- content: {
350
- "application/json": components["schemas"]["ErrorEnvelope"];
351
- "application/xml": components["schemas"]["ErrorEnvelope"];
352
- };
353
- };
354
- };
355
- };
356
- };
357
- "/api/v2/Me/Businesses": {
358
- get: {
359
- parameters: {
360
- query?: {
361
- "api-version"?: string;
362
- };
363
- };
364
- responses: {
365
- /** @description Success */
366
- 200: {
367
- content: {
368
- "application/json": components["schemas"]["BusinessDto"][];
369
- "application/xml": components["schemas"]["BusinessDto"][];
370
- };
371
- };
372
- /** @description Unauthorized */
373
- 401: {
374
- content: {
375
- "application/json": components["schemas"]["ErrorEnvelope"];
376
- "application/xml": components["schemas"]["ErrorEnvelope"];
377
- };
378
- };
379
- };
380
- };
381
- };
382
- "/api/v2/Me/Enrollments": {
383
- get: {
384
- parameters: {
385
- query?: {
386
- "api-version"?: string;
387
- };
388
- };
389
- responses: {
390
- /** @description Success */
391
- 200: {
392
- content: {
393
- "application/json": components["schemas"]["BusinessEnrollmentDto"][];
394
- "application/xml": components["schemas"]["BusinessEnrollmentDto"][];
395
- };
396
- };
397
- /** @description Unauthorized */
398
- 401: {
399
- content: {
400
- "application/json": components["schemas"]["ErrorEnvelope"];
401
- "application/xml": components["schemas"]["ErrorEnvelope"];
402
- };
403
- };
404
- };
405
- };
406
- };
407
- "/api/v2/Me/Library": {
408
- get: {
409
- parameters: {
410
- query?: {
411
- "api-version"?: string;
412
- };
413
- };
414
- responses: {
415
- /** @description Success */
416
- 200: {
417
- content: never;
418
- };
419
- /** @description Unauthorized */
420
- 401: {
421
- content: {
422
- "application/json": components["schemas"]["ErrorEnvelope"];
423
- "application/xml": components["schemas"]["ErrorEnvelope"];
424
- };
425
- };
426
- };
427
- };
428
- };
429
- "/api/v2/Me/Addresses": {
430
- get: {
431
- parameters: {
432
- query?: {
433
- "api-version"?: string;
434
- };
435
- };
436
- responses: {
437
- /** @description Unauthorized */
438
- 401: {
439
- content: {
440
- "application/json": components["schemas"]["ErrorEnvelope"];
441
- "application/xml": components["schemas"]["ErrorEnvelope"];
442
- };
443
- };
444
- };
445
- };
446
- };
447
- "/api/v2/Me/Notifications": {
448
- get: {
449
- parameters: {
450
- query?: {
451
- "api-version"?: string;
452
- };
453
- };
454
- responses: {
455
- /** @description Unauthorized */
456
- 401: {
457
- content: {
458
- "application/json": components["schemas"]["ErrorEnvelope"];
459
- "application/xml": components["schemas"]["ErrorEnvelope"];
460
- };
461
- };
462
- };
463
- };
464
- };
465
- "/api/v2/Me/Orders": {
466
- get: {
467
- parameters: {
468
- query?: {
469
- "api-version"?: string;
470
- };
471
- };
472
- responses: {
473
- /** @description Unauthorized */
474
- 401: {
475
- content: {
476
- "application/json": components["schemas"]["ErrorEnvelope"];
477
- "application/xml": components["schemas"]["ErrorEnvelope"];
478
- };
479
- };
480
- };
481
- };
482
- };
483
- "/api/v2/Me/Invoices": {
484
- get: {
485
- parameters: {
486
- query?: {
487
- "api-version"?: string;
488
- };
489
- };
490
- responses: {
491
- /** @description Unauthorized */
492
- 401: {
493
- content: {
494
- "application/json": components["schemas"]["ErrorEnvelope"];
495
- "application/xml": components["schemas"]["ErrorEnvelope"];
496
- };
497
- };
498
- };
499
- };
500
- };
501
- "/api/v2/Me/Payments": {
502
- get: {
503
- parameters: {
504
- query?: {
505
- "api-version"?: string;
506
- };
507
- };
508
- responses: {
509
- /** @description Unauthorized */
510
- 401: {
511
- content: {
512
- "application/json": components["schemas"]["ErrorEnvelope"];
513
- "application/xml": components["schemas"]["ErrorEnvelope"];
514
- };
515
- };
516
- };
517
- };
518
- };
519
- "/api/v2/Me/Settings": {
520
- get: {
521
- parameters: {
522
- query?: {
523
- "api-version"?: string;
524
- };
525
- };
526
- responses: {
527
- /** @description Unauthorized */
528
- 401: {
529
- content: {
530
- "application/json": components["schemas"]["ErrorEnvelope"];
531
- "application/xml": components["schemas"]["ErrorEnvelope"];
532
- };
533
- };
534
- };
535
- };
536
- };
537
- }
538
-
539
- export type webhooks = Record<string, never>;
540
-
541
- export interface components {
542
- schemas: {
543
- AccessTokenResponse: {
544
- tokenType?: string | null;
545
- accessToken?: string | null;
546
- /** Format: int64 */
547
- expiresIn?: number;
548
- refreshToken?: string | null;
549
- };
550
- AccountHolderCreateDto: {
551
- /** Format: uuid */
552
- id?: string;
553
- qualifiedName?: string | null;
554
- /** Format: date-time */
555
- birthday?: string;
556
- firstName?: string | null;
557
- lastName?: string | null;
558
- publicName?: string | null;
559
- idProvider?: string | null;
560
- languageID?: string | null;
561
- timezoneID?: string | null;
562
- gender?: string | null;
563
- cityID?: string | null;
564
- stateID?: string | null;
565
- email?: string | null;
566
- about?: string | null;
567
- jobTitle?: string | null;
568
- coverURL?: string | null;
569
- avatarURL?: string | null;
570
- gitHubURL?: string | null;
571
- websiteURL?: string | null;
572
- twitterUrl?: string | null;
573
- facebookURL?: string | null;
574
- youTubeURL?: string | null;
575
- linkedInURL?: string | null;
576
- instagramUrl?: string | null;
577
- countryID?: string | null;
578
- countryName?: string | null;
579
- currencyID?: string | null;
580
- };
581
- AccountHolderDto: {
582
- id?: string | null;
583
- /** Format: date-time */
584
- timestamp?: string | null;
585
- qualifiedName?: string | null;
586
- /** Format: date-time */
587
- birthday?: string;
588
- firstName?: string | null;
589
- lastName?: string | null;
590
- publicName?: string | null;
591
- idProvider?: string | null;
592
- languageId?: string | null;
593
- timezoneId?: string | null;
594
- gender?: string | null;
595
- cityId?: string | null;
596
- stateId?: string | null;
597
- email?: string | null;
598
- about?: string | null;
599
- jobTitle?: string | null;
600
- coverUrl?: string | null;
601
- avatarUrl?: string | null;
602
- gitHubUrl?: string | null;
603
- websiteUrl?: string | null;
604
- twitterUrl?: string | null;
605
- facebookUrl?: string | null;
606
- youTubeUrl?: string | null;
607
- linkedInUrl?: string | null;
608
- instagramUrl?: string | null;
609
- lockoutEnabled?: boolean;
610
- socialFeedId?: string | null;
611
- socialProfileId?: string | null;
612
- currentTenantId?: string | null;
613
- currentEnrollmentId?: string | null;
614
- cartId?: string | null;
615
- walletId?: string | null;
616
- countryId?: string | null;
617
- currencyId?: string | null;
618
- userName?: string | null;
619
- status?: string | null;
620
- phoneNumber?: string | null;
621
- publicIdentifier?: string | null;
622
- identityProvider?: string | null;
623
- phoneNumberConfirmed?: boolean;
624
- emailConfirmed?: boolean;
625
- /**
626
- * Format: int32
627
- * @enum {integer}
628
- */
629
- themeMode?: 0 | 1 | 2;
630
- /**
631
- * Format: int32
632
- * @enum {integer}
633
- */
634
- availability?: 0 | 1 | 2 | 3 | 4;
635
- /** Format: int32 */
636
- followsCount?: number | null;
637
- /** Format: int32 */
638
- followersCount?: number | null;
639
- /** Format: int32 */
640
- enrollmentsCount?: number | null;
641
- /** Format: int32 */
642
- socialPostsCount?: number | null;
643
- /** Format: int32 */
644
- unreadMessagesCount?: number | null;
645
- /** Format: int32 */
646
- unreadNotificationsCount?: number | null;
647
- webUrl?: string | null;
648
- countryStateId?: string | null;
649
- selectedBusinessId?: string | null;
650
- };
651
- AccountHolderDtoEnvelope: {
652
- errorMessage?: string | null;
653
- isSuccess?: boolean;
654
- /** Format: date-time */
655
- timestamp?: string;
656
- activityId?: string | null;
657
- correlationId?: string | null;
658
- result?: components["schemas"]["AccountHolderDto"];
659
- };
660
- BusinessDto: {
661
- id?: string | null;
662
- /** Format: date-time */
663
- timestamp?: string | null;
664
- qualifiedName?: string | null;
665
- taxID?: string | null;
666
- about?: string | null;
667
- walletID?: string | null;
668
- socialFeedID?: string | null;
669
- businessIndustryID?: string | null;
670
- businessSegmentID?: string | null;
671
- socialProfileID?: string | null;
672
- languageId?: string | null;
673
- name?: string | null;
674
- duns?: string | null;
675
- slogan?: string | null;
676
- legalName?: string | null;
677
- coverUrl?: string | null;
678
- avatarUrl?: string | null;
679
- cartID?: string | null;
680
- currencyID?: string | null;
681
- timezoneID?: string | null;
682
- countryID?: string | null;
683
- stateID?: string | null;
684
- cityID?: string | null;
685
- /** Format: int32 */
686
- followsCount?: number | null;
687
- /** Format: int32 */
688
- followersCount?: number | null;
689
- /** Format: int32 */
690
- enrollmentsCount?: number | null;
691
- /** Format: int32 */
692
- socialPostsCount?: number | null;
693
- /** Format: int32 */
694
- unreadMessagesCount?: number | null;
695
- /** Format: int32 */
696
- unreadNotificationsCount?: number | null;
697
- enrollmentID?: string | null;
698
- c2BFollowID?: string | null;
699
- b2CFollowID?: string | null;
700
- email?: string | null;
701
- phone?: string | null;
702
- webUrl?: string | null;
703
- facebookUrl?: string | null;
704
- twitterUrl?: string | null;
705
- gitHubUrl?: string | null;
706
- linkedInUrl?: string | null;
707
- instagramUrl?: string | null;
708
- youTubeUrl?: string | null;
709
- whatsAppNumber?: string | null;
710
- verified?: boolean;
711
- businessName?: string | null;
712
- businessLegalName?: string | null;
713
- twitterUsername?: string | null;
714
- };
715
- BusinessEnrollmentDto: {
716
- id?: string | null;
717
- isRoot?: boolean;
718
- isOwner?: boolean;
719
- isAdmin?: boolean;
720
- isDisabled?: boolean;
721
- isBusinessOwner?: boolean;
722
- businessID?: string | null;
723
- holderID?: string | null;
724
- holder?: components["schemas"]["AccountHolderCreateDto"];
725
- tenant?: components["schemas"]["BusinessDto"];
726
- };
727
- ErrorEnvelope: {
728
- errorMessage?: string | null;
729
- isSuccess?: boolean;
730
- /** Format: date-time */
731
- timestamp?: string;
732
- activityId?: string | null;
733
- correlationId?: string | null;
734
- };
735
- FollowRecordDto: {
736
- id?: string | null;
737
- type?: string | null;
738
- followerID?: string | null;
739
- followedID?: string | null;
740
- alerts?: boolean;
741
- };
742
- ForgotPasswordRequest: {
743
- email?: string | null;
744
- };
745
- HttpValidationProblemDetails: {
746
- type?: string | null;
747
- title?: string | null;
748
- /** Format: int32 */
749
- status?: number | null;
750
- detail?: string | null;
751
- instance?: string | null;
752
- errors?: {
753
- [key: string]: string[];
754
- } | null;
755
- [key: string]: unknown;
756
- };
757
- InfoRequest: {
758
- newEmail?: string | null;
759
- newPassword?: string | null;
760
- oldPassword?: string | null;
761
- };
762
- InfoResponse: {
763
- email?: string | null;
764
- isEmailConfirmed?: boolean;
765
- };
766
- LoginRequest: {
767
- email?: string | null;
768
- password?: string | null;
769
- twoFactorCode?: string | null;
770
- twoFactorRecoveryCode?: string | null;
771
- };
772
- RefreshRequest: {
773
- refreshToken?: string | null;
774
- };
775
- RegisterRequest: {
776
- email?: string | null;
777
- password?: string | null;
778
- };
779
- ResendConfirmationEmailRequest: {
780
- email?: string | null;
781
- };
782
- ResetPasswordRequest: {
783
- email?: string | null;
784
- resetCode?: string | null;
785
- newPassword?: string | null;
786
- };
787
- TwoFactorRequest: {
788
- enable?: boolean | null;
789
- twoFactorCode?: string | null;
790
- resetSharedKey?: boolean;
791
- resetRecoveryCodes?: boolean;
792
- forgetMachine?: boolean;
793
- };
794
- TwoFactorResponse: {
795
- sharedKey?: string | null;
796
- /** Format: int32 */
797
- recoveryCodesLeft?: number;
798
- recoveryCodes?: string[] | null;
799
- isTwoFactorEnabled?: boolean;
800
- isMachineRemembered?: boolean;
801
- };
802
- };
803
- responses: never;
804
- parameters: never;
805
- requestBodies: never;
806
- headers: never;
807
- pathItems: never;
808
- }
809
-
810
- export type $defs = Record<string, never>;
811
-
812
- export type external = Record<string, never>;
813
-
814
- export interface operations {
815
-
816
- "MapIdentityApi-/confirmEmail": {
817
- parameters: {
818
- query?: {
819
- userId?: string;
820
- code?: string;
821
- changedEmail?: string;
822
- };
823
- };
824
- responses: {
825
- /** @description Success */
826
- 200: {
827
- content: never;
828
- };
829
- };
830
- };
831
- }
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+
6
+
7
+ export interface paths {
8
+ "/api/v2/Me": {
9
+ get: {
10
+ parameters: {
11
+ query?: {
12
+ "api-version"?: string;
13
+ };
14
+ header?: {
15
+ "x-api-version"?: string;
16
+ };
17
+ };
18
+ responses: {
19
+ /** @description OK */
20
+ 200: {
21
+ content: {
22
+ "application/json": components["schemas"]["PlatformUserDtoEnvelope"];
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"];
199
+ };
200
+ };
201
+ /** @description Unauthorized */
202
+ 401: {
203
+ content: {
204
+ "application/json": components["schemas"]["ErrorEnvelope"];
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"];
215
+ };
216
+ };
217
+ };
218
+ };
219
+ };
220
+ "/api/v2/Me/Follows": {
221
+ get: {
222
+ parameters: {
223
+ query?: {
224
+ pageSize?: number;
225
+ pageIndex?: number;
226
+ "api-version"?: string;
227
+ };
228
+ header?: {
229
+ "x-api-version"?: string;
230
+ };
231
+ };
232
+ responses: {
233
+ /** @description OK */
234
+ 200: {
235
+ content: {
236
+ "application/json": components["schemas"]["FollowRecordDto"][];
237
+ "application/xml": components["schemas"]["FollowRecordDto"][];
238
+ "multipart/form-data": components["schemas"]["FollowRecordDto"][];
239
+ };
240
+ };
241
+ /** @description Unauthorized */
242
+ 401: {
243
+ content: {
244
+ "application/json": components["schemas"]["ErrorEnvelope"];
245
+ "application/xml": components["schemas"]["ErrorEnvelope"];
246
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
247
+ };
248
+ };
249
+ };
250
+ };
251
+ };
252
+ "/api/v2/Me/Followers": {
253
+ get: {
254
+ parameters: {
255
+ query?: {
256
+ pageSize?: number;
257
+ pageIndex?: number;
258
+ "api-version"?: string;
259
+ };
260
+ header?: {
261
+ "x-api-version"?: string;
262
+ };
263
+ };
264
+ responses: {
265
+ /** @description OK */
266
+ 200: {
267
+ content: {
268
+ "application/json": components["schemas"]["FollowRecordDto"][];
269
+ "application/xml": components["schemas"]["FollowRecordDto"][];
270
+ "multipart/form-data": components["schemas"]["FollowRecordDto"][];
271
+ };
272
+ };
273
+ /** @description Unauthorized */
274
+ 401: {
275
+ content: {
276
+ "application/json": components["schemas"]["ErrorEnvelope"];
277
+ "application/xml": components["schemas"]["ErrorEnvelope"];
278
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
279
+ };
280
+ };
281
+ };
282
+ };
283
+ };
284
+ "/api/v2/Me/Businesses": {
285
+ get: {
286
+ parameters: {
287
+ query?: {
288
+ "api-version"?: string;
289
+ };
290
+ header?: {
291
+ "x-api-version"?: string;
292
+ };
293
+ };
294
+ responses: {
295
+ /** @description OK */
296
+ 200: {
297
+ content: {
298
+ "application/json": components["schemas"]["TenantDtoListEnvelope"];
299
+ "application/xml": components["schemas"]["TenantDtoListEnvelope"];
300
+ "multipart/form-data": components["schemas"]["TenantDtoListEnvelope"];
301
+ };
302
+ };
303
+ /** @description Unauthorized */
304
+ 401: {
305
+ content: {
306
+ "application/json": components["schemas"]["ErrorEnvelope"];
307
+ "application/xml": components["schemas"]["ErrorEnvelope"];
308
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
309
+ };
310
+ };
311
+ /** @description Forbidden */
312
+ 403: {
313
+ content: {
314
+ "application/json": components["schemas"]["ErrorEnvelope"];
315
+ "application/xml": components["schemas"]["ErrorEnvelope"];
316
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
317
+ };
318
+ };
319
+ };
320
+ };
321
+ };
322
+ "/api/v2/Me/Businesses/Extended": {
323
+ get: {
324
+ parameters: {
325
+ query?: {
326
+ "api-version"?: string;
327
+ };
328
+ header?: {
329
+ "x-api-version"?: string;
330
+ };
331
+ };
332
+ responses: {
333
+ /** @description OK */
334
+ 200: {
335
+ content: {
336
+ "application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
337
+ "application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
338
+ "multipart/form-data": components["schemas"]["ExtendedTenantDtoListEnvelope"];
339
+ };
340
+ };
341
+ /** @description Unauthorized */
342
+ 401: {
343
+ content: {
344
+ "application/json": components["schemas"]["ErrorEnvelope"];
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"];
355
+ };
356
+ };
357
+ };
358
+ };
359
+ };
360
+ "/api/v2/Me/Enrollments": {
361
+ get: {
362
+ parameters: {
363
+ query?: {
364
+ "api-version"?: string;
365
+ };
366
+ header?: {
367
+ "x-api-version"?: string;
368
+ };
369
+ };
370
+ responses: {
371
+ /** @description OK */
372
+ 200: {
373
+ content: {
374
+ "application/json": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
375
+ "application/xml": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
376
+ "multipart/form-data": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
377
+ };
378
+ };
379
+ /** @description Unauthorized */
380
+ 401: {
381
+ content: {
382
+ "application/json": components["schemas"]["ErrorEnvelope"];
383
+ "application/xml": components["schemas"]["ErrorEnvelope"];
384
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
385
+ };
386
+ };
387
+ };
388
+ };
389
+ };
390
+ "/api/v2/Me/Enrollments/Extended": {
391
+ get: {
392
+ parameters: {
393
+ query?: {
394
+ "api-version"?: string;
395
+ };
396
+ header?: {
397
+ "x-api-version"?: string;
398
+ };
399
+ };
400
+ responses: {
401
+ /** @description OK */
402
+ 200: {
403
+ content: {
404
+ "application/json": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
405
+ "application/xml": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
406
+ "multipart/form-data": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
407
+ };
408
+ };
409
+ /** @description Unauthorized */
410
+ 401: {
411
+ content: {
412
+ "application/json": components["schemas"]["ErrorEnvelope"];
413
+ "application/xml": components["schemas"]["ErrorEnvelope"];
414
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
415
+ };
416
+ };
417
+ };
418
+ };
419
+ };
420
+ "/api/v2/Me/Enrollments/{enrollmentId}": {
421
+ get: {
422
+ parameters: {
423
+ query?: {
424
+ "api-version"?: string;
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
+ };
439
+ };
440
+ responses: {
441
+ /** @description OK */
442
+ 200: {
443
+ content: {
444
+ "application/json": components["schemas"]["TenantEnrolmentDtoEnvelope"];
445
+ "application/xml": components["schemas"]["TenantEnrolmentDtoEnvelope"];
446
+ "multipart/form-data": components["schemas"]["TenantEnrolmentDtoEnvelope"];
447
+ };
448
+ };
449
+ /** @description Unauthorized */
450
+ 401: {
451
+ content: {
452
+ "application/json": components["schemas"]["ErrorEnvelope"];
453
+ "application/xml": components["schemas"]["ErrorEnvelope"];
454
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
455
+ };
456
+ };
457
+ };
458
+ };
459
+ };
460
+ "/api/v2/Me/SocialProfile": {
461
+ get: {
462
+ parameters: {
463
+ query?: {
464
+ "api-version"?: string;
465
+ };
466
+ header?: {
467
+ "x-api-version"?: string;
468
+ };
469
+ };
470
+ responses: {
471
+ /** @description OK */
472
+ 200: {
473
+ content: {
474
+ "application/json": components["schemas"]["SocialProfileDtoEnvelope"];
475
+ "application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
476
+ "multipart/form-data": components["schemas"]["SocialProfileDtoEnvelope"];
477
+ };
478
+ };
479
+ /** @description Unauthorized */
480
+ 401: {
481
+ content: {
482
+ "application/json": components["schemas"]["ErrorEnvelope"];
483
+ "application/xml": components["schemas"]["ErrorEnvelope"];
484
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
485
+ };
486
+ };
487
+ };
488
+ };
489
+ };
490
+ "/api/v2/Me/Cart": {
491
+ get: {
492
+ parameters: {
493
+ query?: {
494
+ "api-version"?: string;
495
+ };
496
+ header?: {
497
+ "x-api-version"?: string;
498
+ };
499
+ };
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
+ };
509
+ /** @description Unauthorized */
510
+ 401: {
511
+ content: {
512
+ "application/json": components["schemas"]["ErrorEnvelope"];
513
+ "application/xml": components["schemas"]["ErrorEnvelope"];
514
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
515
+ };
516
+ };
517
+ };
518
+ };
519
+ };
520
+ "/api/v2/Me/Wallet": {
521
+ get: {
522
+ parameters: {
523
+ query?: {
524
+ "api-version"?: string;
525
+ };
526
+ header?: {
527
+ "x-api-version"?: string;
528
+ };
529
+ };
530
+ responses: {
531
+ /** @description OK */
532
+ 200: {
533
+ content: {
534
+ "application/json": components["schemas"]["WalletDtoEnvelope"];
535
+ "application/xml": components["schemas"]["WalletDtoEnvelope"];
536
+ "multipart/form-data": components["schemas"]["WalletDtoEnvelope"];
537
+ };
538
+ };
539
+ /** @description Unauthorized */
540
+ 401: {
541
+ content: {
542
+ "application/json": components["schemas"]["ErrorEnvelope"];
543
+ "application/xml": components["schemas"]["ErrorEnvelope"];
544
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
545
+ };
546
+ };
547
+ };
548
+ };
549
+ };
550
+ "/api/v2/Me/Notifications": {
551
+ get: {
552
+ parameters: {
553
+ query?: {
554
+ "api-version"?: string;
555
+ };
556
+ header?: {
557
+ "x-api-version"?: string;
558
+ };
559
+ };
560
+ responses: {
561
+ /** @description OK */
562
+ 200: {
563
+ content: {
564
+ "application/json": components["schemas"]["NotificationDtoListEnvelope"];
565
+ "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
566
+ "multipart/form-data": components["schemas"]["NotificationDtoListEnvelope"];
567
+ };
568
+ };
569
+ /** @description Unauthorized */
570
+ 401: {
571
+ content: {
572
+ "application/json": components["schemas"]["ErrorEnvelope"];
573
+ "application/xml": components["schemas"]["ErrorEnvelope"];
574
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
575
+ };
576
+ };
577
+ };
578
+ };
579
+ };
580
+ "/api/v2/Me/Settings": {
581
+ get: {
582
+ parameters: {
583
+ query?: {
584
+ "api-version"?: string;
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
+ };
624
+ };
625
+ responses: {
626
+ /** @description OK */
627
+ 200: {
628
+ content: {
629
+ "application/json": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
630
+ "application/xml": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
631
+ "multipart/form-data": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
632
+ };
633
+ };
634
+ /** @description Unauthorized */
635
+ 401: {
636
+ content: {
637
+ "application/json": components["schemas"]["ErrorEnvelope"];
638
+ "application/xml": components["schemas"]["ErrorEnvelope"];
639
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
640
+ };
641
+ };
642
+ };
643
+ };
644
+ };
645
+ "/api/v2/Me/Addresses": {
646
+ get: {
647
+ parameters: {
648
+ query?: {
649
+ "api-version"?: string;
650
+ };
651
+ header?: {
652
+ "x-api-version"?: string;
653
+ };
654
+ };
655
+ responses: {
656
+ /** @description OK */
657
+ 200: {
658
+ content: {
659
+ "application/json": components["schemas"]["AddressDtoListEnvelope"];
660
+ "application/xml": components["schemas"]["AddressDtoListEnvelope"];
661
+ "multipart/form-data": components["schemas"]["AddressDtoListEnvelope"];
662
+ };
663
+ };
664
+ /** @description Unauthorized */
665
+ 401: {
666
+ content: {
667
+ "application/json": components["schemas"]["ErrorEnvelope"];
668
+ "application/xml": components["schemas"]["ErrorEnvelope"];
669
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
670
+ };
671
+ };
672
+ };
673
+ };
674
+ };
675
+ "/api/v2/Me/Invitations": {
676
+ get: {
677
+ parameters: {
678
+ query?: {
679
+ "api-version"?: string;
680
+ };
681
+ header?: {
682
+ "x-api-version"?: string;
683
+ };
684
+ };
685
+ responses: {
686
+ /** @description OK */
687
+ 200: {
688
+ content: {
689
+ "application/json": components["schemas"]["TenantInvitationDtoListEnvelope"];
690
+ "application/xml": components["schemas"]["TenantInvitationDtoListEnvelope"];
691
+ "multipart/form-data": components["schemas"]["TenantInvitationDtoListEnvelope"];
692
+ };
693
+ };
694
+ /** @description Unauthorized */
695
+ 401: {
696
+ content: {
697
+ "application/json": components["schemas"]["ErrorEnvelope"];
698
+ "application/xml": components["schemas"]["ErrorEnvelope"];
699
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
700
+ };
701
+ };
702
+ };
703
+ };
704
+ };
705
+ }
706
+
707
+ export type webhooks = Record<string, never>;
708
+
709
+ export interface components {
710
+ schemas: {
711
+ AddressDto: {
712
+ id?: string | null;
713
+ /** Format: date-time */
714
+ timestamp?: string | null;
715
+ title?: string | null;
716
+ business?: string | null;
717
+ email?: string | null;
718
+ phone?: string | null;
719
+ fax?: string | null;
720
+ address1?: string | null;
721
+ address2?: string | null;
722
+ address3?: string | null;
723
+ unit?: string | null;
724
+ cityId?: string | null;
725
+ stateId?: string | null;
726
+ postalCode?: string | null;
727
+ countryId?: string | null;
728
+ /** Format: double */
729
+ longitude?: number;
730
+ /** Format: double */
731
+ latitude?: number;
732
+ isRoutable?: boolean;
733
+ isGlobalPrimary?: boolean;
734
+ isCountryPrimary?: boolean;
735
+ canGenerateLabels?: boolean;
736
+ isDefaultSenderAddress?: boolean;
737
+ isDefaultReturnAddress?: boolean;
738
+ isDefaultSuppingLocation?: boolean;
739
+ };
740
+ AddressDtoListEnvelope: {
741
+ isSuccess?: boolean;
742
+ errorMessage?: string | null;
743
+ correlationId?: string | null;
744
+ /** Format: date-time */
745
+ timestamp?: string;
746
+ activityId?: string | null;
747
+ result?: components["schemas"]["AddressDto"][] | null;
748
+ };
749
+ CartDto: {
750
+ id?: string | null;
751
+ ip?: string | null;
752
+ type?: string | null;
753
+ /** Format: double */
754
+ total?: number;
755
+ /** Format: double */
756
+ taxes?: number;
757
+ /** Format: double */
758
+ freight?: number;
759
+ /** Format: double */
760
+ subTotal?: number;
761
+ currencyId?: string | null;
762
+ countryId?: string | null;
763
+ /** Format: int32 */
764
+ itemCartRecordsCount?: number | null;
765
+ /** Format: int32 */
766
+ itemToCompareRecordsCount?: number | null;
767
+ };
768
+ CartDtoEnvelope: {
769
+ isSuccess?: boolean;
770
+ errorMessage?: string | null;
771
+ correlationId?: string | null;
772
+ /** Format: date-time */
773
+ timestamp?: string;
774
+ activityId?: string | null;
775
+ result?: components["schemas"]["CartDto"];
776
+ };
777
+ EmptyEnvelope: {
778
+ isSuccess?: boolean;
779
+ errorMessage?: string | null;
780
+ correlationId?: string | null;
781
+ /** Format: date-time */
782
+ timestamp?: string;
783
+ activityId?: string | null;
784
+ };
785
+ EmptyEnvelopeEnvelope: {
786
+ isSuccess?: boolean;
787
+ errorMessage?: string | null;
788
+ correlationId?: string | null;
789
+ /** Format: date-time */
790
+ timestamp?: string;
791
+ activityId?: string | null;
792
+ result?: components["schemas"]["EmptyEnvelope"];
793
+ };
794
+ EnrollmentId: Record<string, never>;
795
+ ErrorEnvelope: {
796
+ isSuccess?: boolean;
797
+ errorMessage?: string | null;
798
+ correlationId?: string | null;
799
+ /** Format: date-time */
800
+ timestamp?: string;
801
+ activityId?: string | null;
802
+ };
803
+ ExtendedPlatformUserDto: {
804
+ id?: string | null;
805
+ /** Format: date-time */
806
+ timestamp?: 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: {
870
+ isSuccess?: boolean;
871
+ errorMessage?: string | null;
872
+ correlationId?: string | null;
873
+ /** Format: date-time */
874
+ timestamp?: string;
875
+ activityId?: string | null;
876
+ result?: components["schemas"]["ExtendedPlatformUserDto"];
877
+ };
878
+ ExtendedTenantDto: {
879
+ id?: string | null;
880
+ /** Format: date-time */
881
+ timestamp?: 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;
900
+ countryId?: string | null;
901
+ stateId?: string | null;
902
+ cityId?: string | null;
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"];
921
+ };
922
+ ExtendedTenantDtoListEnvelope: {
923
+ isSuccess?: boolean;
924
+ errorMessage?: string | null;
925
+ correlationId?: string | null;
926
+ /** Format: date-time */
927
+ timestamp?: string;
928
+ activityId?: string | null;
929
+ result?: components["schemas"]["ExtendedTenantDto"][] | null;
930
+ };
931
+ ExtendedTenantEnrolmentDto: {
932
+ id?: string | null;
933
+ /** Format: date-time */
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"];
943
+ };
944
+ ExtendedTenantEnrolmentDtoListEnvelope: {
945
+ isSuccess?: boolean;
946
+ errorMessage?: string | null;
947
+ correlationId?: string | null;
948
+ /** Format: date-time */
949
+ timestamp?: string;
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;
977
+ correlationId?: string | 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;
993
+ };
994
+ PlatformUserDto: {
995
+ id?: string | null;
996
+ /** Format: date-time */
997
+ timestamp?: string | null;
998
+ fullName?: string | null;
999
+ socialProfileId?: string | null;
1000
+ publicName?: string | null;
1001
+ firstName?: string | null;
1002
+ lastName?: string | null;
1003
+ coverUrl?: string | null;
1004
+ avatarUrl?: string | null;
1005
+ timezoneId?: string | null;
1006
+ gitHubUrl?: string | null;
1007
+ websiteUrl?: string | null;
1008
+ twitterUrl?: string | null;
1009
+ facebookUrl?: string | null;
1010
+ youTubeUrl?: string | null;
1011
+ linkedInUrl?: string | null;
1012
+ instagramUrl?: string | null;
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;
1029
+ socialFeedId?: string | null;
1030
+ currentTenantId?: string | null;
1031
+ currentEnrollmentId?: string | null;
1032
+ status?: string | null;
1033
+ cartId?: string | null;
1034
+ walletId?: string | null;
1035
+ userName?: string | null;
1036
+ currencyId?: string | null;
1037
+ phoneNumber?: string | null;
1038
+ publicIdentifier?: string | null;
1039
+ identityProvider?: string | null;
1040
+ phoneNumberConfirmed?: boolean;
1041
+ emailConfirmed?: boolean;
1042
+ lockoutEnabled?: boolean;
1043
+ /**
1044
+ * Format: int32
1045
+ * @enum {integer|null}
1046
+ */
1047
+ availability?: 0 | 1 | 2 | 3 | 4 | null;
1048
+ /** Format: int32 */
1049
+ enrollmentsCount?: number | null;
1050
+ /**
1051
+ * Format: int32
1052
+ * @enum {integer|null}
1053
+ */
1054
+ siteTheme?: 0 | 1 | 2 | null;
1055
+ };
1056
+ PlatformUserDtoEnvelope: {
1057
+ isSuccess?: boolean;
1058
+ errorMessage?: string | null;
1059
+ correlationId?: string | null;
1060
+ /** Format: date-time */
1061
+ timestamp?: string;
1062
+ activityId?: string | null;
1063
+ result?: components["schemas"]["PlatformUserDto"];
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
+ };
1135
+ SocialProfileDto: {
1136
+ id?: string | null;
1137
+ /** Format: date-time */
1138
+ timestamp?: string | null;
1139
+ /**
1140
+ * Format: int32
1141
+ * @enum {integer}
1142
+ */
1143
+ type?: 0 | 1 | 2 | 3;
1144
+ name?: string | null;
1145
+ about?: string | null;
1146
+ cover?: string | null;
1147
+ avatar?: string | null;
1148
+ country?: string | null;
1149
+ /** Format: int32 */
1150
+ followsCount?: number | null;
1151
+ /** Format: int32 */
1152
+ messagesCount?: number | null;
1153
+ /** Format: int32 */
1154
+ followersCount?: number | null;
1155
+ /** Format: int32 */
1156
+ notificationsCount?: number | null;
1157
+ /** Format: int32 */
1158
+ unreadNotificationsCount?: number | null;
1159
+ /** Format: int32 */
1160
+ unreadMessagesCount?: number | null;
1161
+ socialFeedId?: string | null;
1162
+ twitterUrl?: string | null;
1163
+ facebookURL?: string | null;
1164
+ linkedInURL?: string | null;
1165
+ youtubeURL?: string | null;
1166
+ githubURL?: string | null;
1167
+ pinterestURL?: string | null;
1168
+ dribbleURL?: string | null;
1169
+ domain?: string | null;
1170
+ notes?: string | null;
1171
+ };
1172
+ SocialProfileDtoEnvelope: {
1173
+ isSuccess?: boolean;
1174
+ errorMessage?: string | null;
1175
+ correlationId?: string | null;
1176
+ /** Format: date-time */
1177
+ timestamp?: string;
1178
+ activityId?: string | null;
1179
+ result?: components["schemas"]["SocialProfileDto"];
1180
+ };
1181
+ TenantDto: {
1182
+ id?: string | null;
1183
+ /** Format: date-time */
1184
+ timestamp?: string | null;
1185
+ qualifiedName?: string | null;
1186
+ taxId?: string | null;
1187
+ about?: string | null;
1188
+ walletId?: string | null;
1189
+ socialFeedId?: string | null;
1190
+ businessIndustryId?: string | null;
1191
+ businessSegmentId?: string | null;
1192
+ socialProfileId?: string | null;
1193
+ languageId?: string | null;
1194
+ name?: string | null;
1195
+ duns?: string | null;
1196
+ slogan?: string | null;
1197
+ legalName?: string | null;
1198
+ coverUrl?: string | null;
1199
+ avatarUrl?: string | null;
1200
+ cartId?: string | null;
1201
+ currencyId?: string | null;
1202
+ timezoneId?: string | null;
1203
+ countryId?: string | null;
1204
+ stateId?: string | null;
1205
+ cityId?: string | null;
1206
+ email?: string | null;
1207
+ phone?: string | null;
1208
+ webUrl?: string | null;
1209
+ facebookUrl?: string | null;
1210
+ twitterUrl?: string | null;
1211
+ gitHubUrl?: string | null;
1212
+ linkedInUrl?: string | null;
1213
+ instagramUrl?: string | null;
1214
+ youTubeUrl?: string | null;
1215
+ whatsAppNumber?: string | null;
1216
+ supportPhoneNumber?: string | null;
1217
+ verified?: boolean;
1218
+ businessName?: string | null;
1219
+ businessLegalName?: string | null;
1220
+ twitterUsername?: string | null;
1221
+ };
1222
+ TenantDtoListEnvelope: {
1223
+ isSuccess?: boolean;
1224
+ errorMessage?: string | null;
1225
+ correlationId?: string | null;
1226
+ /** Format: date-time */
1227
+ timestamp?: string;
1228
+ activityId?: string | null;
1229
+ result?: components["schemas"]["TenantDto"][] | null;
1230
+ };
1231
+ TenantEnrolmentDto: {
1232
+ id?: string | null;
1233
+ /** Format: date-time */
1234
+ timestamp?: string | null;
1235
+ tenantId?: string | null;
1236
+ userId?: string | null;
1237
+ isRoot?: boolean;
1238
+ isOwner?: boolean;
1239
+ isAdmin?: boolean;
1240
+ isDisabled?: boolean;
1241
+ };
1242
+ TenantEnrolmentDtoEnvelope: {
1243
+ isSuccess?: boolean;
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: {
1252
+ isSuccess?: boolean;
1253
+ errorMessage?: string | null;
1254
+ correlationId?: string | null;
1255
+ /** Format: date-time */
1256
+ timestamp?: string;
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;
1276
+ correlationId?: string | null;
1277
+ /** Format: date-time */
1278
+ timestamp?: string;
1279
+ activityId?: string | null;
1280
+ result?: components["schemas"]["TenantInvitationDto"][] | null;
1281
+ };
1282
+ WalletDto: {
1283
+ id?: string | null;
1284
+ /** Format: date-time */
1285
+ timestamp?: string;
1286
+ /** Format: double */
1287
+ balance?: number;
1288
+ /** Format: double */
1289
+ cryptoBalance?: number;
1290
+ testMode?: boolean;
1291
+ verified?: boolean;
1292
+ type?: string | null;
1293
+ currencyId?: string | null;
1294
+ /** Format: double */
1295
+ forexRate?: number;
1296
+ /** Format: double */
1297
+ balanceInUsd?: number;
1298
+ /** Format: double */
1299
+ mainNetEtherBalance?: number;
1300
+ ethereumAddress?: string | null;
1301
+ ethereumPublicKey?: string | null;
1302
+ ethereumPrivateKey?: string | null;
1303
+ /** Format: double */
1304
+ rollingReservePercent?: number;
1305
+ };
1306
+ WalletDtoEnvelope: {
1307
+ isSuccess?: boolean;
1308
+ errorMessage?: string | null;
1309
+ correlationId?: string | null;
1310
+ /** Format: date-time */
1311
+ timestamp?: string;
1312
+ activityId?: string | null;
1313
+ result?: components["schemas"]["WalletDto"];
1314
+ };
1315
+ };
1316
+ responses: never;
1317
+ parameters: never;
1318
+ requestBodies: never;
1319
+ headers: never;
1320
+ pathItems: never;
1321
+ }
1322
+
1323
+ export type $defs = Record<string, never>;
1324
+
1325
+ export type external = Record<string, never>;
1326
+
1327
+ export type operations = Record<string, never>;