@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
@@ -0,0 +1,804 @@
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/CrmService/Contacts": {
9
+ /** Get all business owned contacts */
10
+ get: {
11
+ parameters: {
12
+ query: {
13
+ /** @description The ID of the tenant to get the contacts for */
14
+ tenantId: string;
15
+ "api-version"?: string;
16
+ };
17
+ };
18
+ responses: {
19
+ /** @description Success */
20
+ 200: {
21
+ content: {
22
+ "application/json": components["schemas"]["ContactDtoListEnvelope"];
23
+ "application/xml": components["schemas"]["ContactDtoListEnvelope"];
24
+ };
25
+ };
26
+ /** @description Unauthorized */
27
+ 401: {
28
+ content: {
29
+ "application/json": components["schemas"]["ErrorEnvelope"];
30
+ "application/xml": components["schemas"]["ErrorEnvelope"];
31
+ };
32
+ };
33
+ /** @description Forbidden */
34
+ 403: {
35
+ content: {
36
+ "application/json": components["schemas"]["ErrorEnvelope"];
37
+ "application/xml": components["schemas"]["ErrorEnvelope"];
38
+ };
39
+ };
40
+ };
41
+ };
42
+ };
43
+ "/api/v2/CrmService/Contacts/{contactId}": {
44
+ /** Get a contact by ID */
45
+ get: {
46
+ parameters: {
47
+ query: {
48
+ /** @description The ID of the tenant to get the contacts for */
49
+ tenantId: string;
50
+ "api-version"?: string;
51
+ };
52
+ path: {
53
+ contactId: string;
54
+ };
55
+ };
56
+ responses: {
57
+ /** @description Success */
58
+ 200: {
59
+ content: {
60
+ "application/json": components["schemas"]["ContactDtoEnvelope"];
61
+ "application/xml": components["schemas"]["ContactDtoEnvelope"];
62
+ };
63
+ };
64
+ /** @description Unauthorized */
65
+ 401: {
66
+ content: {
67
+ "application/json": components["schemas"]["ErrorEnvelope"];
68
+ "application/xml": components["schemas"]["ErrorEnvelope"];
69
+ };
70
+ };
71
+ /** @description Forbidden */
72
+ 403: {
73
+ content: {
74
+ "application/json": components["schemas"]["ErrorEnvelope"];
75
+ "application/xml": components["schemas"]["ErrorEnvelope"];
76
+ };
77
+ };
78
+ };
79
+ };
80
+ };
81
+ "/api/v2/CrmService/Contacts/Individuals": {
82
+ /** Get all contacts of type individual */
83
+ get: {
84
+ parameters: {
85
+ query: {
86
+ /** @description The ID of the tenant to get the contacts for */
87
+ tenantId: string;
88
+ "api-version"?: string;
89
+ };
90
+ };
91
+ responses: {
92
+ /** @description Success */
93
+ 200: {
94
+ content: {
95
+ "application/json": components["schemas"]["ContactDtoListEnvelope"];
96
+ "application/xml": components["schemas"]["ContactDtoListEnvelope"];
97
+ };
98
+ };
99
+ /** @description Unauthorized */
100
+ 401: {
101
+ content: {
102
+ "application/json": components["schemas"]["ErrorEnvelope"];
103
+ "application/xml": components["schemas"]["ErrorEnvelope"];
104
+ };
105
+ };
106
+ /** @description Forbidden */
107
+ 403: {
108
+ content: {
109
+ "application/json": components["schemas"]["ErrorEnvelope"];
110
+ "application/xml": components["schemas"]["ErrorEnvelope"];
111
+ };
112
+ };
113
+ };
114
+ };
115
+ };
116
+ "/api/v2/CrmService/Contacts/Individual/{contactId}": {
117
+ /** Get a Contact of type Individual by ID. */
118
+ get: {
119
+ parameters: {
120
+ query: {
121
+ /** @description The ID of the tenant to get the contact for */
122
+ tenantId: string;
123
+ "api-version"?: string;
124
+ };
125
+ path: {
126
+ contactId: string;
127
+ };
128
+ };
129
+ responses: {
130
+ /** @description Success */
131
+ 200: {
132
+ content: {
133
+ "application/json": components["schemas"]["ContactDtoEnvelope"];
134
+ "application/xml": components["schemas"]["ContactDtoEnvelope"];
135
+ };
136
+ };
137
+ /** @description Unauthorized */
138
+ 401: {
139
+ content: {
140
+ "application/json": components["schemas"]["ErrorEnvelope"];
141
+ "application/xml": components["schemas"]["ErrorEnvelope"];
142
+ };
143
+ };
144
+ /** @description Forbidden */
145
+ 403: {
146
+ content: {
147
+ "application/json": components["schemas"]["ErrorEnvelope"];
148
+ "application/xml": components["schemas"]["ErrorEnvelope"];
149
+ };
150
+ };
151
+ /** @description Not Found */
152
+ 404: {
153
+ content: {
154
+ "application/json": components["schemas"]["ErrorEnvelope"];
155
+ "application/xml": components["schemas"]["ErrorEnvelope"];
156
+ };
157
+ };
158
+ };
159
+ };
160
+ };
161
+ "/api/v2/CrmService/Contacts/Organizations": {
162
+ /** Get all contacts of type organization */
163
+ get: {
164
+ parameters: {
165
+ query: {
166
+ /** @description The ID of the tenant to get the contacts for */
167
+ tenantId: string;
168
+ "api-version"?: string;
169
+ };
170
+ };
171
+ responses: {
172
+ /** @description Success */
173
+ 200: {
174
+ content: {
175
+ "application/json": components["schemas"]["ContactDtoListEnvelope"];
176
+ "application/xml": components["schemas"]["ContactDtoListEnvelope"];
177
+ };
178
+ };
179
+ /** @description Unauthorized */
180
+ 401: {
181
+ content: {
182
+ "application/json": components["schemas"]["ErrorEnvelope"];
183
+ "application/xml": components["schemas"]["ErrorEnvelope"];
184
+ };
185
+ };
186
+ /** @description Forbidden */
187
+ 403: {
188
+ content: {
189
+ "application/json": components["schemas"]["ErrorEnvelope"];
190
+ "application/xml": components["schemas"]["ErrorEnvelope"];
191
+ };
192
+ };
193
+ };
194
+ };
195
+ };
196
+ "/api/v2/CrmService/Contacts/Organization/{contactId}": {
197
+ /** Get a Contact of type Organization by ID. */
198
+ get: {
199
+ parameters: {
200
+ query: {
201
+ /** @description The ID of the tenant to get the contacts for */
202
+ tenantId: string;
203
+ "api-version"?: string;
204
+ };
205
+ path: {
206
+ contactId: string;
207
+ };
208
+ };
209
+ responses: {
210
+ /** @description Success */
211
+ 200: {
212
+ content: {
213
+ "application/json": components["schemas"]["ContactDtoEnvelope"];
214
+ "application/xml": components["schemas"]["ContactDtoEnvelope"];
215
+ };
216
+ };
217
+ /** @description Unauthorized */
218
+ 401: {
219
+ content: {
220
+ "application/json": components["schemas"]["ErrorEnvelope"];
221
+ "application/xml": components["schemas"]["ErrorEnvelope"];
222
+ };
223
+ };
224
+ /** @description Forbidden */
225
+ 403: {
226
+ content: {
227
+ "application/json": components["schemas"]["ErrorEnvelope"];
228
+ "application/xml": components["schemas"]["ErrorEnvelope"];
229
+ };
230
+ };
231
+ /** @description Not Found */
232
+ 404: {
233
+ content: {
234
+ "application/json": components["schemas"]["ErrorEnvelope"];
235
+ "application/xml": components["schemas"]["ErrorEnvelope"];
236
+ };
237
+ };
238
+ };
239
+ };
240
+ };
241
+ "/api/v2/CrmService/Contacts/{contactId}/Cart": {
242
+ /** Get a contact's cart */
243
+ get: {
244
+ parameters: {
245
+ query: {
246
+ /** @description The ID of the tenant to get the contacts for */
247
+ tenantId: string;
248
+ "api-version"?: string;
249
+ };
250
+ path: {
251
+ contactId: string;
252
+ };
253
+ };
254
+ responses: {
255
+ /** @description Success */
256
+ 200: {
257
+ content: {
258
+ "application/json": components["schemas"]["CartDtoEnvelope"];
259
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
260
+ };
261
+ };
262
+ /** @description Unauthorized */
263
+ 401: {
264
+ content: {
265
+ "application/json": components["schemas"]["ErrorEnvelope"];
266
+ "application/xml": components["schemas"]["ErrorEnvelope"];
267
+ };
268
+ };
269
+ /** @description Forbidden */
270
+ 403: {
271
+ content: {
272
+ "application/json": components["schemas"]["ErrorEnvelope"];
273
+ "application/xml": components["schemas"]["ErrorEnvelope"];
274
+ };
275
+ };
276
+ /** @description Not Found */
277
+ 404: {
278
+ content: {
279
+ "application/json": components["schemas"]["ErrorEnvelope"];
280
+ "application/xml": components["schemas"]["ErrorEnvelope"];
281
+ };
282
+ };
283
+ };
284
+ };
285
+ };
286
+ "/api/v2/CrmService/Contacts/{contactId}/Wallet": {
287
+ /** Get a contact's wallet */
288
+ get: {
289
+ parameters: {
290
+ query: {
291
+ /** @description The ID of the tenant to get the contacts for */
292
+ tenantId: string;
293
+ "api-version"?: string;
294
+ };
295
+ path: {
296
+ contactId: string;
297
+ };
298
+ };
299
+ responses: {
300
+ /** @description Success */
301
+ 200: {
302
+ content: {
303
+ "application/json": components["schemas"]["WalletDtoEnvelope"];
304
+ "application/xml": components["schemas"]["WalletDtoEnvelope"];
305
+ };
306
+ };
307
+ /** @description Unauthorized */
308
+ 401: {
309
+ content: {
310
+ "application/json": components["schemas"]["ErrorEnvelope"];
311
+ "application/xml": components["schemas"]["ErrorEnvelope"];
312
+ };
313
+ };
314
+ /** @description Forbidden */
315
+ 403: {
316
+ content: {
317
+ "application/json": components["schemas"]["ErrorEnvelope"];
318
+ "application/xml": components["schemas"]["ErrorEnvelope"];
319
+ };
320
+ };
321
+ /** @description Not Found */
322
+ 404: {
323
+ content: {
324
+ "application/json": components["schemas"]["ErrorEnvelope"];
325
+ "application/xml": components["schemas"]["ErrorEnvelope"];
326
+ };
327
+ };
328
+ };
329
+ };
330
+ };
331
+ "/api/v2/CrmService/Contacts/{contactId}/SocialProfile": {
332
+ /** Get a contact's social profile */
333
+ get: {
334
+ parameters: {
335
+ query: {
336
+ /** @description The ID of the tenant to get the contacts for */
337
+ tenantId: string;
338
+ "api-version"?: string;
339
+ };
340
+ path: {
341
+ contactId: string;
342
+ };
343
+ };
344
+ responses: {
345
+ /** @description Success */
346
+ 200: {
347
+ content: {
348
+ "application/json": components["schemas"]["SocialProfileDtoEnvelope"];
349
+ "application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
350
+ };
351
+ };
352
+ /** @description Unauthorized */
353
+ 401: {
354
+ content: {
355
+ "application/json": components["schemas"]["ErrorEnvelope"];
356
+ "application/xml": components["schemas"]["ErrorEnvelope"];
357
+ };
358
+ };
359
+ /** @description Forbidden */
360
+ 403: {
361
+ content: {
362
+ "application/json": components["schemas"]["ErrorEnvelope"];
363
+ "application/xml": components["schemas"]["ErrorEnvelope"];
364
+ };
365
+ };
366
+ /** @description Not Found */
367
+ 404: {
368
+ content: {
369
+ "application/json": components["schemas"]["ErrorEnvelope"];
370
+ "application/xml": components["schemas"]["ErrorEnvelope"];
371
+ };
372
+ };
373
+ };
374
+ };
375
+ };
376
+ "/api/v2/CrmService/Contacts/Organizations/Upsert": {
377
+ /** Upsert a tenant onto another tenant's contact list */
378
+ post: {
379
+ parameters: {
380
+ query: {
381
+ /** @description The ID of the tenant to upsert the contact to */
382
+ tenantId: string;
383
+ /** @description The ID of the tenant to upsert */
384
+ relatedTenantId: string;
385
+ "api-version"?: string;
386
+ };
387
+ };
388
+ responses: {
389
+ /** @description Success */
390
+ 200: {
391
+ content: {
392
+ "application/json": components["schemas"]["ContactDtoEnvelope"];
393
+ "application/xml": components["schemas"]["ContactDtoEnvelope"];
394
+ };
395
+ };
396
+ /** @description Unauthorized */
397
+ 401: {
398
+ content: {
399
+ "application/json": components["schemas"]["ErrorEnvelope"];
400
+ "application/xml": components["schemas"]["ErrorEnvelope"];
401
+ };
402
+ };
403
+ /** @description Forbidden */
404
+ 403: {
405
+ content: {
406
+ "application/json": components["schemas"]["ErrorEnvelope"];
407
+ "application/xml": components["schemas"]["ErrorEnvelope"];
408
+ };
409
+ };
410
+ };
411
+ };
412
+ };
413
+ "/api/v2/CrmService/Contacts/Individuals/Upsert": {
414
+ /** Upsert a user onto a tenant's contact list */
415
+ post: {
416
+ parameters: {
417
+ query: {
418
+ /** @description The ID of the tenant to upsert the contact to */
419
+ tenantId: string;
420
+ /** @description The ID of the user to upsert */
421
+ relatedUserId: string;
422
+ "api-version"?: string;
423
+ };
424
+ };
425
+ responses: {
426
+ /** @description Success */
427
+ 200: {
428
+ content: {
429
+ "application/json": components["schemas"]["ContactDtoEnvelope"];
430
+ "application/xml": components["schemas"]["ContactDtoEnvelope"];
431
+ };
432
+ };
433
+ /** @description Unauthorized */
434
+ 401: {
435
+ content: {
436
+ "application/json": components["schemas"]["ErrorEnvelope"];
437
+ "application/xml": components["schemas"]["ErrorEnvelope"];
438
+ };
439
+ };
440
+ /** @description Forbidden */
441
+ 403: {
442
+ content: {
443
+ "application/json": components["schemas"]["ErrorEnvelope"];
444
+ "application/xml": components["schemas"]["ErrorEnvelope"];
445
+ };
446
+ };
447
+ };
448
+ };
449
+ };
450
+ "/api/v2/CrmService/Sync": {
451
+ /** Sync the current user into a tenant's contact list. */
452
+ post: {
453
+ parameters: {
454
+ query?: {
455
+ /** @description The id of the record owner tenant. */
456
+ tenantId?: string;
457
+ "api-version"?: string;
458
+ };
459
+ };
460
+ responses: {
461
+ /** @description Success */
462
+ 200: {
463
+ content: {
464
+ "application/json": components["schemas"]["ContactDtoListEnvelope"];
465
+ "application/xml": components["schemas"]["ContactDtoListEnvelope"];
466
+ };
467
+ };
468
+ /** @description Unauthorized */
469
+ 401: {
470
+ content: {
471
+ "application/json": components["schemas"]["ErrorEnvelope"];
472
+ "application/xml": components["schemas"]["ErrorEnvelope"];
473
+ };
474
+ };
475
+ /** @description Forbidden */
476
+ 403: {
477
+ content: {
478
+ "application/json": components["schemas"]["ErrorEnvelope"];
479
+ "application/xml": components["schemas"]["ErrorEnvelope"];
480
+ };
481
+ };
482
+ };
483
+ };
484
+ };
485
+ "/api/v2/CrmService/Sync/Me": {
486
+ /** Sync the user into a tenant's contact list. */
487
+ post: {
488
+ parameters: {
489
+ query: {
490
+ /** @description The id of the record owner tenant. */
491
+ tenantId: string;
492
+ "api-version"?: string;
493
+ };
494
+ };
495
+ responses: {
496
+ /** @description Success */
497
+ 200: {
498
+ content: {
499
+ "application/json": components["schemas"]["ContactDtoListEnvelope"];
500
+ "application/xml": components["schemas"]["ContactDtoListEnvelope"];
501
+ };
502
+ };
503
+ /** @description Unauthorized */
504
+ 401: {
505
+ content: {
506
+ "application/json": components["schemas"]["ErrorEnvelope"];
507
+ "application/xml": components["schemas"]["ErrorEnvelope"];
508
+ };
509
+ };
510
+ /** @description Forbidden */
511
+ 403: {
512
+ content: {
513
+ "application/json": components["schemas"]["ErrorEnvelope"];
514
+ "application/xml": components["schemas"]["ErrorEnvelope"];
515
+ };
516
+ };
517
+ };
518
+ };
519
+ };
520
+ "/api/v2/CrmService/Sync/User": {
521
+ /** Sync a user into a tenant's contact list. */
522
+ post: {
523
+ parameters: {
524
+ query: {
525
+ /** @description The id of the record owner tenant. */
526
+ tenantId: string;
527
+ /** @description The id of the user to sync against the owner tenant's contact list. */
528
+ relatedUserId: string;
529
+ "api-version"?: string;
530
+ };
531
+ };
532
+ responses: {
533
+ /** @description Success */
534
+ 200: {
535
+ content: {
536
+ "application/json": components["schemas"]["ContactDtoListEnvelope"];
537
+ "application/xml": components["schemas"]["ContactDtoListEnvelope"];
538
+ };
539
+ };
540
+ /** @description Unauthorized */
541
+ 401: {
542
+ content: {
543
+ "application/json": components["schemas"]["ErrorEnvelope"];
544
+ "application/xml": components["schemas"]["ErrorEnvelope"];
545
+ };
546
+ };
547
+ /** @description Forbidden */
548
+ 403: {
549
+ content: {
550
+ "application/json": components["schemas"]["ErrorEnvelope"];
551
+ "application/xml": components["schemas"]["ErrorEnvelope"];
552
+ };
553
+ };
554
+ };
555
+ };
556
+ };
557
+ "/api/v2/CrmService/Sync/Tenant": {
558
+ /** Sync a tenant into another tenant's contact list. */
559
+ post: {
560
+ parameters: {
561
+ query: {
562
+ /** @description The id of the record owner tenant. */
563
+ tenantId: string;
564
+ /** @description The id of the tenant to sync against the owner tenant's contact list. */
565
+ relatedTenantId: string;
566
+ "api-version"?: string;
567
+ };
568
+ };
569
+ responses: {
570
+ /** @description Success */
571
+ 200: {
572
+ content: {
573
+ "application/json": components["schemas"]["EmptyEnvelope"];
574
+ "application/xml": components["schemas"]["EmptyEnvelope"];
575
+ };
576
+ };
577
+ /** @description Unauthorized */
578
+ 401: {
579
+ content: {
580
+ "application/json": components["schemas"]["ErrorEnvelope"];
581
+ "application/xml": components["schemas"]["ErrorEnvelope"];
582
+ };
583
+ };
584
+ /** @description Forbidden */
585
+ 403: {
586
+ content: {
587
+ "application/json": components["schemas"]["ErrorEnvelope"];
588
+ "application/xml": components["schemas"]["ErrorEnvelope"];
589
+ };
590
+ };
591
+ };
592
+ };
593
+ };
594
+ }
595
+
596
+ export type webhooks = Record<string, never>;
597
+
598
+ export interface components {
599
+ schemas: {
600
+ CartDto: {
601
+ id?: string | null;
602
+ ip?: string | null;
603
+ type?: string | null;
604
+ /** Format: double */
605
+ total?: number;
606
+ /** Format: double */
607
+ taxes?: number;
608
+ /** Format: double */
609
+ freight?: number;
610
+ /** Format: double */
611
+ subTotal?: number;
612
+ currencyId?: string | null;
613
+ countryId?: string | null;
614
+ /** Format: int32 */
615
+ itemCartRecordsCount?: number | null;
616
+ /** Format: int32 */
617
+ itemToCompareRecordsCount?: number | null;
618
+ };
619
+ CartDtoEnvelope: {
620
+ errorMessage?: string | null;
621
+ isSuccess?: boolean;
622
+ /** Format: date-time */
623
+ timestamp?: string;
624
+ activityId?: string | null;
625
+ correlationId?: string | null;
626
+ result?: components["schemas"]["CartDto"];
627
+ };
628
+ ContactDto: {
629
+ id?: string | null;
630
+ /** Format: date-time */
631
+ timestamp?: string | null;
632
+ /**
633
+ * Format: int32
634
+ * @enum {integer}
635
+ */
636
+ type?: 0 | 1;
637
+ taxId?: string | null;
638
+ firstName?: string | null;
639
+ lastName?: string | null;
640
+ primaryContactId?: string | null;
641
+ qualifiedName?: string | null;
642
+ email?: string | null;
643
+ about?: string | null;
644
+ mobilePhone?: string | null;
645
+ businessPhone?: string | null;
646
+ avatar?: string | null;
647
+ jobTitle?: string | null;
648
+ avatarUrl?: string | null;
649
+ coverUrl?: string | null;
650
+ websiteUrl?: string | null;
651
+ facebookUrl?: string | null;
652
+ twitterUrl?: string | null;
653
+ youtubeUrl?: string | null;
654
+ linkedInUrl?: string | null;
655
+ githubUsername?: string | null;
656
+ street?: string | null;
657
+ zipCode?: string | null;
658
+ cartId?: string | null;
659
+ walletId?: string | null;
660
+ cityId?: string | null;
661
+ countryStateId?: string | null;
662
+ countryId?: string | null;
663
+ languageId?: string | null;
664
+ currencyId?: string | null;
665
+ timezoneId?: string | null;
666
+ territoryId?: string | null;
667
+ enrollmentId?: string | null;
668
+ /** Format: double */
669
+ walletBalance?: number | null;
670
+ ownerContactId?: string | null;
671
+ ownerTenantId?: string | null;
672
+ relatedTenantId?: string | null;
673
+ activityFeedId?: string | null;
674
+ parentContactId?: string | null;
675
+ socialProfileId?: string | null;
676
+ activeDirectoryId?: string | null;
677
+ identityProvider?: string | null;
678
+ identityProviderAccessToken?: string | null;
679
+ };
680
+ ContactDtoEnvelope: {
681
+ errorMessage?: string | null;
682
+ isSuccess?: boolean;
683
+ /** Format: date-time */
684
+ timestamp?: string;
685
+ activityId?: string | null;
686
+ correlationId?: string | null;
687
+ result?: components["schemas"]["ContactDto"];
688
+ };
689
+ ContactDtoListEnvelope: {
690
+ errorMessage?: string | null;
691
+ isSuccess?: boolean;
692
+ /** Format: date-time */
693
+ timestamp?: string;
694
+ activityId?: string | null;
695
+ correlationId?: string | null;
696
+ result?: components["schemas"]["ContactDto"][] | null;
697
+ };
698
+ EmptyEnvelope: {
699
+ errorMessage?: string | null;
700
+ isSuccess?: boolean;
701
+ /** Format: date-time */
702
+ timestamp?: string;
703
+ activityId?: string | null;
704
+ };
705
+ ErrorEnvelope: {
706
+ errorMessage?: string | null;
707
+ isSuccess?: boolean;
708
+ /** Format: date-time */
709
+ timestamp?: string;
710
+ activityId?: string | null;
711
+ correlationId?: string | null;
712
+ };
713
+ SocialProfileDto: {
714
+ id?: string | null;
715
+ /** Format: date-time */
716
+ timestamp?: string | null;
717
+ /**
718
+ * Format: int32
719
+ * @enum {integer}
720
+ */
721
+ type?: 0 | 1 | 2 | 3;
722
+ name?: string | null;
723
+ about?: string | null;
724
+ cover?: string | null;
725
+ avatar?: string | null;
726
+ country?: string | null;
727
+ /** Format: int32 */
728
+ followsCount?: number | null;
729
+ /** Format: int32 */
730
+ messagesCount?: number | null;
731
+ /** Format: int32 */
732
+ followersCount?: number | null;
733
+ /** Format: int32 */
734
+ notificationsCount?: number | null;
735
+ /** Format: int32 */
736
+ unreadNotificationsCount?: number | null;
737
+ /** Format: int32 */
738
+ unreadMessagesCount?: number | null;
739
+ socialFeedId?: string | null;
740
+ twitterUrl?: string | null;
741
+ facebookURL?: string | null;
742
+ linkedInURL?: string | null;
743
+ youtubeURL?: string | null;
744
+ githubURL?: string | null;
745
+ pinterestURL?: string | null;
746
+ dribbleURL?: string | null;
747
+ domain?: string | null;
748
+ notes?: string | null;
749
+ };
750
+ SocialProfileDtoEnvelope: {
751
+ errorMessage?: string | null;
752
+ isSuccess?: boolean;
753
+ /** Format: date-time */
754
+ timestamp?: string;
755
+ activityId?: string | null;
756
+ correlationId?: string | null;
757
+ result?: components["schemas"]["SocialProfileDto"];
758
+ };
759
+ WalletDto: {
760
+ id?: string | null;
761
+ /** Format: date-time */
762
+ timestamp?: string;
763
+ /** Format: double */
764
+ balance?: number;
765
+ /** Format: double */
766
+ cryptoBalance?: number;
767
+ testMode?: boolean;
768
+ verified?: boolean;
769
+ type?: string | null;
770
+ currencyId?: string | null;
771
+ /** Format: double */
772
+ forexRate?: number;
773
+ /** Format: double */
774
+ balanceInUsd?: number;
775
+ /** Format: double */
776
+ mainNetEtherBalance?: number;
777
+ ethereumAddress?: string | null;
778
+ ethereumPublicKey?: string | null;
779
+ ethereumPrivateKey?: string | null;
780
+ /** Format: double */
781
+ rollingReservePercent?: number;
782
+ };
783
+ WalletDtoEnvelope: {
784
+ errorMessage?: string | null;
785
+ isSuccess?: boolean;
786
+ /** Format: date-time */
787
+ timestamp?: string;
788
+ activityId?: string | null;
789
+ correlationId?: string | null;
790
+ result?: components["schemas"]["WalletDto"];
791
+ };
792
+ };
793
+ responses: never;
794
+ parameters: never;
795
+ requestBodies: never;
796
+ headers: never;
797
+ pathItems: never;
798
+ }
799
+
800
+ export type $defs = Record<string, never>;
801
+
802
+ export type external = Record<string, never>;
803
+
804
+ export type operations = Record<string, never>;