@fenixalliance/abs-api-client 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (461) hide show
  1. package/app/index.ts +5 -0
  2. package/clients/cartService/core/ApiError.ts +24 -24
  3. package/clients/cartService/core/ApiRequestOptions.ts +16 -16
  4. package/clients/cartService/core/ApiResult.ts +10 -10
  5. package/clients/cartService/core/CancelablePromise.ts +130 -130
  6. package/clients/cartService/core/OpenAPI.ts +31 -31
  7. package/clients/cartService/core/request.ts +321 -321
  8. package/clients/cartService/index.ts +36 -52
  9. package/clients/cartService/models/CartDto.ts +1 -0
  10. package/clients/cartService/models/{RegisterRequest.ts → CartUpdateRequest.ts} +3 -3
  11. package/clients/cartService/models/{InfoResponse.ts → CountrySwitchRequest.ts} +3 -3
  12. package/clients/cartService/models/EmptyEnvelope.ts +11 -0
  13. package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -0
  14. package/clients/cartService/models/ItemCartRecordDto.ts +3 -1
  15. package/clients/{catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts → cartService/models/ItemCartRecordDtoListEnvelope.ts} +3 -3
  16. package/clients/cartService/models/{ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts → ItemToCompareCartRecordDtoListEnvelope.ts} +1 -1
  17. package/clients/cartService/models/WishListDto.ts +2 -1
  18. package/clients/cartService/services/CartsService.ts +53 -7
  19. package/clients/cartService/services/CompareService.ts +7 -6
  20. package/clients/cartService/services/RecordsService.ts +23 -20
  21. package/clients/cartService/services/WishListsService.ts +17 -17
  22. package/clients/catalogService/core/ApiError.ts +24 -24
  23. package/clients/catalogService/core/ApiRequestOptions.ts +16 -16
  24. package/clients/catalogService/core/ApiResult.ts +10 -10
  25. package/clients/catalogService/core/CancelablePromise.ts +130 -130
  26. package/clients/catalogService/core/OpenAPI.ts +31 -31
  27. package/clients/catalogService/core/request.ts +321 -321
  28. package/clients/catalogService/index.ts +102 -124
  29. package/clients/catalogService/models/EmptyEnvelope.ts +11 -0
  30. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +4 -8
  31. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +2 -5
  32. package/clients/catalogService/models/ItemAttributeCreateDto.ts +3 -2
  33. package/clients/catalogService/models/{ItemAttributeDtoIReadOnlyCollectionEnvelope.ts → ItemAttributeDtoListEnvelope.ts} +1 -1
  34. package/clients/catalogService/models/ItemAttributeUpdateDto.ts +1 -1
  35. package/clients/catalogService/models/ItemBrandCreateDto.ts +4 -3
  36. package/clients/catalogService/models/ItemBrandUpdateDto.ts +1 -1
  37. package/clients/catalogService/models/ItemCategoryCreateDto.ts +3 -2
  38. package/clients/catalogService/models/ItemCategoryUpdateDto.ts +1 -1
  39. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +12 -3
  40. package/clients/catalogService/models/{ItemImagesCreateDto.ts → ItemImageCreateDto.ts} +4 -4
  41. package/clients/catalogService/models/ItemImageDto.ts +0 -1
  42. package/clients/catalogService/models/{ItemImagesUpdateDto.ts → ItemImageUpdateDto.ts} +6 -9
  43. package/clients/catalogService/models/ItemQuestionCreateDto.ts +6 -5
  44. package/clients/catalogService/models/ItemQuestionRecordCreateDto.ts +14 -0
  45. package/clients/catalogService/models/ItemQuestionUpdateDto.ts +1 -3
  46. package/clients/catalogService/models/ItemReviewCreateDto.ts +1 -0
  47. package/clients/catalogService/models/ItemReviewRecordCreateDto.ts +12 -0
  48. package/clients/catalogService/models/ItemShippingPolicyDto.ts +6 -6
  49. package/clients/catalogService/models/ItemTagCreateDto.ts +3 -2
  50. package/clients/catalogService/models/ItemTagUpdateDto.ts +1 -1
  51. package/clients/catalogService/models/ItemTypeCreateDto.ts +3 -2
  52. package/clients/catalogService/models/ItemTypeDto.ts +4 -4
  53. package/clients/catalogService/models/ItemTypeUpdateDto.ts +1 -1
  54. package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +3 -4
  55. package/clients/catalogService/models/PricingRuleCreateDto.ts +1 -1
  56. package/clients/catalogService/models/PricingRuleDto.ts +0 -1
  57. package/clients/catalogService/models/StockItemCreateDto.ts +100 -3
  58. package/clients/catalogService/models/StockItemDto.ts +133 -4
  59. package/clients/catalogService/models/StockItemUpdateDto.ts +99 -2
  60. package/clients/catalogService/services/ItemAttachmentsService.ts +24 -13
  61. package/clients/catalogService/services/ItemAttributesService.ts +19 -9
  62. package/clients/catalogService/services/ItemBrandsService.ts +19 -9
  63. package/clients/catalogService/services/ItemCategoriesService.ts +19 -9
  64. package/clients/catalogService/services/ItemImagesService.ts +23 -13
  65. package/clients/catalogService/services/ItemQuestionsService.ts +19 -9
  66. package/clients/catalogService/services/ItemReviewsService.ts +18 -8
  67. package/clients/catalogService/services/ItemTagsService.ts +17 -12
  68. package/clients/catalogService/services/ItemTypesService.ts +19 -9
  69. package/clients/catalogService/services/PricingRulesService.ts +19 -11
  70. package/clients/catalogService/services/ProductsService.ts +177 -214
  71. package/clients/{contactService → crmService}/core/ApiError.ts +24 -24
  72. package/clients/{contactService → crmService}/core/ApiRequestOptions.ts +16 -16
  73. package/clients/{contactService → crmService}/core/ApiResult.ts +10 -10
  74. package/clients/{contactService → crmService}/core/CancelablePromise.ts +130 -130
  75. package/clients/{contactService → crmService}/core/OpenAPI.ts +31 -31
  76. package/clients/{contactService → crmService}/core/request.ts +321 -321
  77. package/clients/crmService/index.ts +23 -0
  78. package/clients/crmService/models/CartDto.ts +18 -0
  79. package/clients/{cartService/models/WishListDtoEnvelope.ts → crmService/models/CartDtoEnvelope.ts} +3 -3
  80. package/clients/crmService/models/ContactDto.ts +57 -0
  81. package/clients/crmService/models/EmptyEnvelope.ts +11 -0
  82. package/clients/crmService/models/SocialProfileDto.ts +39 -0
  83. package/clients/crmService/models/SocialProfileDtoEnvelope.ts +14 -0
  84. package/clients/crmService/models/WalletDto.ts +22 -0
  85. package/clients/crmService/models/WalletDtoEnvelope.ts +14 -0
  86. package/clients/crmService/services/ContactsService.ts +286 -0
  87. package/clients/crmService/services/SyncService.ts +101 -0
  88. package/clients/forexService/core/ApiError.ts +24 -24
  89. package/clients/forexService/core/ApiRequestOptions.ts +16 -16
  90. package/clients/forexService/core/ApiResult.ts +10 -10
  91. package/clients/forexService/core/CancelablePromise.ts +130 -130
  92. package/clients/forexService/core/OpenAPI.ts +31 -31
  93. package/clients/forexService/core/request.ts +321 -321
  94. package/clients/forexService/index.ts +18 -30
  95. package/clients/{cartService/models/Envelope.ts → forexService/models/ErrorEnvelope.ts} +1 -2
  96. package/clients/forexService/models/ForexRatesDto.ts +1 -1
  97. package/clients/forexService/models/Money.ts +1 -1
  98. package/clients/forexService/services/ExchangeService.ts +17 -7
  99. package/clients/forexService/services/RatesService.ts +11 -1
  100. package/clients/holderService/core/ApiError.ts +24 -24
  101. package/clients/holderService/core/ApiRequestOptions.ts +16 -16
  102. package/clients/holderService/core/ApiResult.ts +10 -10
  103. package/clients/holderService/core/CancelablePromise.ts +130 -130
  104. package/clients/holderService/core/OpenAPI.ts +31 -31
  105. package/clients/holderService/core/request.ts +321 -321
  106. package/clients/holderService/index.ts +35 -31
  107. package/clients/holderService/models/AddressDto.ts +31 -0
  108. package/clients/holderService/models/AddressDtoListEnvelope.ts +14 -0
  109. package/clients/holderService/models/CartDto.ts +18 -0
  110. package/clients/holderService/models/CartDtoEnvelope.ts +14 -0
  111. package/clients/holderService/models/InvoiceDto.ts +13 -0
  112. package/clients/{invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts → holderService/models/InvoiceDtoListEnvelope.ts} +1 -1
  113. package/clients/holderService/models/NotificationDto.ts +16 -0
  114. package/clients/holderService/models/NotificationDtoListEnvelope.ts +14 -0
  115. package/clients/holderService/models/OrderDto.ts +27 -0
  116. package/clients/holderService/models/OrderDtoListEnvelope.ts +14 -0
  117. package/clients/holderService/models/PaymentDto.ts +17 -0
  118. package/clients/holderService/models/PaymentDtoListEnvelope.ts +14 -0
  119. package/clients/{identityService/models/AccountHolderDto.ts → holderService/models/PlatformUserDto.ts} +4 -4
  120. package/clients/holderService/models/PlatformUserDtoEnvelope.ts +14 -0
  121. package/clients/holderService/models/SocialProfileDto.ts +39 -0
  122. package/clients/holderService/models/SocialProfileDtoEnvelope.ts +14 -0
  123. package/clients/{identityService/models/BusinessDto.ts → holderService/models/TenantDto.ts} +16 -15
  124. package/clients/holderService/models/TenantDtoListEnvelope.ts +14 -0
  125. package/clients/holderService/models/TenantEnrollmentDto.ts +14 -0
  126. package/clients/holderService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
  127. package/clients/holderService/models/WalletDto.ts +22 -0
  128. package/clients/holderService/models/WalletDtoEnvelope.ts +14 -0
  129. package/clients/holderService/services/HolderService.ts +99 -28
  130. package/clients/identityService/core/ApiError.ts +24 -24
  131. package/clients/identityService/core/ApiRequestOptions.ts +16 -16
  132. package/clients/identityService/core/ApiResult.ts +10 -10
  133. package/clients/identityService/core/CancelablePromise.ts +130 -130
  134. package/clients/identityService/core/OpenAPI.ts +31 -31
  135. package/clients/identityService/core/request.ts +321 -321
  136. package/clients/identityService/index.ts +40 -53
  137. package/clients/identityService/models/AccountHolderCreateDto.ts +1 -0
  138. package/clients/identityService/models/ApiResponse.ts +4 -5
  139. package/clients/{holderService/models/AccountHolderDto.ts → identityService/models/PlatformUserDto.ts} +4 -4
  140. package/clients/{holderService/models/BusinessDto.ts → identityService/models/TenantDto.ts} +16 -15
  141. package/clients/identityService/services/CheckerService.ts +3 -2
  142. package/clients/identityService/services/OAuthService.ts +8 -6
  143. package/clients/inventoryService/core/ApiError.ts +24 -24
  144. package/clients/inventoryService/core/ApiRequestOptions.ts +16 -16
  145. package/clients/inventoryService/core/ApiResult.ts +10 -10
  146. package/clients/inventoryService/core/CancelablePromise.ts +130 -130
  147. package/clients/inventoryService/core/OpenAPI.ts +31 -31
  148. package/clients/inventoryService/core/request.ts +321 -321
  149. package/clients/inventoryService/index.ts +10 -24
  150. package/clients/invoicingService/core/ApiError.ts +24 -24
  151. package/clients/invoicingService/core/ApiRequestOptions.ts +16 -16
  152. package/clients/invoicingService/core/ApiResult.ts +10 -10
  153. package/clients/invoicingService/core/CancelablePromise.ts +130 -130
  154. package/clients/invoicingService/core/OpenAPI.ts +31 -31
  155. package/clients/invoicingService/core/request.ts +321 -321
  156. package/clients/invoicingService/index.ts +23 -28
  157. package/clients/invoicingService/models/EmptyEnvelope.ts +11 -0
  158. package/clients/invoicingService/models/InvoiceCreateDto.ts +11 -0
  159. package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +14 -0
  160. package/clients/{cartService/models/ProductCartRecordDto.ts → invoicingService/models/InvoiceLineDto.ts} +7 -10
  161. package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +14 -0
  162. package/clients/{catalogService/models/ItemPricePolicyDtoEnvelope.ts → invoicingService/models/InvoiceLineDtoListEnvelope.ts} +3 -3
  163. package/clients/{tenantService/models/IntPtr.ts → invoicingService/models/InvoiceUpdateDto.ts} +1 -1
  164. package/clients/invoicingService/models/ItemPriceCreateDto.ts +20 -0
  165. package/clients/invoicingService/models/ItemPriceUpdateDto.ts +14 -0
  166. package/clients/invoicingService/services/InvoicesService.ts +253 -15
  167. package/clients/ordersService/core/ApiError.ts +25 -0
  168. package/clients/ordersService/core/ApiRequestOptions.ts +17 -0
  169. package/clients/ordersService/core/ApiResult.ts +11 -0
  170. package/clients/ordersService/core/CancelablePromise.ts +131 -0
  171. package/clients/ordersService/core/OpenAPI.ts +32 -0
  172. package/clients/ordersService/core/request.ts +322 -0
  173. package/clients/ordersService/index.ts +23 -0
  174. package/clients/ordersService/models/EmptyEnvelope.ts +11 -0
  175. package/clients/ordersService/models/ErrorEnvelope.ts +12 -0
  176. package/clients/ordersService/models/ItemPriceCreateDto.ts +20 -0
  177. package/clients/ordersService/models/ItemPriceUpdateDto.ts +14 -0
  178. package/clients/ordersService/models/OrderCreateDto.ts +16 -0
  179. package/clients/ordersService/models/OrderDto.ts +27 -0
  180. package/clients/ordersService/models/OrderDtoEnvelope.ts +14 -0
  181. package/clients/ordersService/models/OrderDtoListEnvelope.ts +14 -0
  182. package/clients/ordersService/models/OrderLineDto.ts +95 -0
  183. package/clients/ordersService/models/OrderLineDtoEnvelope.ts +14 -0
  184. package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +14 -0
  185. package/clients/ordersService/models/OrderUpdateDto.ts +12 -0
  186. package/clients/ordersService/services/OrdersService.ts +296 -0
  187. package/clients/pricingService/core/ApiError.ts +24 -24
  188. package/clients/pricingService/core/ApiRequestOptions.ts +16 -16
  189. package/clients/pricingService/core/ApiResult.ts +10 -10
  190. package/clients/pricingService/core/CancelablePromise.ts +130 -130
  191. package/clients/pricingService/core/OpenAPI.ts +31 -31
  192. package/clients/pricingService/core/request.ts +321 -321
  193. package/clients/pricingService/index.ts +27 -29
  194. package/clients/pricingService/models/EmptyEnvelope.ts +11 -0
  195. package/clients/pricingService/models/ItemPriceCreateDto.ts +20 -0
  196. package/clients/pricingService/models/ItemPriceDto.ts +20 -0
  197. package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +14 -0
  198. package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +14 -0
  199. package/clients/pricingService/models/ItemPriceUpdateDto.ts +14 -0
  200. package/clients/pricingService/models/Money.ts +1 -1
  201. package/clients/pricingService/models/PriceListCreateDto.ts +18 -0
  202. package/clients/pricingService/models/PriceListDto.ts +17 -0
  203. package/clients/pricingService/models/PriceListDtoEnvelope.ts +14 -0
  204. package/clients/pricingService/models/PriceListDtoListEnvelope.ts +14 -0
  205. package/clients/pricingService/models/PriceListUpdateDto.ts +14 -0
  206. package/clients/pricingService/services/PriceListsService.ts +254 -8
  207. package/clients/systemService/core/ApiError.ts +25 -0
  208. package/clients/systemService/core/ApiRequestOptions.ts +17 -0
  209. package/clients/systemService/core/ApiResult.ts +11 -0
  210. package/clients/systemService/core/CancelablePromise.ts +131 -0
  211. package/clients/systemService/core/OpenAPI.ts +32 -0
  212. package/clients/systemService/core/request.ts +322 -0
  213. package/clients/systemService/index.ts +14 -0
  214. package/clients/systemService/models/ErrorEnvelope.ts +12 -0
  215. package/clients/systemService/models/StringListEnvelope.ts +13 -0
  216. package/clients/systemService/services/AntiforgeryService.ts +29 -0
  217. package/clients/systemService/services/MigrationsService.ts +44 -0
  218. package/clients/tenantService/core/ApiError.ts +24 -24
  219. package/clients/tenantService/core/ApiRequestOptions.ts +16 -16
  220. package/clients/tenantService/core/ApiResult.ts +10 -10
  221. package/clients/tenantService/core/CancelablePromise.ts +130 -130
  222. package/clients/tenantService/core/OpenAPI.ts +31 -31
  223. package/clients/tenantService/core/request.ts +321 -321
  224. package/clients/tenantService/index.ts +33 -62
  225. package/clients/tenantService/models/BooleanEnvelope.ts +13 -0
  226. package/clients/tenantService/models/CartDto.ts +18 -0
  227. package/clients/tenantService/models/CartDtoEnvelope.ts +14 -0
  228. package/clients/tenantService/models/EmptyEnvelope.ts +11 -0
  229. package/clients/tenantService/models/ErrorEnvelope.ts +12 -0
  230. package/clients/tenantService/models/PlatformUserDto.ts +73 -0
  231. package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +14 -0
  232. package/clients/tenantService/models/SocialProfileDto.ts +39 -0
  233. package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +14 -0
  234. package/clients/tenantService/models/{BusinessCreateDto.ts → TenantCreateDto.ts} +2 -1
  235. package/clients/tenantService/models/{BusinessDto.ts → TenantDto.ts} +16 -15
  236. package/clients/tenantService/models/TenantDtoEnvelope.ts +14 -0
  237. package/clients/tenantService/models/TenantEnrollmentDto.ts +14 -0
  238. package/clients/{cartService/models/WishListDtoIReadOnlyListEnvelope.ts → tenantService/models/TenantEnrollmentDtoEnvelope.ts} +3 -3
  239. package/clients/tenantService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
  240. package/clients/tenantService/models/WalletDto.ts +2 -1
  241. package/clients/tenantService/models/WalletDtoEnvelope.ts +14 -0
  242. package/clients/tenantService/models/{Error.ts → WebPortalDto.ts} +5 -3
  243. package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +14 -0
  244. package/clients/tenantService/services/TenantsService.ts +230 -105
  245. package/clients/walletsService/core/ApiError.ts +25 -0
  246. package/clients/walletsService/core/ApiRequestOptions.ts +17 -0
  247. package/clients/walletsService/core/ApiResult.ts +11 -0
  248. package/clients/walletsService/core/CancelablePromise.ts +131 -0
  249. package/clients/walletsService/core/OpenAPI.ts +32 -0
  250. package/clients/walletsService/core/request.ts +322 -0
  251. package/clients/walletsService/index.ts +22 -0
  252. package/clients/walletsService/models/ErrorEnvelope.ts +12 -0
  253. package/clients/walletsService/models/InvoiceDto.ts +13 -0
  254. package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +14 -0
  255. package/clients/walletsService/models/LocationDto.ts +31 -0
  256. package/clients/walletsService/models/LocationDtoListEnvelope.ts +14 -0
  257. package/clients/walletsService/models/OrderDto.ts +27 -0
  258. package/clients/walletsService/models/OrderDtoListEnvelope.ts +14 -0
  259. package/clients/walletsService/models/PaymentDto.ts +17 -0
  260. package/clients/walletsService/models/PaymentDtoListEnvelope.ts +14 -0
  261. package/clients/walletsService/models/WalletDto.ts +22 -0
  262. package/clients/walletsService/models/WalletDtoEnvelope.ts +14 -0
  263. package/clients/walletsService/services/WalletsService.ts +174 -0
  264. package/package.json +23 -21
  265. package/schemas/cartService/schema.s.ts +1166 -1560
  266. package/schemas/catalogService/schema.s.ts +5982 -6109
  267. package/schemas/crmService/schema.s.ts +804 -0
  268. package/schemas/forexService/schema.s.ts +602 -526
  269. package/schemas/holderService/schema.s.ts +831 -831
  270. package/schemas/identityService/schema.s.ts +744 -1119
  271. package/schemas/inventoryService/schema.s.ts +43 -425
  272. package/schemas/invoicingService/schema.s.ts +590 -521
  273. package/schemas/ordersService/schema.s.ts +605 -0
  274. package/schemas/pricingService/schema.s.ts +579 -549
  275. package/schemas/systemService/schema.s.ts +138 -0
  276. package/schemas/tenantService/schema.s.ts +1116 -1606
  277. package/schemas/walletsService/schema.s.ts +466 -0
  278. package/tsconfig.json +110 -0
  279. package/vite.config.js +29 -0
  280. package/wwwroot/build/bundle.js +1 -0
  281. package/clients/cartService/models/AccessTokenResponse.ts +0 -11
  282. package/clients/cartService/models/Error.ts +0 -10
  283. package/clients/cartService/models/ForgotPasswordRequest.ts +0 -8
  284. package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
  285. package/clients/cartService/models/InfoRequest.ts +0 -10
  286. package/clients/cartService/models/LoginRequest.ts +0 -11
  287. package/clients/cartService/models/RefreshRequest.ts +0 -8
  288. package/clients/cartService/models/ResendConfirmationEmailRequest.ts +0 -8
  289. package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
  290. package/clients/cartService/models/ResponseStatus.ts +0 -12
  291. package/clients/cartService/models/TwoFactorRequest.ts +0 -12
  292. package/clients/cartService/models/TwoFactorResponse.ts +0 -12
  293. package/clients/cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts +0 -14
  294. package/clients/cartService/services/FenixAllianceAbsWebService.ts +0 -293
  295. package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
  296. package/clients/catalogService/models/ForgotPasswordRequest.ts +0 -8
  297. package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
  298. package/clients/catalogService/models/InfoRequest.ts +0 -10
  299. package/clients/catalogService/models/InfoResponse.ts +0 -9
  300. package/clients/catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts +0 -14
  301. package/clients/catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts +0 -14
  302. package/clients/catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts +0 -14
  303. package/clients/catalogService/models/ItemPricePolicyDto.ts +0 -35
  304. package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +0 -14
  305. package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +0 -14
  306. package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +0 -14
  307. package/clients/catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts +0 -14
  308. package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +0 -14
  309. package/clients/catalogService/models/LoginRequest.ts +0 -11
  310. package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +0 -14
  311. package/clients/catalogService/models/RefreshRequest.ts +0 -8
  312. package/clients/catalogService/models/RegisterRequest.ts +0 -9
  313. package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
  314. package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
  315. package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
  316. package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
  317. package/clients/catalogService/services/FenixAllianceAbsWebService.ts +0 -293
  318. package/clients/contactService/index.ts +0 -28
  319. package/clients/contactService/models/AccessTokenResponse.ts +0 -11
  320. package/clients/contactService/models/ContactDto.ts +0 -44
  321. package/clients/contactService/models/ForgotPasswordRequest.ts +0 -8
  322. package/clients/contactService/models/HttpValidationProblemDetails.ts +0 -5
  323. package/clients/contactService/models/InfoRequest.ts +0 -10
  324. package/clients/contactService/models/InfoResponse.ts +0 -9
  325. package/clients/contactService/models/LoginRequest.ts +0 -11
  326. package/clients/contactService/models/RefreshRequest.ts +0 -8
  327. package/clients/contactService/models/RegisterRequest.ts +0 -9
  328. package/clients/contactService/models/ResendConfirmationEmailRequest.ts +0 -8
  329. package/clients/contactService/models/ResetPasswordRequest.ts +0 -10
  330. package/clients/contactService/models/TwoFactorRequest.ts +0 -12
  331. package/clients/contactService/models/TwoFactorResponse.ts +0 -12
  332. package/clients/contactService/services/ContactsService.ts +0 -140
  333. package/clients/contactService/services/FenixAllianceAbsWebService.ts +0 -293
  334. package/clients/forexService/models/AccessTokenResponse.ts +0 -11
  335. package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
  336. package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
  337. package/clients/forexService/models/InfoRequest.ts +0 -10
  338. package/clients/forexService/models/InfoResponse.ts +0 -9
  339. package/clients/forexService/models/LoginRequest.ts +0 -11
  340. package/clients/forexService/models/RefreshRequest.ts +0 -8
  341. package/clients/forexService/models/RegisterRequest.ts +0 -9
  342. package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
  343. package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
  344. package/clients/forexService/models/TwoFactorRequest.ts +0 -12
  345. package/clients/forexService/models/TwoFactorResponse.ts +0 -12
  346. package/clients/forexService/services/FenixAllianceAbsWebService.ts +0 -293
  347. package/clients/holderService/models/AccessTokenResponse.ts +0 -11
  348. package/clients/holderService/models/AccountHolderCreateDto.ts +0 -34
  349. package/clients/holderService/models/AccountHolderDtoEnvelope.ts +0 -14
  350. package/clients/holderService/models/BusinessEnrollmentDto.ts +0 -19
  351. package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
  352. package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
  353. package/clients/holderService/models/InfoRequest.ts +0 -10
  354. package/clients/holderService/models/InfoResponse.ts +0 -9
  355. package/clients/holderService/models/LoginRequest.ts +0 -11
  356. package/clients/holderService/models/RefreshRequest.ts +0 -8
  357. package/clients/holderService/models/RegisterRequest.ts +0 -9
  358. package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
  359. package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
  360. package/clients/holderService/models/TwoFactorRequest.ts +0 -12
  361. package/clients/holderService/models/TwoFactorResponse.ts +0 -12
  362. package/clients/holderService/services/FenixAllianceAbsWebService.ts +0 -293
  363. package/clients/identityService/models/AccessTokenResponse.ts +0 -11
  364. package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
  365. package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
  366. package/clients/identityService/models/InfoRequest.ts +0 -10
  367. package/clients/identityService/models/InfoResponse.ts +0 -9
  368. package/clients/identityService/models/LoginRequest.ts +0 -11
  369. package/clients/identityService/models/RefreshRequest.ts +0 -8
  370. package/clients/identityService/models/RegisterRequest.ts +0 -9
  371. package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
  372. package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
  373. package/clients/identityService/models/TwoFactorRequest.ts +0 -12
  374. package/clients/identityService/models/TwoFactorResponse.ts +0 -12
  375. package/clients/identityService/services/FenixAllianceAbsWebService.ts +0 -293
  376. package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
  377. package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
  378. package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
  379. package/clients/inventoryService/models/InfoRequest.ts +0 -10
  380. package/clients/inventoryService/models/InfoResponse.ts +0 -9
  381. package/clients/inventoryService/models/LoginRequest.ts +0 -11
  382. package/clients/inventoryService/models/RefreshRequest.ts +0 -8
  383. package/clients/inventoryService/models/RegisterRequest.ts +0 -9
  384. package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
  385. package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
  386. package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
  387. package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
  388. package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +0 -293
  389. package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
  390. package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
  391. package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
  392. package/clients/invoicingService/models/InfoRequest.ts +0 -10
  393. package/clients/invoicingService/models/InfoResponse.ts +0 -9
  394. package/clients/invoicingService/models/LoginRequest.ts +0 -11
  395. package/clients/invoicingService/models/RefreshRequest.ts +0 -8
  396. package/clients/invoicingService/models/RegisterRequest.ts +0 -9
  397. package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
  398. package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
  399. package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
  400. package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
  401. package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +0 -293
  402. package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
  403. package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
  404. package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
  405. package/clients/pricingService/models/InfoRequest.ts +0 -10
  406. package/clients/pricingService/models/InfoResponse.ts +0 -9
  407. package/clients/pricingService/models/LoginRequest.ts +0 -11
  408. package/clients/pricingService/models/RefreshRequest.ts +0 -8
  409. package/clients/pricingService/models/RegisterRequest.ts +0 -9
  410. package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
  411. package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
  412. package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
  413. package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
  414. package/clients/pricingService/services/FenixAllianceAbsWebService.ts +0 -293
  415. package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
  416. package/clients/tenantService/models/AccountHolderCreateDto.ts +0 -34
  417. package/clients/tenantService/models/AggregateException.ts +0 -18
  418. package/clients/tenantService/models/Assembly.ts +0 -46
  419. package/clients/tenantService/models/BusinessEnrollmentDto.ts +0 -19
  420. package/clients/tenantService/models/BusinessEnrollmentDtoEnvelope.ts +0 -14
  421. package/clients/tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts +0 -14
  422. package/clients/tenantService/models/ConstructorInfo.ts +0 -103
  423. package/clients/tenantService/models/CustomAttributeData.ts +0 -15
  424. package/clients/tenantService/models/CustomAttributeNamedArgument.ts +0 -13
  425. package/clients/tenantService/models/CustomAttributeTypedArgument.ts +0 -10
  426. package/clients/tenantService/models/EventInfo.ts +0 -44
  427. package/clients/tenantService/models/Exception.ts +0 -16
  428. package/clients/tenantService/models/FieldInfo.ts +0 -74
  429. package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
  430. package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
  431. package/clients/tenantService/models/ICustomAttributeProvider.ts +0 -5
  432. package/clients/tenantService/models/InfoRequest.ts +0 -10
  433. package/clients/tenantService/models/InfoResponse.ts +0 -9
  434. package/clients/tenantService/models/LoginRequest.ts +0 -11
  435. package/clients/tenantService/models/MemberInfo.ts +0 -31
  436. package/clients/tenantService/models/MethodBase.ts +0 -103
  437. package/clients/tenantService/models/MethodInfo.ts +0 -108
  438. package/clients/tenantService/models/Module.ts +0 -19
  439. package/clients/tenantService/models/ModuleHandle.ts +0 -8
  440. package/clients/tenantService/models/ParameterInfo.ts +0 -40
  441. package/clients/tenantService/models/PropertyInfo.ts +0 -49
  442. package/clients/tenantService/models/RefreshRequest.ts +0 -8
  443. package/clients/tenantService/models/RegisterRequest.ts +0 -9
  444. package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
  445. package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
  446. package/clients/tenantService/models/ResponseStatus.ts +0 -12
  447. package/clients/tenantService/models/RuntimeFieldHandle.ts +0 -9
  448. package/clients/tenantService/models/RuntimeMethodHandle.ts +0 -9
  449. package/clients/tenantService/models/RuntimeTypeHandle.ts +0 -9
  450. package/clients/tenantService/models/StructLayoutAttribute.ts +0 -16
  451. package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
  452. package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
  453. package/clients/tenantService/models/Type.ts +0 -141
  454. package/clients/tenantService/models/TypeInfo.ts +0 -156
  455. package/clients/tenantService/models/WalletDtoTask.ts +0 -40
  456. package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +0 -14
  457. package/clients/tenantService/services/FenixAllianceAbsWebService.ts +0 -293
  458. package/schemas/contactService/schema.s.ts +0 -674
  459. /package/clients/{contactService → crmService}/models/ContactDtoEnvelope.ts +0 -0
  460. /package/clients/{contactService → crmService}/models/ContactDtoListEnvelope.ts +0 -0
  461. /package/clients/{contactService → crmService}/models/ErrorEnvelope.ts +0 -0
