@fenixalliance/abs-api-client 1.0.1 → 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,1606 +1,1116 @@
1
- /**
2
- * This file was auto-generated by openapi-typescript.
3
- * Do not make direct changes to the file.
4
- */
5
-
6
-
7
- export interface paths {
8
- "/version": {
9
- get: {
10
- responses: {
11
- /** @description Success */
12
- 200: {
13
- content: never;
14
- };
15
- };
16
- };
17
- };
18
- "/health": {
19
- get: {
20
- responses: {
21
- /** @description Success */
22
- 200: {
23
- content: never;
24
- };
25
- };
26
- };
27
- };
28
- "/hello": {
29
- get: {
30
- responses: {
31
- /** @description Success */
32
- 200: {
33
- content: never;
34
- };
35
- };
36
- };
37
- };
38
- "/register": {
39
- post: {
40
- requestBody?: {
41
- content: {
42
- "application/json": components["schemas"]["RegisterRequest"];
43
- };
44
- };
45
- responses: {
46
- /** @description Success */
47
- 200: {
48
- content: never;
49
- };
50
- /** @description Bad Request */
51
- 400: {
52
- content: {
53
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
54
- };
55
- };
56
- };
57
- };
58
- };
59
- "/login": {
60
- post: {
61
- parameters: {
62
- query?: {
63
- useCookies?: boolean;
64
- useSessionCookies?: boolean;
65
- };
66
- };
67
- requestBody?: {
68
- content: {
69
- "application/json": components["schemas"]["LoginRequest"];
70
- };
71
- };
72
- responses: {
73
- /** @description Success */
74
- 200: {
75
- content: {
76
- "application/json": components["schemas"]["AccessTokenResponse"];
77
- };
78
- };
79
- };
80
- };
81
- };
82
- "/refresh": {
83
- post: {
84
- requestBody?: {
85
- content: {
86
- "application/json": components["schemas"]["RefreshRequest"];
87
- };
88
- };
89
- responses: {
90
- /** @description Success */
91
- 200: {
92
- content: {
93
- "application/json": components["schemas"]["AccessTokenResponse"];
94
- };
95
- };
96
- };
97
- };
98
- };
99
- "/confirmEmail": {
100
- get: operations["MapIdentityApi-/confirmEmail"];
101
- };
102
- "/resendConfirmationEmail": {
103
- post: {
104
- requestBody?: {
105
- content: {
106
- "application/json": components["schemas"]["ResendConfirmationEmailRequest"];
107
- };
108
- };
109
- responses: {
110
- /** @description Success */
111
- 200: {
112
- content: never;
113
- };
114
- };
115
- };
116
- };
117
- "/forgotPassword": {
118
- post: {
119
- requestBody?: {
120
- content: {
121
- "application/json": components["schemas"]["ForgotPasswordRequest"];
122
- };
123
- };
124
- responses: {
125
- /** @description Success */
126
- 200: {
127
- content: never;
128
- };
129
- /** @description Bad Request */
130
- 400: {
131
- content: {
132
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
133
- };
134
- };
135
- };
136
- };
137
- };
138
- "/resetPassword": {
139
- post: {
140
- requestBody?: {
141
- content: {
142
- "application/json": components["schemas"]["ResetPasswordRequest"];
143
- };
144
- };
145
- responses: {
146
- /** @description Success */
147
- 200: {
148
- content: never;
149
- };
150
- /** @description Bad Request */
151
- 400: {
152
- content: {
153
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
154
- };
155
- };
156
- };
157
- };
158
- };
159
- "/manage/2fa": {
160
- post: {
161
- requestBody?: {
162
- content: {
163
- "application/json": components["schemas"]["TwoFactorRequest"];
164
- };
165
- };
166
- responses: {
167
- /** @description Success */
168
- 200: {
169
- content: {
170
- "application/json": components["schemas"]["TwoFactorResponse"];
171
- };
172
- };
173
- /** @description Bad Request */
174
- 400: {
175
- content: {
176
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
177
- };
178
- };
179
- /** @description Not Found */
180
- 404: {
181
- content: never;
182
- };
183
- };
184
- };
185
- };
186
- "/manage/info": {
187
- get: {
188
- responses: {
189
- /** @description Success */
190
- 200: {
191
- content: {
192
- "application/json": components["schemas"]["InfoResponse"];
193
- };
194
- };
195
- /** @description Bad Request */
196
- 400: {
197
- content: {
198
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
199
- };
200
- };
201
- /** @description Not Found */
202
- 404: {
203
- content: never;
204
- };
205
- };
206
- };
207
- post: {
208
- requestBody?: {
209
- content: {
210
- "application/json": components["schemas"]["InfoRequest"];
211
- };
212
- };
213
- responses: {
214
- /** @description Success */
215
- 200: {
216
- content: {
217
- "application/json": components["schemas"]["InfoResponse"];
218
- };
219
- };
220
- /** @description Bad Request */
221
- 400: {
222
- content: {
223
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
224
- };
225
- };
226
- /** @description Not Found */
227
- 404: {
228
- content: never;
229
- };
230
- };
231
- };
232
- };
233
- "/Account/PerformExternalLogin": {
234
- post: {
235
- requestBody?: {
236
- content: {
237
- "multipart/form-data": {
238
- provider: string;
239
- returnUrl: string;
240
- };
241
- "application/x-www-form-urlencoded": {
242
- provider: string;
243
- returnUrl: string;
244
- };
245
- };
246
- };
247
- responses: {
248
- /** @description Success */
249
- 200: {
250
- content: never;
251
- };
252
- };
253
- };
254
- };
255
- "/Account/Logout": {
256
- post: {
257
- requestBody?: {
258
- content: {
259
- "multipart/form-data": {
260
- returnUrl: string;
261
- };
262
- "application/x-www-form-urlencoded": {
263
- returnUrl: string;
264
- };
265
- };
266
- };
267
- responses: {
268
- /** @description Success */
269
- 200: {
270
- content: never;
271
- };
272
- };
273
- };
274
- };
275
- "/Account/Manage/LinkExternalLogin": {
276
- post: {
277
- requestBody?: {
278
- content: {
279
- "multipart/form-data": {
280
- provider: string;
281
- };
282
- "application/x-www-form-urlencoded": {
283
- provider: string;
284
- };
285
- };
286
- };
287
- responses: {
288
- /** @description Success */
289
- 200: {
290
- content: never;
291
- };
292
- };
293
- };
294
- };
295
- "/Account/Manage/DownloadPersonalData": {
296
- post: {
297
- responses: {
298
- /** @description Success */
299
- 200: {
300
- content: never;
301
- };
302
- };
303
- };
304
- };
305
- "/api/v2/Tenants/Current": {
306
- get: {
307
- parameters: {
308
- query?: {
309
- "api-version"?: string;
310
- };
311
- };
312
- responses: {
313
- /** @description Success */
314
- 200: {
315
- content: {
316
- "application/json": components["schemas"]["BusinessDto"];
317
- "application/xml": components["schemas"]["BusinessDto"];
318
- };
319
- };
320
- /** @description Unauthorized */
321
- 401: {
322
- content: {
323
- "application/json": components["schemas"]["ResponseStatus"];
324
- "application/xml": components["schemas"]["ResponseStatus"];
325
- };
326
- };
327
- };
328
- };
329
- };
330
- "/api/v2/Tenants/{businessId}": {
331
- get: {
332
- parameters: {
333
- query?: {
334
- "api-version"?: string;
335
- };
336
- path: {
337
- businessId: string;
338
- };
339
- };
340
- responses: {
341
- /** @description Success */
342
- 200: {
343
- content: {
344
- "application/json": components["schemas"]["BusinessDto"];
345
- "application/xml": components["schemas"]["BusinessDto"];
346
- };
347
- };
348
- /** @description Unauthorized */
349
- 401: {
350
- content: {
351
- "application/json": components["schemas"]["ResponseStatus"];
352
- "application/xml": components["schemas"]["ResponseStatus"];
353
- };
354
- };
355
- };
356
- };
357
- };
358
- "/api/v2/Tenants/{businessId}/Wallet": {
359
- get: {
360
- parameters: {
361
- query?: {
362
- "api-version"?: string;
363
- };
364
- path: {
365
- businessId: string;
366
- };
367
- };
368
- responses: {
369
- /** @description Success */
370
- 200: {
371
- content: {
372
- "application/json": components["schemas"]["WalletDtoTaskEnvelope"];
373
- "application/xml": components["schemas"]["WalletDtoTaskEnvelope"];
374
- };
375
- };
376
- };
377
- };
378
- };
379
- "/api/v2/Tenants/{businessId}/SocialProfile": {
380
- get: {
381
- parameters: {
382
- query?: {
383
- "api-version"?: string;
384
- };
385
- path: {
386
- businessId: string;
387
- };
388
- };
389
- responses: {
390
- /** @description Success */
391
- 200: {
392
- content: never;
393
- };
394
- };
395
- };
396
- };
397
- "/api/v2/Tenants/{businessId}/Cart": {
398
- get: {
399
- parameters: {
400
- query?: {
401
- "api-version"?: string;
402
- };
403
- path: {
404
- businessId: string;
405
- };
406
- };
407
- responses: {
408
- /** @description Success */
409
- 200: {
410
- content: never;
411
- };
412
- };
413
- };
414
- };
415
- "/api/v2/Tenants/{businessId}/Enrollments": {
416
- get: {
417
- parameters: {
418
- query?: {
419
- "api-version"?: string;
420
- };
421
- path: {
422
- businessId: string;
423
- };
424
- };
425
- responses: {
426
- /** @description Success */
427
- 200: {
428
- content: {
429
- "application/json": components["schemas"]["BusinessEnrollmentDtoIReadOnlyListEnvelope"];
430
- "application/xml": components["schemas"]["BusinessEnrollmentDtoIReadOnlyListEnvelope"];
431
- };
432
- };
433
- };
434
- };
435
- };
436
- "/api/v2/Tenants/{businessId}/Enrollments/{enrollmentId}": {
437
- get: {
438
- parameters: {
439
- query?: {
440
- "api-version"?: string;
441
- };
442
- path: {
443
- businessId: string;
444
- enrollmentId: string;
445
- };
446
- };
447
- responses: {
448
- /** @description Success */
449
- 200: {
450
- content: {
451
- "application/json": components["schemas"]["BusinessEnrollmentDtoEnvelope"];
452
- "application/xml": components["schemas"]["BusinessEnrollmentDtoEnvelope"];
453
- };
454
- };
455
- };
456
- };
457
- };
458
- "/api/v2/Tenants/{businessId}/Enrollments/{EnrollmentID}/Licenses": {
459
- get: {
460
- parameters: {
461
- query?: {
462
- "api-version"?: string;
463
- };
464
- path: {
465
- businessId: string;
466
- enrollmentID: string;
467
- };
468
- };
469
- responses: {
470
- /** @description Success */
471
- 200: {
472
- content: never;
473
- };
474
- };
475
- };
476
- };
477
- "/api/v2/Tenants/{businessId}/Enrollments/{EnrollmentID}/Permissions": {
478
- get: {
479
- parameters: {
480
- query?: {
481
- "api-version"?: string;
482
- };
483
- path: {
484
- businessId: string;
485
- enrollmentID: string;
486
- };
487
- };
488
- responses: {
489
- /** @description Success */
490
- 200: {
491
- content: {
492
- "application/json": components["schemas"]["StringListEnvelope"];
493
- "application/xml": components["schemas"]["StringListEnvelope"];
494
- };
495
- };
496
- };
497
- };
498
- };
499
- "/api/v2/Tenants/{businessId}/Licenses": {
500
- get: {
501
- parameters: {
502
- query?: {
503
- "api-version"?: string;
504
- };
505
- path: {
506
- businessId: string;
507
- };
508
- };
509
- responses: {
510
- /** @description Success */
511
- 200: {
512
- content: never;
513
- };
514
- };
515
- };
516
- };
517
- "/api/v2/Tenants": {
518
- post: {
519
- parameters: {
520
- query?: {
521
- "api-version"?: string;
522
- };
523
- };
524
- requestBody?: {
525
- content: {
526
- "application/json": components["schemas"]["BusinessCreateDto"];
527
- "application/xml": components["schemas"]["BusinessCreateDto"];
528
- };
529
- };
530
- responses: {
531
- /** @description Success */
532
- 200: {
533
- content: never;
534
- };
535
- };
536
- };
537
- delete: {
538
- parameters: {
539
- query: {
540
- businessId: string;
541
- "api-version"?: string;
542
- };
543
- };
544
- responses: {
545
- /** @description Success */
546
- 200: {
547
- content: never;
548
- };
549
- };
550
- };
551
- };
552
- "/api/v2/Tenants/{businessId}/Select": {
553
- get: {
554
- parameters: {
555
- query?: {
556
- backTo?: string;
557
- enableRedirect?: boolean;
558
- "api-version"?: string;
559
- };
560
- path: {
561
- businessId: string;
562
- };
563
- };
564
- responses: {
565
- /** @description Success */
566
- 200: {
567
- content: never;
568
- };
569
- };
570
- };
571
- post: {
572
- parameters: {
573
- query?: {
574
- backTo?: string;
575
- enableRedirect?: boolean;
576
- "api-version"?: string;
577
- };
578
- path: {
579
- businessId: string;
580
- };
581
- };
582
- responses: {
583
- /** @description Success */
584
- 200: {
585
- content: never;
586
- };
587
- };
588
- };
589
- };
590
- "/api/v2/Tenants/Deselect": {
591
- get: {
592
- parameters: {
593
- query?: {
594
- backTo?: string;
595
- enableRedirect?: boolean;
596
- "api-version"?: string;
597
- };
598
- };
599
- responses: {
600
- /** @description Success */
601
- 200: {
602
- content: never;
603
- };
604
- };
605
- };
606
- post: {
607
- parameters: {
608
- query?: {
609
- backTo?: string;
610
- enableRedirect?: boolean;
611
- "api-version"?: string;
612
- };
613
- };
614
- responses: {
615
- /** @description Success */
616
- 200: {
617
- content: never;
618
- };
619
- };
620
- };
621
- };
622
- "/api/v2/Tenants/{businessId}/AppAuthorization": {
623
- get: {
624
- parameters: {
625
- query?: {
626
- "api-version"?: string;
627
- };
628
- path: {
629
- businessId: string;
630
- };
631
- };
632
- responses: {
633
- /** @description Success */
634
- 200: {
635
- content: never;
636
- };
637
- };
638
- };
639
- };
640
- "/api/v2/Tenants/{businessId}/Notifications": {
641
- get: {
642
- parameters: {
643
- query?: {
644
- "api-version"?: string;
645
- };
646
- path: {
647
- businessId: string;
648
- };
649
- };
650
- responses: {
651
- /** @description Success */
652
- 200: {
653
- content: {
654
- "application/json": components["schemas"]["NotificationDtoListEnvelope"];
655
- "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
656
- };
657
- };
658
- };
659
- };
660
- };
661
- "/api/v2/Tenants/{businessId}/UserEnrollments": {
662
- get: {
663
- parameters: {
664
- query?: {
665
- "api-version"?: string;
666
- };
667
- path: {
668
- businessId: string;
669
- };
670
- };
671
- responses: {
672
- /** @description Success */
673
- 200: {
674
- content: {
675
- "application/json": components["schemas"]["BusinessEnrollmentDto"][];
676
- "application/xml": components["schemas"]["BusinessEnrollmentDto"][];
677
- };
678
- };
679
- /** @description Unauthorized */
680
- 401: {
681
- content: {
682
- "application/json": components["schemas"]["ResponseStatus"];
683
- "application/xml": components["schemas"]["ResponseStatus"];
684
- };
685
- };
686
- };
687
- };
688
- };
689
- }
690
-
691
- export type webhooks = Record<string, never>;
692
-
693
- export interface components {
694
- schemas: {
695
- AccessTokenResponse: {
696
- tokenType?: string | null;
697
- accessToken?: string | null;
698
- /** Format: int64 */
699
- expiresIn?: number;
700
- refreshToken?: string | null;
701
- };
702
- AccountHolderCreateDto: {
703
- /** Format: uuid */
704
- id?: string;
705
- qualifiedName?: string | null;
706
- /** Format: date-time */
707
- birthday?: string;
708
- firstName?: string | null;
709
- lastName?: string | null;
710
- publicName?: string | null;
711
- idProvider?: string | null;
712
- languageID?: string | null;
713
- timezoneID?: string | null;
714
- gender?: string | null;
715
- cityID?: string | null;
716
- stateID?: string | null;
717
- email?: string | null;
718
- about?: string | null;
719
- jobTitle?: string | null;
720
- coverURL?: string | null;
721
- avatarURL?: string | null;
722
- gitHubURL?: string | null;
723
- websiteURL?: string | null;
724
- twitterUrl?: string | null;
725
- facebookURL?: string | null;
726
- youTubeURL?: string | null;
727
- linkedInURL?: string | null;
728
- instagramUrl?: string | null;
729
- countryID?: string | null;
730
- countryName?: string | null;
731
- currencyID?: string | null;
732
- };
733
- AggregateException: {
734
- targetSite?: components["schemas"]["MethodBase"];
735
- data?: {
736
- [key: string]: unknown;
737
- } | null;
738
- innerException?: components["schemas"]["Exception"];
739
- helpLink?: string | null;
740
- source?: string | null;
741
- /** Format: int32 */
742
- hResult?: number;
743
- stackTrace?: string | null;
744
- innerExceptions?: (readonly components["schemas"]["Exception"][]) | null;
745
- message?: string | null;
746
- };
747
- Assembly: {
748
- definedTypes?: (readonly components["schemas"]["TypeInfo"][]) | null;
749
- exportedTypes?: (readonly components["schemas"]["Type"][]) | null;
750
- /** @deprecated */
751
- codeBase?: string | null;
752
- entryPoint?: components["schemas"]["MethodInfo"];
753
- fullName?: string | null;
754
- imageRuntimeVersion?: string | null;
755
- isDynamic?: boolean;
756
- location?: string | null;
757
- reflectionOnly?: boolean;
758
- isCollectible?: boolean;
759
- isFullyTrusted?: boolean;
760
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
761
- /** @deprecated */
762
- escapedCodeBase?: string | null;
763
- manifestModule?: components["schemas"]["Module"];
764
- modules?: (readonly components["schemas"]["Module"][]) | null;
765
- /** @deprecated */
766
- globalAssemblyCache?: boolean;
767
- /** Format: int64 */
768
- hostContext?: number;
769
- /**
770
- * Format: int32
771
- * @enum {integer}
772
- */
773
- securityRuleSet?: 0 | 1 | 2;
774
- };
775
- BusinessCreateDto: {
776
- /** Format: uuid */
777
- id?: string;
778
- duns?: string | null;
779
- name?: string | null;
780
- legalName?: string | null;
781
- email?: string | null;
782
- phone?: string | null;
783
- webUrl?: string | null;
784
- about?: string | null;
785
- handler?: string | null;
786
- currencyID?: string | null;
787
- countryLanguageID?: string | null;
788
- timezoneID?: string | null;
789
- cityID?: string | null;
790
- countryStateID?: string | null;
791
- countryID?: string | null;
792
- taxID?: string | null;
793
- avatarUrl?: string | null;
794
- };
795
- BusinessDto: {
796
- id?: string | null;
797
- /** Format: date-time */
798
- timestamp?: string | null;
799
- qualifiedName?: string | null;
800
- taxID?: string | null;
801
- about?: string | null;
802
- walletID?: string | null;
803
- socialFeedID?: string | null;
804
- businessIndustryID?: string | null;
805
- businessSegmentID?: string | null;
806
- socialProfileID?: string | null;
807
- languageId?: string | null;
808
- name?: string | null;
809
- duns?: string | null;
810
- slogan?: string | null;
811
- legalName?: string | null;
812
- coverUrl?: string | null;
813
- avatarUrl?: string | null;
814
- cartID?: string | null;
815
- currencyID?: string | null;
816
- timezoneID?: string | null;
817
- countryID?: string | null;
818
- stateID?: string | null;
819
- cityID?: string | null;
820
- /** Format: int32 */
821
- followsCount?: number | null;
822
- /** Format: int32 */
823
- followersCount?: number | null;
824
- /** Format: int32 */
825
- enrollmentsCount?: number | null;
826
- /** Format: int32 */
827
- socialPostsCount?: number | null;
828
- /** Format: int32 */
829
- unreadMessagesCount?: number | null;
830
- /** Format: int32 */
831
- unreadNotificationsCount?: number | null;
832
- enrollmentID?: string | null;
833
- c2BFollowID?: string | null;
834
- b2CFollowID?: string | null;
835
- email?: string | null;
836
- phone?: string | null;
837
- webUrl?: string | null;
838
- facebookUrl?: string | null;
839
- twitterUrl?: string | null;
840
- gitHubUrl?: string | null;
841
- linkedInUrl?: string | null;
842
- instagramUrl?: string | null;
843
- youTubeUrl?: string | null;
844
- whatsAppNumber?: string | null;
845
- verified?: boolean;
846
- businessName?: string | null;
847
- businessLegalName?: string | null;
848
- twitterUsername?: string | null;
849
- };
850
- BusinessEnrollmentDto: {
851
- id?: string | null;
852
- isRoot?: boolean;
853
- isOwner?: boolean;
854
- isAdmin?: boolean;
855
- isDisabled?: boolean;
856
- isBusinessOwner?: boolean;
857
- businessID?: string | null;
858
- holderID?: string | null;
859
- holder?: components["schemas"]["AccountHolderCreateDto"];
860
- tenant?: components["schemas"]["BusinessDto"];
861
- };
862
- BusinessEnrollmentDtoEnvelope: {
863
- errorMessage?: string | null;
864
- isSuccess?: boolean;
865
- /** Format: date-time */
866
- timestamp?: string;
867
- activityId?: string | null;
868
- correlationId?: string | null;
869
- result?: components["schemas"]["BusinessEnrollmentDto"];
870
- };
871
- BusinessEnrollmentDtoIReadOnlyListEnvelope: {
872
- errorMessage?: string | null;
873
- isSuccess?: boolean;
874
- /** Format: date-time */
875
- timestamp?: string;
876
- activityId?: string | null;
877
- correlationId?: string | null;
878
- result?: components["schemas"]["BusinessEnrollmentDto"][] | null;
879
- };
880
- ConstructorInfo: {
881
- name?: string | null;
882
- declaringType?: components["schemas"]["Type"];
883
- reflectedType?: components["schemas"]["Type"];
884
- module?: components["schemas"]["Module"];
885
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
886
- isCollectible?: boolean;
887
- /** Format: int32 */
888
- metadataToken?: number;
889
- /**
890
- * Format: int32
891
- * @enum {integer}
892
- */
893
- attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384 | 32768 | 53248;
894
- /**
895
- * Format: int32
896
- * @enum {integer}
897
- */
898
- methodImplementationFlags?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 4096 | 65535;
899
- /**
900
- * Format: int32
901
- * @enum {integer}
902
- */
903
- callingConvention?: 1 | 2 | 3 | 32 | 64;
904
- isAbstract?: boolean;
905
- isConstructor?: boolean;
906
- isFinal?: boolean;
907
- isHideBySig?: boolean;
908
- isSpecialName?: boolean;
909
- isStatic?: boolean;
910
- isVirtual?: boolean;
911
- isAssembly?: boolean;
912
- isFamily?: boolean;
913
- isFamilyAndAssembly?: boolean;
914
- isFamilyOrAssembly?: boolean;
915
- isPrivate?: boolean;
916
- isPublic?: boolean;
917
- isConstructedGenericMethod?: boolean;
918
- isGenericMethod?: boolean;
919
- isGenericMethodDefinition?: boolean;
920
- containsGenericParameters?: boolean;
921
- methodHandle?: components["schemas"]["RuntimeMethodHandle"];
922
- isSecurityCritical?: boolean;
923
- isSecuritySafeCritical?: boolean;
924
- isSecurityTransparent?: boolean;
925
- /**
926
- * Format: int32
927
- * @enum {integer}
928
- */
929
- memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
930
- };
931
- CustomAttributeData: {
932
- attributeType?: components["schemas"]["Type"];
933
- constructor?: components["schemas"]["ConstructorInfo"];
934
- constructorArguments?: (readonly components["schemas"]["CustomAttributeTypedArgument"][]) | null;
935
- namedArguments?: (readonly components["schemas"]["CustomAttributeNamedArgument"][]) | null;
936
- };
937
- CustomAttributeNamedArgument: {
938
- memberInfo?: components["schemas"]["MemberInfo"];
939
- typedValue?: components["schemas"]["CustomAttributeTypedArgument"];
940
- memberName?: string | null;
941
- isField?: boolean;
942
- };
943
- CustomAttributeTypedArgument: {
944
- argumentType?: components["schemas"]["Type"];
945
- value?: unknown;
946
- };
947
- Error: {
948
- id?: string | null;
949
- description?: string | null;
950
- help?: string | null;
951
- };
952
- EventInfo: {
953
- name?: string | null;
954
- declaringType?: components["schemas"]["Type"];
955
- reflectedType?: components["schemas"]["Type"];
956
- module?: components["schemas"]["Module"];
957
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
958
- isCollectible?: boolean;
959
- /** Format: int32 */
960
- metadataToken?: number;
961
- /**
962
- * Format: int32
963
- * @enum {integer}
964
- */
965
- memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
966
- /**
967
- * Format: int32
968
- * @enum {integer}
969
- */
970
- attributes?: 0 | 512 | 1024;
971
- isSpecialName?: boolean;
972
- addMethod?: components["schemas"]["MethodInfo"];
973
- removeMethod?: components["schemas"]["MethodInfo"];
974
- raiseMethod?: components["schemas"]["MethodInfo"];
975
- isMulticast?: boolean;
976
- eventHandlerType?: components["schemas"]["Type"];
977
- };
978
- Exception: {
979
- targetSite?: components["schemas"]["MethodBase"];
980
- message?: string | null;
981
- data?: {
982
- [key: string]: unknown;
983
- } | null;
984
- innerException?: components["schemas"]["Exception"];
985
- helpLink?: string | null;
986
- source?: string | null;
987
- /** Format: int32 */
988
- hResult?: number;
989
- stackTrace?: string | null;
990
- };
991
- FieldInfo: {
992
- name?: string | null;
993
- declaringType?: components["schemas"]["Type"];
994
- reflectedType?: components["schemas"]["Type"];
995
- module?: components["schemas"]["Module"];
996
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
997
- isCollectible?: boolean;
998
- /** Format: int32 */
999
- metadataToken?: number;
1000
- /**
1001
- * Format: int32
1002
- * @enum {integer}
1003
- */
1004
- memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
1005
- /**
1006
- * Format: int32
1007
- * @enum {integer}
1008
- */
1009
- attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 4096 | 8192 | 32768 | 38144;
1010
- fieldType?: components["schemas"]["Type"];
1011
- isInitOnly?: boolean;
1012
- isLiteral?: boolean;
1013
- /** @deprecated */
1014
- isNotSerialized?: boolean;
1015
- isPinvokeImpl?: boolean;
1016
- isSpecialName?: boolean;
1017
- isStatic?: boolean;
1018
- isAssembly?: boolean;
1019
- isFamily?: boolean;
1020
- isFamilyAndAssembly?: boolean;
1021
- isFamilyOrAssembly?: boolean;
1022
- isPrivate?: boolean;
1023
- isPublic?: boolean;
1024
- isSecurityCritical?: boolean;
1025
- isSecuritySafeCritical?: boolean;
1026
- isSecurityTransparent?: boolean;
1027
- fieldHandle?: components["schemas"]["RuntimeFieldHandle"];
1028
- };
1029
- ForgotPasswordRequest: {
1030
- email?: string | null;
1031
- };
1032
- HttpValidationProblemDetails: {
1033
- type?: string | null;
1034
- title?: string | null;
1035
- /** Format: int32 */
1036
- status?: number | null;
1037
- detail?: string | null;
1038
- instance?: string | null;
1039
- errors?: {
1040
- [key: string]: string[];
1041
- } | null;
1042
- [key: string]: unknown;
1043
- };
1044
- ICustomAttributeProvider: Record<string, never>;
1045
- InfoRequest: {
1046
- newEmail?: string | null;
1047
- newPassword?: string | null;
1048
- oldPassword?: string | null;
1049
- };
1050
- InfoResponse: {
1051
- email?: string | null;
1052
- isEmailConfirmed?: boolean;
1053
- };
1054
- IntPtr: Record<string, never>;
1055
- LoginRequest: {
1056
- email?: string | null;
1057
- password?: string | null;
1058
- twoFactorCode?: string | null;
1059
- twoFactorRecoveryCode?: string | null;
1060
- };
1061
- MemberInfo: {
1062
- /**
1063
- * Format: int32
1064
- * @enum {integer}
1065
- */
1066
- memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
1067
- name?: string | null;
1068
- declaringType?: components["schemas"]["Type"];
1069
- reflectedType?: components["schemas"]["Type"];
1070
- module?: components["schemas"]["Module"];
1071
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
1072
- isCollectible?: boolean;
1073
- /** Format: int32 */
1074
- metadataToken?: number;
1075
- };
1076
- MethodBase: {
1077
- /**
1078
- * Format: int32
1079
- * @enum {integer}
1080
- */
1081
- memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
1082
- name?: string | null;
1083
- declaringType?: components["schemas"]["Type"];
1084
- reflectedType?: components["schemas"]["Type"];
1085
- module?: components["schemas"]["Module"];
1086
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
1087
- isCollectible?: boolean;
1088
- /** Format: int32 */
1089
- metadataToken?: number;
1090
- /**
1091
- * Format: int32
1092
- * @enum {integer}
1093
- */
1094
- attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384 | 32768 | 53248;
1095
- /**
1096
- * Format: int32
1097
- * @enum {integer}
1098
- */
1099
- methodImplementationFlags?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 4096 | 65535;
1100
- /**
1101
- * Format: int32
1102
- * @enum {integer}
1103
- */
1104
- callingConvention?: 1 | 2 | 3 | 32 | 64;
1105
- isAbstract?: boolean;
1106
- isConstructor?: boolean;
1107
- isFinal?: boolean;
1108
- isHideBySig?: boolean;
1109
- isSpecialName?: boolean;
1110
- isStatic?: boolean;
1111
- isVirtual?: boolean;
1112
- isAssembly?: boolean;
1113
- isFamily?: boolean;
1114
- isFamilyAndAssembly?: boolean;
1115
- isFamilyOrAssembly?: boolean;
1116
- isPrivate?: boolean;
1117
- isPublic?: boolean;
1118
- isConstructedGenericMethod?: boolean;
1119
- isGenericMethod?: boolean;
1120
- isGenericMethodDefinition?: boolean;
1121
- containsGenericParameters?: boolean;
1122
- methodHandle?: components["schemas"]["RuntimeMethodHandle"];
1123
- isSecurityCritical?: boolean;
1124
- isSecuritySafeCritical?: boolean;
1125
- isSecurityTransparent?: boolean;
1126
- };
1127
- MethodInfo: {
1128
- name?: string | null;
1129
- declaringType?: components["schemas"]["Type"];
1130
- reflectedType?: components["schemas"]["Type"];
1131
- module?: components["schemas"]["Module"];
1132
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
1133
- isCollectible?: boolean;
1134
- /** Format: int32 */
1135
- metadataToken?: number;
1136
- /**
1137
- * Format: int32
1138
- * @enum {integer}
1139
- */
1140
- attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384 | 32768 | 53248;
1141
- /**
1142
- * Format: int32
1143
- * @enum {integer}
1144
- */
1145
- methodImplementationFlags?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 4096 | 65535;
1146
- /**
1147
- * Format: int32
1148
- * @enum {integer}
1149
- */
1150
- callingConvention?: 1 | 2 | 3 | 32 | 64;
1151
- isAbstract?: boolean;
1152
- isConstructor?: boolean;
1153
- isFinal?: boolean;
1154
- isHideBySig?: boolean;
1155
- isSpecialName?: boolean;
1156
- isStatic?: boolean;
1157
- isVirtual?: boolean;
1158
- isAssembly?: boolean;
1159
- isFamily?: boolean;
1160
- isFamilyAndAssembly?: boolean;
1161
- isFamilyOrAssembly?: boolean;
1162
- isPrivate?: boolean;
1163
- isPublic?: boolean;
1164
- isConstructedGenericMethod?: boolean;
1165
- isGenericMethod?: boolean;
1166
- isGenericMethodDefinition?: boolean;
1167
- containsGenericParameters?: boolean;
1168
- methodHandle?: components["schemas"]["RuntimeMethodHandle"];
1169
- isSecurityCritical?: boolean;
1170
- isSecuritySafeCritical?: boolean;
1171
- isSecurityTransparent?: boolean;
1172
- /**
1173
- * Format: int32
1174
- * @enum {integer}
1175
- */
1176
- memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
1177
- returnParameter?: components["schemas"]["ParameterInfo"];
1178
- returnType?: components["schemas"]["Type"];
1179
- returnTypeCustomAttributes?: components["schemas"]["ICustomAttributeProvider"];
1180
- };
1181
- Module: {
1182
- assembly?: components["schemas"]["Assembly"];
1183
- fullyQualifiedName?: string | null;
1184
- name?: string | null;
1185
- /** Format: int32 */
1186
- mdStreamVersion?: number;
1187
- /** Format: uuid */
1188
- moduleVersionId?: string;
1189
- scopeName?: string | null;
1190
- moduleHandle?: components["schemas"]["ModuleHandle"];
1191
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
1192
- /** Format: int32 */
1193
- metadataToken?: number;
1194
- };
1195
- ModuleHandle: {
1196
- /** Format: int32 */
1197
- mdStreamVersion?: number;
1198
- };
1199
- NotificationDto: {
1200
- id?: string | null;
1201
- /** Format: date-time */
1202
- timestamp?: string | null;
1203
- read?: boolean;
1204
- icon?: string | null;
1205
- message?: string | null;
1206
- redirectUrl?: string | null;
1207
- socialProfileID?: string | null;
1208
- /** Format: date-time */
1209
- readTimestamp?: string;
1210
- /** Format: date-time */
1211
- issuedTimestamp?: string;
1212
- };
1213
- NotificationDtoListEnvelope: {
1214
- errorMessage?: string | null;
1215
- isSuccess?: boolean;
1216
- /** Format: date-time */
1217
- timestamp?: string;
1218
- activityId?: string | null;
1219
- correlationId?: string | null;
1220
- result?: components["schemas"]["NotificationDto"][] | null;
1221
- };
1222
- ParameterInfo: {
1223
- /**
1224
- * Format: int32
1225
- * @enum {integer}
1226
- */
1227
- attributes?: 0 | 1 | 2 | 4 | 8 | 16 | 4096 | 8192 | 16384 | 32768 | 61440;
1228
- member?: components["schemas"]["MemberInfo"];
1229
- name?: string | null;
1230
- parameterType?: components["schemas"]["Type"];
1231
- /** Format: int32 */
1232
- position?: number;
1233
- isIn?: boolean;
1234
- isLcid?: boolean;
1235
- isOptional?: boolean;
1236
- isOut?: boolean;
1237
- isRetval?: boolean;
1238
- defaultValue?: unknown;
1239
- rawDefaultValue?: unknown;
1240
- hasDefaultValue?: boolean;
1241
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
1242
- /** Format: int32 */
1243
- metadataToken?: number;
1244
- };
1245
- PropertyInfo: {
1246
- name?: string | null;
1247
- declaringType?: components["schemas"]["Type"];
1248
- reflectedType?: components["schemas"]["Type"];
1249
- module?: components["schemas"]["Module"];
1250
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
1251
- isCollectible?: boolean;
1252
- /** Format: int32 */
1253
- metadataToken?: number;
1254
- /**
1255
- * Format: int32
1256
- * @enum {integer}
1257
- */
1258
- memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
1259
- propertyType?: components["schemas"]["Type"];
1260
- /**
1261
- * Format: int32
1262
- * @enum {integer}
1263
- */
1264
- attributes?: 0 | 512 | 1024 | 4096 | 8192 | 16384 | 32768 | 62464;
1265
- isSpecialName?: boolean;
1266
- canRead?: boolean;
1267
- canWrite?: boolean;
1268
- getMethod?: components["schemas"]["MethodInfo"];
1269
- setMethod?: components["schemas"]["MethodInfo"];
1270
- };
1271
- RefreshRequest: {
1272
- refreshToken?: string | null;
1273
- };
1274
- RegisterRequest: {
1275
- email?: string | null;
1276
- password?: string | null;
1277
- };
1278
- ResendConfirmationEmailRequest: {
1279
- email?: string | null;
1280
- };
1281
- ResetPasswordRequest: {
1282
- email?: string | null;
1283
- resetCode?: string | null;
1284
- newPassword?: string | null;
1285
- };
1286
- ResponseStatus: {
1287
- success?: boolean;
1288
- error?: components["schemas"]["Error"];
1289
- correlationID?: string | null;
1290
- /** Format: date-time */
1291
- utcTimestamp?: string;
1292
- };
1293
- RuntimeFieldHandle: {
1294
- value?: components["schemas"]["IntPtr"];
1295
- };
1296
- RuntimeMethodHandle: {
1297
- value?: components["schemas"]["IntPtr"];
1298
- };
1299
- RuntimeTypeHandle: {
1300
- value?: components["schemas"]["IntPtr"];
1301
- };
1302
- StringListEnvelope: {
1303
- errorMessage?: string | null;
1304
- isSuccess?: boolean;
1305
- /** Format: date-time */
1306
- timestamp?: string;
1307
- activityId?: string | null;
1308
- correlationId?: string | null;
1309
- result?: string[] | null;
1310
- };
1311
- StructLayoutAttribute: {
1312
- typeId?: unknown;
1313
- /**
1314
- * Format: int32
1315
- * @enum {integer}
1316
- */
1317
- value?: 0 | 2 | 3;
1318
- };
1319
- TwoFactorRequest: {
1320
- enable?: boolean | null;
1321
- twoFactorCode?: string | null;
1322
- resetSharedKey?: boolean;
1323
- resetRecoveryCodes?: boolean;
1324
- forgetMachine?: boolean;
1325
- };
1326
- TwoFactorResponse: {
1327
- sharedKey?: string | null;
1328
- /** Format: int32 */
1329
- recoveryCodesLeft?: number;
1330
- recoveryCodes?: string[] | null;
1331
- isTwoFactorEnabled?: boolean;
1332
- isMachineRemembered?: boolean;
1333
- };
1334
- Type: {
1335
- name?: string | null;
1336
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
1337
- isCollectible?: boolean;
1338
- /** Format: int32 */
1339
- metadataToken?: number;
1340
- isInterface?: boolean;
1341
- /**
1342
- * Format: int32
1343
- * @enum {integer}
1344
- */
1345
- memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
1346
- namespace?: string | null;
1347
- assemblyQualifiedName?: string | null;
1348
- fullName?: string | null;
1349
- assembly?: components["schemas"]["Assembly"];
1350
- module?: components["schemas"]["Module"];
1351
- isNested?: boolean;
1352
- declaringType?: components["schemas"]["Type"];
1353
- declaringMethod?: components["schemas"]["MethodBase"];
1354
- reflectedType?: components["schemas"]["Type"];
1355
- underlyingSystemType?: components["schemas"]["Type"];
1356
- isTypeDefinition?: boolean;
1357
- isArray?: boolean;
1358
- isByRef?: boolean;
1359
- isPointer?: boolean;
1360
- isConstructedGenericType?: boolean;
1361
- isGenericParameter?: boolean;
1362
- isGenericTypeParameter?: boolean;
1363
- isGenericMethodParameter?: boolean;
1364
- isGenericType?: boolean;
1365
- isGenericTypeDefinition?: boolean;
1366
- isSZArray?: boolean;
1367
- isVariableBoundArray?: boolean;
1368
- isByRefLike?: boolean;
1369
- isFunctionPointer?: boolean;
1370
- isUnmanagedFunctionPointer?: boolean;
1371
- hasElementType?: boolean;
1372
- genericTypeArguments?: (readonly components["schemas"]["Type"][]) | null;
1373
- /** Format: int32 */
1374
- genericParameterPosition?: number;
1375
- /**
1376
- * Format: int32
1377
- * @enum {integer}
1378
- */
1379
- genericParameterAttributes?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 28;
1380
- /**
1381
- * Format: int32
1382
- * @enum {integer}
1383
- */
1384
- attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 24 | 32 | 128 | 256 | 1024 | 2048 | 4096 | 8192 | 16384 | 65536 | 131072 | 196608 | 262144 | 264192 | 1048576 | 12582912;
1385
- isAbstract?: boolean;
1386
- isImport?: boolean;
1387
- isSealed?: boolean;
1388
- isSpecialName?: boolean;
1389
- isClass?: boolean;
1390
- isNestedAssembly?: boolean;
1391
- isNestedFamANDAssem?: boolean;
1392
- isNestedFamily?: boolean;
1393
- isNestedFamORAssem?: boolean;
1394
- isNestedPrivate?: boolean;
1395
- isNestedPublic?: boolean;
1396
- isNotPublic?: boolean;
1397
- isPublic?: boolean;
1398
- isAutoLayout?: boolean;
1399
- isExplicitLayout?: boolean;
1400
- isLayoutSequential?: boolean;
1401
- isAnsiClass?: boolean;
1402
- isAutoClass?: boolean;
1403
- isUnicodeClass?: boolean;
1404
- isCOMObject?: boolean;
1405
- isContextful?: boolean;
1406
- isEnum?: boolean;
1407
- isMarshalByRef?: boolean;
1408
- isPrimitive?: boolean;
1409
- isValueType?: boolean;
1410
- isSignatureType?: boolean;
1411
- isSecurityCritical?: boolean;
1412
- isSecuritySafeCritical?: boolean;
1413
- isSecurityTransparent?: boolean;
1414
- structLayoutAttribute?: components["schemas"]["StructLayoutAttribute"];
1415
- typeInitializer?: components["schemas"]["ConstructorInfo"];
1416
- typeHandle?: components["schemas"]["RuntimeTypeHandle"];
1417
- /** Format: uuid */
1418
- guid?: string;
1419
- baseType?: components["schemas"]["Type"];
1420
- /** @deprecated */
1421
- isSerializable?: boolean;
1422
- containsGenericParameters?: boolean;
1423
- isVisible?: boolean;
1424
- };
1425
- TypeInfo: {
1426
- name?: string | null;
1427
- customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
1428
- isCollectible?: boolean;
1429
- /** Format: int32 */
1430
- metadataToken?: number;
1431
- isInterface?: boolean;
1432
- /**
1433
- * Format: int32
1434
- * @enum {integer}
1435
- */
1436
- memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
1437
- namespace?: string | null;
1438
- assemblyQualifiedName?: string | null;
1439
- fullName?: string | null;
1440
- assembly?: components["schemas"]["Assembly"];
1441
- module?: components["schemas"]["Module"];
1442
- isNested?: boolean;
1443
- declaringType?: components["schemas"]["Type"];
1444
- declaringMethod?: components["schemas"]["MethodBase"];
1445
- reflectedType?: components["schemas"]["Type"];
1446
- underlyingSystemType?: components["schemas"]["Type"];
1447
- isTypeDefinition?: boolean;
1448
- isArray?: boolean;
1449
- isByRef?: boolean;
1450
- isPointer?: boolean;
1451
- isConstructedGenericType?: boolean;
1452
- isGenericParameter?: boolean;
1453
- isGenericTypeParameter?: boolean;
1454
- isGenericMethodParameter?: boolean;
1455
- isGenericType?: boolean;
1456
- isGenericTypeDefinition?: boolean;
1457
- isSZArray?: boolean;
1458
- isVariableBoundArray?: boolean;
1459
- isByRefLike?: boolean;
1460
- isFunctionPointer?: boolean;
1461
- isUnmanagedFunctionPointer?: boolean;
1462
- hasElementType?: boolean;
1463
- genericTypeArguments?: (readonly components["schemas"]["Type"][]) | null;
1464
- /** Format: int32 */
1465
- genericParameterPosition?: number;
1466
- /**
1467
- * Format: int32
1468
- * @enum {integer}
1469
- */
1470
- genericParameterAttributes?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 28;
1471
- /**
1472
- * Format: int32
1473
- * @enum {integer}
1474
- */
1475
- attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 24 | 32 | 128 | 256 | 1024 | 2048 | 4096 | 8192 | 16384 | 65536 | 131072 | 196608 | 262144 | 264192 | 1048576 | 12582912;
1476
- isAbstract?: boolean;
1477
- isImport?: boolean;
1478
- isSealed?: boolean;
1479
- isSpecialName?: boolean;
1480
- isClass?: boolean;
1481
- isNestedAssembly?: boolean;
1482
- isNestedFamANDAssem?: boolean;
1483
- isNestedFamily?: boolean;
1484
- isNestedFamORAssem?: boolean;
1485
- isNestedPrivate?: boolean;
1486
- isNestedPublic?: boolean;
1487
- isNotPublic?: boolean;
1488
- isPublic?: boolean;
1489
- isAutoLayout?: boolean;
1490
- isExplicitLayout?: boolean;
1491
- isLayoutSequential?: boolean;
1492
- isAnsiClass?: boolean;
1493
- isAutoClass?: boolean;
1494
- isUnicodeClass?: boolean;
1495
- isCOMObject?: boolean;
1496
- isContextful?: boolean;
1497
- isEnum?: boolean;
1498
- isMarshalByRef?: boolean;
1499
- isPrimitive?: boolean;
1500
- isValueType?: boolean;
1501
- isSignatureType?: boolean;
1502
- isSecurityCritical?: boolean;
1503
- isSecuritySafeCritical?: boolean;
1504
- isSecurityTransparent?: boolean;
1505
- structLayoutAttribute?: components["schemas"]["StructLayoutAttribute"];
1506
- typeInitializer?: components["schemas"]["ConstructorInfo"];
1507
- typeHandle?: components["schemas"]["RuntimeTypeHandle"];
1508
- /** Format: uuid */
1509
- guid?: string;
1510
- baseType?: components["schemas"]["Type"];
1511
- /** @deprecated */
1512
- isSerializable?: boolean;
1513
- containsGenericParameters?: boolean;
1514
- isVisible?: boolean;
1515
- genericTypeParameters?: (readonly components["schemas"]["Type"][]) | null;
1516
- declaredConstructors?: (readonly components["schemas"]["ConstructorInfo"][]) | null;
1517
- declaredEvents?: (readonly components["schemas"]["EventInfo"][]) | null;
1518
- declaredFields?: (readonly components["schemas"]["FieldInfo"][]) | null;
1519
- declaredMembers?: (readonly components["schemas"]["MemberInfo"][]) | null;
1520
- declaredMethods?: (readonly components["schemas"]["MethodInfo"][]) | null;
1521
- declaredNestedTypes?: (readonly components["schemas"]["TypeInfo"][]) | null;
1522
- declaredProperties?: (readonly components["schemas"]["PropertyInfo"][]) | null;
1523
- implementedInterfaces?: (readonly components["schemas"]["Type"][]) | null;
1524
- };
1525
- WalletDto: {
1526
- id?: string | null;
1527
- /** Format: date-time */
1528
- timestamp?: string;
1529
- /** Format: double */
1530
- balance?: number;
1531
- type?: string | null;
1532
- testMode?: boolean;
1533
- verified?: boolean;
1534
- currencyId?: string | null;
1535
- /** Format: double */
1536
- forexRate?: number;
1537
- /** Format: double */
1538
- balanceInUsd?: number;
1539
- /** Format: double */
1540
- mainNetEtherBalance?: number;
1541
- ethereumAddress?: string | null;
1542
- ethereumPublicKey?: string | null;
1543
- ethereumPrivateKey?: string | null;
1544
- /** Format: double */
1545
- rollingReservePercent?: number;
1546
- };
1547
- WalletDtoTask: {
1548
- /** Format: int32 */
1549
- id?: number;
1550
- exception?: components["schemas"]["AggregateException"];
1551
- /**
1552
- * Format: int32
1553
- * @enum {integer}
1554
- */
1555
- status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
1556
- isCanceled?: boolean;
1557
- isCompleted?: boolean;
1558
- isCompletedSuccessfully?: boolean;
1559
- /**
1560
- * Format: int32
1561
- * @enum {integer}
1562
- */
1563
- creationOptions?: 0 | 1 | 2 | 4 | 8 | 16 | 64;
1564
- asyncState?: unknown;
1565
- isFaulted?: boolean;
1566
- result?: components["schemas"]["WalletDto"];
1567
- };
1568
- WalletDtoTaskEnvelope: {
1569
- errorMessage?: string | null;
1570
- isSuccess?: boolean;
1571
- /** Format: date-time */
1572
- timestamp?: string;
1573
- activityId?: string | null;
1574
- correlationId?: string | null;
1575
- result?: components["schemas"]["WalletDtoTask"];
1576
- };
1577
- };
1578
- responses: never;
1579
- parameters: never;
1580
- requestBodies: never;
1581
- headers: never;
1582
- pathItems: never;
1583
- }
1584
-
1585
- export type $defs = Record<string, never>;
1586
-
1587
- export type external = Record<string, never>;
1588
-
1589
- export interface operations {
1590
-
1591
- "MapIdentityApi-/confirmEmail": {
1592
- parameters: {
1593
- query?: {
1594
- userId?: string;
1595
- code?: string;
1596
- changedEmail?: string;
1597
- };
1598
- };
1599
- responses: {
1600
- /** @description Success */
1601
- 200: {
1602
- content: never;
1603
- };
1604
- };
1605
- };
1606
- }
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/Tenants/Root": {
9
+ get: {
10
+ parameters: {
11
+ query?: {
12
+ "api-version"?: string;
13
+ };
14
+ };
15
+ responses: {
16
+ /** @description Success */
17
+ 200: {
18
+ content: {
19
+ "application/json": components["schemas"]["TenantDtoEnvelope"];
20
+ "application/xml": components["schemas"]["TenantDtoEnvelope"];
21
+ };
22
+ };
23
+ /** @description Unauthorized */
24
+ 401: {
25
+ content: {
26
+ "application/json": components["schemas"]["ErrorEnvelope"];
27
+ "application/xml": components["schemas"]["ErrorEnvelope"];
28
+ };
29
+ };
30
+ /** @description Forbidden */
31
+ 403: {
32
+ content: {
33
+ "application/json": components["schemas"]["ErrorEnvelope"];
34
+ "application/xml": components["schemas"]["ErrorEnvelope"];
35
+ };
36
+ };
37
+ };
38
+ };
39
+ };
40
+ "/api/v2/Tenants/Current": {
41
+ get: {
42
+ parameters: {
43
+ query?: {
44
+ "api-version"?: string;
45
+ };
46
+ };
47
+ responses: {
48
+ /** @description Success */
49
+ 200: {
50
+ content: {
51
+ "application/json": components["schemas"]["TenantDtoEnvelope"];
52
+ "application/xml": components["schemas"]["TenantDtoEnvelope"];
53
+ };
54
+ };
55
+ /** @description Unauthorized */
56
+ 401: {
57
+ content: {
58
+ "application/json": components["schemas"]["ErrorEnvelope"];
59
+ "application/xml": components["schemas"]["ErrorEnvelope"];
60
+ };
61
+ };
62
+ /** @description Forbidden */
63
+ 403: {
64
+ content: {
65
+ "application/json": components["schemas"]["ErrorEnvelope"];
66
+ "application/xml": components["schemas"]["ErrorEnvelope"];
67
+ };
68
+ };
69
+ };
70
+ };
71
+ };
72
+ "/api/v2/Tenants/{tenantId}": {
73
+ get: {
74
+ parameters: {
75
+ query?: {
76
+ "api-version"?: string;
77
+ };
78
+ path: {
79
+ tenantId: string;
80
+ };
81
+ };
82
+ responses: {
83
+ /** @description Success */
84
+ 200: {
85
+ content: {
86
+ "application/json": components["schemas"]["TenantDtoEnvelope"];
87
+ "application/xml": components["schemas"]["TenantDtoEnvelope"];
88
+ };
89
+ };
90
+ /** @description Unauthorized */
91
+ 401: {
92
+ content: {
93
+ "application/json": components["schemas"]["ErrorEnvelope"];
94
+ "application/xml": components["schemas"]["ErrorEnvelope"];
95
+ };
96
+ };
97
+ /** @description Forbidden */
98
+ 403: {
99
+ content: {
100
+ "application/json": components["schemas"]["ErrorEnvelope"];
101
+ "application/xml": components["schemas"]["ErrorEnvelope"];
102
+ };
103
+ };
104
+ };
105
+ };
106
+ };
107
+ "/api/v2/Tenants/{tenantId}/Wallet": {
108
+ get: {
109
+ parameters: {
110
+ query?: {
111
+ "api-version"?: string;
112
+ };
113
+ path: {
114
+ tenantId: string;
115
+ };
116
+ };
117
+ responses: {
118
+ /** @description Success */
119
+ 200: {
120
+ content: {
121
+ "application/json": components["schemas"]["WalletDtoEnvelope"];
122
+ "application/xml": components["schemas"]["WalletDtoEnvelope"];
123
+ };
124
+ };
125
+ /** @description Unauthorized */
126
+ 401: {
127
+ content: {
128
+ "application/json": components["schemas"]["ErrorEnvelope"];
129
+ "application/xml": components["schemas"]["ErrorEnvelope"];
130
+ };
131
+ };
132
+ /** @description Forbidden */
133
+ 403: {
134
+ content: {
135
+ "application/json": components["schemas"]["ErrorEnvelope"];
136
+ "application/xml": components["schemas"]["ErrorEnvelope"];
137
+ };
138
+ };
139
+ };
140
+ };
141
+ };
142
+ "/api/v2/Tenants/{tenantId}/SocialProfile": {
143
+ get: {
144
+ parameters: {
145
+ query?: {
146
+ "api-version"?: string;
147
+ };
148
+ path: {
149
+ tenantId: string;
150
+ };
151
+ };
152
+ responses: {
153
+ /** @description Success */
154
+ 200: {
155
+ content: {
156
+ "application/json": components["schemas"]["SocialProfileDtoEnvelope"];
157
+ "application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
158
+ };
159
+ };
160
+ /** @description Unauthorized */
161
+ 401: {
162
+ content: {
163
+ "application/json": components["schemas"]["ErrorEnvelope"];
164
+ "application/xml": components["schemas"]["ErrorEnvelope"];
165
+ };
166
+ };
167
+ /** @description Forbidden */
168
+ 403: {
169
+ content: {
170
+ "application/json": components["schemas"]["ErrorEnvelope"];
171
+ "application/xml": components["schemas"]["ErrorEnvelope"];
172
+ };
173
+ };
174
+ };
175
+ };
176
+ };
177
+ "/api/v2/Tenants/{tenantId}/Cart": {
178
+ get: {
179
+ parameters: {
180
+ query?: {
181
+ "api-version"?: string;
182
+ };
183
+ path: {
184
+ tenantId: string;
185
+ };
186
+ };
187
+ responses: {
188
+ /** @description Success */
189
+ 200: {
190
+ content: {
191
+ "application/json": components["schemas"]["CartDtoEnvelope"];
192
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
193
+ };
194
+ };
195
+ /** @description Unauthorized */
196
+ 401: {
197
+ content: {
198
+ "application/json": components["schemas"]["ErrorEnvelope"];
199
+ "application/xml": components["schemas"]["ErrorEnvelope"];
200
+ };
201
+ };
202
+ /** @description Forbidden */
203
+ 403: {
204
+ content: {
205
+ "application/json": components["schemas"]["ErrorEnvelope"];
206
+ "application/xml": components["schemas"]["ErrorEnvelope"];
207
+ };
208
+ };
209
+ };
210
+ };
211
+ };
212
+ "/api/v2/Tenants/{tenantId}/Users": {
213
+ get: {
214
+ parameters: {
215
+ query?: {
216
+ "api-version"?: string;
217
+ };
218
+ path: {
219
+ tenantId: string;
220
+ };
221
+ };
222
+ responses: {
223
+ /** @description Success */
224
+ 200: {
225
+ content: {
226
+ "application/json": components["schemas"]["PlatformUserDtoListEnvelope"];
227
+ "application/xml": components["schemas"]["PlatformUserDtoListEnvelope"];
228
+ };
229
+ };
230
+ /** @description Unauthorized */
231
+ 401: {
232
+ content: {
233
+ "application/json": components["schemas"]["ErrorEnvelope"];
234
+ "application/xml": components["schemas"]["ErrorEnvelope"];
235
+ };
236
+ };
237
+ /** @description Forbidden */
238
+ 403: {
239
+ content: {
240
+ "application/json": components["schemas"]["ErrorEnvelope"];
241
+ "application/xml": components["schemas"]["ErrorEnvelope"];
242
+ };
243
+ };
244
+ };
245
+ };
246
+ };
247
+ "/api/v2/Tenants/{tenantId}/Enrollments": {
248
+ get: {
249
+ parameters: {
250
+ query?: {
251
+ "api-version"?: string;
252
+ };
253
+ path: {
254
+ tenantId: string;
255
+ };
256
+ };
257
+ responses: {
258
+ /** @description Success */
259
+ 200: {
260
+ content: {
261
+ "application/json": components["schemas"]["TenantEnrollmentDtoListEnvelope"];
262
+ "application/xml": components["schemas"]["TenantEnrollmentDtoListEnvelope"];
263
+ };
264
+ };
265
+ /** @description Unauthorized */
266
+ 401: {
267
+ content: {
268
+ "application/json": components["schemas"]["ErrorEnvelope"];
269
+ "application/xml": components["schemas"]["ErrorEnvelope"];
270
+ };
271
+ };
272
+ /** @description Forbidden */
273
+ 403: {
274
+ content: {
275
+ "application/json": components["schemas"]["ErrorEnvelope"];
276
+ "application/xml": components["schemas"]["ErrorEnvelope"];
277
+ };
278
+ };
279
+ };
280
+ };
281
+ };
282
+ "/api/v2/Tenants/{tenantId}/Enrollments/{enrollmentId}": {
283
+ get: {
284
+ parameters: {
285
+ query?: {
286
+ "api-version"?: string;
287
+ };
288
+ path: {
289
+ tenantId: string;
290
+ enrollmentId: string;
291
+ };
292
+ };
293
+ responses: {
294
+ /** @description Success */
295
+ 200: {
296
+ content: {
297
+ "application/json": components["schemas"]["TenantEnrollmentDtoEnvelope"];
298
+ "application/xml": components["schemas"]["TenantEnrollmentDtoEnvelope"];
299
+ };
300
+ };
301
+ /** @description Unauthorized */
302
+ 401: {
303
+ content: {
304
+ "application/json": components["schemas"]["ErrorEnvelope"];
305
+ "application/xml": components["schemas"]["ErrorEnvelope"];
306
+ };
307
+ };
308
+ /** @description Forbidden */
309
+ 403: {
310
+ content: {
311
+ "application/json": components["schemas"]["ErrorEnvelope"];
312
+ "application/xml": components["schemas"]["ErrorEnvelope"];
313
+ };
314
+ };
315
+ };
316
+ };
317
+ };
318
+ "/api/v2/Tenants/{tenantId}/Enrollments/{enrollmentId}/Permissions": {
319
+ get: {
320
+ parameters: {
321
+ query?: {
322
+ "api-version"?: string;
323
+ };
324
+ path: {
325
+ tenantId: string;
326
+ enrollmentId: string;
327
+ };
328
+ };
329
+ responses: {
330
+ /** @description Success */
331
+ 200: {
332
+ content: {
333
+ "application/json": components["schemas"]["StringListEnvelope"];
334
+ "application/xml": components["schemas"]["StringListEnvelope"];
335
+ };
336
+ };
337
+ /** @description Unauthorized */
338
+ 401: {
339
+ content: {
340
+ "application/json": components["schemas"]["ErrorEnvelope"];
341
+ "application/xml": components["schemas"]["ErrorEnvelope"];
342
+ };
343
+ };
344
+ /** @description Forbidden */
345
+ 403: {
346
+ content: {
347
+ "application/json": components["schemas"]["ErrorEnvelope"];
348
+ "application/xml": components["schemas"]["ErrorEnvelope"];
349
+ };
350
+ };
351
+ };
352
+ };
353
+ };
354
+ "/api/v2/Tenants/{tenantId}/Enrollments/{EnrollmentID}/Permissions/Validate": {
355
+ get: {
356
+ parameters: {
357
+ query?: {
358
+ roles?: string[];
359
+ permissions?: string[];
360
+ "api-version"?: string;
361
+ };
362
+ path: {
363
+ tenantId: string;
364
+ enrollmentId: string;
365
+ };
366
+ };
367
+ responses: {
368
+ /** @description Success */
369
+ 200: {
370
+ content: {
371
+ "application/json": components["schemas"]["BooleanEnvelope"];
372
+ "application/xml": components["schemas"]["BooleanEnvelope"];
373
+ };
374
+ };
375
+ /** @description Unauthorized */
376
+ 401: {
377
+ content: {
378
+ "application/json": components["schemas"]["ErrorEnvelope"];
379
+ "application/xml": components["schemas"]["ErrorEnvelope"];
380
+ };
381
+ };
382
+ /** @description Forbidden */
383
+ 403: {
384
+ content: {
385
+ "application/json": components["schemas"]["ErrorEnvelope"];
386
+ "application/xml": components["schemas"]["ErrorEnvelope"];
387
+ };
388
+ };
389
+ };
390
+ };
391
+ };
392
+ "/api/v2/Tenants/{tenantId}/Enrollments/{EnrollmentID}/Licenses": {
393
+ get: {
394
+ parameters: {
395
+ query?: {
396
+ "api-version"?: string;
397
+ };
398
+ path: {
399
+ tenantId: string;
400
+ enrollmentID: string;
401
+ };
402
+ };
403
+ responses: {
404
+ /** @description Success */
405
+ 200: {
406
+ content: never;
407
+ };
408
+ };
409
+ };
410
+ };
411
+ "/api/v2/Tenants/{tenantId}/Licenses": {
412
+ get: {
413
+ parameters: {
414
+ query?: {
415
+ "api-version"?: string;
416
+ };
417
+ path: {
418
+ tenantId: string;
419
+ };
420
+ };
421
+ responses: {
422
+ /** @description Success */
423
+ 200: {
424
+ content: never;
425
+ };
426
+ };
427
+ };
428
+ };
429
+ "/api/v2/Tenants": {
430
+ post: {
431
+ parameters: {
432
+ query?: {
433
+ "api-version"?: string;
434
+ };
435
+ };
436
+ requestBody?: {
437
+ content: {
438
+ "application/json": components["schemas"]["TenantCreateDto"];
439
+ "application/xml": components["schemas"]["TenantCreateDto"];
440
+ };
441
+ };
442
+ responses: {
443
+ /** @description Success */
444
+ 200: {
445
+ content: {
446
+ "application/json": components["schemas"]["EmptyEnvelope"];
447
+ "application/xml": components["schemas"]["EmptyEnvelope"];
448
+ };
449
+ };
450
+ /** @description Unauthorized */
451
+ 401: {
452
+ content: {
453
+ "application/json": components["schemas"]["ErrorEnvelope"];
454
+ "application/xml": components["schemas"]["ErrorEnvelope"];
455
+ };
456
+ };
457
+ /** @description Forbidden */
458
+ 403: {
459
+ content: {
460
+ "application/json": components["schemas"]["ErrorEnvelope"];
461
+ "application/xml": components["schemas"]["ErrorEnvelope"];
462
+ };
463
+ };
464
+ };
465
+ };
466
+ delete: {
467
+ parameters: {
468
+ query: {
469
+ tenantId: string;
470
+ "api-version"?: string;
471
+ };
472
+ };
473
+ responses: {
474
+ /** @description Success */
475
+ 200: {
476
+ content: {
477
+ "application/json": components["schemas"]["EmptyEnvelope"];
478
+ "application/xml": components["schemas"]["EmptyEnvelope"];
479
+ };
480
+ };
481
+ /** @description Unauthorized */
482
+ 401: {
483
+ content: {
484
+ "application/json": components["schemas"]["ErrorEnvelope"];
485
+ "application/xml": components["schemas"]["ErrorEnvelope"];
486
+ };
487
+ };
488
+ /** @description Forbidden */
489
+ 403: {
490
+ content: {
491
+ "application/json": components["schemas"]["ErrorEnvelope"];
492
+ "application/xml": components["schemas"]["ErrorEnvelope"];
493
+ };
494
+ };
495
+ };
496
+ };
497
+ };
498
+ "/api/v2/Tenants/{tenantId}/Select": {
499
+ get: {
500
+ parameters: {
501
+ query?: {
502
+ backTo?: string;
503
+ enableRedirect?: boolean;
504
+ "api-version"?: string;
505
+ };
506
+ path: {
507
+ tenantId: string;
508
+ };
509
+ };
510
+ responses: {
511
+ /** @description Success */
512
+ 200: {
513
+ content: {
514
+ "application/json": components["schemas"]["EmptyEnvelope"];
515
+ "application/xml": components["schemas"]["EmptyEnvelope"];
516
+ };
517
+ };
518
+ /** @description Unauthorized */
519
+ 401: {
520
+ content: {
521
+ "application/json": components["schemas"]["ErrorEnvelope"];
522
+ "application/xml": components["schemas"]["ErrorEnvelope"];
523
+ };
524
+ };
525
+ /** @description Forbidden */
526
+ 403: {
527
+ content: {
528
+ "application/json": components["schemas"]["ErrorEnvelope"];
529
+ "application/xml": components["schemas"]["ErrorEnvelope"];
530
+ };
531
+ };
532
+ };
533
+ };
534
+ post: {
535
+ parameters: {
536
+ query?: {
537
+ backTo?: string;
538
+ enableRedirect?: boolean;
539
+ "api-version"?: string;
540
+ };
541
+ path: {
542
+ tenantId: string;
543
+ };
544
+ };
545
+ responses: {
546
+ /** @description Success */
547
+ 200: {
548
+ content: {
549
+ "application/json": components["schemas"]["EmptyEnvelope"];
550
+ "application/xml": components["schemas"]["EmptyEnvelope"];
551
+ };
552
+ };
553
+ /** @description Unauthorized */
554
+ 401: {
555
+ content: {
556
+ "application/json": components["schemas"]["ErrorEnvelope"];
557
+ "application/xml": components["schemas"]["ErrorEnvelope"];
558
+ };
559
+ };
560
+ /** @description Forbidden */
561
+ 403: {
562
+ content: {
563
+ "application/json": components["schemas"]["ErrorEnvelope"];
564
+ "application/xml": components["schemas"]["ErrorEnvelope"];
565
+ };
566
+ };
567
+ };
568
+ };
569
+ };
570
+ "/api/v2/Tenants/Deselect": {
571
+ get: {
572
+ parameters: {
573
+ query?: {
574
+ backTo?: string;
575
+ enableRedirect?: boolean;
576
+ "api-version"?: string;
577
+ };
578
+ };
579
+ responses: {
580
+ /** @description Success */
581
+ 200: {
582
+ content: {
583
+ "application/json": components["schemas"]["EmptyEnvelope"];
584
+ "application/xml": components["schemas"]["EmptyEnvelope"];
585
+ };
586
+ };
587
+ /** @description Unauthorized */
588
+ 401: {
589
+ content: {
590
+ "application/json": components["schemas"]["ErrorEnvelope"];
591
+ "application/xml": components["schemas"]["ErrorEnvelope"];
592
+ };
593
+ };
594
+ /** @description Forbidden */
595
+ 403: {
596
+ content: {
597
+ "application/json": components["schemas"]["ErrorEnvelope"];
598
+ "application/xml": components["schemas"]["ErrorEnvelope"];
599
+ };
600
+ };
601
+ };
602
+ };
603
+ post: {
604
+ parameters: {
605
+ query?: {
606
+ backTo?: string;
607
+ enableRedirect?: boolean;
608
+ "api-version"?: string;
609
+ };
610
+ };
611
+ responses: {
612
+ /** @description Success */
613
+ 200: {
614
+ content: {
615
+ "application/json": components["schemas"]["EmptyEnvelope"];
616
+ "application/xml": components["schemas"]["EmptyEnvelope"];
617
+ };
618
+ };
619
+ /** @description Unauthorized */
620
+ 401: {
621
+ content: {
622
+ "application/json": components["schemas"]["ErrorEnvelope"];
623
+ "application/xml": components["schemas"]["ErrorEnvelope"];
624
+ };
625
+ };
626
+ /** @description Forbidden */
627
+ 403: {
628
+ content: {
629
+ "application/json": components["schemas"]["ErrorEnvelope"];
630
+ "application/xml": components["schemas"]["ErrorEnvelope"];
631
+ };
632
+ };
633
+ };
634
+ };
635
+ };
636
+ "/api/v2/Tenants/{tenantId}/AppAuthorization": {
637
+ get: {
638
+ parameters: {
639
+ query?: {
640
+ "api-version"?: string;
641
+ };
642
+ path: {
643
+ tenantId: string;
644
+ };
645
+ };
646
+ responses: {
647
+ /** @description Success */
648
+ 200: {
649
+ content: never;
650
+ };
651
+ };
652
+ };
653
+ };
654
+ "/api/v2/Tenants/{tenantId}/WebPortals": {
655
+ get: {
656
+ parameters: {
657
+ query?: {
658
+ "api-version"?: string;
659
+ };
660
+ path: {
661
+ tenantId: string;
662
+ };
663
+ };
664
+ responses: {
665
+ /** @description Success */
666
+ 200: {
667
+ content: {
668
+ "application/json": components["schemas"]["WebPortalDtoListEnvelope"];
669
+ "application/xml": components["schemas"]["WebPortalDtoListEnvelope"];
670
+ };
671
+ };
672
+ /** @description Unauthorized */
673
+ 401: {
674
+ content: {
675
+ "application/json": components["schemas"]["ErrorEnvelope"];
676
+ "application/xml": components["schemas"]["ErrorEnvelope"];
677
+ };
678
+ };
679
+ /** @description Forbidden */
680
+ 403: {
681
+ content: {
682
+ "application/json": components["schemas"]["ErrorEnvelope"];
683
+ "application/xml": components["schemas"]["ErrorEnvelope"];
684
+ };
685
+ };
686
+ };
687
+ };
688
+ };
689
+ "/api/v2/Tenants/{tenantId}/Notifications": {
690
+ get: {
691
+ parameters: {
692
+ query?: {
693
+ "api-version"?: string;
694
+ };
695
+ path: {
696
+ tenantId: string;
697
+ };
698
+ };
699
+ responses: {
700
+ /** @description Success */
701
+ 200: {
702
+ content: {
703
+ "application/json": components["schemas"]["NotificationDtoListEnvelope"];
704
+ "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
705
+ };
706
+ };
707
+ /** @description Unauthorized */
708
+ 401: {
709
+ content: {
710
+ "application/json": components["schemas"]["ErrorEnvelope"];
711
+ "application/xml": components["schemas"]["ErrorEnvelope"];
712
+ };
713
+ };
714
+ /** @description Forbidden */
715
+ 403: {
716
+ content: {
717
+ "application/json": components["schemas"]["ErrorEnvelope"];
718
+ "application/xml": components["schemas"]["ErrorEnvelope"];
719
+ };
720
+ };
721
+ };
722
+ };
723
+ };
724
+ }
725
+
726
+ export type webhooks = Record<string, never>;
727
+
728
+ export interface components {
729
+ schemas: {
730
+ BooleanEnvelope: {
731
+ errorMessage?: string | null;
732
+ isSuccess?: boolean;
733
+ /** Format: date-time */
734
+ timestamp?: string;
735
+ activityId?: string | null;
736
+ correlationId?: string | null;
737
+ result?: boolean;
738
+ };
739
+ CartDto: {
740
+ id?: string | null;
741
+ ip?: string | null;
742
+ type?: string | null;
743
+ /** Format: double */
744
+ total?: number;
745
+ /** Format: double */
746
+ taxes?: number;
747
+ /** Format: double */
748
+ freight?: number;
749
+ /** Format: double */
750
+ subTotal?: number;
751
+ currencyId?: string | null;
752
+ countryId?: string | null;
753
+ /** Format: int32 */
754
+ itemCartRecordsCount?: number | null;
755
+ /** Format: int32 */
756
+ itemToCompareRecordsCount?: number | null;
757
+ };
758
+ CartDtoEnvelope: {
759
+ errorMessage?: string | null;
760
+ isSuccess?: boolean;
761
+ /** Format: date-time */
762
+ timestamp?: string;
763
+ activityId?: string | null;
764
+ correlationId?: string | null;
765
+ result?: components["schemas"]["CartDto"];
766
+ };
767
+ EmptyEnvelope: {
768
+ errorMessage?: string | null;
769
+ isSuccess?: boolean;
770
+ /** Format: date-time */
771
+ timestamp?: string;
772
+ activityId?: string | null;
773
+ };
774
+ ErrorEnvelope: {
775
+ errorMessage?: string | null;
776
+ isSuccess?: boolean;
777
+ /** Format: date-time */
778
+ timestamp?: string;
779
+ activityId?: string | null;
780
+ correlationId?: string | null;
781
+ };
782
+ NotificationDto: {
783
+ id?: string | null;
784
+ /** Format: date-time */
785
+ timestamp?: string | null;
786
+ read?: boolean;
787
+ icon?: string | null;
788
+ message?: string | null;
789
+ redirectUrl?: string | null;
790
+ socialProfileID?: string | null;
791
+ /** Format: date-time */
792
+ readTimestamp?: string;
793
+ /** Format: date-time */
794
+ issuedTimestamp?: string;
795
+ };
796
+ NotificationDtoListEnvelope: {
797
+ errorMessage?: string | null;
798
+ isSuccess?: boolean;
799
+ /** Format: date-time */
800
+ timestamp?: string;
801
+ activityId?: string | null;
802
+ correlationId?: string | null;
803
+ result?: components["schemas"]["NotificationDto"][] | null;
804
+ };
805
+ PlatformUserDto: {
806
+ id?: string | null;
807
+ /** Format: date-time */
808
+ timestamp?: string | null;
809
+ qualifiedName?: string | null;
810
+ /** Format: date-time */
811
+ birthday?: string;
812
+ firstName?: string | null;
813
+ lastName?: string | null;
814
+ publicName?: string | null;
815
+ idProvider?: string | null;
816
+ languageId?: string | null;
817
+ timezoneId?: string | null;
818
+ gender?: string | null;
819
+ cityId?: string | null;
820
+ stateId?: string | null;
821
+ email?: string | null;
822
+ about?: string | null;
823
+ jobTitle?: string | null;
824
+ coverUrl?: string | null;
825
+ avatarUrl?: string | null;
826
+ gitHubUrl?: string | null;
827
+ websiteUrl?: string | null;
828
+ twitterUrl?: string | null;
829
+ facebookUrl?: string | null;
830
+ youTubeUrl?: string | null;
831
+ linkedInUrl?: string | null;
832
+ instagramUrl?: string | null;
833
+ lockoutEnabled?: boolean;
834
+ socialFeedId?: string | null;
835
+ socialProfileId?: string | null;
836
+ currentTenantId?: string | null;
837
+ currentEnrollmentId?: string | null;
838
+ cartId?: string | null;
839
+ walletId?: string | null;
840
+ countryId?: string | null;
841
+ currencyId?: string | null;
842
+ userName?: string | null;
843
+ status?: string | null;
844
+ phoneNumber?: string | null;
845
+ publicIdentifier?: string | null;
846
+ identityProvider?: string | null;
847
+ phoneNumberConfirmed?: boolean;
848
+ emailConfirmed?: boolean;
849
+ /**
850
+ * Format: int32
851
+ * @enum {integer}
852
+ */
853
+ themeMode?: 0 | 1 | 2;
854
+ /**
855
+ * Format: int32
856
+ * @enum {integer}
857
+ */
858
+ availability?: 0 | 1 | 2 | 3 | 4;
859
+ /** Format: int32 */
860
+ followsCount?: number | null;
861
+ /** Format: int32 */
862
+ followersCount?: number | null;
863
+ /** Format: int32 */
864
+ enrollmentsCount?: number | null;
865
+ /** Format: int32 */
866
+ socialPostsCount?: number | null;
867
+ /** Format: int32 */
868
+ unreadMessagesCount?: number | null;
869
+ /** Format: int32 */
870
+ unreadNotificationsCount?: number | null;
871
+ webUrl?: string | null;
872
+ countryStateId?: string | null;
873
+ selectedBusinessId?: string | null;
874
+ };
875
+ PlatformUserDtoListEnvelope: {
876
+ errorMessage?: string | null;
877
+ isSuccess?: boolean;
878
+ /** Format: date-time */
879
+ timestamp?: string;
880
+ activityId?: string | null;
881
+ correlationId?: string | null;
882
+ result?: components["schemas"]["PlatformUserDto"][] | null;
883
+ };
884
+ SocialProfileDto: {
885
+ id?: string | null;
886
+ /** Format: date-time */
887
+ timestamp?: string | null;
888
+ /**
889
+ * Format: int32
890
+ * @enum {integer}
891
+ */
892
+ type?: 0 | 1 | 2 | 3;
893
+ name?: string | null;
894
+ about?: string | null;
895
+ cover?: string | null;
896
+ avatar?: string | null;
897
+ country?: string | null;
898
+ /** Format: int32 */
899
+ followsCount?: number | null;
900
+ /** Format: int32 */
901
+ messagesCount?: number | null;
902
+ /** Format: int32 */
903
+ followersCount?: number | null;
904
+ /** Format: int32 */
905
+ notificationsCount?: number | null;
906
+ /** Format: int32 */
907
+ unreadNotificationsCount?: number | null;
908
+ /** Format: int32 */
909
+ unreadMessagesCount?: number | null;
910
+ socialFeedId?: string | null;
911
+ twitterUrl?: string | null;
912
+ facebookURL?: string | null;
913
+ linkedInURL?: string | null;
914
+ youtubeURL?: string | null;
915
+ githubURL?: string | null;
916
+ pinterestURL?: string | null;
917
+ dribbleURL?: string | null;
918
+ domain?: string | null;
919
+ notes?: string | null;
920
+ };
921
+ SocialProfileDtoEnvelope: {
922
+ errorMessage?: string | null;
923
+ isSuccess?: boolean;
924
+ /** Format: date-time */
925
+ timestamp?: string;
926
+ activityId?: string | null;
927
+ correlationId?: string | null;
928
+ result?: components["schemas"]["SocialProfileDto"];
929
+ };
930
+ StringListEnvelope: {
931
+ errorMessage?: string | null;
932
+ isSuccess?: boolean;
933
+ /** Format: date-time */
934
+ timestamp?: string;
935
+ activityId?: string | null;
936
+ correlationId?: string | null;
937
+ result?: string[] | null;
938
+ };
939
+ TenantCreateDto: {
940
+ /** Format: uuid */
941
+ id?: string;
942
+ /** Format: date-time */
943
+ timestamp?: string;
944
+ duns?: string | null;
945
+ name?: string | null;
946
+ legalName?: string | null;
947
+ email?: string | null;
948
+ phone?: string | null;
949
+ webUrl?: string | null;
950
+ about?: string | null;
951
+ handler?: string | null;
952
+ currencyID?: string | null;
953
+ countryLanguageID?: string | null;
954
+ timezoneID?: string | null;
955
+ cityID?: string | null;
956
+ countryStateID?: string | null;
957
+ countryID?: string | null;
958
+ taxID?: string | null;
959
+ avatarUrl?: string | null;
960
+ };
961
+ TenantDto: {
962
+ id?: string | null;
963
+ /** Format: date-time */
964
+ timestamp?: string | null;
965
+ qualifiedName?: string | null;
966
+ taxId?: string | null;
967
+ about?: string | null;
968
+ walletId?: string | null;
969
+ socialFeedId?: string | null;
970
+ businessIndustryId?: string | null;
971
+ businessSegmentId?: string | null;
972
+ socialProfileId?: string | null;
973
+ languageId?: string | null;
974
+ name?: string | null;
975
+ duns?: string | null;
976
+ slogan?: string | null;
977
+ legalName?: string | null;
978
+ coverUrl?: string | null;
979
+ avatarUrl?: string | null;
980
+ cartId?: string | null;
981
+ currencyId?: string | null;
982
+ timezoneId?: string | null;
983
+ countryId?: string | null;
984
+ countryStateId?: string | null;
985
+ cityId?: string | null;
986
+ /** Format: double */
987
+ reviewsAvg?: number | null;
988
+ /** Format: int32 */
989
+ reviewsCount?: number | null;
990
+ /** Format: int32 */
991
+ followsCount?: number | null;
992
+ /** Format: int32 */
993
+ followersCount?: number | null;
994
+ /** Format: int32 */
995
+ enrollmentsCount?: number | null;
996
+ /** Format: int32 */
997
+ socialPostsCount?: number | null;
998
+ /** Format: int32 */
999
+ unreadMessagesCount?: number | null;
1000
+ /** Format: int32 */
1001
+ unreadNotificationsCount?: number | null;
1002
+ enrollmentID?: string | null;
1003
+ email?: string | null;
1004
+ phone?: string | null;
1005
+ webUrl?: string | null;
1006
+ facebookUrl?: string | null;
1007
+ twitterUrl?: string | null;
1008
+ gitHubUrl?: string | null;
1009
+ linkedInUrl?: string | null;
1010
+ instagramUrl?: string | null;
1011
+ youTubeUrl?: string | null;
1012
+ whatsAppNumber?: string | null;
1013
+ supportPhoneNumber?: string | null;
1014
+ verified?: boolean;
1015
+ businessName?: string | null;
1016
+ businessLegalName?: string | null;
1017
+ twitterUsername?: string | null;
1018
+ };
1019
+ TenantDtoEnvelope: {
1020
+ errorMessage?: string | null;
1021
+ isSuccess?: boolean;
1022
+ /** Format: date-time */
1023
+ timestamp?: string;
1024
+ activityId?: string | null;
1025
+ correlationId?: string | null;
1026
+ result?: components["schemas"]["TenantDto"];
1027
+ };
1028
+ TenantEnrollmentDto: {
1029
+ id?: string | null;
1030
+ isRoot?: boolean;
1031
+ isOwner?: boolean;
1032
+ isAdmin?: boolean;
1033
+ isDisabled?: boolean;
1034
+ tenantId?: string | null;
1035
+ userId?: string | null;
1036
+ };
1037
+ TenantEnrollmentDtoEnvelope: {
1038
+ errorMessage?: string | null;
1039
+ isSuccess?: boolean;
1040
+ /** Format: date-time */
1041
+ timestamp?: string;
1042
+ activityId?: string | null;
1043
+ correlationId?: string | null;
1044
+ result?: components["schemas"]["TenantEnrollmentDto"];
1045
+ };
1046
+ TenantEnrollmentDtoListEnvelope: {
1047
+ errorMessage?: string | null;
1048
+ isSuccess?: boolean;
1049
+ /** Format: date-time */
1050
+ timestamp?: string;
1051
+ activityId?: string | null;
1052
+ correlationId?: string | null;
1053
+ result?: components["schemas"]["TenantEnrollmentDto"][] | null;
1054
+ };
1055
+ WalletDto: {
1056
+ id?: string | null;
1057
+ /** Format: date-time */
1058
+ timestamp?: string;
1059
+ /** Format: double */
1060
+ balance?: number;
1061
+ /** Format: double */
1062
+ cryptoBalance?: number;
1063
+ testMode?: boolean;
1064
+ verified?: boolean;
1065
+ type?: string | null;
1066
+ currencyId?: string | null;
1067
+ /** Format: double */
1068
+ forexRate?: number;
1069
+ /** Format: double */
1070
+ balanceInUsd?: number;
1071
+ /** Format: double */
1072
+ mainNetEtherBalance?: number;
1073
+ ethereumAddress?: string | null;
1074
+ ethereumPublicKey?: string | null;
1075
+ ethereumPrivateKey?: string | null;
1076
+ /** Format: double */
1077
+ rollingReservePercent?: number;
1078
+ };
1079
+ WalletDtoEnvelope: {
1080
+ errorMessage?: string | null;
1081
+ isSuccess?: boolean;
1082
+ /** Format: date-time */
1083
+ timestamp?: string;
1084
+ activityId?: string | null;
1085
+ correlationId?: string | null;
1086
+ result?: components["schemas"]["WalletDto"];
1087
+ };
1088
+ WebPortalDto: {
1089
+ id?: string | null;
1090
+ title?: string | null;
1091
+ domain?: string | null;
1092
+ settings?: string | null;
1093
+ businessId?: string | null;
1094
+ };
1095
+ WebPortalDtoListEnvelope: {
1096
+ errorMessage?: string | null;
1097
+ isSuccess?: boolean;
1098
+ /** Format: date-time */
1099
+ timestamp?: string;
1100
+ activityId?: string | null;
1101
+ correlationId?: string | null;
1102
+ result?: components["schemas"]["WebPortalDto"][] | null;
1103
+ };
1104
+ };
1105
+ responses: never;
1106
+ parameters: never;
1107
+ requestBodies: never;
1108
+ headers: never;
1109
+ pathItems: never;
1110
+ }
1111
+
1112
+ export type $defs = Record<string, never>;
1113
+
1114
+ export type external = Record<string, never>;
1115
+
1116
+ export type operations = Record<string, never>;