@fenixalliance/abs-api-client 1.0.0 → 1.0.2

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 (461) hide show
  1. package/app/index.ts +5 -0
  2. package/clients/cartService/core/ApiError.ts +24 -24
  3. package/clients/cartService/core/ApiRequestOptions.ts +16 -16
  4. package/clients/cartService/core/ApiResult.ts +10 -10
  5. package/clients/cartService/core/CancelablePromise.ts +130 -130
  6. package/clients/cartService/core/OpenAPI.ts +31 -31
  7. package/clients/cartService/core/request.ts +321 -321
  8. package/clients/cartService/index.ts +36 -52
  9. package/clients/cartService/models/CartDto.ts +1 -0
  10. package/clients/cartService/models/{RegisterRequest.ts → CartUpdateRequest.ts} +3 -3
  11. package/clients/cartService/models/{InfoResponse.ts → CountrySwitchRequest.ts} +3 -3
  12. package/clients/cartService/models/EmptyEnvelope.ts +11 -0
  13. package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -0
  14. package/clients/cartService/models/ItemCartRecordDto.ts +3 -1
  15. package/clients/{catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts → cartService/models/ItemCartRecordDtoListEnvelope.ts} +3 -3
  16. package/clients/cartService/models/{ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts → ItemToCompareCartRecordDtoListEnvelope.ts} +1 -1
  17. package/clients/cartService/models/WishListDto.ts +2 -1
  18. package/clients/cartService/services/CartsService.ts +53 -7
  19. package/clients/cartService/services/CompareService.ts +7 -6
  20. package/clients/cartService/services/RecordsService.ts +23 -20
  21. package/clients/cartService/services/WishListsService.ts +17 -17
  22. package/clients/catalogService/core/ApiError.ts +24 -24
  23. package/clients/catalogService/core/ApiRequestOptions.ts +16 -16
  24. package/clients/catalogService/core/ApiResult.ts +10 -10
  25. package/clients/catalogService/core/CancelablePromise.ts +130 -130
  26. package/clients/catalogService/core/OpenAPI.ts +31 -31
  27. package/clients/catalogService/core/request.ts +321 -321
  28. package/clients/catalogService/index.ts +102 -124
  29. package/clients/catalogService/models/EmptyEnvelope.ts +11 -0
  30. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +4 -8
  31. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +2 -5
  32. package/clients/catalogService/models/ItemAttributeCreateDto.ts +3 -2
  33. package/clients/catalogService/models/{ItemAttributeDtoIReadOnlyCollectionEnvelope.ts → ItemAttributeDtoListEnvelope.ts} +1 -1
  34. package/clients/catalogService/models/ItemAttributeUpdateDto.ts +1 -1
  35. package/clients/catalogService/models/ItemBrandCreateDto.ts +4 -3
  36. package/clients/catalogService/models/ItemBrandUpdateDto.ts +1 -1
  37. package/clients/catalogService/models/ItemCategoryCreateDto.ts +3 -2
  38. package/clients/catalogService/models/ItemCategoryUpdateDto.ts +1 -1
  39. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +12 -3
  40. package/clients/catalogService/models/{ItemImagesCreateDto.ts → ItemImageCreateDto.ts} +4 -4
  41. package/clients/catalogService/models/ItemImageDto.ts +0 -1
  42. package/clients/catalogService/models/{ItemImagesUpdateDto.ts → ItemImageUpdateDto.ts} +6 -9
  43. package/clients/catalogService/models/ItemQuestionCreateDto.ts +6 -5
  44. package/clients/catalogService/models/ItemQuestionRecordCreateDto.ts +14 -0
  45. package/clients/catalogService/models/ItemQuestionUpdateDto.ts +1 -3
  46. package/clients/catalogService/models/ItemReviewCreateDto.ts +1 -0
  47. package/clients/catalogService/models/ItemReviewRecordCreateDto.ts +12 -0
  48. package/clients/catalogService/models/ItemShippingPolicyDto.ts +6 -6
  49. package/clients/catalogService/models/ItemTagCreateDto.ts +3 -2
  50. package/clients/catalogService/models/ItemTagUpdateDto.ts +1 -1
  51. package/clients/catalogService/models/ItemTypeCreateDto.ts +3 -2
  52. package/clients/catalogService/models/ItemTypeDto.ts +4 -4
  53. package/clients/catalogService/models/ItemTypeUpdateDto.ts +1 -1
  54. package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +3 -4
  55. package/clients/catalogService/models/PricingRuleCreateDto.ts +1 -1
  56. package/clients/catalogService/models/PricingRuleDto.ts +0 -1
  57. package/clients/catalogService/models/StockItemCreateDto.ts +100 -3
  58. package/clients/catalogService/models/StockItemDto.ts +133 -4
  59. package/clients/catalogService/models/StockItemUpdateDto.ts +99 -2
  60. package/clients/catalogService/services/ItemAttachmentsService.ts +24 -13
  61. package/clients/catalogService/services/ItemAttributesService.ts +19 -9
  62. package/clients/catalogService/services/ItemBrandsService.ts +19 -9
  63. package/clients/catalogService/services/ItemCategoriesService.ts +19 -9
  64. package/clients/catalogService/services/ItemImagesService.ts +23 -13
  65. package/clients/catalogService/services/ItemQuestionsService.ts +19 -9
  66. package/clients/catalogService/services/ItemReviewsService.ts +18 -8
  67. package/clients/catalogService/services/ItemTagsService.ts +17 -12
  68. package/clients/catalogService/services/ItemTypesService.ts +19 -9
  69. package/clients/catalogService/services/PricingRulesService.ts +19 -11
  70. package/clients/catalogService/services/ProductsService.ts +177 -214
  71. package/clients/{contactService → crmService}/core/ApiError.ts +24 -24
  72. package/clients/{contactService → crmService}/core/ApiRequestOptions.ts +16 -16
  73. package/clients/{contactService → crmService}/core/ApiResult.ts +10 -10
  74. package/clients/{contactService → crmService}/core/CancelablePromise.ts +130 -130
  75. package/clients/{contactService → crmService}/core/OpenAPI.ts +31 -31
  76. package/clients/{contactService → crmService}/core/request.ts +321 -321
  77. package/clients/crmService/index.ts +23 -0
  78. package/clients/crmService/models/CartDto.ts +18 -0
  79. package/clients/{cartService/models/WishListDtoEnvelope.ts → crmService/models/CartDtoEnvelope.ts} +3 -3
  80. package/clients/crmService/models/ContactDto.ts +57 -0
  81. package/clients/crmService/models/EmptyEnvelope.ts +11 -0
  82. package/clients/crmService/models/SocialProfileDto.ts +39 -0
  83. package/clients/crmService/models/SocialProfileDtoEnvelope.ts +14 -0
  84. package/clients/crmService/models/WalletDto.ts +22 -0
  85. package/clients/crmService/models/WalletDtoEnvelope.ts +14 -0
  86. package/clients/crmService/services/ContactsService.ts +286 -0
  87. package/clients/crmService/services/SyncService.ts +101 -0
  88. package/clients/forexService/core/ApiError.ts +24 -24
  89. package/clients/forexService/core/ApiRequestOptions.ts +16 -16
  90. package/clients/forexService/core/ApiResult.ts +10 -10
  91. package/clients/forexService/core/CancelablePromise.ts +130 -130
  92. package/clients/forexService/core/OpenAPI.ts +31 -31
  93. package/clients/forexService/core/request.ts +321 -321
  94. package/clients/forexService/index.ts +18 -30
  95. package/clients/{cartService/models/Envelope.ts → forexService/models/ErrorEnvelope.ts} +1 -2
  96. package/clients/forexService/models/ForexRatesDto.ts +1 -1
  97. package/clients/forexService/models/Money.ts +1 -1
  98. package/clients/forexService/services/ExchangeService.ts +17 -7
  99. package/clients/forexService/services/RatesService.ts +11 -1
  100. package/clients/holderService/core/ApiError.ts +24 -24
  101. package/clients/holderService/core/ApiRequestOptions.ts +16 -16
  102. package/clients/holderService/core/ApiResult.ts +10 -10
  103. package/clients/holderService/core/CancelablePromise.ts +130 -130
  104. package/clients/holderService/core/OpenAPI.ts +31 -31
  105. package/clients/holderService/core/request.ts +321 -321
  106. package/clients/holderService/index.ts +35 -31
  107. package/clients/holderService/models/AddressDto.ts +31 -0
  108. package/clients/holderService/models/AddressDtoListEnvelope.ts +14 -0
  109. package/clients/holderService/models/CartDto.ts +18 -0
  110. package/clients/holderService/models/CartDtoEnvelope.ts +14 -0
  111. package/clients/holderService/models/InvoiceDto.ts +13 -0
  112. package/clients/{invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts → holderService/models/InvoiceDtoListEnvelope.ts} +1 -1
  113. package/clients/holderService/models/NotificationDto.ts +16 -0
  114. package/clients/holderService/models/NotificationDtoListEnvelope.ts +14 -0
  115. package/clients/holderService/models/OrderDto.ts +27 -0
  116. package/clients/holderService/models/OrderDtoListEnvelope.ts +14 -0
  117. package/clients/holderService/models/PaymentDto.ts +17 -0
  118. package/clients/holderService/models/PaymentDtoListEnvelope.ts +14 -0
  119. package/clients/{identityService/models/AccountHolderDto.ts → holderService/models/PlatformUserDto.ts} +4 -4
  120. package/clients/holderService/models/PlatformUserDtoEnvelope.ts +14 -0
  121. package/clients/holderService/models/SocialProfileDto.ts +39 -0
  122. package/clients/holderService/models/SocialProfileDtoEnvelope.ts +14 -0
  123. package/clients/{identityService/models/BusinessDto.ts → holderService/models/TenantDto.ts} +16 -15
  124. package/clients/holderService/models/TenantDtoListEnvelope.ts +14 -0
  125. package/clients/holderService/models/TenantEnrollmentDto.ts +14 -0
  126. package/clients/holderService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
  127. package/clients/holderService/models/WalletDto.ts +22 -0
  128. package/clients/holderService/models/WalletDtoEnvelope.ts +14 -0
  129. package/clients/holderService/services/HolderService.ts +99 -28
  130. package/clients/identityService/core/ApiError.ts +24 -24
  131. package/clients/identityService/core/ApiRequestOptions.ts +16 -16
  132. package/clients/identityService/core/ApiResult.ts +10 -10
  133. package/clients/identityService/core/CancelablePromise.ts +130 -130
  134. package/clients/identityService/core/OpenAPI.ts +31 -31
  135. package/clients/identityService/core/request.ts +321 -321
  136. package/clients/identityService/index.ts +40 -53
  137. package/clients/identityService/models/AccountHolderCreateDto.ts +1 -0
  138. package/clients/identityService/models/ApiResponse.ts +4 -5
  139. package/clients/{holderService/models/AccountHolderDto.ts → identityService/models/PlatformUserDto.ts} +4 -4
  140. package/clients/{holderService/models/BusinessDto.ts → identityService/models/TenantDto.ts} +16 -15
  141. package/clients/identityService/services/CheckerService.ts +3 -2
  142. package/clients/identityService/services/OAuthService.ts +8 -6
  143. package/clients/inventoryService/core/ApiError.ts +24 -24
  144. package/clients/inventoryService/core/ApiRequestOptions.ts +16 -16
  145. package/clients/inventoryService/core/ApiResult.ts +10 -10
  146. package/clients/inventoryService/core/CancelablePromise.ts +130 -130
  147. package/clients/inventoryService/core/OpenAPI.ts +31 -31
  148. package/clients/inventoryService/core/request.ts +321 -321
  149. package/clients/inventoryService/index.ts +10 -24
  150. package/clients/invoicingService/core/ApiError.ts +24 -24
  151. package/clients/invoicingService/core/ApiRequestOptions.ts +16 -16
  152. package/clients/invoicingService/core/ApiResult.ts +10 -10
  153. package/clients/invoicingService/core/CancelablePromise.ts +130 -130
  154. package/clients/invoicingService/core/OpenAPI.ts +31 -31
  155. package/clients/invoicingService/core/request.ts +321 -321
  156. package/clients/invoicingService/index.ts +23 -28
  157. package/clients/invoicingService/models/EmptyEnvelope.ts +11 -0
  158. package/clients/invoicingService/models/InvoiceCreateDto.ts +11 -0
  159. package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +14 -0
  160. package/clients/{cartService/models/ProductCartRecordDto.ts → invoicingService/models/InvoiceLineDto.ts} +7 -10
  161. package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +14 -0
  162. package/clients/{catalogService/models/ItemPricePolicyDtoEnvelope.ts → invoicingService/models/InvoiceLineDtoListEnvelope.ts} +3 -3
  163. package/clients/{tenantService/models/IntPtr.ts → invoicingService/models/InvoiceUpdateDto.ts} +1 -1
  164. package/clients/invoicingService/models/ItemPriceCreateDto.ts +20 -0
  165. package/clients/invoicingService/models/ItemPriceUpdateDto.ts +14 -0
  166. package/clients/invoicingService/services/InvoicesService.ts +253 -15
  167. package/clients/ordersService/core/ApiError.ts +25 -0
  168. package/clients/ordersService/core/ApiRequestOptions.ts +17 -0
  169. package/clients/ordersService/core/ApiResult.ts +11 -0
  170. package/clients/ordersService/core/CancelablePromise.ts +131 -0
  171. package/clients/ordersService/core/OpenAPI.ts +32 -0
  172. package/clients/ordersService/core/request.ts +322 -0
  173. package/clients/ordersService/index.ts +23 -0
  174. package/clients/ordersService/models/EmptyEnvelope.ts +11 -0
  175. package/clients/ordersService/models/ErrorEnvelope.ts +12 -0
  176. package/clients/ordersService/models/ItemPriceCreateDto.ts +20 -0
  177. package/clients/ordersService/models/ItemPriceUpdateDto.ts +14 -0
  178. package/clients/ordersService/models/OrderCreateDto.ts +16 -0
  179. package/clients/ordersService/models/OrderDto.ts +27 -0
  180. package/clients/ordersService/models/OrderDtoEnvelope.ts +14 -0
  181. package/clients/ordersService/models/OrderDtoListEnvelope.ts +14 -0
  182. package/clients/ordersService/models/OrderLineDto.ts +95 -0
  183. package/clients/ordersService/models/OrderLineDtoEnvelope.ts +14 -0
  184. package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +14 -0
  185. package/clients/ordersService/models/OrderUpdateDto.ts +12 -0
  186. package/clients/ordersService/services/OrdersService.ts +296 -0
  187. package/clients/pricingService/core/ApiError.ts +24 -24
  188. package/clients/pricingService/core/ApiRequestOptions.ts +16 -16
  189. package/clients/pricingService/core/ApiResult.ts +10 -10
  190. package/clients/pricingService/core/CancelablePromise.ts +130 -130
  191. package/clients/pricingService/core/OpenAPI.ts +31 -31
  192. package/clients/pricingService/core/request.ts +321 -321
  193. package/clients/pricingService/index.ts +27 -29
  194. package/clients/pricingService/models/EmptyEnvelope.ts +11 -0
  195. package/clients/pricingService/models/ItemPriceCreateDto.ts +20 -0
  196. package/clients/pricingService/models/ItemPriceDto.ts +20 -0
  197. package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +14 -0
  198. package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +14 -0
  199. package/clients/pricingService/models/ItemPriceUpdateDto.ts +14 -0
  200. package/clients/pricingService/models/Money.ts +1 -1
  201. package/clients/pricingService/models/PriceListCreateDto.ts +18 -0
  202. package/clients/pricingService/models/PriceListDto.ts +17 -0
  203. package/clients/pricingService/models/PriceListDtoEnvelope.ts +14 -0
  204. package/clients/pricingService/models/PriceListDtoListEnvelope.ts +14 -0
  205. package/clients/pricingService/models/PriceListUpdateDto.ts +14 -0
  206. package/clients/pricingService/services/PriceListsService.ts +254 -8
  207. package/clients/systemService/core/ApiError.ts +25 -0
  208. package/clients/systemService/core/ApiRequestOptions.ts +17 -0
  209. package/clients/systemService/core/ApiResult.ts +11 -0
  210. package/clients/systemService/core/CancelablePromise.ts +131 -0
  211. package/clients/systemService/core/OpenAPI.ts +32 -0
  212. package/clients/systemService/core/request.ts +322 -0
  213. package/clients/systemService/index.ts +14 -0
  214. package/clients/systemService/models/ErrorEnvelope.ts +12 -0
  215. package/clients/systemService/models/StringListEnvelope.ts +13 -0
  216. package/clients/systemService/services/AntiforgeryService.ts +29 -0
  217. package/clients/systemService/services/MigrationsService.ts +44 -0
  218. package/clients/tenantService/core/ApiError.ts +24 -24
  219. package/clients/tenantService/core/ApiRequestOptions.ts +16 -16
  220. package/clients/tenantService/core/ApiResult.ts +10 -10
  221. package/clients/tenantService/core/CancelablePromise.ts +130 -130
  222. package/clients/tenantService/core/OpenAPI.ts +31 -31
  223. package/clients/tenantService/core/request.ts +321 -321
  224. package/clients/tenantService/index.ts +33 -62
  225. package/clients/tenantService/models/BooleanEnvelope.ts +13 -0
  226. package/clients/tenantService/models/CartDto.ts +18 -0
  227. package/clients/tenantService/models/CartDtoEnvelope.ts +14 -0
  228. package/clients/tenantService/models/EmptyEnvelope.ts +11 -0
  229. package/clients/tenantService/models/ErrorEnvelope.ts +12 -0
  230. package/clients/tenantService/models/PlatformUserDto.ts +73 -0
  231. package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +14 -0
  232. package/clients/tenantService/models/SocialProfileDto.ts +39 -0
  233. package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +14 -0
  234. package/clients/tenantService/models/{BusinessCreateDto.ts → TenantCreateDto.ts} +2 -1
  235. package/clients/tenantService/models/{BusinessDto.ts → TenantDto.ts} +16 -15
  236. package/clients/tenantService/models/TenantDtoEnvelope.ts +14 -0
  237. package/clients/tenantService/models/TenantEnrollmentDto.ts +14 -0
  238. package/clients/{cartService/models/WishListDtoIReadOnlyListEnvelope.ts → tenantService/models/TenantEnrollmentDtoEnvelope.ts} +3 -3
  239. package/clients/tenantService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
  240. package/clients/tenantService/models/WalletDto.ts +2 -1
  241. package/clients/tenantService/models/WalletDtoEnvelope.ts +14 -0
  242. package/clients/tenantService/models/{Error.ts → WebPortalDto.ts} +5 -3
  243. package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +14 -0
  244. package/clients/tenantService/services/TenantsService.ts +230 -105
  245. package/clients/walletsService/core/ApiError.ts +25 -0
  246. package/clients/walletsService/core/ApiRequestOptions.ts +17 -0
  247. package/clients/walletsService/core/ApiResult.ts +11 -0
  248. package/clients/walletsService/core/CancelablePromise.ts +131 -0
  249. package/clients/walletsService/core/OpenAPI.ts +32 -0
  250. package/clients/walletsService/core/request.ts +322 -0
  251. package/clients/walletsService/index.ts +22 -0
  252. package/clients/walletsService/models/ErrorEnvelope.ts +12 -0
  253. package/clients/walletsService/models/InvoiceDto.ts +13 -0
  254. package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +14 -0
  255. package/clients/walletsService/models/LocationDto.ts +31 -0
  256. package/clients/walletsService/models/LocationDtoListEnvelope.ts +14 -0
  257. package/clients/walletsService/models/OrderDto.ts +27 -0
  258. package/clients/walletsService/models/OrderDtoListEnvelope.ts +14 -0
  259. package/clients/walletsService/models/PaymentDto.ts +17 -0
  260. package/clients/walletsService/models/PaymentDtoListEnvelope.ts +14 -0
  261. package/clients/walletsService/models/WalletDto.ts +22 -0
  262. package/clients/walletsService/models/WalletDtoEnvelope.ts +14 -0
  263. package/clients/walletsService/services/WalletsService.ts +174 -0
  264. package/package.json +23 -21
  265. package/schemas/cartService/schema.s.ts +1166 -1560
  266. package/schemas/catalogService/schema.s.ts +5982 -6109
  267. package/schemas/crmService/schema.s.ts +804 -0
  268. package/schemas/forexService/schema.s.ts +602 -526
  269. package/schemas/holderService/schema.s.ts +831 -831
  270. package/schemas/identityService/schema.s.ts +744 -1119
  271. package/schemas/inventoryService/schema.s.ts +43 -425
  272. package/schemas/invoicingService/schema.s.ts +590 -521
  273. package/schemas/ordersService/schema.s.ts +605 -0
  274. package/schemas/pricingService/schema.s.ts +579 -549
  275. package/schemas/systemService/schema.s.ts +138 -0
  276. package/schemas/tenantService/schema.s.ts +1116 -1606
  277. package/schemas/walletsService/schema.s.ts +466 -0
  278. package/tsconfig.json +110 -0
  279. package/vite.config.js +29 -0
  280. package/wwwroot/build/bundle.js +1 -0
  281. package/clients/cartService/models/AccessTokenResponse.ts +0 -11
  282. package/clients/cartService/models/Error.ts +0 -10
  283. package/clients/cartService/models/ForgotPasswordRequest.ts +0 -8
  284. package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
  285. package/clients/cartService/models/InfoRequest.ts +0 -10
  286. package/clients/cartService/models/LoginRequest.ts +0 -11
  287. package/clients/cartService/models/RefreshRequest.ts +0 -8
  288. package/clients/cartService/models/ResendConfirmationEmailRequest.ts +0 -8
  289. package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
  290. package/clients/cartService/models/ResponseStatus.ts +0 -12
  291. package/clients/cartService/models/TwoFactorRequest.ts +0 -12
  292. package/clients/cartService/models/TwoFactorResponse.ts +0 -12
  293. package/clients/cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts +0 -14
  294. package/clients/cartService/services/FenixAllianceAbsWebService.ts +0 -293
  295. package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
  296. package/clients/catalogService/models/ForgotPasswordRequest.ts +0 -8
  297. package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
  298. package/clients/catalogService/models/InfoRequest.ts +0 -10
  299. package/clients/catalogService/models/InfoResponse.ts +0 -9
  300. package/clients/catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts +0 -14
  301. package/clients/catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts +0 -14
  302. package/clients/catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts +0 -14
  303. package/clients/catalogService/models/ItemPricePolicyDto.ts +0 -35
  304. package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +0 -14
  305. package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +0 -14
  306. package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +0 -14
  307. package/clients/catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts +0 -14
  308. package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +0 -14
  309. package/clients/catalogService/models/LoginRequest.ts +0 -11
  310. package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +0 -14
  311. package/clients/catalogService/models/RefreshRequest.ts +0 -8
  312. package/clients/catalogService/models/RegisterRequest.ts +0 -9
  313. package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
  314. package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
  315. package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
  316. package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
  317. package/clients/catalogService/services/FenixAllianceAbsWebService.ts +0 -293
  318. package/clients/contactService/index.ts +0 -28
  319. package/clients/contactService/models/AccessTokenResponse.ts +0 -11
  320. package/clients/contactService/models/ContactDto.ts +0 -44
  321. package/clients/contactService/models/ForgotPasswordRequest.ts +0 -8
  322. package/clients/contactService/models/HttpValidationProblemDetails.ts +0 -5
  323. package/clients/contactService/models/InfoRequest.ts +0 -10
  324. package/clients/contactService/models/InfoResponse.ts +0 -9
  325. package/clients/contactService/models/LoginRequest.ts +0 -11
  326. package/clients/contactService/models/RefreshRequest.ts +0 -8
  327. package/clients/contactService/models/RegisterRequest.ts +0 -9
  328. package/clients/contactService/models/ResendConfirmationEmailRequest.ts +0 -8
  329. package/clients/contactService/models/ResetPasswordRequest.ts +0 -10
  330. package/clients/contactService/models/TwoFactorRequest.ts +0 -12
  331. package/clients/contactService/models/TwoFactorResponse.ts +0 -12
  332. package/clients/contactService/services/ContactsService.ts +0 -140
  333. package/clients/contactService/services/FenixAllianceAbsWebService.ts +0 -293
  334. package/clients/forexService/models/AccessTokenResponse.ts +0 -11
  335. package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
  336. package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
  337. package/clients/forexService/models/InfoRequest.ts +0 -10
  338. package/clients/forexService/models/InfoResponse.ts +0 -9
  339. package/clients/forexService/models/LoginRequest.ts +0 -11
  340. package/clients/forexService/models/RefreshRequest.ts +0 -8
  341. package/clients/forexService/models/RegisterRequest.ts +0 -9
  342. package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
  343. package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
  344. package/clients/forexService/models/TwoFactorRequest.ts +0 -12
  345. package/clients/forexService/models/TwoFactorResponse.ts +0 -12
  346. package/clients/forexService/services/FenixAllianceAbsWebService.ts +0 -293
  347. package/clients/holderService/models/AccessTokenResponse.ts +0 -11
  348. package/clients/holderService/models/AccountHolderCreateDto.ts +0 -34
  349. package/clients/holderService/models/AccountHolderDtoEnvelope.ts +0 -14
  350. package/clients/holderService/models/BusinessEnrollmentDto.ts +0 -19
  351. package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
  352. package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
  353. package/clients/holderService/models/InfoRequest.ts +0 -10
  354. package/clients/holderService/models/InfoResponse.ts +0 -9
  355. package/clients/holderService/models/LoginRequest.ts +0 -11
  356. package/clients/holderService/models/RefreshRequest.ts +0 -8
  357. package/clients/holderService/models/RegisterRequest.ts +0 -9
  358. package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
  359. package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
  360. package/clients/holderService/models/TwoFactorRequest.ts +0 -12
  361. package/clients/holderService/models/TwoFactorResponse.ts +0 -12
  362. package/clients/holderService/services/FenixAllianceAbsWebService.ts +0 -293
  363. package/clients/identityService/models/AccessTokenResponse.ts +0 -11
  364. package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
  365. package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
  366. package/clients/identityService/models/InfoRequest.ts +0 -10
  367. package/clients/identityService/models/InfoResponse.ts +0 -9
  368. package/clients/identityService/models/LoginRequest.ts +0 -11
  369. package/clients/identityService/models/RefreshRequest.ts +0 -8
  370. package/clients/identityService/models/RegisterRequest.ts +0 -9
  371. package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
  372. package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
  373. package/clients/identityService/models/TwoFactorRequest.ts +0 -12
  374. package/clients/identityService/models/TwoFactorResponse.ts +0 -12
  375. package/clients/identityService/services/FenixAllianceAbsWebService.ts +0 -293
  376. package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
  377. package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
  378. package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
  379. package/clients/inventoryService/models/InfoRequest.ts +0 -10
  380. package/clients/inventoryService/models/InfoResponse.ts +0 -9
  381. package/clients/inventoryService/models/LoginRequest.ts +0 -11
  382. package/clients/inventoryService/models/RefreshRequest.ts +0 -8
  383. package/clients/inventoryService/models/RegisterRequest.ts +0 -9
  384. package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
  385. package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
  386. package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
  387. package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
  388. package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +0 -293
  389. package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
  390. package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
  391. package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
  392. package/clients/invoicingService/models/InfoRequest.ts +0 -10
  393. package/clients/invoicingService/models/InfoResponse.ts +0 -9
  394. package/clients/invoicingService/models/LoginRequest.ts +0 -11
  395. package/clients/invoicingService/models/RefreshRequest.ts +0 -8
  396. package/clients/invoicingService/models/RegisterRequest.ts +0 -9
  397. package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
  398. package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
  399. package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
  400. package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
  401. package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +0 -293
  402. package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
  403. package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
  404. package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
  405. package/clients/pricingService/models/InfoRequest.ts +0 -10
  406. package/clients/pricingService/models/InfoResponse.ts +0 -9
  407. package/clients/pricingService/models/LoginRequest.ts +0 -11
  408. package/clients/pricingService/models/RefreshRequest.ts +0 -8
  409. package/clients/pricingService/models/RegisterRequest.ts +0 -9
  410. package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
  411. package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
  412. package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
  413. package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
  414. package/clients/pricingService/services/FenixAllianceAbsWebService.ts +0 -293
  415. package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
  416. package/clients/tenantService/models/AccountHolderCreateDto.ts +0 -34
  417. package/clients/tenantService/models/AggregateException.ts +0 -18
  418. package/clients/tenantService/models/Assembly.ts +0 -46
  419. package/clients/tenantService/models/BusinessEnrollmentDto.ts +0 -19
  420. package/clients/tenantService/models/BusinessEnrollmentDtoEnvelope.ts +0 -14
  421. package/clients/tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts +0 -14
  422. package/clients/tenantService/models/ConstructorInfo.ts +0 -103
  423. package/clients/tenantService/models/CustomAttributeData.ts +0 -15
  424. package/clients/tenantService/models/CustomAttributeNamedArgument.ts +0 -13
  425. package/clients/tenantService/models/CustomAttributeTypedArgument.ts +0 -10
  426. package/clients/tenantService/models/EventInfo.ts +0 -44
  427. package/clients/tenantService/models/Exception.ts +0 -16
  428. package/clients/tenantService/models/FieldInfo.ts +0 -74
  429. package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
  430. package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
  431. package/clients/tenantService/models/ICustomAttributeProvider.ts +0 -5
  432. package/clients/tenantService/models/InfoRequest.ts +0 -10
  433. package/clients/tenantService/models/InfoResponse.ts +0 -9
  434. package/clients/tenantService/models/LoginRequest.ts +0 -11
  435. package/clients/tenantService/models/MemberInfo.ts +0 -31
  436. package/clients/tenantService/models/MethodBase.ts +0 -103
  437. package/clients/tenantService/models/MethodInfo.ts +0 -108
  438. package/clients/tenantService/models/Module.ts +0 -19
  439. package/clients/tenantService/models/ModuleHandle.ts +0 -8
  440. package/clients/tenantService/models/ParameterInfo.ts +0 -40
  441. package/clients/tenantService/models/PropertyInfo.ts +0 -49
  442. package/clients/tenantService/models/RefreshRequest.ts +0 -8
  443. package/clients/tenantService/models/RegisterRequest.ts +0 -9
  444. package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
  445. package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
  446. package/clients/tenantService/models/ResponseStatus.ts +0 -12
  447. package/clients/tenantService/models/RuntimeFieldHandle.ts +0 -9
  448. package/clients/tenantService/models/RuntimeMethodHandle.ts +0 -9
  449. package/clients/tenantService/models/RuntimeTypeHandle.ts +0 -9
  450. package/clients/tenantService/models/StructLayoutAttribute.ts +0 -16
  451. package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
  452. package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
  453. package/clients/tenantService/models/Type.ts +0 -141
  454. package/clients/tenantService/models/TypeInfo.ts +0 -156
  455. package/clients/tenantService/models/WalletDtoTask.ts +0 -40
  456. package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +0 -14
  457. package/clients/tenantService/services/FenixAllianceAbsWebService.ts +0 -293
  458. package/schemas/contactService/schema.s.ts +0 -674
  459. /package/clients/{contactService → crmService}/models/ContactDtoEnvelope.ts +0 -0
  460. /package/clients/{contactService → crmService}/models/ContactDtoListEnvelope.ts +0 -0
  461. /package/clients/{contactService → crmService}/models/ErrorEnvelope.ts +0 -0