@@ -1,831 +1,831 @@
1
- /**
2
- * This file was auto-generated by openapi-typescript.
3
- * Do not make direct changes to the file.
4
- */
5
-
6
-
7
- export interface paths {
8
- "/version": {
9
- get: {
10
- responses: {
11
- /** @description Success */
12
- 200: {
13
- content: never;
14
- };
15
- };
16
- };
17
- };
18
- "/health": {
19
- get: {
20
- responses: {
21
- /** @description Success */
22
- 200: {
23
- content: never;
24
- };
25
- };
26
- };
27
- };
28
- "/hello": {
29
- get: {
30
- responses: {
31
- /** @description Success */
32
- 200: {
33
- content: never;
34
- };
35
- };
36
- };
37
- };
38
- "/register": {
39
- post: {
40
- requestBody?: {
41
- content: {
42
- "application/json": components["schemas"]["RegisterRequest"];
43
- };
44
- };
45
- responses: {
46
- /** @description Success */
47
- 200: {
48
- content: never;
49
- };
50
- /** @description Bad Request */
51
- 400: {
52
- content: {
53
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
54
- };
55
- };
56
- };
57
- };
58
- };
59
- "/login": {
60
- post: {
61
- parameters: {
62
- query?: {
63
- useCookies?: boolean;
64
- useSessionCookies?: boolean;
65
- };
66
- };
67
- requestBody?: {
68
- content: {
69
- "application/json": components["schemas"]["LoginRequest"];
70
- };
71
- };
72
- responses: {
73
- /** @description Success */
74
- 200: {
75
- content: {
76
- "application/json": components["schemas"]["AccessTokenResponse"];
77
- };
78
- };
79
- };
80
- };
81
- };
82
- "/refresh": {
83
- post: {
84
- requestBody?: {
85
- content: {
86
- "application/json": components["schemas"]["RefreshRequest"];
87
- };
88
- };
89
- responses: {
90
- /** @description Success */
91
- 200: {
92
- content: {
93
- "application/json": components["schemas"]["AccessTokenResponse"];
94
- };
95
- };
96
- };
97
- };
98
- };
99
- "/confirmEmail": {
100
- get: operations["MapIdentityApi-/confirmEmail"];
101
- };
102
- "/resendConfirmationEmail": {
103
- post: {
104
- requestBody?: {
105
- content: {
106
- "application/json": components["schemas"]["ResendConfirmationEmailRequest"];
107
- };
108
- };
109
- responses: {
110
- /** @description Success */
111
- 200: {
112
- content: never;
113
- };
114
- };
115
- };
116
- };
117
- "/forgotPassword": {
118
- post: {
119
- requestBody?: {
120
- content: {
121
- "application/json": components["schemas"]["ForgotPasswordRequest"];
122
- };
123
- };
124
- responses: {
125
- /** @description Success */
126
- 200: {
127
- content: never;
128
- };
129
- /** @description Bad Request */
130
- 400: {
131
- content: {
132
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
133
- };
134
- };
135
- };
136
- };
137
- };
138
- "/resetPassword": {
139
- post: {
140
- requestBody?: {
141
- content: {
142
- "application/json": components["schemas"]["ResetPasswordRequest"];
143
- };
144
- };
145
- responses: {
146
- /** @description Success */
147
- 200: {
148
- content: never;
149
- };
150
- /** @description Bad Request */
151
- 400: {
152
- content: {
153
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
154
- };
155
- };
156
- };
157
- };
158
- };
159
- "/manage/2fa": {
160
- post: {
161
- requestBody?: {
162
- content: {
163
- "application/json": components["schemas"]["TwoFactorRequest"];
164
- };
165
- };
166
- responses: {
167
- /** @description Success */
168
- 200: {
169
- content: {
170
- "application/json": components["schemas"]["TwoFactorResponse"];
171
- };
172
- };
173
- /** @description Bad Request */
174
- 400: {
175
- content: {
176
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
177
- };
178
- };
179
- /** @description Not Found */
180
- 404: {
181
- content: never;
182
- };
183
- };
184
- };
185
- };
186
- "/manage/info": {
187
- get: {
188
- responses: {
189
- /** @description Success */
190
- 200: {
191
- content: {
192
- "application/json": components["schemas"]["InfoResponse"];
193
- };
194
- };
195
- /** @description Bad Request */
196
- 400: {
197
- content: {
198
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
199
- };
200
- };
201
- /** @description Not Found */
202
- 404: {
203
- content: never;
204
- };
205
- };
206
- };
207
- post: {
208
- requestBody?: {
209
- content: {
210
- "application/json": components["schemas"]["InfoRequest"];
211
- };
212
- };
213
- responses: {
214
- /** @description Success */
215
- 200: {
216
- content: {
217
- "application/json": components["schemas"]["InfoResponse"];
218
- };
219
- };
220
- /** @description Bad Request */
221
- 400: {
222
- content: {
223
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
224
- };
225
- };
226
- /** @description Not Found */
227
- 404: {
228
- content: never;
229
- };
230
- };
231
- };
232
- };
233
- "/Account/PerformExternalLogin": {
234
- post: {
235
- requestBody?: {
236
- content: {
237
- "multipart/form-data": {
238
- provider: string;
239
- returnUrl: string;
240
- };
241
- "application/x-www-form-urlencoded": {
242
- provider: string;
243
- returnUrl: string;
244
- };
245
- };
246
- };
247
- responses: {
248
- /** @description Success */
249
- 200: {
250
- content: never;
251
- };
252
- };
253
- };
254
- };
255
- "/Account/Logout": {
256
- post: {
257
- requestBody?: {
258
- content: {
259
- "multipart/form-data": {
260
- returnUrl: string;
261
- };
262
- "application/x-www-form-urlencoded": {
263
- returnUrl: string;
264
- };
265
- };
266
- };
267
- responses: {
268
- /** @description Success */
269
- 200: {
270
- content: never;
271
- };
272
- };
273
- };
274
- };
275
- "/Account/Manage/LinkExternalLogin": {
276
- post: {
277
- requestBody?: {
278
- content: {
279
- "multipart/form-data": {
280
- provider: string;
281
- };
282
- "application/x-www-form-urlencoded": {
283
- provider: string;
284
- };
285
- };
286
- };
287
- responses: {
288
- /** @description Success */
289
- 200: {
290
- content: never;
291
- };
292
- };
293
- };
294
- };
295
- "/Account/Manage/DownloadPersonalData": {
296
- post: {
297
- responses: {
298
- /** @description Success */
299
- 200: {
300
- content: never;
301
- };
302
- };
303
- };
304
- };
305
- "/api/v2/Me": {
306
- get: {
307
- parameters: {
308
- query?: {
309
- "api-version"?: string;
310
- };
311
- };
312
- responses: {
313
- /** @description Success */
314
- 200: {
315
- content: {
316
- "application/json": components["schemas"]["AccountHolderDtoEnvelope"];
317
- "application/xml": components["schemas"]["AccountHolderDtoEnvelope"];
318
- };
319
- };
320
- /** @description Unauthorized */
321
- 401: {
322
- content: {
323
- "application/json": components["schemas"]["ErrorEnvelope"];
324
- "application/xml": components["schemas"]["ErrorEnvelope"];
325
- };
326
- };
327
- };
328
- };
329
- };
330
- "/api/v2/Me/Follows": {
331
- get: {
332
- parameters: {
333
- query?: {
334
- pageSize?: number;
335
- pageIndex?: number;
336
- "api-version"?: string;
337
- };
338
- };
339
- responses: {
340
- /** @description Success */
341
- 200: {
342
- content: {
343
- "application/json": components["schemas"]["FollowRecordDto"][];
344
- "application/xml": components["schemas"]["FollowRecordDto"][];
345
- };
346
- };
347
- /** @description Unauthorized */
348
- 401: {
349
- content: {
350
- "application/json": components["schemas"]["ErrorEnvelope"];
351
- "application/xml": components["schemas"]["ErrorEnvelope"];
352
- };
353
- };
354
- };
355
- };
356
- };
357
- "/api/v2/Me/Businesses": {
358
- get: {
359
- parameters: {
360
- query?: {
361
- "api-version"?: string;
362
- };
363
- };
364
- responses: {
365
- /** @description Success */
366
- 200: {
367
- content: {
368
- "application/json": components["schemas"]["BusinessDto"][];
369
- "application/xml": components["schemas"]["BusinessDto"][];
370
- };
371
- };
372
- /** @description Unauthorized */
373
- 401: {
374
- content: {
375
- "application/json": components["schemas"]["ErrorEnvelope"];
376
- "application/xml": components["schemas"]["ErrorEnvelope"];
377
- };
378
- };
379
- };
380
- };
381
- };
382
- "/api/v2/Me/Enrollments": {
383
- get: {
384
- parameters: {
385
- query?: {
386
- "api-version"?: string;
387
- };
388
- };
389
- responses: {
390
- /** @description Success */
391
- 200: {
392
- content: {
393
- "application/json": components["schemas"]["BusinessEnrollmentDto"][];
394
- "application/xml": components["schemas"]["BusinessEnrollmentDto"][];
395
- };
396
- };
397
- /** @description Unauthorized */
398
- 401: {
399
- content: {
400
- "application/json": components["schemas"]["ErrorEnvelope"];
401
- "application/xml": components["schemas"]["ErrorEnvelope"];
402
- };
403
- };
404
- };
405
- };
406
- };
407
- "/api/v2/Me/Library": {
408
- get: {
409
- parameters: {
410
- query?: {
411
- "api-version"?: string;
412
- };
413
- };
414
- responses: {
415
- /** @description Success */
416
- 200: {
417
- content: never;
418
- };
419
- /** @description Unauthorized */
420
- 401: {
421
- content: {
422
- "application/json": components["schemas"]["ErrorEnvelope"];
423
- "application/xml": components["schemas"]["ErrorEnvelope"];
424
- };
425
- };
426
- };
427
- };
428
- };
429
- "/api/v2/Me/Addresses": {
430
- get: {
431
- parameters: {
432
- query?: {
433
- "api-version"?: string;
434
- };
435
- };
436
- responses: {
437
- /** @description Unauthorized */
438
- 401: {
439
- content: {
440
- "application/json": components["schemas"]["ErrorEnvelope"];
441
- "application/xml": components["schemas"]["ErrorEnvelope"];
442
- };
443
- };
444
- };
445
- };
446
- };
447
- "/api/v2/Me/Notifications": {
448
- get: {
449
- parameters: {
450
- query?: {
451
- "api-version"?: string;
452
- };
453
- };
454
- responses: {
455
- /** @description Unauthorized */
456
- 401: {
457
- content: {
458
- "application/json": components["schemas"]["ErrorEnvelope"];
459
- "application/xml": components["schemas"]["ErrorEnvelope"];
460
- };
461
- };
462
- };
463
- };
464
- };
465
- "/api/v2/Me/Orders": {
466
- get: {
467
- parameters: {
468
- query?: {
469
- "api-version"?: string;
470
- };
471
- };
472
- responses: {
473
- /** @description Unauthorized */
474
- 401: {
475
- content: {
476
- "application/json": components["schemas"]["ErrorEnvelope"];
477
- "application/xml": components["schemas"]["ErrorEnvelope"];
478
- };
479
- };
480
- };
481
- };
482
- };
483
- "/api/v2/Me/Invoices": {
484
- get: {
485
- parameters: {
486
- query?: {
487
- "api-version"?: string;
488
- };
489
- };
490
- responses: {
491
- /** @description Unauthorized */
492
- 401: {
493
- content: {
494
- "application/json": components["schemas"]["ErrorEnvelope"];
495
- "application/xml": components["schemas"]["ErrorEnvelope"];
496
- };
497
- };
498
- };
499
- };
500
- };
501
- "/api/v2/Me/Payments": {
502
- get: {
503
- parameters: {
504
- query?: {
505
- "api-version"?: string;
506
- };
507
- };
508
- responses: {
509
- /** @description Unauthorized */
510
- 401: {
511
- content: {
512
- "application/json": components["schemas"]["ErrorEnvelope"];
513
- "application/xml": components["schemas"]["ErrorEnvelope"];
514
- };
515
- };
516
- };
517
- };
518
- };
519
- "/api/v2/Me/Settings": {
520
- get: {
521
- parameters: {
522
- query?: {
523
- "api-version"?: string;
524
- };
525
- };
526
- responses: {
527
- /** @description Unauthorized */
528
- 401: {
529
- content: {
530
- "application/json": components["schemas"]["ErrorEnvelope"];
531
- "application/xml": components["schemas"]["ErrorEnvelope"];
532
- };
533
- };
534
- };
535
- };
536
- };
537
- }
538
-
539
- export type webhooks = Record<string, never>;
540
-
541
- export interface components {
542
- schemas: {
543
- AccessTokenResponse: {
544
- tokenType?: string | null;
545
- accessToken?: string | null;
546
- /** Format: int64 */
547
- expiresIn?: number;
548
- refreshToken?: string | null;
549
- };
550
- AccountHolderCreateDto: {
551
- /** Format: uuid */
552
- id?: string;
553
- qualifiedName?: string | null;
554
- /** Format: date-time */
555
- birthday?: string;
556
- firstName?: string | null;
557
- lastName?: string | null;
558
- publicName?: string | null;
559
- idProvider?: string | null;
560
- languageID?: string | null;
561
- timezoneID?: string | null;
562
- gender?: string | null;
563
- cityID?: string | null;
564
- stateID?: string | null;
565
- email?: string | null;
566
- about?: string | null;
567
- jobTitle?: string | null;
568
- coverURL?: string | null;
569
- avatarURL?: string | null;
570
- gitHubURL?: string | null;
571
- websiteURL?: string | null;
572
- twitterUrl?: string | null;
573
- facebookURL?: string | null;
574
- youTubeURL?: string | null;
575
- linkedInURL?: string | null;
576
- instagramUrl?: string | null;
577
- countryID?: string | null;
578
- countryName?: string | null;
579
- currencyID?: string | null;
580
- };
581
- AccountHolderDto: {
582
- id?: string | null;
583
- /** Format: date-time */
584
- timestamp?: string | null;
585
- qualifiedName?: string | null;
586
- /** Format: date-time */
587
- birthday?: string;
588
- firstName?: string | null;
589
- lastName?: string | null;
590
- publicName?: string | null;
591
- idProvider?: string | null;
592
- languageId?: string | null;
593
- timezoneId?: string | null;
594
- gender?: string | null;
595
- cityId?: string | null;
596
- stateId?: string | null;
597
- email?: string | null;
598
- about?: string | null;
599
- jobTitle?: string | null;
600
- coverUrl?: string | null;
601
- avatarUrl?: string | null;
602
- gitHubUrl?: string | null;
603
- websiteUrl?: string | null;
604
- twitterUrl?: string | null;
605
- facebookUrl?: string | null;
606
- youTubeUrl?: string | null;
607
- linkedInUrl?: string | null;
608
- instagramUrl?: string | null;
609
- lockoutEnabled?: boolean;
610
- socialFeedId?: string | null;
611
- socialProfileId?: string | null;
612
- currentTenantId?: string | null;
613
- currentEnrollmentId?: string | null;
614
- cartId?: string | null;
615
- walletId?: string | null;
616
- countryId?: string | null;
617
- currencyId?: string | null;
618
- userName?: string | null;
619
- status?: string | null;
620
- phoneNumber?: string | null;
621
- publicIdentifier?: string | null;
622
- identityProvider?: string | null;
623
- phoneNumberConfirmed?: boolean;
624
- emailConfirmed?: boolean;
625
- /**
626
- * Format: int32
627
- * @enum {integer}
628
- */
629
- themeMode?: 0 | 1 | 2;
630
- /**
631
- * Format: int32
632
- * @enum {integer}
633
- */
634
- availability?: 0 | 1 | 2 | 3 | 4;
635
- /** Format: int32 */
636
- followsCount?: number | null;
637
- /** Format: int32 */
638
- followersCount?: number | null;
639
- /** Format: int32 */
640
- enrollmentsCount?: number | null;
641
- /** Format: int32 */
642
- socialPostsCount?: number | null;
643
- /** Format: int32 */
644
- unreadMessagesCount?: number | null;
645
- /** Format: int32 */
646
- unreadNotificationsCount?: number | null;
647
- webUrl?: string | null;
648
- countryStateId?: string | null;
649
- selectedBusinessId?: string | null;
650
- };
651
- AccountHolderDtoEnvelope: {
652
- errorMessage?: string | null;
653
- isSuccess?: boolean;
654
- /** Format: date-time */
655
- timestamp?: string;
656
- activityId?: string | null;
657
- correlationId?: string | null;
658
- result?: components["schemas"]["AccountHolderDto"];
659
- };
660
- BusinessDto: {
661
- id?: string | null;
662
- /** Format: date-time */
663
- timestamp?: string | null;
664
- qualifiedName?: string | null;
665
- taxID?: string | null;
666
- about?: string | null;
667
- walletID?: string | null;
668
- socialFeedID?: string | null;
669
- businessIndustryID?: string | null;
670
- businessSegmentID?: string | null;
671
- socialProfileID?: string | null;
672
- languageId?: string | null;
673
- name?: string | null;
674
- duns?: string | null;
675
- slogan?: string | null;
676
- legalName?: string | null;
677
- coverUrl?: string | null;
678
- avatarUrl?: string | null;
679
- cartID?: string | null;
680
- currencyID?: string | null;
681
- timezoneID?: string | null;
682
- countryID?: string | null;
683
- stateID?: string | null;
684
- cityID?: string | null;
685
- /** Format: int32 */
686
- followsCount?: number | null;
687
- /** Format: int32 */
688
- followersCount?: number | null;
689
- /** Format: int32 */
690
- enrollmentsCount?: number | null;
691
- /** Format: int32 */
692
- socialPostsCount?: number | null;
693
- /** Format: int32 */
694
- unreadMessagesCount?: number | null;
695
- /** Format: int32 */
696
- unreadNotificationsCount?: number | null;
697
- enrollmentID?: string | null;
698
- c2BFollowID?: string | null;
699
- b2CFollowID?: string | null;
700
- email?: string | null;
701
- phone?: string | null;
702
- webUrl?: string | null;
703
- facebookUrl?: string | null;
704
- twitterUrl?: string | null;
705
- gitHubUrl?: string | null;
706
- linkedInUrl?: string | null;
707
- instagramUrl?: string | null;
708
- youTubeUrl?: string | null;
709
- whatsAppNumber?: string | null;
710
- verified?: boolean;
711
- businessName?: string | null;
712
- businessLegalName?: string | null;
713
- twitterUsername?: string | null;
714
- };
715
- BusinessEnrollmentDto: {
716
- id?: string | null;
717
- isRoot?: boolean;
718
- isOwner?: boolean;
719
- isAdmin?: boolean;
720
- isDisabled?: boolean;
721
- isBusinessOwner?: boolean;
722
- businessID?: string | null;
723
- holderID?: string | null;
724
- holder?: components["schemas"]["AccountHolderCreateDto"];
725
- tenant?: components["schemas"]["BusinessDto"];
726
- };
727
- ErrorEnvelope: {
728
- errorMessage?: string | null;
729
- isSuccess?: boolean;
730
- /** Format: date-time */
731
- timestamp?: string;
732
- activityId?: string | null;
733
- correlationId?: string | null;
734
- };
735
- FollowRecordDto: {
736
- id?: string | null;
737
- type?: string | null;
738
- followerID?: string | null;
739
- followedID?: string | null;
740
- alerts?: boolean;
741
- };
742
- ForgotPasswordRequest: {
743
- email?: string | null;
744
- };
745
- HttpValidationProblemDetails: {
746
- type?: string | null;
747
- title?: string | null;
748
- /** Format: int32 */
749
- status?: number | null;
750
- detail?: string | null;
751
- instance?: string | null;
752
- errors?: {
753
- [key: string]: string[];
754
- } | null;
755
- [key: string]: unknown;
756
- };
757
- InfoRequest: {
758
- newEmail?: string | null;
759
- newPassword?: string | null;
760
- oldPassword?: string | null;
761
- };
762
- InfoResponse: {
763
- email?: string | null;
764
- isEmailConfirmed?: boolean;
765
- };
766
- LoginRequest: {
767
- email?: string | null;
768
- password?: string | null;
769
- twoFactorCode?: string | null;
770
- twoFactorRecoveryCode?: string | null;
771
- };
772
- RefreshRequest: {
773
- refreshToken?: string | null;
774
- };
775
- RegisterRequest: {
776
- email?: string | null;
777
- password?: string | null;
778
- };
779
- ResendConfirmationEmailRequest: {
780
- email?: string | null;
781
- };
782
- ResetPasswordRequest: {
783
- email?: string | null;
784
- resetCode?: string | null;
785
- newPassword?: string | null;
786
- };
787
- TwoFactorRequest: {
788
- enable?: boolean | null;
789
- twoFactorCode?: string | null;
790
- resetSharedKey?: boolean;
791
- resetRecoveryCodes?: boolean;
792
- forgetMachine?: boolean;
793
- };
794
- TwoFactorResponse: {
795
- sharedKey?: string | null;
796
- /** Format: int32 */
797
- recoveryCodesLeft?: number;
798
- recoveryCodes?: string[] | null;
799
- isTwoFactorEnabled?: boolean;
800
- isMachineRemembered?: boolean;
801
- };
802
- };
803
- responses: never;
804
- parameters: never;
805
- requestBodies: never;
806
- headers: never;
807
- pathItems: never;
808
- }
809
-
810
- export type $defs = Record<string, never>;
811
-
812
- export type external = Record<string, never>;
813
-
814
- export interface operations {
815
-
816
- "MapIdentityApi-/confirmEmail": {
817
- parameters: {
818
- query?: {
819
- userId?: string;
820
- code?: string;
821
- changedEmail?: string;
822
- };
823
- };
824
- responses: {
825
- /** @description Success */
826
- 200: {
827
- content: never;
828
- };
829
- };
830
- };
831
- }
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+
6
+
7
+ export interface paths {
8
+ "/api/v2/Me": {
9
+ /** Get the current user profile */
10
+ get: {
11
+ parameters: {
12
+ query?: {
13
+ "api-version"?: string;
14
+ };
15
+ };
16
+ responses: {
17
+ /** @description Success */
18
+ 200: {
19
+ content: {
20
+ "application/json": components["schemas"]["PlatformUserDtoEnvelope"];
21
+ "application/xml": components["schemas"]["PlatformUserDtoEnvelope"];
22
+ };
23
+ };
24
+ /** @description Unauthorized */
25
+ 401: {
26
+ content: {
27
+ "application/json": components["schemas"]["ErrorEnvelope"];
28
+ "application/xml": components["schemas"]["ErrorEnvelope"];
29
+ };
30
+ };
31
+ };
32
+ };
33
+ };
34
+ "/api/v2/Me/Follows": {
35
+ get: {
36
+ parameters: {
37
+ query?: {
38
+ pageSize?: number;
39
+ pageIndex?: number;
40
+ "api-version"?: string;
41
+ };
42
+ };
43
+ responses: {
44
+ /** @description Success */
45
+ 200: {
46
+ content: {
47
+ "application/json": components["schemas"]["FollowRecordDto"][];
48
+ "application/xml": components["schemas"]["FollowRecordDto"][];
49
+ };
50
+ };
51
+ /** @description Unauthorized */
52
+ 401: {
53
+ content: {
54
+ "application/json": components["schemas"]["ErrorEnvelope"];
55
+ "application/xml": components["schemas"]["ErrorEnvelope"];
56
+ };
57
+ };
58
+ };
59
+ };
60
+ };
61
+ "/api/v2/Me/Followers": {
62
+ get: {
63
+ parameters: {
64
+ query?: {
65
+ pageSize?: number;
66
+ pageIndex?: number;
67
+ "api-version"?: string;
68
+ };
69
+ };
70
+ responses: {
71
+ /** @description Success */
72
+ 200: {
73
+ content: {
74
+ "application/json": components["schemas"]["FollowRecordDto"][];
75
+ "application/xml": components["schemas"]["FollowRecordDto"][];
76
+ };
77
+ };
78
+ /** @description Unauthorized */
79
+ 401: {
80
+ content: {
81
+ "application/json": components["schemas"]["ErrorEnvelope"];
82
+ "application/xml": components["schemas"]["ErrorEnvelope"];
83
+ };
84
+ };
85
+ };
86
+ };
87
+ };
88
+ "/api/v2/Me/Businesses": {
89
+ get: {
90
+ parameters: {
91
+ query?: {
92
+ "api-version"?: string;
93
+ };
94
+ };
95
+ responses: {
96
+ /** @description Success */
97
+ 200: {
98
+ content: {
99
+ "application/json": components["schemas"]["TenantDtoListEnvelope"];
100
+ "application/xml": components["schemas"]["TenantDtoListEnvelope"];
101
+ };
102
+ };
103
+ /** @description Unauthorized */
104
+ 401: {
105
+ content: {
106
+ "application/json": components["schemas"]["ErrorEnvelope"];
107
+ "application/xml": components["schemas"]["ErrorEnvelope"];
108
+ };
109
+ };
110
+ /** @description Forbidden */
111
+ 403: {
112
+ content: {
113
+ "application/json": components["schemas"]["ErrorEnvelope"];
114
+ "application/xml": components["schemas"]["ErrorEnvelope"];
115
+ };
116
+ };
117
+ };
118
+ };
119
+ };
120
+ "/api/v2/Me/Enrollments": {
121
+ get: {
122
+ parameters: {
123
+ query?: {
124
+ "api-version"?: string;
125
+ };
126
+ };
127
+ responses: {
128
+ /** @description Success */
129
+ 200: {
130
+ content: {
131
+ "application/json": components["schemas"]["TenantEnrollmentDtoListEnvelope"];
132
+ "application/xml": components["schemas"]["TenantEnrollmentDtoListEnvelope"];
133
+ };
134
+ };
135
+ /** @description Unauthorized */
136
+ 401: {
137
+ content: {
138
+ "application/json": components["schemas"]["ErrorEnvelope"];
139
+ "application/xml": components["schemas"]["ErrorEnvelope"];
140
+ };
141
+ };
142
+ };
143
+ };
144
+ };
145
+ "/api/v2/Me/SocialProfile": {
146
+ get: {
147
+ parameters: {
148
+ query?: {
149
+ "api-version"?: 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
+ };
168
+ };
169
+ };
170
+ "/api/v2/Me/Cart": {
171
+ get: {
172
+ parameters: {
173
+ query?: {
174
+ "api-version"?: string;
175
+ };
176
+ };
177
+ responses: {
178
+ /** @description Success */
179
+ 200: {
180
+ content: {
181
+ "application/json": components["schemas"]["CartDtoEnvelope"];
182
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
183
+ };
184
+ };
185
+ /** @description Unauthorized */
186
+ 401: {
187
+ content: {
188
+ "application/json": components["schemas"]["ErrorEnvelope"];
189
+ "application/xml": components["schemas"]["ErrorEnvelope"];
190
+ };
191
+ };
192
+ };
193
+ };
194
+ };
195
+ "/api/v2/Me/Wallet": {
196
+ get: {
197
+ parameters: {
198
+ query?: {
199
+ "api-version"?: string;
200
+ };
201
+ };
202
+ responses: {
203
+ /** @description Success */
204
+ 200: {
205
+ content: {
206
+ "application/json": components["schemas"]["WalletDtoEnvelope"];
207
+ "application/xml": components["schemas"]["WalletDtoEnvelope"];
208
+ };
209
+ };
210
+ /** @description Unauthorized */
211
+ 401: {
212
+ content: {
213
+ "application/json": components["schemas"]["ErrorEnvelope"];
214
+ "application/xml": components["schemas"]["ErrorEnvelope"];
215
+ };
216
+ };
217
+ };
218
+ };
219
+ };
220
+ "/api/v2/Me/Notifications": {
221
+ get: {
222
+ parameters: {
223
+ query?: {
224
+ "api-version"?: string;
225
+ };
226
+ };
227
+ responses: {
228
+ /** @description Success */
229
+ 200: {
230
+ content: {
231
+ "application/json": components["schemas"]["NotificationDtoListEnvelope"];
232
+ "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
233
+ };
234
+ };
235
+ /** @description Unauthorized */
236
+ 401: {
237
+ content: {
238
+ "application/json": components["schemas"]["ErrorEnvelope"];
239
+ "application/xml": components["schemas"]["ErrorEnvelope"];
240
+ };
241
+ };
242
+ };
243
+ };
244
+ };
245
+ "/api/v2/Me/Settings": {
246
+ get: {
247
+ parameters: {
248
+ query?: {
249
+ "api-version"?: string;
250
+ };
251
+ };
252
+ responses: {
253
+ /** @description Unauthorized */
254
+ 401: {
255
+ content: {
256
+ "application/json": components["schemas"]["ErrorEnvelope"];
257
+ "application/xml": components["schemas"]["ErrorEnvelope"];
258
+ };
259
+ };
260
+ };
261
+ };
262
+ };
263
+ "/api/v2/Me/Library": {
264
+ get: {
265
+ parameters: {
266
+ query?: {
267
+ "api-version"?: string;
268
+ };
269
+ };
270
+ responses: {
271
+ /** @description Success */
272
+ 200: {
273
+ content: never;
274
+ };
275
+ /** @description Unauthorized */
276
+ 401: {
277
+ content: {
278
+ "application/json": components["schemas"]["ErrorEnvelope"];
279
+ "application/xml": components["schemas"]["ErrorEnvelope"];
280
+ };
281
+ };
282
+ };
283
+ };
284
+ };
285
+ "/api/v2/Me/Addresses": {
286
+ get: {
287
+ parameters: {
288
+ query?: {
289
+ "api-version"?: string;
290
+ };
291
+ };
292
+ responses: {
293
+ /** @description Success */
294
+ 200: {
295
+ content: {
296
+ "application/json": components["schemas"]["AddressDtoListEnvelope"];
297
+ "application/xml": components["schemas"]["AddressDtoListEnvelope"];
298
+ };
299
+ };
300
+ /** @description Unauthorized */
301
+ 401: {
302
+ content: {
303
+ "application/json": components["schemas"]["ErrorEnvelope"];
304
+ "application/xml": components["schemas"]["ErrorEnvelope"];
305
+ };
306
+ };
307
+ };
308
+ };
309
+ };
310
+ "/api/v2/Me/Orders": {
311
+ get: {
312
+ parameters: {
313
+ query?: {
314
+ "api-version"?: string;
315
+ };
316
+ };
317
+ responses: {
318
+ /** @description Success */
319
+ 200: {
320
+ content: {
321
+ "application/json": components["schemas"]["OrderDtoListEnvelope"];
322
+ "application/xml": components["schemas"]["OrderDtoListEnvelope"];
323
+ };
324
+ };
325
+ /** @description Unauthorized */
326
+ 401: {
327
+ content: {
328
+ "application/json": components["schemas"]["ErrorEnvelope"];
329
+ "application/xml": components["schemas"]["ErrorEnvelope"];
330
+ };
331
+ };
332
+ };
333
+ };
334
+ };
335
+ "/api/v2/Me/Invoices": {
336
+ get: {
337
+ parameters: {
338
+ query?: {
339
+ "api-version"?: string;
340
+ };
341
+ };
342
+ responses: {
343
+ /** @description Success */
344
+ 200: {
345
+ content: {
346
+ "application/json": components["schemas"]["InvoiceDtoListEnvelope"];
347
+ "application/xml": components["schemas"]["InvoiceDtoListEnvelope"];
348
+ };
349
+ };
350
+ /** @description Unauthorized */
351
+ 401: {
352
+ content: {
353
+ "application/json": components["schemas"]["ErrorEnvelope"];
354
+ "application/xml": components["schemas"]["ErrorEnvelope"];
355
+ };
356
+ };
357
+ };
358
+ };
359
+ };
360
+ "/api/v2/Me/Payments": {
361
+ get: {
362
+ parameters: {
363
+ query?: {
364
+ "api-version"?: string;
365
+ };
366
+ };
367
+ responses: {
368
+ /** @description Success */
369
+ 200: {
370
+ content: {
371
+ "application/json": components["schemas"]["PaymentDtoListEnvelope"];
372
+ "application/xml": components["schemas"]["PaymentDtoListEnvelope"];
373
+ };
374
+ };
375
+ /** @description Unauthorized */
376
+ 401: {
377
+ content: {
378
+ "application/json": components["schemas"]["ErrorEnvelope"];
379
+ "application/xml": components["schemas"]["ErrorEnvelope"];
380
+ };
381
+ };
382
+ };
383
+ };
384
+ };
385
+ }
386
+
387
+ export type webhooks = Record<string, never>;
388
+
389
+ export interface components {
390
+ schemas: {
391
+ AddressDto: {
392
+ id?: string | null;
393
+ /** Format: date-time */
394
+ timestamp?: string | null;
395
+ title?: string | null;
396
+ business?: string | null;
397
+ email?: string | null;
398
+ phone?: string | null;
399
+ fax?: string | null;
400
+ address1?: string | null;
401
+ address2?: string | null;
402
+ address3?: string | null;
403
+ unit?: string | null;
404
+ cityId?: string | null;
405
+ countryStateId?: string | null;
406
+ postalCode?: string | null;
407
+ countryId?: string | null;
408
+ /** Format: double */
409
+ longitude?: number;
410
+ /** Format: double */
411
+ latitude?: number;
412
+ isRoutable?: boolean;
413
+ isGlobalPrimary?: boolean;
414
+ isCountryPrimary?: boolean;
415
+ canGenerateLabels?: boolean;
416
+ isDefaultSenderAddress?: boolean;
417
+ isDefaultReturnAddress?: boolean;
418
+ isDefaultSuppingLocation?: boolean;
419
+ };
420
+ AddressDtoListEnvelope: {
421
+ errorMessage?: string | null;
422
+ isSuccess?: boolean;
423
+ /** Format: date-time */
424
+ timestamp?: string;
425
+ activityId?: string | null;
426
+ correlationId?: string | null;
427
+ result?: components["schemas"]["AddressDto"][] | null;
428
+ };
429
+ CartDto: {
430
+ id?: string | null;
431
+ ip?: string | null;
432
+ type?: string | null;
433
+ /** Format: double */
434
+ total?: number;
435
+ /** Format: double */
436
+ taxes?: number;
437
+ /** Format: double */
438
+ freight?: number;
439
+ /** Format: double */
440
+ subTotal?: number;
441
+ currencyId?: string | null;
442
+ countryId?: string | null;
443
+ /** Format: int32 */
444
+ itemCartRecordsCount?: number | null;
445
+ /** Format: int32 */
446
+ itemToCompareRecordsCount?: number | null;
447
+ };
448
+ CartDtoEnvelope: {
449
+ errorMessage?: string | null;
450
+ isSuccess?: boolean;
451
+ /** Format: date-time */
452
+ timestamp?: string;
453
+ activityId?: string | null;
454
+ correlationId?: string | null;
455
+ result?: components["schemas"]["CartDto"];
456
+ };
457
+ ErrorEnvelope: {
458
+ errorMessage?: string | null;
459
+ isSuccess?: boolean;
460
+ /** Format: date-time */
461
+ timestamp?: string;
462
+ activityId?: string | null;
463
+ correlationId?: string | null;
464
+ };
465
+ FollowRecordDto: {
466
+ id?: string | null;
467
+ type?: string | null;
468
+ followerID?: string | null;
469
+ followedID?: string | null;
470
+ alerts?: boolean;
471
+ };
472
+ InvoiceDto: {
473
+ id?: string | null;
474
+ /** Format: date-time */
475
+ timestamp?: string | null;
476
+ orderID?: string | null;
477
+ businessID?: string | null;
478
+ /** Format: double */
479
+ forexRate?: number;
480
+ /** Format: double */
481
+ totalAmountInUsd?: number;
482
+ };
483
+ InvoiceDtoListEnvelope: {
484
+ errorMessage?: string | null;
485
+ isSuccess?: boolean;
486
+ /** Format: date-time */
487
+ timestamp?: string;
488
+ activityId?: string | null;
489
+ correlationId?: string | null;
490
+ result?: components["schemas"]["InvoiceDto"][] | null;
491
+ };
492
+ NotificationDto: {
493
+ id?: string | null;
494
+ /** Format: date-time */
495
+ timestamp?: string | null;
496
+ read?: boolean;
497
+ icon?: string | null;
498
+ message?: string | null;
499
+ redirectUrl?: string | null;
500
+ socialProfileID?: string | null;
501
+ /** Format: date-time */
502
+ readTimestamp?: string;
503
+ /** Format: date-time */
504
+ issuedTimestamp?: string;
505
+ };
506
+ NotificationDtoListEnvelope: {
507
+ errorMessage?: string | null;
508
+ isSuccess?: boolean;
509
+ /** Format: date-time */
510
+ timestamp?: string;
511
+ activityId?: string | null;
512
+ correlationId?: string | null;
513
+ result?: components["schemas"]["NotificationDto"][] | null;
514
+ };
515
+ OrderDto: {
516
+ id?: string | null;
517
+ /** Format: date-time */
518
+ timestamp?: string | null;
519
+ firstName?: string | null;
520
+ lastName?: string | null;
521
+ billingEmail?: string | null;
522
+ companyName?: string | null;
523
+ addressLine1?: string | null;
524
+ addressLine2?: string | null;
525
+ postalCode?: string | null;
526
+ countryId?: string | null;
527
+ countryStateId?: string | null;
528
+ cityId?: string | null;
529
+ customerNotes?: string | null;
530
+ businessId?: string | null;
531
+ currencyId?: string | null;
532
+ orderStatus?: string | null;
533
+ /** Format: double */
534
+ forexRate?: number;
535
+ /** Format: int32 */
536
+ orderLinesCount?: number;
537
+ /** Format: double */
538
+ totalAmountInUsd?: number;
539
+ /** Format: double */
540
+ totalTaxesInUsd?: number;
541
+ };
542
+ OrderDtoListEnvelope: {
543
+ errorMessage?: string | null;
544
+ isSuccess?: boolean;
545
+ /** Format: date-time */
546
+ timestamp?: string;
547
+ activityId?: string | null;
548
+ correlationId?: string | null;
549
+ result?: components["schemas"]["OrderDto"][] | null;
550
+ };
551
+ PaymentDto: {
552
+ id?: string | null;
553
+ /** Format: date-time */
554
+ timestamp?: string;
555
+ invoiceID?: string | null;
556
+ businessID?: string | null;
557
+ emisorWalletId?: string | null;
558
+ receptorWalletId?: string | null;
559
+ currencyID?: string | null;
560
+ /** Format: double */
561
+ forexRate?: number;
562
+ /** Format: double */
563
+ totalCost?: number;
564
+ /** Format: double */
565
+ totalTaxes?: number;
566
+ };
567
+ PaymentDtoListEnvelope: {
568
+ errorMessage?: string | null;
569
+ isSuccess?: boolean;
570
+ /** Format: date-time */
571
+ timestamp?: string;
572
+ activityId?: string | null;
573
+ correlationId?: string | null;
574
+ result?: components["schemas"]["PaymentDto"][] | null;
575
+ };
576
+ PlatformUserDto: {
577
+ id?: string | null;
578
+ /** Format: date-time */
579
+ timestamp?: string | null;
580
+ qualifiedName?: string | null;
581
+ /** Format: date-time */
582
+ birthday?: string;
583
+ firstName?: string | null;
584
+ lastName?: string | null;
585
+ publicName?: string | null;
586
+ idProvider?: string | null;
587
+ languageId?: string | null;
588
+ timezoneId?: string | null;
589
+ gender?: string | null;
590
+ cityId?: string | null;
591
+ stateId?: string | null;
592
+ email?: string | null;
593
+ about?: string | null;
594
+ jobTitle?: string | null;
595
+ coverUrl?: string | null;
596
+ avatarUrl?: string | null;
597
+ gitHubUrl?: string | null;
598
+ websiteUrl?: string | null;
599
+ twitterUrl?: string | null;
600
+ facebookUrl?: string | null;
601
+ youTubeUrl?: string | null;
602
+ linkedInUrl?: string | null;
603
+ instagramUrl?: string | null;
604
+ lockoutEnabled?: boolean;
605
+ socialFeedId?: string | null;
606
+ socialProfileId?: string | null;
607
+ currentTenantId?: string | null;
608
+ currentEnrollmentId?: string | null;
609
+ cartId?: string | null;
610
+ walletId?: string | null;
611
+ countryId?: string | null;
612
+ currencyId?: string | null;
613
+ userName?: string | null;
614
+ status?: string | null;
615
+ phoneNumber?: string | null;
616
+ publicIdentifier?: string | null;
617
+ identityProvider?: string | null;
618
+ phoneNumberConfirmed?: boolean;
619
+ emailConfirmed?: boolean;
620
+ /**
621
+ * Format: int32
622
+ * @enum {integer}
623
+ */
624
+ themeMode?: 0 | 1 | 2;
625
+ /**
626
+ * Format: int32
627
+ * @enum {integer}
628
+ */
629
+ availability?: 0 | 1 | 2 | 3 | 4;
630
+ /** Format: int32 */
631
+ followsCount?: number | null;
632
+ /** Format: int32 */
633
+ followersCount?: number | null;
634
+ /** Format: int32 */
635
+ enrollmentsCount?: number | null;
636
+ /** Format: int32 */
637
+ socialPostsCount?: number | null;
638
+ /** Format: int32 */
639
+ unreadMessagesCount?: number | null;
640
+ /** Format: int32 */
641
+ unreadNotificationsCount?: number | null;
642
+ webUrl?: string | null;
643
+ countryStateId?: string | null;
644
+ selectedBusinessId?: string | null;
645
+ };
646
+ PlatformUserDtoEnvelope: {
647
+ errorMessage?: string | null;
648
+ isSuccess?: boolean;
649
+ /** Format: date-time */
650
+ timestamp?: string;
651
+ activityId?: string | null;
652
+ correlationId?: string | null;
653
+ result?: components["schemas"]["PlatformUserDto"];
654
+ };
655
+ SocialProfileDto: {
656
+ id?: string | null;
657
+ /** Format: date-time */
658
+ timestamp?: string | null;
659
+ /**
660
+ * Format: int32
661
+ * @enum {integer}
662
+ */
663
+ type?: 0 | 1 | 2 | 3;
664
+ name?: string | null;
665
+ about?: string | null;
666
+ cover?: string | null;
667
+ avatar?: string | null;
668
+ country?: string | null;
669
+ /** Format: int32 */
670
+ followsCount?: number | null;
671
+ /** Format: int32 */
672
+ messagesCount?: number | null;
673
+ /** Format: int32 */
674
+ followersCount?: number | null;
675
+ /** Format: int32 */
676
+ notificationsCount?: number | null;
677
+ /** Format: int32 */
678
+ unreadNotificationsCount?: number | null;
679
+ /** Format: int32 */
680
+ unreadMessagesCount?: number | null;
681
+ socialFeedId?: string | null;
682
+ twitterUrl?: string | null;
683
+ facebookURL?: string | null;
684
+ linkedInURL?: string | null;
685
+ youtubeURL?: string | null;
686
+ githubURL?: string | null;
687
+ pinterestURL?: string | null;
688
+ dribbleURL?: string | null;
689
+ domain?: string | null;
690
+ notes?: string | null;
691
+ };
692
+ SocialProfileDtoEnvelope: {
693
+ errorMessage?: string | null;
694
+ isSuccess?: boolean;
695
+ /** Format: date-time */
696
+ timestamp?: string;
697
+ activityId?: string | null;
698
+ correlationId?: string | null;
699
+ result?: components["schemas"]["SocialProfileDto"];
700
+ };
701
+ TenantDto: {
702
+ id?: string | null;
703
+ /** Format: date-time */
704
+ timestamp?: string | null;
705
+ qualifiedName?: string | null;
706
+ taxId?: string | null;
707
+ about?: string | null;
708
+ walletId?: string | null;
709
+ socialFeedId?: string | null;
710
+ businessIndustryId?: string | null;
711
+ businessSegmentId?: string | null;
712
+ socialProfileId?: string | null;
713
+ languageId?: string | null;
714
+ name?: string | null;
715
+ duns?: string | null;
716
+ slogan?: string | null;
717
+ legalName?: string | null;
718
+ coverUrl?: string | null;
719
+ avatarUrl?: string | null;
720
+ cartId?: string | null;
721
+ currencyId?: string | null;
722
+ timezoneId?: string | null;
723
+ countryId?: string | null;
724
+ countryStateId?: string | null;
725
+ cityId?: string | null;
726
+ /** Format: double */
727
+ reviewsAvg?: number | null;
728
+ /** Format: int32 */
729
+ reviewsCount?: number | null;
730
+ /** Format: int32 */
731
+ followsCount?: number | null;
732
+ /** Format: int32 */
733
+ followersCount?: number | null;
734
+ /** Format: int32 */
735
+ enrollmentsCount?: number | null;
736
+ /** Format: int32 */
737
+ socialPostsCount?: number | null;
738
+ /** Format: int32 */
739
+ unreadMessagesCount?: number | null;
740
+ /** Format: int32 */
741
+ unreadNotificationsCount?: number | null;
742
+ enrollmentID?: string | null;
743
+ email?: string | null;
744
+ phone?: string | null;
745
+ webUrl?: string | null;
746
+ facebookUrl?: string | null;
747
+ twitterUrl?: string | null;
748
+ gitHubUrl?: string | null;
749
+ linkedInUrl?: string | null;
750
+ instagramUrl?: string | null;
751
+ youTubeUrl?: string | null;
752
+ whatsAppNumber?: string | null;
753
+ supportPhoneNumber?: string | null;
754
+ verified?: boolean;
755
+ businessName?: string | null;
756
+ businessLegalName?: string | null;
757
+ twitterUsername?: string | null;
758
+ };
759
+ TenantDtoListEnvelope: {
760
+ errorMessage?: string | null;
761
+ isSuccess?: boolean;
762
+ /** Format: date-time */
763
+ timestamp?: string;
764
+ activityId?: string | null;
765
+ correlationId?: string | null;
766
+ result?: components["schemas"]["TenantDto"][] | null;
767
+ };
768
+ TenantEnrollmentDto: {
769
+ id?: string | null;
770
+ isRoot?: boolean;
771
+ isOwner?: boolean;
772
+ isAdmin?: boolean;
773
+ isDisabled?: boolean;
774
+ tenantId?: string | null;
775
+ userId?: string | null;
776
+ };
777
+ TenantEnrollmentDtoListEnvelope: {
778
+ errorMessage?: string | null;
779
+ isSuccess?: boolean;
780
+ /** Format: date-time */
781
+ timestamp?: string;
782
+ activityId?: string | null;
783
+ correlationId?: string | null;
784
+ result?: components["schemas"]["TenantEnrollmentDto"][] | null;
785
+ };
786
+ WalletDto: {
787
+ id?: string | null;
788
+ /** Format: date-time */
789
+ timestamp?: string;
790
+ /** Format: double */
791
+ balance?: number;
792
+ /** Format: double */
793
+ cryptoBalance?: number;
794
+ testMode?: boolean;
795
+ verified?: boolean;
796
+ type?: string | null;
797
+ currencyId?: string | null;
798
+ /** Format: double */
799
+ forexRate?: number;
800
+ /** Format: double */
801
+ balanceInUsd?: number;
802
+ /** Format: double */
803
+ mainNetEtherBalance?: number;
804
+ ethereumAddress?: string | null;
805
+ ethereumPublicKey?: string | null;
806
+ ethereumPrivateKey?: string | null;
807
+ /** Format: double */
808
+ rollingReservePercent?: number;
809
+ };
810
+ WalletDtoEnvelope: {
811
+ errorMessage?: string | null;
812
+ isSuccess?: boolean;
813
+ /** Format: date-time */
814
+ timestamp?: string;
815
+ activityId?: string | null;
816
+ correlationId?: string | null;
817
+ result?: components["schemas"]["WalletDto"];
818
+ };
819
+ };
820
+ responses: never;
821
+ parameters: never;
822
+ requestBodies: never;
823
+ headers: never;
824
+ pathItems: never;
825
+ }
826
+
827
+ export type $defs = Record<string, never>;
828
+
829
+ export type external = Record<string, never>;
830
+
831
+ export type operations = Record<string, never>;