@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,1119 +1,766 @@
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/Applications/{appID}": {
9
- get: {
10
- parameters: {
11
- query?: {
12
- "api-version"?: string;
13
- };
14
- path: {
15
- appID: string;
16
- };
17
- };
18
- responses: {
19
- /** @description Success */
20
- 200: {
21
- content: never;
22
- };
23
- };
24
- };
25
- };
26
- "/api/v2/Applications/{appID}/RequiredPermissions": {
27
- get: {
28
- parameters: {
29
- query?: {
30
- "api-version"?: string;
31
- };
32
- path: {
33
- appID: string;
34
- };
35
- };
36
- responses: {
37
- /** @description Success */
38
- 200: {
39
- content: never;
40
- };
41
- };
42
- };
43
- };
44
- "/api/v2/Applications/{appID}/GrantedPermissions": {
45
- get: {
46
- parameters: {
47
- query?: {
48
- tenantID?: string;
49
- "api-version"?: string;
50
- };
51
- path: {
52
- appID: string;
53
- };
54
- };
55
- responses: {
56
- /** @description Success */
57
- 200: {
58
- content: never;
59
- };
60
- };
61
- };
62
- };
63
- "/api/v2/Applications/{appID}/GrantedRoles": {
64
- get: {
65
- parameters: {
66
- query?: {
67
- tenantID?: string;
68
- "api-version"?: string;
69
- };
70
- path: {
71
- appID: string;
72
- };
73
- };
74
- responses: {
75
- /** @description Success */
76
- 200: {
77
- content: never;
78
- };
79
- };
80
- };
81
- };
82
- "/api/v2/Applications/{appID}/GrantedRoles/{SecurityRoleID}/GrantedPermissions": {
83
- get: {
84
- parameters: {
85
- query?: {
86
- enrollmentID?: string;
87
- "api-version"?: string;
88
- };
89
- path: {
90
- appID: string;
91
- securityRoleID: string;
92
- };
93
- };
94
- responses: {
95
- /** @description Success */
96
- 200: {
97
- content: never;
98
- };
99
- };
100
- };
101
- };
102
- "/api/v2/Auth/Checker/IsAuthenticated": {
103
- post: {
104
- parameters: {
105
- query?: {
106
- "api-version"?: string;
107
- };
108
- };
109
- responses: {
110
- /** @description Success */
111
- 200: {
112
- content: {
113
- "application/json": boolean;
114
- "application/xml": boolean;
115
- };
116
- };
117
- };
118
- };
119
- };
120
- "/version": {
121
- get: {
122
- responses: {
123
- /** @description Success */
124
- 200: {
125
- content: never;
126
- };
127
- };
128
- };
129
- };
130
- "/health": {
131
- get: {
132
- responses: {
133
- /** @description Success */
134
- 200: {
135
- content: never;
136
- };
137
- };
138
- };
139
- };
140
- "/hello": {
141
- get: {
142
- responses: {
143
- /** @description Success */
144
- 200: {
145
- content: never;
146
- };
147
- };
148
- };
149
- };
150
- "/register": {
151
- post: {
152
- requestBody?: {
153
- content: {
154
- "application/json": components["schemas"]["RegisterRequest"];
155
- };
156
- };
157
- responses: {
158
- /** @description Success */
159
- 200: {
160
- content: never;
161
- };
162
- /** @description Bad Request */
163
- 400: {
164
- content: {
165
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
166
- };
167
- };
168
- };
169
- };
170
- };
171
- "/login": {
172
- post: {
173
- parameters: {
174
- query?: {
175
- useCookies?: boolean;
176
- useSessionCookies?: boolean;
177
- };
178
- };
179
- requestBody?: {
180
- content: {
181
- "application/json": components["schemas"]["LoginRequest"];
182
- };
183
- };
184
- responses: {
185
- /** @description Success */
186
- 200: {
187
- content: {
188
- "application/json": components["schemas"]["AccessTokenResponse"];
189
- };
190
- };
191
- };
192
- };
193
- };
194
- "/refresh": {
195
- post: {
196
- requestBody?: {
197
- content: {
198
- "application/json": components["schemas"]["RefreshRequest"];
199
- };
200
- };
201
- responses: {
202
- /** @description Success */
203
- 200: {
204
- content: {
205
- "application/json": components["schemas"]["AccessTokenResponse"];
206
- };
207
- };
208
- };
209
- };
210
- };
211
- "/confirmEmail": {
212
- get: operations["MapIdentityApi-/confirmEmail"];
213
- };
214
- "/resendConfirmationEmail": {
215
- post: {
216
- requestBody?: {
217
- content: {
218
- "application/json": components["schemas"]["ResendConfirmationEmailRequest"];
219
- };
220
- };
221
- responses: {
222
- /** @description Success */
223
- 200: {
224
- content: never;
225
- };
226
- };
227
- };
228
- };
229
- "/forgotPassword": {
230
- post: {
231
- requestBody?: {
232
- content: {
233
- "application/json": components["schemas"]["ForgotPasswordRequest"];
234
- };
235
- };
236
- responses: {
237
- /** @description Success */
238
- 200: {
239
- content: never;
240
- };
241
- /** @description Bad Request */
242
- 400: {
243
- content: {
244
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
245
- };
246
- };
247
- };
248
- };
249
- };
250
- "/resetPassword": {
251
- post: {
252
- requestBody?: {
253
- content: {
254
- "application/json": components["schemas"]["ResetPasswordRequest"];
255
- };
256
- };
257
- responses: {
258
- /** @description Success */
259
- 200: {
260
- content: never;
261
- };
262
- /** @description Bad Request */
263
- 400: {
264
- content: {
265
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
266
- };
267
- };
268
- };
269
- };
270
- };
271
- "/manage/2fa": {
272
- post: {
273
- requestBody?: {
274
- content: {
275
- "application/json": components["schemas"]["TwoFactorRequest"];
276
- };
277
- };
278
- responses: {
279
- /** @description Success */
280
- 200: {
281
- content: {
282
- "application/json": components["schemas"]["TwoFactorResponse"];
283
- };
284
- };
285
- /** @description Bad Request */
286
- 400: {
287
- content: {
288
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
289
- };
290
- };
291
- /** @description Not Found */
292
- 404: {
293
- content: never;
294
- };
295
- };
296
- };
297
- };
298
- "/manage/info": {
299
- get: {
300
- responses: {
301
- /** @description Success */
302
- 200: {
303
- content: {
304
- "application/json": components["schemas"]["InfoResponse"];
305
- };
306
- };
307
- /** @description Bad Request */
308
- 400: {
309
- content: {
310
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
311
- };
312
- };
313
- /** @description Not Found */
314
- 404: {
315
- content: never;
316
- };
317
- };
318
- };
319
- post: {
320
- requestBody?: {
321
- content: {
322
- "application/json": components["schemas"]["InfoRequest"];
323
- };
324
- };
325
- responses: {
326
- /** @description Success */
327
- 200: {
328
- content: {
329
- "application/json": components["schemas"]["InfoResponse"];
330
- };
331
- };
332
- /** @description Bad Request */
333
- 400: {
334
- content: {
335
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
336
- };
337
- };
338
- /** @description Not Found */
339
- 404: {
340
- content: never;
341
- };
342
- };
343
- };
344
- };
345
- "/Account/PerformExternalLogin": {
346
- post: {
347
- requestBody?: {
348
- content: {
349
- "multipart/form-data": {
350
- provider: string;
351
- returnUrl: string;
352
- };
353
- "application/x-www-form-urlencoded": {
354
- provider: string;
355
- returnUrl: string;
356
- };
357
- };
358
- };
359
- responses: {
360
- /** @description Success */
361
- 200: {
362
- content: never;
363
- };
364
- };
365
- };
366
- };
367
- "/Account/Logout": {
368
- post: {
369
- requestBody?: {
370
- content: {
371
- "multipart/form-data": {
372
- returnUrl: string;
373
- };
374
- "application/x-www-form-urlencoded": {
375
- returnUrl: string;
376
- };
377
- };
378
- };
379
- responses: {
380
- /** @description Success */
381
- 200: {
382
- content: never;
383
- };
384
- };
385
- };
386
- };
387
- "/Account/Manage/LinkExternalLogin": {
388
- post: {
389
- requestBody?: {
390
- content: {
391
- "multipart/form-data": {
392
- provider: string;
393
- };
394
- "application/x-www-form-urlencoded": {
395
- provider: string;
396
- };
397
- };
398
- };
399
- responses: {
400
- /** @description Success */
401
- 200: {
402
- content: never;
403
- };
404
- };
405
- };
406
- };
407
- "/Account/Manage/DownloadPersonalData": {
408
- post: {
409
- responses: {
410
- /** @description Success */
411
- 200: {
412
- content: never;
413
- };
414
- };
415
- };
416
- };
417
- "/api/v2/OAuth/WhoAmI": {
418
- get: {
419
- parameters: {
420
- query?: {
421
- businessId?: string;
422
- "api-version"?: string;
423
- };
424
- };
425
- responses: {
426
- /** @description Success */
427
- 200: {
428
- content: {
429
- "application/json": components["schemas"]["ApiResponseEnvelope"];
430
- "application/xml": components["schemas"]["ApiResponseEnvelope"];
431
- };
432
- };
433
- /** @description Unauthorized */
434
- 401: {
435
- content: {
436
- "application/json": components["schemas"]["ErrorEnvelope"];
437
- "application/xml": components["schemas"]["ErrorEnvelope"];
438
- };
439
- };
440
- /** @description Forbidden */
441
- 403: {
442
- content: {
443
- "application/json": components["schemas"]["ErrorEnvelope"];
444
- "application/xml": components["schemas"]["ErrorEnvelope"];
445
- };
446
- };
447
- };
448
- };
449
- };
450
- "/api/v2/OAuth/Permissions": {
451
- get: {
452
- parameters: {
453
- query?: {
454
- businessId?: string;
455
- userId?: string;
456
- "api-version"?: string;
457
- };
458
- };
459
- responses: {
460
- /** @description Success */
461
- 200: {
462
- content: {
463
- "application/json": components["schemas"]["StringListEnvelope"];
464
- "application/xml": components["schemas"]["StringListEnvelope"];
465
- };
466
- };
467
- /** @description Unauthorized */
468
- 401: {
469
- content: {
470
- "application/json": components["schemas"]["ErrorEnvelope"];
471
- "application/xml": components["schemas"]["ErrorEnvelope"];
472
- };
473
- };
474
- /** @description Forbidden */
475
- 403: {
476
- content: {
477
- "application/json": components["schemas"]["ErrorEnvelope"];
478
- "application/xml": components["schemas"]["ErrorEnvelope"];
479
- };
480
- };
481
- };
482
- };
483
- };
484
- "/api/v2/OAuth/Token": {
485
- post: {
486
- parameters: {
487
- query?: {
488
- "api-version"?: string;
489
- };
490
- };
491
- requestBody?: {
492
- content: {
493
- "application/json": components["schemas"]["OAuthTokenRequest"];
494
- "application/xml": components["schemas"]["OAuthTokenRequest"];
495
- };
496
- };
497
- responses: {
498
- /** @description Success */
499
- 200: {
500
- content: {
501
- "application/json": components["schemas"]["JsonWebTokenEnvelope"];
502
- "application/xml": components["schemas"]["JsonWebTokenEnvelope"];
503
- };
504
- };
505
- /** @description Unauthorized */
506
- 401: {
507
- content: {
508
- "application/json": components["schemas"]["ErrorEnvelope"];
509
- "application/xml": components["schemas"]["ErrorEnvelope"];
510
- };
511
- };
512
- /** @description Forbidden */
513
- 403: {
514
- content: {
515
- "application/json": components["schemas"]["ErrorEnvelope"];
516
- "application/xml": components["schemas"]["ErrorEnvelope"];
517
- };
518
- };
519
- };
520
- };
521
- };
522
- "/api/v2/OAuth/SignIn": {
523
- get: {
524
- parameters: {
525
- query?: {
526
- "api-version"?: string;
527
- };
528
- };
529
- responses: {
530
- /** @description Success */
531
- 200: {
532
- content: {
533
- "application/json": components["schemas"]["AccountHolderCreateDtoEnvelope"];
534
- "application/xml": components["schemas"]["AccountHolderCreateDtoEnvelope"];
535
- };
536
- };
537
- /** @description Bad Request */
538
- 400: {
539
- content: {
540
- "application/json": components["schemas"]["ErrorEnvelope"];
541
- "application/xml": components["schemas"]["ErrorEnvelope"];
542
- };
543
- };
544
- /** @description Unauthorized */
545
- 401: {
546
- content: {
547
- "application/json": components["schemas"]["ErrorEnvelope"];
548
- "application/xml": components["schemas"]["ErrorEnvelope"];
549
- };
550
- };
551
- };
552
- };
553
- post: {
554
- parameters: {
555
- query?: {
556
- "api-version"?: string;
557
- };
558
- };
559
- requestBody?: {
560
- content: {
561
- "application/json": components["schemas"]["SigninModel"];
562
- "application/xml": components["schemas"]["SigninModel"];
563
- };
564
- };
565
- responses: {
566
- /** @description Success */
567
- 200: {
568
- content: {
569
- "application/json": components["schemas"]["JsonWebTokenEnvelope"];
570
- "application/xml": components["schemas"]["JsonWebTokenEnvelope"];
571
- };
572
- };
573
- /** @description Bad Request */
574
- 400: {
575
- content: {
576
- "application/json": components["schemas"]["ErrorEnvelope"];
577
- "application/xml": components["schemas"]["ErrorEnvelope"];
578
- };
579
- };
580
- /** @description Unauthorized */
581
- 401: {
582
- content: {
583
- "application/json": components["schemas"]["ErrorEnvelope"];
584
- "application/xml": components["schemas"]["ErrorEnvelope"];
585
- };
586
- };
587
- };
588
- };
589
- };
590
- "/api/v2/OAuth/{applicationId}/Keys": {
591
- get: {
592
- parameters: {
593
- query?: {
594
- "api-version"?: string;
595
- };
596
- path: {
597
- applicationId: string;
598
- };
599
- };
600
- responses: {
601
- /** @description Success */
602
- 200: {
603
- content: {
604
- "application/json": components["schemas"]["JsonWebKeySetEnvelope"];
605
- "application/xml": components["schemas"]["JsonWebKeySetEnvelope"];
606
- };
607
- };
608
- };
609
- };
610
- };
611
- "/api/v2/OAuth/{tenantId}/{applicationId}/.Well-Known/OpenId-Configuration": {
612
- get: {
613
- parameters: {
614
- query?: {
615
- "api-version"?: string;
616
- };
617
- path: {
618
- tenantId: string;
619
- applicationId: string;
620
- };
621
- };
622
- responses: {
623
- /** @description Success */
624
- 200: {
625
- content: {
626
- "application/json": components["schemas"]["OpenIdConfigurationEnvelope"];
627
- "application/xml": components["schemas"]["OpenIdConfigurationEnvelope"];
628
- };
629
- };
630
- };
631
- };
632
- };
633
- "/api/v2/IdentityService/Resource/message": {
634
- get: {
635
- parameters: {
636
- query?: {
637
- "api-version"?: string;
638
- };
639
- };
640
- responses: {
641
- /** @description Success */
642
- 200: {
643
- content: never;
644
- };
645
- };
646
- };
647
- };
648
- "/connect/userinfo": {
649
- get: {
650
- parameters: {
651
- query?: {
652
- "api-version"?: string;
653
- };
654
- };
655
- responses: {
656
- /** @description Success */
657
- 200: {
658
- content: never;
659
- };
660
- };
661
- };
662
- post: {
663
- parameters: {
664
- query?: {
665
- "api-version"?: string;
666
- };
667
- };
668
- responses: {
669
- /** @description Success */
670
- 200: {
671
- content: never;
672
- };
673
- };
674
- };
675
- };
676
- }
677
-
678
- export type webhooks = Record<string, never>;
679
-
680
- export interface components {
681
- schemas: {
682
- AccessTokenResponse: {
683
- tokenType?: string | null;
684
- accessToken?: string | null;
685
- /** Format: int64 */
686
- expiresIn?: number;
687
- refreshToken?: string | null;
688
- };
689
- AccountHolderCreateDto: {
690
- /** Format: uuid */
691
- id?: string;
692
- qualifiedName?: string | null;
693
- /** Format: date-time */
694
- birthday?: string;
695
- firstName?: string | null;
696
- lastName?: string | null;
697
- publicName?: string | null;
698
- idProvider?: string | null;
699
- languageID?: string | null;
700
- timezoneID?: string | null;
701
- gender?: string | null;
702
- cityID?: string | null;
703
- stateID?: string | null;
704
- email?: string | null;
705
- about?: string | null;
706
- jobTitle?: string | null;
707
- coverURL?: string | null;
708
- avatarURL?: string | null;
709
- gitHubURL?: string | null;
710
- websiteURL?: string | null;
711
- twitterUrl?: string | null;
712
- facebookURL?: string | null;
713
- youTubeURL?: string | null;
714
- linkedInURL?: string | null;
715
- instagramUrl?: string | null;
716
- countryID?: string | null;
717
- countryName?: string | null;
718
- currencyID?: string | null;
719
- };
720
- AccountHolderCreateDtoEnvelope: {
721
- errorMessage?: string | null;
722
- isSuccess?: boolean;
723
- /** Format: date-time */
724
- timestamp?: string;
725
- activityId?: string | null;
726
- correlationId?: string | null;
727
- result?: components["schemas"]["AccountHolderCreateDto"];
728
- };
729
- AccountHolderDto: {
730
- id?: string | null;
731
- /** Format: date-time */
732
- timestamp?: string | null;
733
- qualifiedName?: string | null;
734
- /** Format: date-time */
735
- birthday?: string;
736
- firstName?: string | null;
737
- lastName?: string | null;
738
- publicName?: string | null;
739
- idProvider?: string | null;
740
- languageId?: string | null;
741
- timezoneId?: string | null;
742
- gender?: string | null;
743
- cityId?: string | null;
744
- stateId?: string | null;
745
- email?: string | null;
746
- about?: string | null;
747
- jobTitle?: string | null;
748
- coverUrl?: string | null;
749
- avatarUrl?: string | null;
750
- gitHubUrl?: string | null;
751
- websiteUrl?: string | null;
752
- twitterUrl?: string | null;
753
- facebookUrl?: string | null;
754
- youTubeUrl?: string | null;
755
- linkedInUrl?: string | null;
756
- instagramUrl?: string | null;
757
- lockoutEnabled?: boolean;
758
- socialFeedId?: string | null;
759
- socialProfileId?: string | null;
760
- currentTenantId?: string | null;
761
- currentEnrollmentId?: string | null;
762
- cartId?: string | null;
763
- walletId?: string | null;
764
- countryId?: string | null;
765
- currencyId?: string | null;
766
- userName?: string | null;
767
- status?: string | null;
768
- phoneNumber?: string | null;
769
- publicIdentifier?: string | null;
770
- identityProvider?: string | null;
771
- phoneNumberConfirmed?: boolean;
772
- emailConfirmed?: boolean;
773
- /**
774
- * Format: int32
775
- * @enum {integer}
776
- */
777
- themeMode?: 0 | 1 | 2;
778
- /**
779
- * Format: int32
780
- * @enum {integer}
781
- */
782
- availability?: 0 | 1 | 2 | 3 | 4;
783
- /** Format: int32 */
784
- followsCount?: number | null;
785
- /** Format: int32 */
786
- followersCount?: number | null;
787
- /** Format: int32 */
788
- enrollmentsCount?: number | null;
789
- /** Format: int32 */
790
- socialPostsCount?: number | null;
791
- /** Format: int32 */
792
- unreadMessagesCount?: number | null;
793
- /** Format: int32 */
794
- unreadNotificationsCount?: number | null;
795
- webUrl?: string | null;
796
- countryStateId?: string | null;
797
- selectedBusinessId?: string | null;
798
- };
799
- Actor: {
800
- id?: string | null;
801
- type?: string | null;
802
- cartID?: string | null;
803
- actingAs?: string | null;
804
- socialProfileID?: string | null;
805
- };
806
- ApiResponse: {
807
- /** Format: uuid */
808
- id?: string;
809
- holder?: components["schemas"]["AccountHolderDto"];
810
- ipLookup?: components["schemas"]["IPLookupDto"];
811
- tenant?: components["schemas"]["BusinessDto"];
812
- actor?: components["schemas"]["Actor"];
813
- status?: components["schemas"]["ResponseStatus"];
814
- application?: components["schemas"]["ClientApplication"];
815
- pagination?: components["schemas"]["ResponsePagination"];
816
- };
817
- ApiResponseEnvelope: {
818
- errorMessage?: string | null;
819
- isSuccess?: boolean;
820
- /** Format: date-time */
821
- timestamp?: string;
822
- activityId?: string | null;
823
- correlationId?: string | null;
824
- result?: components["schemas"]["ApiResponse"];
825
- };
826
- BusinessDto: {
827
- id?: string | null;
828
- /** Format: date-time */
829
- timestamp?: string | null;
830
- qualifiedName?: string | null;
831
- taxID?: string | null;
832
- about?: string | null;
833
- walletID?: string | null;
834
- socialFeedID?: string | null;
835
- businessIndustryID?: string | null;
836
- businessSegmentID?: string | null;
837
- socialProfileID?: string | null;
838
- languageId?: string | null;
839
- name?: string | null;
840
- duns?: string | null;
841
- slogan?: string | null;
842
- legalName?: string | null;
843
- coverUrl?: string | null;
844
- avatarUrl?: string | null;
845
- cartID?: string | null;
846
- currencyID?: string | null;
847
- timezoneID?: string | null;
848
- countryID?: string | null;
849
- stateID?: string | null;
850
- cityID?: string | null;
851
- /** Format: int32 */
852
- followsCount?: number | null;
853
- /** Format: int32 */
854
- followersCount?: number | null;
855
- /** Format: int32 */
856
- enrollmentsCount?: number | null;
857
- /** Format: int32 */
858
- socialPostsCount?: number | null;
859
- /** Format: int32 */
860
- unreadMessagesCount?: number | null;
861
- /** Format: int32 */
862
- unreadNotificationsCount?: number | null;
863
- enrollmentID?: string | null;
864
- c2BFollowID?: string | null;
865
- b2CFollowID?: string | null;
866
- email?: string | null;
867
- phone?: string | null;
868
- webUrl?: string | null;
869
- facebookUrl?: string | null;
870
- twitterUrl?: string | null;
871
- gitHubUrl?: string | null;
872
- linkedInUrl?: string | null;
873
- instagramUrl?: string | null;
874
- youTubeUrl?: string | null;
875
- whatsAppNumber?: string | null;
876
- verified?: boolean;
877
- businessName?: string | null;
878
- businessLegalName?: string | null;
879
- twitterUsername?: string | null;
880
- };
881
- ClientApplication: {
882
- id?: string | null;
883
- name?: string | null;
884
- avatar?: string | null;
885
- tenantID?: string | null;
886
- tenantName?: string | null;
887
- tenantAvatar?: string | null;
888
- privacyPolicy?: string | null;
889
- termsAndConditions?: string | null;
890
- grantedPermissions?: string[] | null;
891
- };
892
- Error: {
893
- id?: string | null;
894
- description?: string | null;
895
- help?: string | null;
896
- };
897
- ErrorEnvelope: {
898
- errorMessage?: string | null;
899
- isSuccess?: boolean;
900
- /** Format: date-time */
901
- timestamp?: string;
902
- activityId?: string | null;
903
- correlationId?: string | null;
904
- };
905
- ForgotPasswordRequest: {
906
- email?: string | null;
907
- };
908
- HttpValidationProblemDetails: {
909
- type?: string | null;
910
- title?: string | null;
911
- /** Format: int32 */
912
- status?: number | null;
913
- detail?: string | null;
914
- instance?: string | null;
915
- errors?: {
916
- [key: string]: string[];
917
- } | null;
918
- [key: string]: unknown;
919
- };
920
- IPLookupDto: {
921
- id?: string | null;
922
- ip?: string | null;
923
- ua?: string | null;
924
- };
925
- InfoRequest: {
926
- newEmail?: string | null;
927
- newPassword?: string | null;
928
- oldPassword?: string | null;
929
- };
930
- InfoResponse: {
931
- email?: string | null;
932
- isEmailConfirmed?: boolean;
933
- };
934
- JsonWebKey: {
935
- kid?: string | null;
936
- /** Format: int64 */
937
- nbf?: number;
938
- use?: string | null;
939
- kty?: string | null;
940
- e?: string | null;
941
- n?: string | null;
942
- };
943
- JsonWebKeySet: {
944
- keys?: components["schemas"]["JsonWebKey"][] | null;
945
- };
946
- JsonWebKeySetEnvelope: {
947
- errorMessage?: string | null;
948
- isSuccess?: boolean;
949
- /** Format: date-time */
950
- timestamp?: string;
951
- activityId?: string | null;
952
- correlationId?: string | null;
953
- result?: components["schemas"]["JsonWebKeySet"];
954
- };
955
- JsonWebToken: {
956
- header?: components["schemas"]["JsonWebTokenHeader"];
957
- payload?: components["schemas"]["JsonWebTokenPayload"];
958
- signature?: string | null;
959
- tokenType?: string | null;
960
- /** Format: int64 */
961
- expiresIn?: number;
962
- accessToken?: string | null;
963
- };
964
- JsonWebTokenEnvelope: {
965
- errorMessage?: string | null;
966
- isSuccess?: boolean;
967
- /** Format: date-time */
968
- timestamp?: string;
969
- activityId?: string | null;
970
- correlationId?: string | null;
971
- result?: components["schemas"]["JsonWebToken"];
972
- };
973
- JsonWebTokenHeader: {
974
- alg?: string | null;
975
- jku?: string | null;
976
- kid?: string | null;
977
- typ?: string | null;
978
- };
979
- JsonWebTokenPayload: {
980
- aud?: string | null;
981
- cid?: string | null;
982
- iss?: string | null;
983
- aid?: string | null;
984
- sub?: string | null;
985
- act?: string | null;
986
- /** Format: int64 */
987
- iat?: number;
988
- /** Format: int64 */
989
- nbf?: number;
990
- /** Format: int64 */
991
- exp?: number;
992
- scopes?: string[] | null;
993
- };
994
- LoginRequest: {
995
- email?: string | null;
996
- password?: string | null;
997
- twoFactorCode?: string | null;
998
- twoFactorRecoveryCode?: string | null;
999
- };
1000
- OAuthTokenRequest: {
1001
- client_id?: string | null;
1002
- client_secret?: string | null;
1003
- grant_type?: string | null;
1004
- requested_scopes?: string | null;
1005
- requested_enrollment?: string | null;
1006
- };
1007
- OpenIdConfiguration: {
1008
- issuer?: string | null;
1009
- authorizationEndpoint?: string | null;
1010
- tokenEndpoint?: string | null;
1011
- endSessionEndpoint?: string | null;
1012
- jwksUri?: string | null;
1013
- responseModesSupported?: string[] | null;
1014
- responseTypesSupported?: string[] | null;
1015
- scopesSupported?: string[] | null;
1016
- subjectTypesSupported?: string[] | null;
1017
- idTokenSigningAlgValuesSupported?: string[] | null;
1018
- tokenEndpointAuthMethodsSupported?: string[] | null;
1019
- claimsSupported?: string[] | null;
1020
- };
1021
- OpenIdConfigurationEnvelope: {
1022
- errorMessage?: string | null;
1023
- isSuccess?: boolean;
1024
- /** Format: date-time */
1025
- timestamp?: string;
1026
- activityId?: string | null;
1027
- correlationId?: string | null;
1028
- result?: components["schemas"]["OpenIdConfiguration"];
1029
- };
1030
- RefreshRequest: {
1031
- refreshToken?: string | null;
1032
- };
1033
- RegisterRequest: {
1034
- email?: string | null;
1035
- password?: string | null;
1036
- };
1037
- ResendConfirmationEmailRequest: {
1038
- email?: string | null;
1039
- };
1040
- ResetPasswordRequest: {
1041
- email?: string | null;
1042
- resetCode?: string | null;
1043
- newPassword?: string | null;
1044
- };
1045
- ResponsePagination: {
1046
- selfPageToken?: string | null;
1047
- nextPageToken?: string | null;
1048
- prevPageToken?: string | null;
1049
- orderedBy?: string | null;
1050
- /** Format: int32 */
1051
- pageSize?: number;
1052
- /** Format: int32 */
1053
- pageIndex?: number;
1054
- };
1055
- ResponseStatus: {
1056
- success?: boolean;
1057
- error?: components["schemas"]["Error"];
1058
- correlationID?: string | null;
1059
- /** Format: date-time */
1060
- utcTimestamp?: string;
1061
- };
1062
- SigninModel: {
1063
- email?: string | null;
1064
- password?: string | null;
1065
- };
1066
- StringListEnvelope: {
1067
- errorMessage?: string | null;
1068
- isSuccess?: boolean;
1069
- /** Format: date-time */
1070
- timestamp?: string;
1071
- activityId?: string | null;
1072
- correlationId?: string | null;
1073
- result?: string[] | null;
1074
- };
1075
- TwoFactorRequest: {
1076
- enable?: boolean | null;
1077
- twoFactorCode?: string | null;
1078
- resetSharedKey?: boolean;
1079
- resetRecoveryCodes?: boolean;
1080
- forgetMachine?: boolean;
1081
- };
1082
- TwoFactorResponse: {
1083
- sharedKey?: string | null;
1084
- /** Format: int32 */
1085
- recoveryCodesLeft?: number;
1086
- recoveryCodes?: string[] | null;
1087
- isTwoFactorEnabled?: boolean;
1088
- isMachineRemembered?: boolean;
1089
- };
1090
- };
1091
- responses: never;
1092
- parameters: never;
1093
- requestBodies: never;
1094
- headers: never;
1095
- pathItems: never;
1096
- }
1097
-
1098
- export type $defs = Record<string, never>;
1099
-
1100
- export type external = Record<string, never>;
1101
-
1102
- export interface operations {
1103
-
1104
- "MapIdentityApi-/confirmEmail": {
1105
- parameters: {
1106
- query?: {
1107
- userId?: string;
1108
- code?: string;
1109
- changedEmail?: string;
1110
- };
1111
- };
1112
- responses: {
1113
- /** @description Success */
1114
- 200: {
1115
- content: never;
1116
- };
1117
- };
1118
- };
1119
- }
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/Applications/{appID}": {
9
+ get: {
10
+ parameters: {
11
+ query?: {
12
+ "api-version"?: string;
13
+ };
14
+ header?: {
15
+ "x-api-version"?: string;
16
+ };
17
+ path: {
18
+ appID: string;
19
+ };
20
+ };
21
+ responses: {
22
+ /** @description OK */
23
+ 200: {
24
+ content: never;
25
+ };
26
+ };
27
+ };
28
+ };
29
+ "/api/v2/Applications/{appID}/RequiredPermissions": {
30
+ get: {
31
+ parameters: {
32
+ query?: {
33
+ "api-version"?: string;
34
+ };
35
+ header?: {
36
+ "x-api-version"?: string;
37
+ };
38
+ path: {
39
+ appID: string;
40
+ };
41
+ };
42
+ responses: {
43
+ /** @description OK */
44
+ 200: {
45
+ content: never;
46
+ };
47
+ };
48
+ };
49
+ };
50
+ "/api/v2/Applications/{appID}/GrantedPermissions": {
51
+ get: {
52
+ parameters: {
53
+ query?: {
54
+ tenantID?: string;
55
+ "api-version"?: string;
56
+ };
57
+ header?: {
58
+ "x-api-version"?: string;
59
+ };
60
+ path: {
61
+ appID: string;
62
+ };
63
+ };
64
+ responses: {
65
+ /** @description OK */
66
+ 200: {
67
+ content: never;
68
+ };
69
+ };
70
+ };
71
+ };
72
+ "/api/v2/Applications/{appID}/GrantedRoles": {
73
+ get: {
74
+ parameters: {
75
+ query?: {
76
+ tenantID?: string;
77
+ "api-version"?: string;
78
+ };
79
+ header?: {
80
+ "x-api-version"?: string;
81
+ };
82
+ path: {
83
+ appID: string;
84
+ };
85
+ };
86
+ responses: {
87
+ /** @description OK */
88
+ 200: {
89
+ content: never;
90
+ };
91
+ };
92
+ };
93
+ };
94
+ "/api/v2/Applications/{appID}/GrantedRoles/{SecurityRoleID}/GrantedPermissions": {
95
+ get: {
96
+ parameters: {
97
+ query?: {
98
+ enrollmentID?: string;
99
+ "api-version"?: string;
100
+ };
101
+ header?: {
102
+ "x-api-version"?: string;
103
+ };
104
+ path: {
105
+ appID: string;
106
+ securityRoleID: string;
107
+ };
108
+ };
109
+ responses: {
110
+ /** @description OK */
111
+ 200: {
112
+ content: never;
113
+ };
114
+ };
115
+ };
116
+ };
117
+ "/api/v2/Auth/Checker/IsAuthenticated": {
118
+ get: {
119
+ parameters: {
120
+ query?: {
121
+ "api-version"?: string;
122
+ };
123
+ header?: {
124
+ "x-api-version"?: string;
125
+ };
126
+ };
127
+ responses: {
128
+ /** @description OK */
129
+ 200: {
130
+ content: {
131
+ "application/json": boolean;
132
+ "application/xml": boolean;
133
+ };
134
+ };
135
+ };
136
+ };
137
+ };
138
+ "/api/v2/OAuth/WhoAmI": {
139
+ get: {
140
+ parameters: {
141
+ query?: {
142
+ tenantId?: string;
143
+ "api-version"?: string;
144
+ };
145
+ header?: {
146
+ "x-api-version"?: string;
147
+ };
148
+ };
149
+ responses: {
150
+ /** @description OK */
151
+ 200: {
152
+ content: {
153
+ "application/json": components["schemas"]["ApiResponseEnvelope"];
154
+ "application/xml": components["schemas"]["ApiResponseEnvelope"];
155
+ };
156
+ };
157
+ /** @description Unauthorized */
158
+ 401: {
159
+ content: {
160
+ "application/json": components["schemas"]["ErrorEnvelope"];
161
+ "application/xml": components["schemas"]["ErrorEnvelope"];
162
+ };
163
+ };
164
+ /** @description Forbidden */
165
+ 403: {
166
+ content: {
167
+ "application/json": components["schemas"]["ErrorEnvelope"];
168
+ "application/xml": components["schemas"]["ErrorEnvelope"];
169
+ };
170
+ };
171
+ };
172
+ };
173
+ };
174
+ "/api/v2/OAuth/Permissions": {
175
+ get: {
176
+ parameters: {
177
+ query: {
178
+ tenantId: string;
179
+ userId?: string;
180
+ "api-version"?: string;
181
+ };
182
+ header?: {
183
+ "x-api-version"?: string;
184
+ };
185
+ };
186
+ responses: {
187
+ /** @description OK */
188
+ 200: {
189
+ content: {
190
+ "application/json": components["schemas"]["StringListEnvelope"];
191
+ "application/xml": components["schemas"]["StringListEnvelope"];
192
+ };
193
+ };
194
+ /** @description Unauthorized */
195
+ 401: {
196
+ content: {
197
+ "application/json": components["schemas"]["ErrorEnvelope"];
198
+ "application/xml": components["schemas"]["ErrorEnvelope"];
199
+ };
200
+ };
201
+ /** @description Forbidden */
202
+ 403: {
203
+ content: {
204
+ "application/json": components["schemas"]["ErrorEnvelope"];
205
+ "application/xml": components["schemas"]["ErrorEnvelope"];
206
+ };
207
+ };
208
+ };
209
+ };
210
+ };
211
+ "/api/v2/OAuth/Token": {
212
+ post: {
213
+ parameters: {
214
+ query?: {
215
+ "api-version"?: string;
216
+ };
217
+ header?: {
218
+ "x-api-version"?: string;
219
+ };
220
+ };
221
+ requestBody?: {
222
+ content: {
223
+ "application/json": components["schemas"]["OAuthTokenRequest"];
224
+ "application/xml": components["schemas"]["OAuthTokenRequest"];
225
+ };
226
+ };
227
+ responses: {
228
+ /** @description OK */
229
+ 200: {
230
+ content: {
231
+ "application/json": components["schemas"]["JsonWebTokenEnvelope"];
232
+ "application/xml": components["schemas"]["JsonWebTokenEnvelope"];
233
+ };
234
+ };
235
+ /** @description Unauthorized */
236
+ 401: {
237
+ content: {
238
+ "application/json": components["schemas"]["ErrorEnvelope"];
239
+ "application/xml": components["schemas"]["ErrorEnvelope"];
240
+ };
241
+ };
242
+ /** @description Forbidden */
243
+ 403: {
244
+ content: {
245
+ "application/json": components["schemas"]["ErrorEnvelope"];
246
+ "application/xml": components["schemas"]["ErrorEnvelope"];
247
+ };
248
+ };
249
+ };
250
+ };
251
+ };
252
+ "/api/v2/OAuth/SignIn": {
253
+ get: {
254
+ parameters: {
255
+ query?: {
256
+ "api-version"?: string;
257
+ };
258
+ header?: {
259
+ "x-api-version"?: string;
260
+ };
261
+ };
262
+ responses: {
263
+ /** @description OK */
264
+ 200: {
265
+ content: {
266
+ "application/json": components["schemas"]["AccountHolderCreateDtoEnvelope"];
267
+ "application/xml": components["schemas"]["AccountHolderCreateDtoEnvelope"];
268
+ };
269
+ };
270
+ /** @description Bad Request */
271
+ 400: {
272
+ content: {
273
+ "application/json": components["schemas"]["ErrorEnvelope"];
274
+ "application/xml": components["schemas"]["ErrorEnvelope"];
275
+ };
276
+ };
277
+ /** @description Unauthorized */
278
+ 401: {
279
+ content: {
280
+ "application/json": components["schemas"]["ErrorEnvelope"];
281
+ "application/xml": components["schemas"]["ErrorEnvelope"];
282
+ };
283
+ };
284
+ };
285
+ };
286
+ post: {
287
+ parameters: {
288
+ query?: {
289
+ "api-version"?: string;
290
+ };
291
+ header?: {
292
+ "x-api-version"?: string;
293
+ };
294
+ };
295
+ requestBody?: {
296
+ content: {
297
+ "application/json": components["schemas"]["SigninModel"];
298
+ "application/xml": components["schemas"]["SigninModel"];
299
+ };
300
+ };
301
+ responses: {
302
+ /** @description OK */
303
+ 200: {
304
+ content: {
305
+ "application/json": components["schemas"]["JsonWebTokenEnvelope"];
306
+ "application/xml": components["schemas"]["JsonWebTokenEnvelope"];
307
+ };
308
+ };
309
+ /** @description Bad Request */
310
+ 400: {
311
+ content: {
312
+ "application/json": components["schemas"]["ErrorEnvelope"];
313
+ "application/xml": components["schemas"]["ErrorEnvelope"];
314
+ };
315
+ };
316
+ /** @description Unauthorized */
317
+ 401: {
318
+ content: {
319
+ "application/json": components["schemas"]["ErrorEnvelope"];
320
+ "application/xml": components["schemas"]["ErrorEnvelope"];
321
+ };
322
+ };
323
+ };
324
+ };
325
+ };
326
+ "/api/v2/OAuth/{applicationId}/Keys": {
327
+ get: {
328
+ parameters: {
329
+ query?: {
330
+ "api-version"?: string;
331
+ };
332
+ header?: {
333
+ "x-api-version"?: string;
334
+ };
335
+ path: {
336
+ applicationId: string;
337
+ };
338
+ };
339
+ responses: {
340
+ /** @description OK */
341
+ 200: {
342
+ content: {
343
+ "application/json": components["schemas"]["JsonWebKeySetEnvelope"];
344
+ "application/xml": components["schemas"]["JsonWebKeySetEnvelope"];
345
+ };
346
+ };
347
+ };
348
+ };
349
+ };
350
+ "/api/v2/OAuth/{tenantId}/{applicationId}/.Well-Known/OpenId-Configuration": {
351
+ get: {
352
+ parameters: {
353
+ query?: {
354
+ "api-version"?: string;
355
+ };
356
+ header?: {
357
+ "x-api-version"?: string;
358
+ };
359
+ path: {
360
+ tenantId: string;
361
+ applicationId: string;
362
+ };
363
+ };
364
+ responses: {
365
+ /** @description OK */
366
+ 200: {
367
+ content: {
368
+ "application/json": components["schemas"]["OpenIdConfigurationEnvelope"];
369
+ "application/xml": components["schemas"]["OpenIdConfigurationEnvelope"];
370
+ };
371
+ };
372
+ };
373
+ };
374
+ };
375
+ "/api/v2/IdentityService/Resource/message": {
376
+ get: {
377
+ parameters: {
378
+ query?: {
379
+ "api-version"?: string;
380
+ };
381
+ header?: {
382
+ "x-api-version"?: string;
383
+ };
384
+ };
385
+ responses: {
386
+ /** @description OK */
387
+ 200: {
388
+ content: never;
389
+ };
390
+ };
391
+ };
392
+ };
393
+ "/connect/userinfo": {
394
+ get: {
395
+ parameters: {
396
+ query?: {
397
+ "api-version"?: string;
398
+ };
399
+ header?: {
400
+ "x-api-version"?: string;
401
+ };
402
+ };
403
+ responses: {
404
+ /** @description OK */
405
+ 200: {
406
+ content: never;
407
+ };
408
+ };
409
+ };
410
+ post: {
411
+ parameters: {
412
+ query?: {
413
+ "api-version"?: string;
414
+ };
415
+ header?: {
416
+ "x-api-version"?: string;
417
+ };
418
+ };
419
+ responses: {
420
+ /** @description OK */
421
+ 200: {
422
+ content: never;
423
+ };
424
+ };
425
+ };
426
+ };
427
+ }
428
+
429
+ export type webhooks = Record<string, never>;
430
+
431
+ export interface components {
432
+ schemas: {
433
+ AccountHolderCreateDto: {
434
+ /** Format: uuid */
435
+ id?: string;
436
+ /** Format: date-time */
437
+ timestamp?: string;
438
+ qualifiedName?: string | null;
439
+ /** Format: date-time */
440
+ birthday?: string;
441
+ firstName?: string | null;
442
+ lastName?: string | null;
443
+ publicName?: string | null;
444
+ idProvider?: string | null;
445
+ /**
446
+ * Format: int32
447
+ * @enum {integer}
448
+ */
449
+ gender?: 0 | 1 | 2;
450
+ email?: string | null;
451
+ about?: string | null;
452
+ status?: string | null;
453
+ jobTitle?: string | null;
454
+ gitHubUrl?: string | null;
455
+ websiteUrl?: string | null;
456
+ twitterUrl?: string | null;
457
+ facebookUrl?: string | null;
458
+ youTubeUrl?: string | null;
459
+ linkedInUrl?: string | null;
460
+ instagramUrl?: string | null;
461
+ timezoneId?: string | null;
462
+ languageId?: string | null;
463
+ currencyId?: string | null;
464
+ countryId?: string | null;
465
+ stateId?: string | null;
466
+ cityId?: string | null;
467
+ };
468
+ AccountHolderCreateDtoEnvelope: {
469
+ isSuccess?: boolean;
470
+ errorMessage?: string | null;
471
+ correlationId?: string | null;
472
+ /** Format: date-time */
473
+ timestamp?: string;
474
+ activityId?: string | null;
475
+ result?: components["schemas"]["AccountHolderCreateDto"];
476
+ };
477
+ Actor: {
478
+ id?: string | null;
479
+ type?: string | null;
480
+ cartID?: string | null;
481
+ actingAs?: string | null;
482
+ socialProfileID?: string | null;
483
+ };
484
+ ApiResponse: {
485
+ holder?: components["schemas"]["PlatformUserDto"];
486
+ ipLookup?: components["schemas"]["IPLookupDto"];
487
+ tenant?: components["schemas"]["TenantDto"];
488
+ actor?: components["schemas"]["Actor"];
489
+ status?: components["schemas"]["ResponseStatus"];
490
+ application?: components["schemas"]["ClientApplication"];
491
+ pagination?: components["schemas"]["ResponsePagination"];
492
+ };
493
+ ApiResponseEnvelope: {
494
+ isSuccess?: boolean;
495
+ errorMessage?: string | null;
496
+ correlationId?: string | null;
497
+ /** Format: date-time */
498
+ timestamp?: string;
499
+ activityId?: string | null;
500
+ result?: components["schemas"]["ApiResponse"];
501
+ };
502
+ ClientApplication: {
503
+ id?: string | null;
504
+ name?: string | null;
505
+ avatar?: string | null;
506
+ tenantID?: string | null;
507
+ tenantName?: string | null;
508
+ tenantAvatar?: string | null;
509
+ privacyPolicy?: string | null;
510
+ termsAndConditions?: string | null;
511
+ grantedPermissions?: string[] | null;
512
+ };
513
+ Error: {
514
+ id?: string | null;
515
+ description?: string | null;
516
+ help?: string | null;
517
+ };
518
+ ErrorEnvelope: {
519
+ isSuccess?: boolean;
520
+ errorMessage?: string | null;
521
+ correlationId?: string | null;
522
+ /** Format: date-time */
523
+ timestamp?: string;
524
+ activityId?: string | null;
525
+ };
526
+ IPLookupDto: {
527
+ id?: string | null;
528
+ ip?: string | null;
529
+ ua?: string | null;
530
+ };
531
+ JsonWebKey: {
532
+ kid?: string | null;
533
+ /** Format: int64 */
534
+ nbf?: number;
535
+ use?: string | null;
536
+ kty?: string | null;
537
+ e?: string | null;
538
+ n?: string | null;
539
+ };
540
+ JsonWebKeySet: {
541
+ keys?: components["schemas"]["JsonWebKey"][] | null;
542
+ };
543
+ JsonWebKeySetEnvelope: {
544
+ isSuccess?: boolean;
545
+ errorMessage?: string | null;
546
+ correlationId?: string | null;
547
+ /** Format: date-time */
548
+ timestamp?: string;
549
+ activityId?: string | null;
550
+ result?: components["schemas"]["JsonWebKeySet"];
551
+ };
552
+ JsonWebToken: {
553
+ header?: components["schemas"]["JsonWebTokenHeader"];
554
+ payload?: components["schemas"]["JsonWebTokenPayload"];
555
+ signature?: string | null;
556
+ tokenType?: string | null;
557
+ /** Format: int64 */
558
+ expiresIn?: number;
559
+ accessToken?: string | null;
560
+ };
561
+ JsonWebTokenEnvelope: {
562
+ isSuccess?: boolean;
563
+ errorMessage?: string | null;
564
+ correlationId?: string | null;
565
+ /** Format: date-time */
566
+ timestamp?: string;
567
+ activityId?: string | null;
568
+ result?: components["schemas"]["JsonWebToken"];
569
+ };
570
+ JsonWebTokenHeader: {
571
+ alg?: string | null;
572
+ jku?: string | null;
573
+ kid?: string | null;
574
+ typ?: string | null;
575
+ };
576
+ JsonWebTokenPayload: {
577
+ aud?: string | null;
578
+ cid?: string | null;
579
+ iss?: string | null;
580
+ aid?: string | null;
581
+ sub?: string | null;
582
+ act?: string | null;
583
+ /** Format: int64 */
584
+ iat?: number;
585
+ /** Format: int64 */
586
+ nbf?: number;
587
+ /** Format: int64 */
588
+ exp?: number;
589
+ scopes?: string[] | null;
590
+ };
591
+ OAuthTokenRequest: {
592
+ client_id?: string | null;
593
+ client_secret?: string | null;
594
+ grant_type?: string | null;
595
+ requested_scopes?: string | null;
596
+ requested_enrollment?: string | null;
597
+ };
598
+ OpenIdConfiguration: {
599
+ issuer?: string | null;
600
+ authorizationEndpoint?: string | null;
601
+ tokenEndpoint?: string | null;
602
+ endSessionEndpoint?: string | null;
603
+ jwksUri?: string | null;
604
+ responseModesSupported?: string[] | null;
605
+ responseTypesSupported?: string[] | null;
606
+ scopesSupported?: string[] | null;
607
+ subjectTypesSupported?: string[] | null;
608
+ idTokenSigningAlgValuesSupported?: string[] | null;
609
+ tokenEndpointAuthMethodsSupported?: string[] | null;
610
+ claimsSupported?: string[] | null;
611
+ };
612
+ OpenIdConfigurationEnvelope: {
613
+ isSuccess?: boolean;
614
+ errorMessage?: string | null;
615
+ correlationId?: string | null;
616
+ /** Format: date-time */
617
+ timestamp?: string;
618
+ activityId?: string | null;
619
+ result?: components["schemas"]["OpenIdConfiguration"];
620
+ };
621
+ PlatformUserDto: {
622
+ id?: string | null;
623
+ /** Format: date-time */
624
+ timestamp?: string | null;
625
+ fullName?: string | null;
626
+ socialProfileId?: string | null;
627
+ publicName?: string | null;
628
+ firstName?: string | null;
629
+ lastName?: string | null;
630
+ coverUrl?: string | null;
631
+ avatarUrl?: string | null;
632
+ timezoneId?: string | null;
633
+ gitHubUrl?: string | null;
634
+ websiteUrl?: string | null;
635
+ twitterUrl?: string | null;
636
+ facebookUrl?: string | null;
637
+ youTubeUrl?: string | null;
638
+ linkedInUrl?: string | null;
639
+ instagramUrl?: string | null;
640
+ countryId?: string | null;
641
+ /** Format: date-time */
642
+ birthday?: string | null;
643
+ qualifiedName?: string | null;
644
+ idProvider?: string | null;
645
+ languageId?: string | null;
646
+ /**
647
+ * Format: int32
648
+ * @enum {integer|null}
649
+ */
650
+ gender?: 0 | 1 | 2 | null;
651
+ cityId?: string | null;
652
+ stateId?: string | null;
653
+ email?: string | null;
654
+ about?: string | null;
655
+ jobTitle?: string | null;
656
+ socialFeedId?: string | null;
657
+ currentTenantId?: string | null;
658
+ currentEnrollmentId?: string | null;
659
+ status?: string | null;
660
+ cartId?: string | null;
661
+ walletId?: string | null;
662
+ userName?: string | null;
663
+ currencyId?: string | null;
664
+ phoneNumber?: string | null;
665
+ publicIdentifier?: string | null;
666
+ identityProvider?: string | null;
667
+ phoneNumberConfirmed?: boolean;
668
+ emailConfirmed?: boolean;
669
+ lockoutEnabled?: boolean;
670
+ /**
671
+ * Format: int32
672
+ * @enum {integer|null}
673
+ */
674
+ availability?: 0 | 1 | 2 | 3 | 4 | null;
675
+ /** Format: int32 */
676
+ enrollmentsCount?: number | null;
677
+ /**
678
+ * Format: int32
679
+ * @enum {integer|null}
680
+ */
681
+ siteTheme?: 0 | 1 | 2 | null;
682
+ };
683
+ ResponsePagination: {
684
+ selfPageToken?: string | null;
685
+ nextPageToken?: string | null;
686
+ prevPageToken?: string | null;
687
+ orderedBy?: string | null;
688
+ /** Format: int32 */
689
+ pageSize?: number;
690
+ /** Format: int32 */
691
+ pageIndex?: number;
692
+ };
693
+ ResponseStatus: {
694
+ success?: boolean;
695
+ error?: components["schemas"]["Error"];
696
+ correlationID?: string | null;
697
+ /** Format: date-time */
698
+ utcTimestamp?: string;
699
+ };
700
+ SigninModel: {
701
+ email?: string | null;
702
+ password?: string | null;
703
+ };
704
+ StringListEnvelope: {
705
+ isSuccess?: boolean;
706
+ errorMessage?: string | null;
707
+ correlationId?: string | null;
708
+ /** Format: date-time */
709
+ timestamp?: string;
710
+ activityId?: string | null;
711
+ result?: string[] | null;
712
+ };
713
+ TenantDto: {
714
+ id?: string | null;
715
+ /** Format: date-time */
716
+ timestamp?: string | null;
717
+ qualifiedName?: string | null;
718
+ taxId?: string | null;
719
+ about?: string | null;
720
+ walletId?: string | null;
721
+ socialFeedId?: string | null;
722
+ businessIndustryId?: string | null;
723
+ businessSegmentId?: string | null;
724
+ socialProfileId?: string | null;
725
+ languageId?: string | null;
726
+ name?: string | null;
727
+ duns?: string | null;
728
+ slogan?: string | null;
729
+ legalName?: string | null;
730
+ coverUrl?: string | null;
731
+ avatarUrl?: string | null;
732
+ cartId?: string | null;
733
+ currencyId?: string | null;
734
+ timezoneId?: string | null;
735
+ countryId?: string | null;
736
+ stateId?: string | null;
737
+ cityId?: string | null;
738
+ email?: string | null;
739
+ phone?: string | null;
740
+ webUrl?: string | null;
741
+ facebookUrl?: string | null;
742
+ twitterUrl?: string | null;
743
+ gitHubUrl?: string | null;
744
+ linkedInUrl?: string | null;
745
+ instagramUrl?: string | null;
746
+ youTubeUrl?: string | null;
747
+ whatsAppNumber?: string | null;
748
+ supportPhoneNumber?: string | null;
749
+ verified?: boolean;
750
+ businessName?: string | null;
751
+ businessLegalName?: string | null;
752
+ twitterUsername?: string | null;
753
+ };
754
+ };
755
+ responses: never;
756
+ parameters: never;
757
+ requestBodies: never;
758
+ headers: never;
759
+ pathItems: never;
760
+ }
761
+
762
+ export type $defs = Record<string, never>;
763
+
764
+ export type external = Record<string, never>;
765
+
766
+ export type operations = Record<string, never>;