@@ -1,1119 +1,744 @@
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
+ 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
+ /** Check if a particular user is authenticated. */
104
+ get: {
105
+ parameters: {
106
+ query?: {
107
+ "api-version"?: string;
108
+ };
109
+ };
110
+ responses: {
111
+ /** @description Success */
112
+ 200: {
113
+ content: {
114
+ "application/json": boolean;
115
+ "application/xml": boolean;
116
+ };
117
+ };
118
+ };
119
+ };
120
+ };
121
+ "/api/v2/OAuth/WhoAmI": {
122
+ get: {
123
+ parameters: {
124
+ query?: {
125
+ tenantId?: string;
126
+ "api-version"?: string;
127
+ };
128
+ };
129
+ responses: {
130
+ /** @description Success */
131
+ 200: {
132
+ content: {
133
+ "application/json": components["schemas"]["ApiResponseEnvelope"];
134
+ "application/xml": components["schemas"]["ApiResponseEnvelope"];
135
+ };
136
+ };
137
+ /** @description Unauthorized */
138
+ 401: {
139
+ content: {
140
+ "application/json": components["schemas"]["ErrorEnvelope"];
141
+ "application/xml": components["schemas"]["ErrorEnvelope"];
142
+ };
143
+ };
144
+ /** @description Forbidden */
145
+ 403: {
146
+ content: {
147
+ "application/json": components["schemas"]["ErrorEnvelope"];
148
+ "application/xml": components["schemas"]["ErrorEnvelope"];
149
+ };
150
+ };
151
+ };
152
+ };
153
+ };
154
+ "/api/v2/OAuth/Permissions": {
155
+ get: {
156
+ parameters: {
157
+ query: {
158
+ tenantId: string;
159
+ userId?: string;
160
+ "api-version"?: string;
161
+ };
162
+ };
163
+ responses: {
164
+ /** @description Success */
165
+ 200: {
166
+ content: {
167
+ "application/json": components["schemas"]["StringListEnvelope"];
168
+ "application/xml": components["schemas"]["StringListEnvelope"];
169
+ };
170
+ };
171
+ /** @description Unauthorized */
172
+ 401: {
173
+ content: {
174
+ "application/json": components["schemas"]["ErrorEnvelope"];
175
+ "application/xml": components["schemas"]["ErrorEnvelope"];
176
+ };
177
+ };
178
+ /** @description Forbidden */
179
+ 403: {
180
+ content: {
181
+ "application/json": components["schemas"]["ErrorEnvelope"];
182
+ "application/xml": components["schemas"]["ErrorEnvelope"];
183
+ };
184
+ };
185
+ };
186
+ };
187
+ };
188
+ "/api/v2/OAuth/Token": {
189
+ post: {
190
+ parameters: {
191
+ query?: {
192
+ "api-version"?: string;
193
+ };
194
+ };
195
+ requestBody?: {
196
+ content: {
197
+ "application/json": components["schemas"]["OAuthTokenRequest"];
198
+ "application/xml": components["schemas"]["OAuthTokenRequest"];
199
+ };
200
+ };
201
+ responses: {
202
+ /** @description Success */
203
+ 200: {
204
+ content: {
205
+ "application/json": components["schemas"]["JsonWebTokenEnvelope"];
206
+ "application/xml": components["schemas"]["JsonWebTokenEnvelope"];
207
+ };
208
+ };
209
+ /** @description Unauthorized */
210
+ 401: {
211
+ content: {
212
+ "application/json": components["schemas"]["ErrorEnvelope"];
213
+ "application/xml": components["schemas"]["ErrorEnvelope"];
214
+ };
215
+ };
216
+ /** @description Forbidden */
217
+ 403: {
218
+ content: {
219
+ "application/json": components["schemas"]["ErrorEnvelope"];
220
+ "application/xml": components["schemas"]["ErrorEnvelope"];
221
+ };
222
+ };
223
+ };
224
+ };
225
+ };
226
+ "/api/v2/OAuth/SignIn": {
227
+ get: {
228
+ parameters: {
229
+ query?: {
230
+ "api-version"?: string;
231
+ };
232
+ };
233
+ responses: {
234
+ /** @description Success */
235
+ 200: {
236
+ content: {
237
+ "application/json": components["schemas"]["AccountHolderCreateDtoEnvelope"];
238
+ "application/xml": components["schemas"]["AccountHolderCreateDtoEnvelope"];
239
+ };
240
+ };
241
+ /** @description Bad Request */
242
+ 400: {
243
+ content: {
244
+ "application/json": components["schemas"]["ErrorEnvelope"];
245
+ "application/xml": components["schemas"]["ErrorEnvelope"];
246
+ };
247
+ };
248
+ /** @description Unauthorized */
249
+ 401: {
250
+ content: {
251
+ "application/json": components["schemas"]["ErrorEnvelope"];
252
+ "application/xml": components["schemas"]["ErrorEnvelope"];
253
+ };
254
+ };
255
+ };
256
+ };
257
+ post: {
258
+ parameters: {
259
+ query?: {
260
+ "api-version"?: string;
261
+ };
262
+ };
263
+ requestBody?: {
264
+ content: {
265
+ "application/json": components["schemas"]["SigninModel"];
266
+ "application/xml": components["schemas"]["SigninModel"];
267
+ };
268
+ };
269
+ responses: {
270
+ /** @description Success */
271
+ 200: {
272
+ content: {
273
+ "application/json": components["schemas"]["JsonWebTokenEnvelope"];
274
+ "application/xml": components["schemas"]["JsonWebTokenEnvelope"];
275
+ };
276
+ };
277
+ /** @description Bad Request */
278
+ 400: {
279
+ content: {
280
+ "application/json": components["schemas"]["ErrorEnvelope"];
281
+ "application/xml": components["schemas"]["ErrorEnvelope"];
282
+ };
283
+ };
284
+ /** @description Unauthorized */
285
+ 401: {
286
+ content: {
287
+ "application/json": components["schemas"]["ErrorEnvelope"];
288
+ "application/xml": components["schemas"]["ErrorEnvelope"];
289
+ };
290
+ };
291
+ };
292
+ };
293
+ };
294
+ "/api/v2/OAuth/{applicationId}/Keys": {
295
+ /** Gets the signing the keys for a particular application. */
296
+ get: {
297
+ parameters: {
298
+ query?: {
299
+ "api-version"?: string;
300
+ };
301
+ path: {
302
+ applicationId: string;
303
+ };
304
+ };
305
+ responses: {
306
+ /** @description Success */
307
+ 200: {
308
+ content: {
309
+ "application/json": components["schemas"]["JsonWebKeySetEnvelope"];
310
+ "application/xml": components["schemas"]["JsonWebKeySetEnvelope"];
311
+ };
312
+ };
313
+ };
314
+ };
315
+ };
316
+ "/api/v2/OAuth/{tenantId}/{applicationId}/.Well-Known/OpenId-Configuration": {
317
+ /** Gets OpenID Configuration for a particular application in within the context of a business tenant. */
318
+ get: {
319
+ parameters: {
320
+ query?: {
321
+ "api-version"?: string;
322
+ };
323
+ path: {
324
+ tenantId: string;
325
+ applicationId: string;
326
+ };
327
+ };
328
+ responses: {
329
+ /** @description Success */
330
+ 200: {
331
+ content: {
332
+ "application/json": components["schemas"]["OpenIdConfigurationEnvelope"];
333
+ "application/xml": components["schemas"]["OpenIdConfigurationEnvelope"];
334
+ };
335
+ };
336
+ };
337
+ };
338
+ };
339
+ "/api/v2/IdentityService/Resource/message": {
340
+ get: {
341
+ parameters: {
342
+ query?: {
343
+ "api-version"?: string;
344
+ };
345
+ };
346
+ responses: {
347
+ /** @description Success */
348
+ 200: {
349
+ content: never;
350
+ };
351
+ };
352
+ };
353
+ };
354
+ "/connect/userinfo": {
355
+ get: {
356
+ parameters: {
357
+ query?: {
358
+ "api-version"?: string;
359
+ };
360
+ };
361
+ responses: {
362
+ /** @description Success */
363
+ 200: {
364
+ content: never;
365
+ };
366
+ };
367
+ };
368
+ post: {
369
+ parameters: {
370
+ query?: {
371
+ "api-version"?: string;
372
+ };
373
+ };
374
+ responses: {
375
+ /** @description Success */
376
+ 200: {
377
+ content: never;
378
+ };
379
+ };
380
+ };
381
+ };
382
+ }
383
+
384
+ export type webhooks = Record<string, never>;
385
+
386
+ export interface components {
387
+ schemas: {
388
+ AccountHolderCreateDto: {
389
+ /** Format: uuid */
390
+ id?: string;
391
+ /** Format: date-time */
392
+ timestamp?: string;
393
+ qualifiedName?: string | null;
394
+ /** Format: date-time */
395
+ birthday?: string;
396
+ firstName?: string | null;
397
+ lastName?: string | null;
398
+ publicName?: string | null;
399
+ idProvider?: string | null;
400
+ languageID?: string | null;
401
+ timezoneID?: string | null;
402
+ gender?: string | null;
403
+ cityID?: string | null;
404
+ stateID?: string | null;
405
+ email?: string | null;
406
+ about?: string | null;
407
+ jobTitle?: string | null;
408
+ coverURL?: string | null;
409
+ avatarURL?: string | null;
410
+ gitHubURL?: string | null;
411
+ websiteURL?: string | null;
412
+ twitterUrl?: string | null;
413
+ facebookURL?: string | null;
414
+ youTubeURL?: string | null;
415
+ linkedInURL?: string | null;
416
+ instagramUrl?: string | null;
417
+ countryID?: string | null;
418
+ countryName?: string | null;
419
+ currencyID?: string | null;
420
+ };
421
+ AccountHolderCreateDtoEnvelope: {
422
+ errorMessage?: string | null;
423
+ isSuccess?: boolean;
424
+ /** Format: date-time */
425
+ timestamp?: string;
426
+ activityId?: string | null;
427
+ correlationId?: string | null;
428
+ result?: components["schemas"]["AccountHolderCreateDto"];
429
+ };
430
+ Actor: {
431
+ id?: string | null;
432
+ type?: string | null;
433
+ cartID?: string | null;
434
+ actingAs?: string | null;
435
+ socialProfileID?: string | null;
436
+ };
437
+ ApiResponse: {
438
+ holder?: components["schemas"]["PlatformUserDto"];
439
+ ipLookup?: components["schemas"]["IPLookupDto"];
440
+ tenant?: components["schemas"]["TenantDto"];
441
+ actor?: components["schemas"]["Actor"];
442
+ status?: components["schemas"]["ResponseStatus"];
443
+ application?: components["schemas"]["ClientApplication"];
444
+ pagination?: components["schemas"]["ResponsePagination"];
445
+ };
446
+ ApiResponseEnvelope: {
447
+ errorMessage?: string | null;
448
+ isSuccess?: boolean;
449
+ /** Format: date-time */
450
+ timestamp?: string;
451
+ activityId?: string | null;
452
+ correlationId?: string | null;
453
+ result?: components["schemas"]["ApiResponse"];
454
+ };
455
+ ClientApplication: {
456
+ id?: string | null;
457
+ name?: string | null;
458
+ avatar?: string | null;
459
+ tenantID?: string | null;
460
+ tenantName?: string | null;
461
+ tenantAvatar?: string | null;
462
+ privacyPolicy?: string | null;
463
+ termsAndConditions?: string | null;
464
+ grantedPermissions?: string[] | null;
465
+ };
466
+ Error: {
467
+ id?: string | null;
468
+ description?: string | null;
469
+ help?: string | null;
470
+ };
471
+ ErrorEnvelope: {
472
+ errorMessage?: string | null;
473
+ isSuccess?: boolean;
474
+ /** Format: date-time */
475
+ timestamp?: string;
476
+ activityId?: string | null;
477
+ correlationId?: string | null;
478
+ };
479
+ IPLookupDto: {
480
+ id?: string | null;
481
+ ip?: string | null;
482
+ ua?: string | null;
483
+ };
484
+ JsonWebKey: {
485
+ kid?: string | null;
486
+ /** Format: int64 */
487
+ nbf?: number;
488
+ use?: string | null;
489
+ kty?: string | null;
490
+ e?: string | null;
491
+ n?: string | null;
492
+ };
493
+ JsonWebKeySet: {
494
+ keys?: components["schemas"]["JsonWebKey"][] | null;
495
+ };
496
+ JsonWebKeySetEnvelope: {
497
+ errorMessage?: string | null;
498
+ isSuccess?: boolean;
499
+ /** Format: date-time */
500
+ timestamp?: string;
501
+ activityId?: string | null;
502
+ correlationId?: string | null;
503
+ result?: components["schemas"]["JsonWebKeySet"];
504
+ };
505
+ JsonWebToken: {
506
+ header?: components["schemas"]["JsonWebTokenHeader"];
507
+ payload?: components["schemas"]["JsonWebTokenPayload"];
508
+ signature?: string | null;
509
+ tokenType?: string | null;
510
+ /** Format: int64 */
511
+ expiresIn?: number;
512
+ accessToken?: string | null;
513
+ };
514
+ JsonWebTokenEnvelope: {
515
+ errorMessage?: string | null;
516
+ isSuccess?: boolean;
517
+ /** Format: date-time */
518
+ timestamp?: string;
519
+ activityId?: string | null;
520
+ correlationId?: string | null;
521
+ result?: components["schemas"]["JsonWebToken"];
522
+ };
523
+ JsonWebTokenHeader: {
524
+ alg?: string | null;
525
+ jku?: string | null;
526
+ kid?: string | null;
527
+ typ?: string | null;
528
+ };
529
+ JsonWebTokenPayload: {
530
+ aud?: string | null;
531
+ cid?: string | null;
532
+ iss?: string | null;
533
+ aid?: string | null;
534
+ sub?: string | null;
535
+ act?: string | null;
536
+ /** Format: int64 */
537
+ iat?: number;
538
+ /** Format: int64 */
539
+ nbf?: number;
540
+ /** Format: int64 */
541
+ exp?: number;
542
+ scopes?: string[] | null;
543
+ };
544
+ OAuthTokenRequest: {
545
+ client_id?: string | null;
546
+ client_secret?: string | null;
547
+ grant_type?: string | null;
548
+ requested_scopes?: string | null;
549
+ requested_enrollment?: string | null;
550
+ };
551
+ OpenIdConfiguration: {
552
+ issuer?: string | null;
553
+ authorizationEndpoint?: string | null;
554
+ tokenEndpoint?: string | null;
555
+ endSessionEndpoint?: string | null;
556
+ jwksUri?: string | null;
557
+ responseModesSupported?: string[] | null;
558
+ responseTypesSupported?: string[] | null;
559
+ scopesSupported?: string[] | null;
560
+ subjectTypesSupported?: string[] | null;
561
+ idTokenSigningAlgValuesSupported?: string[] | null;
562
+ tokenEndpointAuthMethodsSupported?: string[] | null;
563
+ claimsSupported?: string[] | null;
564
+ };
565
+ OpenIdConfigurationEnvelope: {
566
+ errorMessage?: string | null;
567
+ isSuccess?: boolean;
568
+ /** Format: date-time */
569
+ timestamp?: string;
570
+ activityId?: string | null;
571
+ correlationId?: string | null;
572
+ result?: components["schemas"]["OpenIdConfiguration"];
573
+ };
574
+ PlatformUserDto: {
575
+ id?: string | null;
576
+ /** Format: date-time */
577
+ timestamp?: string | null;
578
+ qualifiedName?: string | null;
579
+ /** Format: date-time */
580
+ birthday?: string;
581
+ firstName?: string | null;
582
+ lastName?: string | null;
583
+ publicName?: string | null;
584
+ idProvider?: string | null;
585
+ languageId?: string | null;
586
+ timezoneId?: string | null;
587
+ gender?: string | null;
588
+ cityId?: string | null;
589
+ stateId?: string | null;
590
+ email?: string | null;
591
+ about?: string | null;
592
+ jobTitle?: string | null;
593
+ coverUrl?: string | null;
594
+ avatarUrl?: string | null;
595
+ gitHubUrl?: string | null;
596
+ websiteUrl?: string | null;
597
+ twitterUrl?: string | null;
598
+ facebookUrl?: string | null;
599
+ youTubeUrl?: string | null;
600
+ linkedInUrl?: string | null;
601
+ instagramUrl?: string | null;
602
+ lockoutEnabled?: boolean;
603
+ socialFeedId?: string | null;
604
+ socialProfileId?: string | null;
605
+ currentTenantId?: string | null;
606
+ currentEnrollmentId?: string | null;
607
+ cartId?: string | null;
608
+ walletId?: string | null;
609
+ countryId?: string | null;
610
+ currencyId?: string | null;
611
+ userName?: string | null;
612
+ status?: string | null;
613
+ phoneNumber?: string | null;
614
+ publicIdentifier?: string | null;
615
+ identityProvider?: string | null;
616
+ phoneNumberConfirmed?: boolean;
617
+ emailConfirmed?: boolean;
618
+ /**
619
+ * Format: int32
620
+ * @enum {integer}
621
+ */
622
+ themeMode?: 0 | 1 | 2;
623
+ /**
624
+ * Format: int32
625
+ * @enum {integer}
626
+ */
627
+ availability?: 0 | 1 | 2 | 3 | 4;
628
+ /** Format: int32 */
629
+ followsCount?: number | null;
630
+ /** Format: int32 */
631
+ followersCount?: number | null;
632
+ /** Format: int32 */
633
+ enrollmentsCount?: number | null;
634
+ /** Format: int32 */
635
+ socialPostsCount?: number | null;
636
+ /** Format: int32 */
637
+ unreadMessagesCount?: number | null;
638
+ /** Format: int32 */
639
+ unreadNotificationsCount?: number | null;
640
+ webUrl?: string | null;
641
+ countryStateId?: string | null;
642
+ selectedBusinessId?: string | null;
643
+ };
644
+ ResponsePagination: {
645
+ selfPageToken?: string | null;
646
+ nextPageToken?: string | null;
647
+ prevPageToken?: string | null;
648
+ orderedBy?: string | null;
649
+ /** Format: int32 */
650
+ pageSize?: number;
651
+ /** Format: int32 */
652
+ pageIndex?: number;
653
+ };
654
+ ResponseStatus: {
655
+ success?: boolean;
656
+ error?: components["schemas"]["Error"];
657
+ correlationID?: string | null;
658
+ /** Format: date-time */
659
+ utcTimestamp?: string;
660
+ };
661
+ SigninModel: {
662
+ email?: string | null;
663
+ password?: string | null;
664
+ };
665
+ StringListEnvelope: {
666
+ errorMessage?: string | null;
667
+ isSuccess?: boolean;
668
+ /** Format: date-time */
669
+ timestamp?: string;
670
+ activityId?: string | null;
671
+ correlationId?: string | null;
672
+ result?: string[] | null;
673
+ };
674
+ TenantDto: {
675
+ id?: string | null;
676
+ /** Format: date-time */
677
+ timestamp?: string | null;
678
+ qualifiedName?: string | null;
679
+ taxId?: string | null;
680
+ about?: string | null;
681
+ walletId?: string | null;
682
+ socialFeedId?: string | null;
683
+ businessIndustryId?: string | null;
684
+ businessSegmentId?: string | null;
685
+ socialProfileId?: string | null;
686
+ languageId?: string | null;
687
+ name?: string | null;
688
+ duns?: string | null;
689
+ slogan?: string | null;
690
+ legalName?: string | null;
691
+ coverUrl?: string | null;
692
+ avatarUrl?: string | null;
693
+ cartId?: string | null;
694
+ currencyId?: string | null;
695
+ timezoneId?: string | null;
696
+ countryId?: string | null;
697
+ countryStateId?: string | null;
698
+ cityId?: string | null;
699
+ /** Format: double */
700
+ reviewsAvg?: number | null;
701
+ /** Format: int32 */
702
+ reviewsCount?: number | null;
703
+ /** Format: int32 */
704
+ followsCount?: number | null;
705
+ /** Format: int32 */
706
+ followersCount?: number | null;
707
+ /** Format: int32 */
708
+ enrollmentsCount?: number | null;
709
+ /** Format: int32 */
710
+ socialPostsCount?: number | null;
711
+ /** Format: int32 */
712
+ unreadMessagesCount?: number | null;
713
+ /** Format: int32 */
714
+ unreadNotificationsCount?: number | null;
715
+ enrollmentID?: string | null;
716
+ email?: string | null;
717
+ phone?: string | null;
718
+ webUrl?: string | null;
719
+ facebookUrl?: string | null;
720
+ twitterUrl?: string | null;
721
+ gitHubUrl?: string | null;
722
+ linkedInUrl?: string | null;
723
+ instagramUrl?: string | null;
724
+ youTubeUrl?: string | null;
725
+ whatsAppNumber?: string | null;
726
+ supportPhoneNumber?: string | null;
727
+ verified?: boolean;
728
+ businessName?: string | null;
729
+ businessLegalName?: string | null;
730
+ twitterUsername?: string | null;
731
+ };
732
+ };
733
+ responses: never;
734
+ parameters: never;
735
+ requestBodies: never;
736
+ headers: never;
737
+ pathItems: never;
738
+ }
739
+
740
+ export type $defs = Record<string, never>;
741
+
742
+ export type external = Record<string, never>;
743
+
744
+ export type operations = Record<string, never>;