@fenixalliance/abs-api-client 1.0.7 → 1.0.9

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 (874) hide show
  1. package/clients/accountingService/index.js +1 -4
  2. package/clients/accountingService/index.ts +0 -13
  3. package/clients/cartService/index.js +1 -3
  4. package/clients/cartService/index.ts +0 -13
  5. package/clients/catalogService/index.js +1 -3
  6. package/clients/catalogService/index.ts +0 -13
  7. package/clients/contentService/index.js +1 -3
  8. package/clients/contentService/index.ts +2 -15
  9. package/clients/contentService/models/{Portal.ts → PortalSettings.ts} +1 -1
  10. package/clients/contentService/models/PortalSettingsEnvelope.ts +14 -0
  11. package/clients/contentService/services/PortalsService.js +1 -1
  12. package/clients/contentService/services/PortalsService.ts +3 -3
  13. package/clients/crmService/index.js +1 -3
  14. package/clients/crmService/index.ts +0 -13
  15. package/clients/dealsService/index.js +1 -3
  16. package/clients/dealsService/index.ts +0 -13
  17. package/clients/forexService/index.js +1 -3
  18. package/clients/forexService/index.ts +0 -13
  19. package/clients/globeService/index.js +1 -3
  20. package/clients/globeService/index.ts +0 -13
  21. package/clients/holderService/index.js +1 -3
  22. package/clients/holderService/index.ts +1 -13
  23. package/clients/holderService/models/FollowRecordDtoListEnvelope.ts +14 -0
  24. package/clients/holderService/services/HolderService.js +56 -30
  25. package/clients/holderService/services/HolderService.ts +62 -36
  26. package/clients/hrmsService/index.js +1 -3
  27. package/clients/hrmsService/index.ts +0 -13
  28. package/clients/identityService/index.js +1 -3
  29. package/clients/identityService/index.ts +0 -13
  30. package/clients/inventoryService/index.js +1 -3
  31. package/clients/inventoryService/index.ts +0 -14
  32. package/clients/invoicingService/index.js +1 -3
  33. package/clients/invoicingService/index.ts +0 -13
  34. package/clients/learningService/index.js +1 -3
  35. package/clients/learningService/index.ts +0 -13
  36. package/clients/marketingService/index.js +1 -3
  37. package/clients/marketingService/index.ts +0 -13
  38. package/clients/ordersService/index.js +1 -3
  39. package/clients/ordersService/index.ts +0 -13
  40. package/clients/paymentsService/index.js +1 -3
  41. package/clients/paymentsService/index.ts +0 -13
  42. package/clients/pricingService/index.js +1 -3
  43. package/clients/pricingService/index.ts +0 -13
  44. package/clients/projectsService/index.js +1 -3
  45. package/clients/projectsService/index.ts +0 -13
  46. package/clients/quotesService/index.js +1 -3
  47. package/clients/quotesService/index.ts +0 -13
  48. package/clients/salesService/index.js +1 -3
  49. package/clients/salesService/index.ts +0 -14
  50. package/clients/securityService/index.js +1 -3
  51. package/clients/securityService/index.ts +0 -13
  52. package/clients/shipmentsService/core/ApiError.js +20 -0
  53. package/clients/shipmentsService/core/ApiError.ts +25 -0
  54. package/clients/shipmentsService/core/ApiRequestOptions.ts +17 -0
  55. package/clients/shipmentsService/core/ApiResult.ts +11 -0
  56. package/clients/shipmentsService/core/CancelablePromise.js +104 -0
  57. package/clients/shipmentsService/core/CancelablePromise.ts +131 -0
  58. package/clients/shipmentsService/core/OpenAPI.js +14 -0
  59. package/clients/shipmentsService/core/OpenAPI.ts +32 -0
  60. package/clients/shipmentsService/core/request.js +294 -0
  61. package/clients/shipmentsService/core/request.ts +322 -0
  62. package/clients/shipmentsService/index.js +16 -0
  63. package/clients/shipmentsService/index.ts +14 -0
  64. package/clients/{contentService/models/PortalEnvelope.ts → shipmentsService/models/ErrorEnvelope.ts} +1 -3
  65. package/clients/shipmentsService/models/ShipmentDto.ts +14 -0
  66. package/clients/shipmentsService/models/ShipmentDtoListEnvelope.ts +14 -0
  67. package/clients/shipmentsService/services/ShipmentsService.js +30 -0
  68. package/clients/shipmentsService/services/ShipmentsService.ts +35 -0
  69. package/clients/socialService/index.js +1 -3
  70. package/clients/socialService/index.ts +0 -13
  71. package/clients/storageService/core/ApiError.js +20 -0
  72. package/clients/storageService/core/ApiError.ts +25 -0
  73. package/clients/storageService/core/ApiRequestOptions.ts +17 -0
  74. package/clients/storageService/core/ApiResult.ts +11 -0
  75. package/clients/storageService/core/CancelablePromise.js +104 -0
  76. package/clients/storageService/core/CancelablePromise.ts +131 -0
  77. package/clients/storageService/core/OpenAPI.js +14 -0
  78. package/clients/storageService/core/OpenAPI.ts +32 -0
  79. package/clients/storageService/core/request.js +294 -0
  80. package/clients/storageService/core/request.ts +322 -0
  81. package/clients/storageService/index.js +26 -0
  82. package/clients/storageService/index.ts +23 -0
  83. package/clients/storageService/models/Blob.js +11 -0
  84. package/clients/storageService/models/Blob.ts +26 -0
  85. package/clients/storageService/models/BlobEnvelope.ts +14 -0
  86. package/clients/storageService/models/EmptyEnvelope.ts +12 -0
  87. package/clients/storageService/models/ErrorEnvelope.ts +12 -0
  88. package/clients/storageService/models/FileUploadCreateDto.ts +20 -0
  89. package/clients/storageService/models/FileUploadDto.ts +29 -0
  90. package/clients/storageService/models/FileUploadDtoEnvelope.ts +14 -0
  91. package/clients/storageService/models/FileUploadUpdateDto.ts +19 -0
  92. package/clients/storageService/services/AvatarsService.js +189 -0
  93. package/clients/storageService/services/AvatarsService.ts +223 -0
  94. package/clients/storageService/services/BlobsService.js +66 -0
  95. package/clients/storageService/services/BlobsService.ts +81 -0
  96. package/clients/storageService/services/FilesService.js +171 -0
  97. package/clients/storageService/services/FilesService.ts +200 -0
  98. package/clients/storageService/services/RadzenEditorService.js +117 -0
  99. package/clients/storageService/services/RadzenEditorService.ts +149 -0
  100. package/clients/storageService/services/UploadsService.js +33 -0
  101. package/clients/storageService/services/UploadsService.ts +53 -0
  102. package/clients/supportService/index.js +1 -3
  103. package/clients/supportService/index.ts +0 -13
  104. package/clients/systemService/index.js +1 -3
  105. package/clients/systemService/index.ts +0 -13
  106. package/clients/tenantService/index.js +1 -3
  107. package/clients/tenantService/index.ts +0 -13
  108. package/clients/timeTrackerService/index.js +1 -3
  109. package/clients/timeTrackerService/index.ts +0 -13
  110. package/clients/walletsService/index.js +1 -3
  111. package/clients/walletsService/index.ts +0 -13
  112. package/package.json +1 -1
  113. package/schemas/accountingService/schema.s.ts +0 -379
  114. package/schemas/cartService/schema.s.ts +0 -379
  115. package/schemas/catalogService/schema.s.ts +0 -379
  116. package/schemas/contentService/schema.s.ts +29 -408
  117. package/schemas/crmService/schema.s.ts +0 -379
  118. package/schemas/dealsService/schema.s.ts +0 -379
  119. package/schemas/forexService/schema.s.ts +1 -382
  120. package/schemas/globeService/schema.s.ts +1 -382
  121. package/schemas/holderService/schema.s.ts +860 -1147
  122. package/schemas/hrmsService/schema.s.ts +0 -379
  123. package/schemas/identityService/schema.s.ts +1 -382
  124. package/schemas/inventoryService/schema.s.ts +2 -384
  125. package/schemas/invoicingService/schema.s.ts +0 -379
  126. package/schemas/learningService/schema.s.ts +1 -382
  127. package/schemas/marketingService/schema.s.ts +1 -382
  128. package/schemas/ordersService/schema.s.ts +0 -379
  129. package/schemas/paymentsService/schema.s.ts +1 -382
  130. package/schemas/pricingService/schema.s.ts +0 -379
  131. package/schemas/projectsService/schema.s.ts +1 -382
  132. package/schemas/quotesService/schema.s.ts +0 -379
  133. package/schemas/salesService/schema.s.ts +2 -384
  134. package/schemas/securityService/schema.s.ts +1 -382
  135. package/schemas/shipmentsService/schema.s.js +6 -0
  136. package/schemas/shipmentsService/schema.s.ts +92 -0
  137. package/schemas/socialService/schema.s.ts +0 -379
  138. package/schemas/storageService/schema.s.js +6 -0
  139. package/schemas/storageService/schema.s.ts +1042 -0
  140. package/schemas/supportService/schema.s.ts +1 -382
  141. package/schemas/systemService/schema.s.ts +0 -379
  142. package/schemas/tenantService/schema.s.ts +0 -379
  143. package/schemas/timeTrackerService/schema.s.ts +1 -382
  144. package/schemas/walletsService/schema.s.ts +0 -379
  145. package/clients/accountingService/models/AccessTokenResponse.ts +0 -11
  146. package/clients/accountingService/models/ForgotPasswordRequest.ts +0 -8
  147. package/clients/accountingService/models/HttpValidationProblemDetails.ts +0 -5
  148. package/clients/accountingService/models/InfoRequest.ts +0 -10
  149. package/clients/accountingService/models/InfoResponse.ts +0 -9
  150. package/clients/accountingService/models/LoginRequest.ts +0 -11
  151. package/clients/accountingService/models/RefreshRequest.ts +0 -8
  152. package/clients/accountingService/models/RegisterRequest.ts +0 -9
  153. package/clients/accountingService/models/ResendConfirmationEmailRequest.ts +0 -8
  154. package/clients/accountingService/models/ResetPasswordRequest.ts +0 -10
  155. package/clients/accountingService/models/TwoFactorRequest.ts +0 -12
  156. package/clients/accountingService/models/TwoFactorResponse.ts +0 -12
  157. package/clients/accountingService/services/FenixAllianceAbsModulesWebService.js +0 -246
  158. package/clients/accountingService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  159. package/clients/cartService/models/AccessTokenResponse.ts +0 -11
  160. package/clients/cartService/models/ForgotPasswordRequest.ts +0 -8
  161. package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
  162. package/clients/cartService/models/InfoRequest.ts +0 -10
  163. package/clients/cartService/models/InfoResponse.ts +0 -9
  164. package/clients/cartService/models/LoginRequest.js +0 -2
  165. package/clients/cartService/models/LoginRequest.ts +0 -11
  166. package/clients/cartService/models/RefreshRequest.js +0 -2
  167. package/clients/cartService/models/RefreshRequest.ts +0 -8
  168. package/clients/cartService/models/RegisterRequest.js +0 -2
  169. package/clients/cartService/models/RegisterRequest.ts +0 -9
  170. package/clients/cartService/models/ResendConfirmationEmailRequest.js +0 -2
  171. package/clients/cartService/models/ResendConfirmationEmailRequest.ts +0 -8
  172. package/clients/cartService/models/ResetPasswordRequest.js +0 -2
  173. package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
  174. package/clients/cartService/models/TwoFactorRequest.js +0 -2
  175. package/clients/cartService/models/TwoFactorRequest.ts +0 -12
  176. package/clients/cartService/models/TwoFactorResponse.js +0 -2
  177. package/clients/cartService/models/TwoFactorResponse.ts +0 -12
  178. package/clients/cartService/services/FenixAllianceAbsModulesWebService.js +0 -246
  179. package/clients/cartService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  180. package/clients/catalogService/models/AccessTokenResponse.js +0 -2
  181. package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
  182. package/clients/catalogService/models/ForgotPasswordRequest.js +0 -2
  183. package/clients/catalogService/models/ForgotPasswordRequest.ts +0 -8
  184. package/clients/catalogService/models/HttpValidationProblemDetails.js +0 -2
  185. package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
  186. package/clients/catalogService/models/InfoRequest.js +0 -2
  187. package/clients/catalogService/models/InfoRequest.ts +0 -10
  188. package/clients/catalogService/models/InfoResponse.js +0 -2
  189. package/clients/catalogService/models/InfoResponse.ts +0 -9
  190. package/clients/catalogService/models/LoginRequest.js +0 -2
  191. package/clients/catalogService/models/LoginRequest.ts +0 -11
  192. package/clients/catalogService/models/RefreshRequest.js +0 -2
  193. package/clients/catalogService/models/RefreshRequest.ts +0 -8
  194. package/clients/catalogService/models/RegisterRequest.js +0 -2
  195. package/clients/catalogService/models/RegisterRequest.ts +0 -9
  196. package/clients/catalogService/models/ResendConfirmationEmailRequest.js +0 -2
  197. package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
  198. package/clients/catalogService/models/ResetPasswordRequest.js +0 -2
  199. package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
  200. package/clients/catalogService/models/TwoFactorRequest.js +0 -2
  201. package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
  202. package/clients/catalogService/models/TwoFactorResponse.js +0 -2
  203. package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
  204. package/clients/catalogService/services/FenixAllianceAbsModulesWebService.js +0 -246
  205. package/clients/catalogService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  206. package/clients/contentService/models/AccessTokenResponse.js +0 -2
  207. package/clients/contentService/models/AccessTokenResponse.ts +0 -11
  208. package/clients/contentService/models/ForgotPasswordRequest.js +0 -2
  209. package/clients/contentService/models/ForgotPasswordRequest.ts +0 -8
  210. package/clients/contentService/models/HttpValidationProblemDetails.js +0 -2
  211. package/clients/contentService/models/HttpValidationProblemDetails.ts +0 -5
  212. package/clients/contentService/models/InfoRequest.js +0 -2
  213. package/clients/contentService/models/InfoRequest.ts +0 -10
  214. package/clients/contentService/models/InfoResponse.js +0 -2
  215. package/clients/contentService/models/InfoResponse.ts +0 -9
  216. package/clients/contentService/models/LoginRequest.js +0 -2
  217. package/clients/contentService/models/LoginRequest.ts +0 -11
  218. package/clients/contentService/models/Portal.js +0 -2
  219. package/clients/contentService/models/PortalEnvelope.js +0 -2
  220. package/clients/contentService/models/RefreshRequest.js +0 -2
  221. package/clients/contentService/models/RefreshRequest.ts +0 -8
  222. package/clients/contentService/models/RegisterRequest.js +0 -2
  223. package/clients/contentService/models/RegisterRequest.ts +0 -9
  224. package/clients/contentService/models/ResendConfirmationEmailRequest.js +0 -2
  225. package/clients/contentService/models/ResendConfirmationEmailRequest.ts +0 -8
  226. package/clients/contentService/models/ResetPasswordRequest.js +0 -2
  227. package/clients/contentService/models/ResetPasswordRequest.ts +0 -10
  228. package/clients/contentService/models/TwoFactorRequest.js +0 -2
  229. package/clients/contentService/models/TwoFactorRequest.ts +0 -12
  230. package/clients/contentService/models/TwoFactorResponse.js +0 -2
  231. package/clients/contentService/models/TwoFactorResponse.ts +0 -12
  232. package/clients/contentService/services/FenixAllianceAbsModulesWebService.js +0 -246
  233. package/clients/contentService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  234. package/clients/crmService/models/AccessTokenResponse.js +0 -2
  235. package/clients/crmService/models/AccessTokenResponse.ts +0 -11
  236. package/clients/crmService/models/ForgotPasswordRequest.js +0 -2
  237. package/clients/crmService/models/ForgotPasswordRequest.ts +0 -8
  238. package/clients/crmService/models/HttpValidationProblemDetails.js +0 -2
  239. package/clients/crmService/models/HttpValidationProblemDetails.ts +0 -5
  240. package/clients/crmService/models/InfoRequest.js +0 -2
  241. package/clients/crmService/models/InfoRequest.ts +0 -10
  242. package/clients/crmService/models/InfoResponse.js +0 -2
  243. package/clients/crmService/models/InfoResponse.ts +0 -9
  244. package/clients/crmService/models/LoginRequest.js +0 -2
  245. package/clients/crmService/models/LoginRequest.ts +0 -11
  246. package/clients/crmService/models/RefreshRequest.js +0 -2
  247. package/clients/crmService/models/RefreshRequest.ts +0 -8
  248. package/clients/crmService/models/RegisterRequest.js +0 -2
  249. package/clients/crmService/models/RegisterRequest.ts +0 -9
  250. package/clients/crmService/models/ResendConfirmationEmailRequest.js +0 -2
  251. package/clients/crmService/models/ResendConfirmationEmailRequest.ts +0 -8
  252. package/clients/crmService/models/ResetPasswordRequest.js +0 -2
  253. package/clients/crmService/models/ResetPasswordRequest.ts +0 -10
  254. package/clients/crmService/models/TwoFactorRequest.js +0 -2
  255. package/clients/crmService/models/TwoFactorRequest.ts +0 -12
  256. package/clients/crmService/models/TwoFactorResponse.js +0 -2
  257. package/clients/crmService/models/TwoFactorResponse.ts +0 -12
  258. package/clients/crmService/services/FenixAllianceAbsModulesWebService.js +0 -246
  259. package/clients/crmService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  260. package/clients/dealsService/models/AccessTokenResponse.js +0 -2
  261. package/clients/dealsService/models/AccessTokenResponse.ts +0 -11
  262. package/clients/dealsService/models/ForgotPasswordRequest.js +0 -2
  263. package/clients/dealsService/models/ForgotPasswordRequest.ts +0 -8
  264. package/clients/dealsService/models/HttpValidationProblemDetails.js +0 -2
  265. package/clients/dealsService/models/HttpValidationProblemDetails.ts +0 -5
  266. package/clients/dealsService/models/InfoRequest.js +0 -2
  267. package/clients/dealsService/models/InfoRequest.ts +0 -10
  268. package/clients/dealsService/models/InfoResponse.js +0 -2
  269. package/clients/dealsService/models/InfoResponse.ts +0 -9
  270. package/clients/dealsService/models/LoginRequest.js +0 -2
  271. package/clients/dealsService/models/LoginRequest.ts +0 -11
  272. package/clients/dealsService/models/RefreshRequest.js +0 -2
  273. package/clients/dealsService/models/RefreshRequest.ts +0 -8
  274. package/clients/dealsService/models/RegisterRequest.js +0 -2
  275. package/clients/dealsService/models/RegisterRequest.ts +0 -9
  276. package/clients/dealsService/models/ResendConfirmationEmailRequest.js +0 -2
  277. package/clients/dealsService/models/ResendConfirmationEmailRequest.ts +0 -8
  278. package/clients/dealsService/models/ResetPasswordRequest.js +0 -2
  279. package/clients/dealsService/models/ResetPasswordRequest.ts +0 -10
  280. package/clients/dealsService/models/TwoFactorRequest.js +0 -2
  281. package/clients/dealsService/models/TwoFactorRequest.ts +0 -12
  282. package/clients/dealsService/models/TwoFactorResponse.js +0 -2
  283. package/clients/dealsService/models/TwoFactorResponse.ts +0 -12
  284. package/clients/dealsService/services/FenixAllianceAbsModulesWebService.js +0 -246
  285. package/clients/dealsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  286. package/clients/forexService/models/AccessTokenResponse.js +0 -2
  287. package/clients/forexService/models/AccessTokenResponse.ts +0 -11
  288. package/clients/forexService/models/ForgotPasswordRequest.js +0 -2
  289. package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
  290. package/clients/forexService/models/HttpValidationProblemDetails.js +0 -2
  291. package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
  292. package/clients/forexService/models/InfoRequest.js +0 -2
  293. package/clients/forexService/models/InfoRequest.ts +0 -10
  294. package/clients/forexService/models/InfoResponse.js +0 -2
  295. package/clients/forexService/models/InfoResponse.ts +0 -9
  296. package/clients/forexService/models/LoginRequest.js +0 -2
  297. package/clients/forexService/models/LoginRequest.ts +0 -11
  298. package/clients/forexService/models/RefreshRequest.js +0 -2
  299. package/clients/forexService/models/RefreshRequest.ts +0 -8
  300. package/clients/forexService/models/RegisterRequest.js +0 -2
  301. package/clients/forexService/models/RegisterRequest.ts +0 -9
  302. package/clients/forexService/models/ResendConfirmationEmailRequest.js +0 -2
  303. package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
  304. package/clients/forexService/models/ResetPasswordRequest.js +0 -2
  305. package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
  306. package/clients/forexService/models/TwoFactorRequest.js +0 -2
  307. package/clients/forexService/models/TwoFactorRequest.ts +0 -12
  308. package/clients/forexService/models/TwoFactorResponse.js +0 -2
  309. package/clients/forexService/models/TwoFactorResponse.ts +0 -12
  310. package/clients/forexService/services/FenixAllianceAbsModulesWebService.js +0 -246
  311. package/clients/forexService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  312. package/clients/globeService/models/AccessTokenResponse.js +0 -2
  313. package/clients/globeService/models/AccessTokenResponse.ts +0 -11
  314. package/clients/globeService/models/ForgotPasswordRequest.js +0 -2
  315. package/clients/globeService/models/ForgotPasswordRequest.ts +0 -8
  316. package/clients/globeService/models/HttpValidationProblemDetails.js +0 -2
  317. package/clients/globeService/models/HttpValidationProblemDetails.ts +0 -5
  318. package/clients/globeService/models/InfoRequest.js +0 -2
  319. package/clients/globeService/models/InfoRequest.ts +0 -10
  320. package/clients/globeService/models/InfoResponse.js +0 -2
  321. package/clients/globeService/models/InfoResponse.ts +0 -9
  322. package/clients/globeService/models/LoginRequest.js +0 -2
  323. package/clients/globeService/models/LoginRequest.ts +0 -11
  324. package/clients/globeService/models/RefreshRequest.js +0 -2
  325. package/clients/globeService/models/RefreshRequest.ts +0 -8
  326. package/clients/globeService/models/RegisterRequest.js +0 -2
  327. package/clients/globeService/models/RegisterRequest.ts +0 -9
  328. package/clients/globeService/models/ResendConfirmationEmailRequest.js +0 -2
  329. package/clients/globeService/models/ResendConfirmationEmailRequest.ts +0 -8
  330. package/clients/globeService/models/ResetPasswordRequest.js +0 -2
  331. package/clients/globeService/models/ResetPasswordRequest.ts +0 -10
  332. package/clients/globeService/models/TwoFactorRequest.js +0 -2
  333. package/clients/globeService/models/TwoFactorRequest.ts +0 -12
  334. package/clients/globeService/models/TwoFactorResponse.js +0 -2
  335. package/clients/globeService/models/TwoFactorResponse.ts +0 -12
  336. package/clients/globeService/services/FenixAllianceAbsModulesWebService.js +0 -246
  337. package/clients/globeService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  338. package/clients/holderService/models/AccessTokenResponse.js +0 -2
  339. package/clients/holderService/models/AccessTokenResponse.ts +0 -11
  340. package/clients/holderService/models/ForgotPasswordRequest.js +0 -2
  341. package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
  342. package/clients/holderService/models/HttpValidationProblemDetails.js +0 -2
  343. package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
  344. package/clients/holderService/models/InfoRequest.js +0 -2
  345. package/clients/holderService/models/InfoRequest.ts +0 -10
  346. package/clients/holderService/models/InfoResponse.js +0 -2
  347. package/clients/holderService/models/InfoResponse.ts +0 -9
  348. package/clients/holderService/models/LoginRequest.js +0 -2
  349. package/clients/holderService/models/LoginRequest.ts +0 -11
  350. package/clients/holderService/models/RefreshRequest.js +0 -2
  351. package/clients/holderService/models/RefreshRequest.ts +0 -8
  352. package/clients/holderService/models/RegisterRequest.js +0 -2
  353. package/clients/holderService/models/RegisterRequest.ts +0 -9
  354. package/clients/holderService/models/ResendConfirmationEmailRequest.js +0 -2
  355. package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
  356. package/clients/holderService/models/ResetPasswordRequest.js +0 -2
  357. package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
  358. package/clients/holderService/models/TwoFactorRequest.js +0 -2
  359. package/clients/holderService/models/TwoFactorRequest.ts +0 -12
  360. package/clients/holderService/models/TwoFactorResponse.js +0 -2
  361. package/clients/holderService/models/TwoFactorResponse.ts +0 -12
  362. package/clients/holderService/services/FenixAllianceAbsModulesWebService.js +0 -246
  363. package/clients/holderService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  364. package/clients/hrmsService/models/AccessTokenResponse.js +0 -2
  365. package/clients/hrmsService/models/AccessTokenResponse.ts +0 -11
  366. package/clients/hrmsService/models/ForgotPasswordRequest.js +0 -2
  367. package/clients/hrmsService/models/ForgotPasswordRequest.ts +0 -8
  368. package/clients/hrmsService/models/HttpValidationProblemDetails.js +0 -2
  369. package/clients/hrmsService/models/HttpValidationProblemDetails.ts +0 -5
  370. package/clients/hrmsService/models/InfoRequest.js +0 -2
  371. package/clients/hrmsService/models/InfoRequest.ts +0 -10
  372. package/clients/hrmsService/models/InfoResponse.js +0 -2
  373. package/clients/hrmsService/models/InfoResponse.ts +0 -9
  374. package/clients/hrmsService/models/LoginRequest.js +0 -2
  375. package/clients/hrmsService/models/LoginRequest.ts +0 -11
  376. package/clients/hrmsService/models/RefreshRequest.js +0 -2
  377. package/clients/hrmsService/models/RefreshRequest.ts +0 -8
  378. package/clients/hrmsService/models/RegisterRequest.js +0 -2
  379. package/clients/hrmsService/models/RegisterRequest.ts +0 -9
  380. package/clients/hrmsService/models/ResendConfirmationEmailRequest.js +0 -2
  381. package/clients/hrmsService/models/ResendConfirmationEmailRequest.ts +0 -8
  382. package/clients/hrmsService/models/ResetPasswordRequest.js +0 -2
  383. package/clients/hrmsService/models/ResetPasswordRequest.ts +0 -10
  384. package/clients/hrmsService/models/TwoFactorRequest.js +0 -2
  385. package/clients/hrmsService/models/TwoFactorRequest.ts +0 -12
  386. package/clients/hrmsService/models/TwoFactorResponse.js +0 -2
  387. package/clients/hrmsService/models/TwoFactorResponse.ts +0 -12
  388. package/clients/hrmsService/services/FenixAllianceAbsModulesWebService.js +0 -246
  389. package/clients/hrmsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  390. package/clients/identityService/models/AccessTokenResponse.js +0 -2
  391. package/clients/identityService/models/AccessTokenResponse.ts +0 -11
  392. package/clients/identityService/models/ForgotPasswordRequest.js +0 -2
  393. package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
  394. package/clients/identityService/models/HttpValidationProblemDetails.js +0 -2
  395. package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
  396. package/clients/identityService/models/InfoRequest.js +0 -2
  397. package/clients/identityService/models/InfoRequest.ts +0 -10
  398. package/clients/identityService/models/InfoResponse.js +0 -2
  399. package/clients/identityService/models/InfoResponse.ts +0 -9
  400. package/clients/identityService/models/LoginRequest.js +0 -2
  401. package/clients/identityService/models/LoginRequest.ts +0 -11
  402. package/clients/identityService/models/RefreshRequest.js +0 -2
  403. package/clients/identityService/models/RefreshRequest.ts +0 -8
  404. package/clients/identityService/models/RegisterRequest.js +0 -2
  405. package/clients/identityService/models/RegisterRequest.ts +0 -9
  406. package/clients/identityService/models/ResendConfirmationEmailRequest.js +0 -2
  407. package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
  408. package/clients/identityService/models/ResetPasswordRequest.js +0 -2
  409. package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
  410. package/clients/identityService/models/TwoFactorRequest.js +0 -2
  411. package/clients/identityService/models/TwoFactorRequest.ts +0 -12
  412. package/clients/identityService/models/TwoFactorResponse.js +0 -2
  413. package/clients/identityService/models/TwoFactorResponse.ts +0 -12
  414. package/clients/identityService/services/FenixAllianceAbsModulesWebService.js +0 -246
  415. package/clients/identityService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  416. package/clients/inventoryService/models/AccessTokenResponse.js +0 -2
  417. package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
  418. package/clients/inventoryService/models/ForgotPasswordRequest.js +0 -2
  419. package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
  420. package/clients/inventoryService/models/HttpValidationProblemDetails.js +0 -2
  421. package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
  422. package/clients/inventoryService/models/InfoRequest.js +0 -2
  423. package/clients/inventoryService/models/InfoRequest.ts +0 -10
  424. package/clients/inventoryService/models/InfoResponse.js +0 -2
  425. package/clients/inventoryService/models/InfoResponse.ts +0 -9
  426. package/clients/inventoryService/models/LoginRequest.js +0 -2
  427. package/clients/inventoryService/models/LoginRequest.ts +0 -11
  428. package/clients/inventoryService/models/RefreshRequest.js +0 -2
  429. package/clients/inventoryService/models/RefreshRequest.ts +0 -8
  430. package/clients/inventoryService/models/RegisterRequest.js +0 -2
  431. package/clients/inventoryService/models/RegisterRequest.ts +0 -9
  432. package/clients/inventoryService/models/ResendConfirmationEmailRequest.js +0 -2
  433. package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
  434. package/clients/inventoryService/models/ResetPasswordRequest.js +0 -2
  435. package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
  436. package/clients/inventoryService/models/TwoFactorRequest.js +0 -2
  437. package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
  438. package/clients/inventoryService/models/TwoFactorResponse.js +0 -2
  439. package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
  440. package/clients/inventoryService/services/FenixAllianceAbsModulesWebService.js +0 -246
  441. package/clients/inventoryService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  442. package/clients/invoicingService/models/AccessTokenResponse.js +0 -2
  443. package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
  444. package/clients/invoicingService/models/ForgotPasswordRequest.js +0 -2
  445. package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
  446. package/clients/invoicingService/models/HttpValidationProblemDetails.js +0 -2
  447. package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
  448. package/clients/invoicingService/models/InfoRequest.js +0 -2
  449. package/clients/invoicingService/models/InfoRequest.ts +0 -10
  450. package/clients/invoicingService/models/InfoResponse.js +0 -2
  451. package/clients/invoicingService/models/InfoResponse.ts +0 -9
  452. package/clients/invoicingService/models/LoginRequest.js +0 -2
  453. package/clients/invoicingService/models/LoginRequest.ts +0 -11
  454. package/clients/invoicingService/models/RefreshRequest.js +0 -2
  455. package/clients/invoicingService/models/RefreshRequest.ts +0 -8
  456. package/clients/invoicingService/models/RegisterRequest.js +0 -2
  457. package/clients/invoicingService/models/RegisterRequest.ts +0 -9
  458. package/clients/invoicingService/models/ResendConfirmationEmailRequest.js +0 -2
  459. package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
  460. package/clients/invoicingService/models/ResetPasswordRequest.js +0 -2
  461. package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
  462. package/clients/invoicingService/models/TwoFactorRequest.js +0 -2
  463. package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
  464. package/clients/invoicingService/models/TwoFactorResponse.js +0 -2
  465. package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
  466. package/clients/invoicingService/services/FenixAllianceAbsModulesWebService.js +0 -246
  467. package/clients/invoicingService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  468. package/clients/learningService/models/AccessTokenResponse.js +0 -2
  469. package/clients/learningService/models/AccessTokenResponse.ts +0 -11
  470. package/clients/learningService/models/ForgotPasswordRequest.js +0 -2
  471. package/clients/learningService/models/ForgotPasswordRequest.ts +0 -8
  472. package/clients/learningService/models/HttpValidationProblemDetails.js +0 -2
  473. package/clients/learningService/models/HttpValidationProblemDetails.ts +0 -5
  474. package/clients/learningService/models/InfoRequest.js +0 -2
  475. package/clients/learningService/models/InfoRequest.ts +0 -10
  476. package/clients/learningService/models/InfoResponse.js +0 -2
  477. package/clients/learningService/models/InfoResponse.ts +0 -9
  478. package/clients/learningService/models/LoginRequest.js +0 -2
  479. package/clients/learningService/models/LoginRequest.ts +0 -11
  480. package/clients/learningService/models/RefreshRequest.js +0 -2
  481. package/clients/learningService/models/RefreshRequest.ts +0 -8
  482. package/clients/learningService/models/RegisterRequest.js +0 -2
  483. package/clients/learningService/models/RegisterRequest.ts +0 -9
  484. package/clients/learningService/models/ResendConfirmationEmailRequest.js +0 -2
  485. package/clients/learningService/models/ResendConfirmationEmailRequest.ts +0 -8
  486. package/clients/learningService/models/ResetPasswordRequest.js +0 -2
  487. package/clients/learningService/models/ResetPasswordRequest.ts +0 -10
  488. package/clients/learningService/models/TwoFactorRequest.js +0 -2
  489. package/clients/learningService/models/TwoFactorRequest.ts +0 -12
  490. package/clients/learningService/models/TwoFactorResponse.js +0 -2
  491. package/clients/learningService/models/TwoFactorResponse.ts +0 -12
  492. package/clients/learningService/services/FenixAllianceAbsModulesWebService.js +0 -246
  493. package/clients/learningService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  494. package/clients/marketingService/models/AccessTokenResponse.js +0 -2
  495. package/clients/marketingService/models/AccessTokenResponse.ts +0 -11
  496. package/clients/marketingService/models/ForgotPasswordRequest.js +0 -2
  497. package/clients/marketingService/models/ForgotPasswordRequest.ts +0 -8
  498. package/clients/marketingService/models/HttpValidationProblemDetails.js +0 -2
  499. package/clients/marketingService/models/HttpValidationProblemDetails.ts +0 -5
  500. package/clients/marketingService/models/InfoRequest.js +0 -2
  501. package/clients/marketingService/models/InfoRequest.ts +0 -10
  502. package/clients/marketingService/models/InfoResponse.js +0 -2
  503. package/clients/marketingService/models/InfoResponse.ts +0 -9
  504. package/clients/marketingService/models/LoginRequest.js +0 -2
  505. package/clients/marketingService/models/LoginRequest.ts +0 -11
  506. package/clients/marketingService/models/RefreshRequest.js +0 -2
  507. package/clients/marketingService/models/RefreshRequest.ts +0 -8
  508. package/clients/marketingService/models/RegisterRequest.js +0 -2
  509. package/clients/marketingService/models/RegisterRequest.ts +0 -9
  510. package/clients/marketingService/models/ResendConfirmationEmailRequest.js +0 -2
  511. package/clients/marketingService/models/ResendConfirmationEmailRequest.ts +0 -8
  512. package/clients/marketingService/models/ResetPasswordRequest.js +0 -2
  513. package/clients/marketingService/models/ResetPasswordRequest.ts +0 -10
  514. package/clients/marketingService/models/TwoFactorRequest.js +0 -2
  515. package/clients/marketingService/models/TwoFactorRequest.ts +0 -12
  516. package/clients/marketingService/models/TwoFactorResponse.js +0 -2
  517. package/clients/marketingService/models/TwoFactorResponse.ts +0 -12
  518. package/clients/marketingService/services/FenixAllianceAbsModulesWebService.js +0 -246
  519. package/clients/marketingService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  520. package/clients/ordersService/models/AccessTokenResponse.js +0 -2
  521. package/clients/ordersService/models/AccessTokenResponse.ts +0 -11
  522. package/clients/ordersService/models/ForgotPasswordRequest.js +0 -2
  523. package/clients/ordersService/models/ForgotPasswordRequest.ts +0 -8
  524. package/clients/ordersService/models/HttpValidationProblemDetails.js +0 -2
  525. package/clients/ordersService/models/HttpValidationProblemDetails.ts +0 -5
  526. package/clients/ordersService/models/InfoRequest.js +0 -2
  527. package/clients/ordersService/models/InfoRequest.ts +0 -10
  528. package/clients/ordersService/models/InfoResponse.js +0 -2
  529. package/clients/ordersService/models/InfoResponse.ts +0 -9
  530. package/clients/ordersService/models/LoginRequest.js +0 -2
  531. package/clients/ordersService/models/LoginRequest.ts +0 -11
  532. package/clients/ordersService/models/RefreshRequest.js +0 -2
  533. package/clients/ordersService/models/RefreshRequest.ts +0 -8
  534. package/clients/ordersService/models/RegisterRequest.js +0 -2
  535. package/clients/ordersService/models/RegisterRequest.ts +0 -9
  536. package/clients/ordersService/models/ResendConfirmationEmailRequest.js +0 -2
  537. package/clients/ordersService/models/ResendConfirmationEmailRequest.ts +0 -8
  538. package/clients/ordersService/models/ResetPasswordRequest.js +0 -2
  539. package/clients/ordersService/models/ResetPasswordRequest.ts +0 -10
  540. package/clients/ordersService/models/TwoFactorRequest.js +0 -2
  541. package/clients/ordersService/models/TwoFactorRequest.ts +0 -12
  542. package/clients/ordersService/models/TwoFactorResponse.js +0 -2
  543. package/clients/ordersService/models/TwoFactorResponse.ts +0 -12
  544. package/clients/ordersService/services/FenixAllianceAbsModulesWebService.js +0 -246
  545. package/clients/ordersService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  546. package/clients/paymentsService/models/AccessTokenResponse.js +0 -2
  547. package/clients/paymentsService/models/AccessTokenResponse.ts +0 -11
  548. package/clients/paymentsService/models/ForgotPasswordRequest.js +0 -2
  549. package/clients/paymentsService/models/ForgotPasswordRequest.ts +0 -8
  550. package/clients/paymentsService/models/HttpValidationProblemDetails.js +0 -2
  551. package/clients/paymentsService/models/HttpValidationProblemDetails.ts +0 -5
  552. package/clients/paymentsService/models/InfoRequest.js +0 -2
  553. package/clients/paymentsService/models/InfoRequest.ts +0 -10
  554. package/clients/paymentsService/models/InfoResponse.js +0 -2
  555. package/clients/paymentsService/models/InfoResponse.ts +0 -9
  556. package/clients/paymentsService/models/LoginRequest.js +0 -2
  557. package/clients/paymentsService/models/LoginRequest.ts +0 -11
  558. package/clients/paymentsService/models/RefreshRequest.js +0 -2
  559. package/clients/paymentsService/models/RefreshRequest.ts +0 -8
  560. package/clients/paymentsService/models/RegisterRequest.js +0 -2
  561. package/clients/paymentsService/models/RegisterRequest.ts +0 -9
  562. package/clients/paymentsService/models/ResendConfirmationEmailRequest.js +0 -2
  563. package/clients/paymentsService/models/ResendConfirmationEmailRequest.ts +0 -8
  564. package/clients/paymentsService/models/ResetPasswordRequest.js +0 -2
  565. package/clients/paymentsService/models/ResetPasswordRequest.ts +0 -10
  566. package/clients/paymentsService/models/TwoFactorRequest.js +0 -2
  567. package/clients/paymentsService/models/TwoFactorRequest.ts +0 -12
  568. package/clients/paymentsService/models/TwoFactorResponse.js +0 -2
  569. package/clients/paymentsService/models/TwoFactorResponse.ts +0 -12
  570. package/clients/paymentsService/services/FenixAllianceAbsModulesWebService.js +0 -246
  571. package/clients/paymentsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  572. package/clients/pricingService/models/AccessTokenResponse.js +0 -2
  573. package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
  574. package/clients/pricingService/models/ForgotPasswordRequest.js +0 -2
  575. package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
  576. package/clients/pricingService/models/HttpValidationProblemDetails.js +0 -2
  577. package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
  578. package/clients/pricingService/models/InfoRequest.js +0 -2
  579. package/clients/pricingService/models/InfoRequest.ts +0 -10
  580. package/clients/pricingService/models/InfoResponse.js +0 -2
  581. package/clients/pricingService/models/InfoResponse.ts +0 -9
  582. package/clients/pricingService/models/LoginRequest.js +0 -2
  583. package/clients/pricingService/models/LoginRequest.ts +0 -11
  584. package/clients/pricingService/models/RefreshRequest.js +0 -2
  585. package/clients/pricingService/models/RefreshRequest.ts +0 -8
  586. package/clients/pricingService/models/RegisterRequest.js +0 -2
  587. package/clients/pricingService/models/RegisterRequest.ts +0 -9
  588. package/clients/pricingService/models/ResendConfirmationEmailRequest.js +0 -2
  589. package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
  590. package/clients/pricingService/models/ResetPasswordRequest.js +0 -2
  591. package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
  592. package/clients/pricingService/models/TwoFactorRequest.js +0 -2
  593. package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
  594. package/clients/pricingService/models/TwoFactorResponse.js +0 -2
  595. package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
  596. package/clients/pricingService/services/FenixAllianceAbsModulesWebService.js +0 -246
  597. package/clients/pricingService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  598. package/clients/projectsService/models/AccessTokenResponse.js +0 -2
  599. package/clients/projectsService/models/AccessTokenResponse.ts +0 -11
  600. package/clients/projectsService/models/ForgotPasswordRequest.js +0 -2
  601. package/clients/projectsService/models/ForgotPasswordRequest.ts +0 -8
  602. package/clients/projectsService/models/HttpValidationProblemDetails.js +0 -2
  603. package/clients/projectsService/models/HttpValidationProblemDetails.ts +0 -5
  604. package/clients/projectsService/models/InfoRequest.js +0 -2
  605. package/clients/projectsService/models/InfoRequest.ts +0 -10
  606. package/clients/projectsService/models/InfoResponse.js +0 -2
  607. package/clients/projectsService/models/InfoResponse.ts +0 -9
  608. package/clients/projectsService/models/LoginRequest.js +0 -2
  609. package/clients/projectsService/models/LoginRequest.ts +0 -11
  610. package/clients/projectsService/models/RefreshRequest.js +0 -2
  611. package/clients/projectsService/models/RefreshRequest.ts +0 -8
  612. package/clients/projectsService/models/RegisterRequest.js +0 -2
  613. package/clients/projectsService/models/RegisterRequest.ts +0 -9
  614. package/clients/projectsService/models/ResendConfirmationEmailRequest.js +0 -2
  615. package/clients/projectsService/models/ResendConfirmationEmailRequest.ts +0 -8
  616. package/clients/projectsService/models/ResetPasswordRequest.js +0 -2
  617. package/clients/projectsService/models/ResetPasswordRequest.ts +0 -10
  618. package/clients/projectsService/models/TwoFactorRequest.js +0 -2
  619. package/clients/projectsService/models/TwoFactorRequest.ts +0 -12
  620. package/clients/projectsService/models/TwoFactorResponse.js +0 -2
  621. package/clients/projectsService/models/TwoFactorResponse.ts +0 -12
  622. package/clients/projectsService/services/FenixAllianceAbsModulesWebService.js +0 -246
  623. package/clients/projectsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  624. package/clients/quotesService/models/AccessTokenResponse.js +0 -2
  625. package/clients/quotesService/models/AccessTokenResponse.ts +0 -11
  626. package/clients/quotesService/models/ForgotPasswordRequest.js +0 -2
  627. package/clients/quotesService/models/ForgotPasswordRequest.ts +0 -8
  628. package/clients/quotesService/models/HttpValidationProblemDetails.js +0 -2
  629. package/clients/quotesService/models/HttpValidationProblemDetails.ts +0 -5
  630. package/clients/quotesService/models/InfoRequest.js +0 -2
  631. package/clients/quotesService/models/InfoRequest.ts +0 -10
  632. package/clients/quotesService/models/InfoResponse.js +0 -2
  633. package/clients/quotesService/models/InfoResponse.ts +0 -9
  634. package/clients/quotesService/models/LoginRequest.js +0 -2
  635. package/clients/quotesService/models/LoginRequest.ts +0 -11
  636. package/clients/quotesService/models/RefreshRequest.js +0 -2
  637. package/clients/quotesService/models/RefreshRequest.ts +0 -8
  638. package/clients/quotesService/models/RegisterRequest.js +0 -2
  639. package/clients/quotesService/models/RegisterRequest.ts +0 -9
  640. package/clients/quotesService/models/ResendConfirmationEmailRequest.js +0 -2
  641. package/clients/quotesService/models/ResendConfirmationEmailRequest.ts +0 -8
  642. package/clients/quotesService/models/ResetPasswordRequest.js +0 -2
  643. package/clients/quotesService/models/ResetPasswordRequest.ts +0 -10
  644. package/clients/quotesService/models/TwoFactorRequest.js +0 -2
  645. package/clients/quotesService/models/TwoFactorRequest.ts +0 -12
  646. package/clients/quotesService/models/TwoFactorResponse.js +0 -2
  647. package/clients/quotesService/models/TwoFactorResponse.ts +0 -12
  648. package/clients/quotesService/services/FenixAllianceAbsModulesWebService.js +0 -246
  649. package/clients/quotesService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  650. package/clients/salesService/models/AccessTokenResponse.js +0 -2
  651. package/clients/salesService/models/AccessTokenResponse.ts +0 -11
  652. package/clients/salesService/models/ForgotPasswordRequest.js +0 -2
  653. package/clients/salesService/models/ForgotPasswordRequest.ts +0 -8
  654. package/clients/salesService/models/HttpValidationProblemDetails.js +0 -2
  655. package/clients/salesService/models/HttpValidationProblemDetails.ts +0 -5
  656. package/clients/salesService/models/InfoRequest.js +0 -2
  657. package/clients/salesService/models/InfoRequest.ts +0 -10
  658. package/clients/salesService/models/InfoResponse.js +0 -2
  659. package/clients/salesService/models/InfoResponse.ts +0 -9
  660. package/clients/salesService/models/LoginRequest.js +0 -2
  661. package/clients/salesService/models/LoginRequest.ts +0 -11
  662. package/clients/salesService/models/RefreshRequest.js +0 -2
  663. package/clients/salesService/models/RefreshRequest.ts +0 -8
  664. package/clients/salesService/models/RegisterRequest.js +0 -2
  665. package/clients/salesService/models/RegisterRequest.ts +0 -9
  666. package/clients/salesService/models/ResendConfirmationEmailRequest.js +0 -2
  667. package/clients/salesService/models/ResendConfirmationEmailRequest.ts +0 -8
  668. package/clients/salesService/models/ResetPasswordRequest.js +0 -2
  669. package/clients/salesService/models/ResetPasswordRequest.ts +0 -10
  670. package/clients/salesService/models/TwoFactorRequest.js +0 -2
  671. package/clients/salesService/models/TwoFactorRequest.ts +0 -12
  672. package/clients/salesService/models/TwoFactorResponse.js +0 -2
  673. package/clients/salesService/models/TwoFactorResponse.ts +0 -12
  674. package/clients/salesService/services/FenixAllianceAbsModulesWebService.js +0 -246
  675. package/clients/salesService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  676. package/clients/securityService/models/AccessTokenResponse.js +0 -2
  677. package/clients/securityService/models/AccessTokenResponse.ts +0 -11
  678. package/clients/securityService/models/ForgotPasswordRequest.js +0 -2
  679. package/clients/securityService/models/ForgotPasswordRequest.ts +0 -8
  680. package/clients/securityService/models/HttpValidationProblemDetails.js +0 -2
  681. package/clients/securityService/models/HttpValidationProblemDetails.ts +0 -5
  682. package/clients/securityService/models/InfoRequest.js +0 -2
  683. package/clients/securityService/models/InfoRequest.ts +0 -10
  684. package/clients/securityService/models/InfoResponse.js +0 -2
  685. package/clients/securityService/models/InfoResponse.ts +0 -9
  686. package/clients/securityService/models/LoginRequest.js +0 -2
  687. package/clients/securityService/models/LoginRequest.ts +0 -11
  688. package/clients/securityService/models/RefreshRequest.js +0 -2
  689. package/clients/securityService/models/RefreshRequest.ts +0 -8
  690. package/clients/securityService/models/RegisterRequest.js +0 -2
  691. package/clients/securityService/models/RegisterRequest.ts +0 -9
  692. package/clients/securityService/models/ResendConfirmationEmailRequest.js +0 -2
  693. package/clients/securityService/models/ResendConfirmationEmailRequest.ts +0 -8
  694. package/clients/securityService/models/ResetPasswordRequest.js +0 -2
  695. package/clients/securityService/models/ResetPasswordRequest.ts +0 -10
  696. package/clients/securityService/models/TwoFactorRequest.js +0 -2
  697. package/clients/securityService/models/TwoFactorRequest.ts +0 -12
  698. package/clients/securityService/models/TwoFactorResponse.js +0 -2
  699. package/clients/securityService/models/TwoFactorResponse.ts +0 -12
  700. package/clients/securityService/services/FenixAllianceAbsModulesWebService.js +0 -246
  701. package/clients/securityService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  702. package/clients/socialService/models/AccessTokenResponse.js +0 -2
  703. package/clients/socialService/models/AccessTokenResponse.ts +0 -11
  704. package/clients/socialService/models/ForgotPasswordRequest.js +0 -2
  705. package/clients/socialService/models/ForgotPasswordRequest.ts +0 -8
  706. package/clients/socialService/models/HttpValidationProblemDetails.js +0 -2
  707. package/clients/socialService/models/HttpValidationProblemDetails.ts +0 -5
  708. package/clients/socialService/models/InfoRequest.js +0 -2
  709. package/clients/socialService/models/InfoRequest.ts +0 -10
  710. package/clients/socialService/models/InfoResponse.js +0 -2
  711. package/clients/socialService/models/InfoResponse.ts +0 -9
  712. package/clients/socialService/models/LoginRequest.js +0 -2
  713. package/clients/socialService/models/LoginRequest.ts +0 -11
  714. package/clients/socialService/models/RefreshRequest.js +0 -2
  715. package/clients/socialService/models/RefreshRequest.ts +0 -8
  716. package/clients/socialService/models/RegisterRequest.js +0 -2
  717. package/clients/socialService/models/RegisterRequest.ts +0 -9
  718. package/clients/socialService/models/ResendConfirmationEmailRequest.js +0 -2
  719. package/clients/socialService/models/ResendConfirmationEmailRequest.ts +0 -8
  720. package/clients/socialService/models/ResetPasswordRequest.js +0 -2
  721. package/clients/socialService/models/ResetPasswordRequest.ts +0 -10
  722. package/clients/socialService/models/TwoFactorRequest.js +0 -2
  723. package/clients/socialService/models/TwoFactorRequest.ts +0 -12
  724. package/clients/socialService/models/TwoFactorResponse.js +0 -2
  725. package/clients/socialService/models/TwoFactorResponse.ts +0 -12
  726. package/clients/socialService/services/FenixAllianceAbsModulesWebService.js +0 -246
  727. package/clients/socialService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  728. package/clients/supportService/models/AccessTokenResponse.js +0 -2
  729. package/clients/supportService/models/AccessTokenResponse.ts +0 -11
  730. package/clients/supportService/models/ForgotPasswordRequest.js +0 -2
  731. package/clients/supportService/models/ForgotPasswordRequest.ts +0 -8
  732. package/clients/supportService/models/HttpValidationProblemDetails.js +0 -2
  733. package/clients/supportService/models/HttpValidationProblemDetails.ts +0 -5
  734. package/clients/supportService/models/InfoRequest.js +0 -2
  735. package/clients/supportService/models/InfoRequest.ts +0 -10
  736. package/clients/supportService/models/InfoResponse.js +0 -2
  737. package/clients/supportService/models/InfoResponse.ts +0 -9
  738. package/clients/supportService/models/LoginRequest.js +0 -2
  739. package/clients/supportService/models/LoginRequest.ts +0 -11
  740. package/clients/supportService/models/RefreshRequest.js +0 -2
  741. package/clients/supportService/models/RefreshRequest.ts +0 -8
  742. package/clients/supportService/models/RegisterRequest.js +0 -2
  743. package/clients/supportService/models/RegisterRequest.ts +0 -9
  744. package/clients/supportService/models/ResendConfirmationEmailRequest.js +0 -2
  745. package/clients/supportService/models/ResendConfirmationEmailRequest.ts +0 -8
  746. package/clients/supportService/models/ResetPasswordRequest.js +0 -2
  747. package/clients/supportService/models/ResetPasswordRequest.ts +0 -10
  748. package/clients/supportService/models/TwoFactorRequest.js +0 -2
  749. package/clients/supportService/models/TwoFactorRequest.ts +0 -12
  750. package/clients/supportService/models/TwoFactorResponse.js +0 -2
  751. package/clients/supportService/models/TwoFactorResponse.ts +0 -12
  752. package/clients/supportService/services/FenixAllianceAbsModulesWebService.js +0 -246
  753. package/clients/supportService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  754. package/clients/systemService/models/AccessTokenResponse.js +0 -2
  755. package/clients/systemService/models/AccessTokenResponse.ts +0 -11
  756. package/clients/systemService/models/ForgotPasswordRequest.js +0 -2
  757. package/clients/systemService/models/ForgotPasswordRequest.ts +0 -8
  758. package/clients/systemService/models/HttpValidationProblemDetails.js +0 -2
  759. package/clients/systemService/models/HttpValidationProblemDetails.ts +0 -5
  760. package/clients/systemService/models/InfoRequest.js +0 -2
  761. package/clients/systemService/models/InfoRequest.ts +0 -10
  762. package/clients/systemService/models/InfoResponse.js +0 -2
  763. package/clients/systemService/models/InfoResponse.ts +0 -9
  764. package/clients/systemService/models/LoginRequest.js +0 -2
  765. package/clients/systemService/models/LoginRequest.ts +0 -11
  766. package/clients/systemService/models/RefreshRequest.js +0 -2
  767. package/clients/systemService/models/RefreshRequest.ts +0 -8
  768. package/clients/systemService/models/RegisterRequest.js +0 -2
  769. package/clients/systemService/models/RegisterRequest.ts +0 -9
  770. package/clients/systemService/models/ResendConfirmationEmailRequest.js +0 -2
  771. package/clients/systemService/models/ResendConfirmationEmailRequest.ts +0 -8
  772. package/clients/systemService/models/ResetPasswordRequest.js +0 -2
  773. package/clients/systemService/models/ResetPasswordRequest.ts +0 -10
  774. package/clients/systemService/models/TwoFactorRequest.js +0 -2
  775. package/clients/systemService/models/TwoFactorRequest.ts +0 -12
  776. package/clients/systemService/models/TwoFactorResponse.js +0 -2
  777. package/clients/systemService/models/TwoFactorResponse.ts +0 -12
  778. package/clients/systemService/services/FenixAllianceAbsModulesWebService.js +0 -246
  779. package/clients/systemService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  780. package/clients/tenantService/models/AccessTokenResponse.js +0 -2
  781. package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
  782. package/clients/tenantService/models/ForgotPasswordRequest.js +0 -2
  783. package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
  784. package/clients/tenantService/models/HttpValidationProblemDetails.js +0 -2
  785. package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
  786. package/clients/tenantService/models/InfoRequest.js +0 -2
  787. package/clients/tenantService/models/InfoRequest.ts +0 -10
  788. package/clients/tenantService/models/InfoResponse.js +0 -2
  789. package/clients/tenantService/models/InfoResponse.ts +0 -9
  790. package/clients/tenantService/models/LoginRequest.js +0 -2
  791. package/clients/tenantService/models/LoginRequest.ts +0 -11
  792. package/clients/tenantService/models/RefreshRequest.js +0 -2
  793. package/clients/tenantService/models/RefreshRequest.ts +0 -8
  794. package/clients/tenantService/models/RegisterRequest.js +0 -2
  795. package/clients/tenantService/models/RegisterRequest.ts +0 -9
  796. package/clients/tenantService/models/ResendConfirmationEmailRequest.js +0 -2
  797. package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
  798. package/clients/tenantService/models/ResetPasswordRequest.js +0 -2
  799. package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
  800. package/clients/tenantService/models/TwoFactorRequest.js +0 -2
  801. package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
  802. package/clients/tenantService/models/TwoFactorResponse.js +0 -2
  803. package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
  804. package/clients/tenantService/services/FenixAllianceAbsModulesWebService.js +0 -246
  805. package/clients/tenantService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  806. package/clients/timeTrackerService/models/AccessTokenResponse.js +0 -2
  807. package/clients/timeTrackerService/models/AccessTokenResponse.ts +0 -11
  808. package/clients/timeTrackerService/models/ForgotPasswordRequest.js +0 -2
  809. package/clients/timeTrackerService/models/ForgotPasswordRequest.ts +0 -8
  810. package/clients/timeTrackerService/models/HttpValidationProblemDetails.js +0 -2
  811. package/clients/timeTrackerService/models/HttpValidationProblemDetails.ts +0 -5
  812. package/clients/timeTrackerService/models/InfoRequest.js +0 -2
  813. package/clients/timeTrackerService/models/InfoRequest.ts +0 -10
  814. package/clients/timeTrackerService/models/InfoResponse.js +0 -2
  815. package/clients/timeTrackerService/models/InfoResponse.ts +0 -9
  816. package/clients/timeTrackerService/models/LoginRequest.js +0 -2
  817. package/clients/timeTrackerService/models/LoginRequest.ts +0 -11
  818. package/clients/timeTrackerService/models/RefreshRequest.js +0 -2
  819. package/clients/timeTrackerService/models/RefreshRequest.ts +0 -8
  820. package/clients/timeTrackerService/models/RegisterRequest.js +0 -2
  821. package/clients/timeTrackerService/models/RegisterRequest.ts +0 -9
  822. package/clients/timeTrackerService/models/ResendConfirmationEmailRequest.js +0 -2
  823. package/clients/timeTrackerService/models/ResendConfirmationEmailRequest.ts +0 -8
  824. package/clients/timeTrackerService/models/ResetPasswordRequest.js +0 -2
  825. package/clients/timeTrackerService/models/ResetPasswordRequest.ts +0 -10
  826. package/clients/timeTrackerService/models/TwoFactorRequest.js +0 -2
  827. package/clients/timeTrackerService/models/TwoFactorRequest.ts +0 -12
  828. package/clients/timeTrackerService/models/TwoFactorResponse.js +0 -2
  829. package/clients/timeTrackerService/models/TwoFactorResponse.ts +0 -12
  830. package/clients/timeTrackerService/services/FenixAllianceAbsModulesWebService.js +0 -246
  831. package/clients/timeTrackerService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  832. package/clients/walletsService/models/AccessTokenResponse.js +0 -2
  833. package/clients/walletsService/models/AccessTokenResponse.ts +0 -11
  834. package/clients/walletsService/models/ForgotPasswordRequest.js +0 -2
  835. package/clients/walletsService/models/ForgotPasswordRequest.ts +0 -8
  836. package/clients/walletsService/models/HttpValidationProblemDetails.js +0 -2
  837. package/clients/walletsService/models/HttpValidationProblemDetails.ts +0 -5
  838. package/clients/walletsService/models/InfoRequest.js +0 -2
  839. package/clients/walletsService/models/InfoRequest.ts +0 -10
  840. package/clients/walletsService/models/InfoResponse.js +0 -2
  841. package/clients/walletsService/models/InfoResponse.ts +0 -9
  842. package/clients/walletsService/models/LoginRequest.js +0 -2
  843. package/clients/walletsService/models/LoginRequest.ts +0 -11
  844. package/clients/walletsService/models/RefreshRequest.js +0 -2
  845. package/clients/walletsService/models/RefreshRequest.ts +0 -8
  846. package/clients/walletsService/models/RegisterRequest.js +0 -2
  847. package/clients/walletsService/models/RegisterRequest.ts +0 -9
  848. package/clients/walletsService/models/ResendConfirmationEmailRequest.js +0 -2
  849. package/clients/walletsService/models/ResendConfirmationEmailRequest.ts +0 -8
  850. package/clients/walletsService/models/ResetPasswordRequest.js +0 -2
  851. package/clients/walletsService/models/ResetPasswordRequest.ts +0 -10
  852. package/clients/walletsService/models/TwoFactorRequest.js +0 -2
  853. package/clients/walletsService/models/TwoFactorRequest.ts +0 -12
  854. package/clients/walletsService/models/TwoFactorResponse.js +0 -2
  855. package/clients/walletsService/models/TwoFactorResponse.ts +0 -12
  856. package/clients/walletsService/services/FenixAllianceAbsModulesWebService.js +0 -246
  857. package/clients/walletsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
  858. /package/clients/{accountingService/models/AccessTokenResponse.js → contentService/models/PortalSettings.js} +0 -0
  859. /package/clients/{accountingService/models/ForgotPasswordRequest.js → contentService/models/PortalSettingsEnvelope.js} +0 -0
  860. /package/clients/{accountingService/models/HttpValidationProblemDetails.js → holderService/models/FollowRecordDtoListEnvelope.js} +0 -0
  861. /package/clients/{accountingService/models/InfoRequest.js → shipmentsService/core/ApiRequestOptions.js} +0 -0
  862. /package/clients/{accountingService/models/InfoResponse.js → shipmentsService/core/ApiResult.js} +0 -0
  863. /package/clients/{accountingService/models/LoginRequest.js → shipmentsService/models/ErrorEnvelope.js} +0 -0
  864. /package/clients/{accountingService/models/RefreshRequest.js → shipmentsService/models/ShipmentDto.js} +0 -0
  865. /package/clients/{accountingService/models/RegisterRequest.js → shipmentsService/models/ShipmentDtoListEnvelope.js} +0 -0
  866. /package/clients/{accountingService/models/ResendConfirmationEmailRequest.js → storageService/core/ApiRequestOptions.js} +0 -0
  867. /package/clients/{accountingService/models/ResetPasswordRequest.js → storageService/core/ApiResult.js} +0 -0
  868. /package/clients/{accountingService/models/TwoFactorRequest.js → storageService/models/BlobEnvelope.js} +0 -0
  869. /package/clients/{accountingService/models/TwoFactorResponse.js → storageService/models/EmptyEnvelope.js} +0 -0
  870. /package/clients/{cartService/models/AccessTokenResponse.js → storageService/models/ErrorEnvelope.js} +0 -0
  871. /package/clients/{cartService/models/ForgotPasswordRequest.js → storageService/models/FileUploadCreateDto.js} +0 -0
  872. /package/clients/{cartService/models/HttpValidationProblemDetails.js → storageService/models/FileUploadDto.js} +0 -0
  873. /package/clients/{cartService/models/InfoRequest.js → storageService/models/FileUploadDtoEnvelope.js} +0 -0
  874. /package/clients/{cartService/models/InfoResponse.js → storageService/models/FileUploadUpdateDto.js} +0 -0
@@ -0,0 +1,189 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AvatarsService = void 0;
4
+ const OpenAPI_1 = require("../core/OpenAPI");
5
+ const request_1 = require("../core/request");
6
+ class AvatarsService {
7
+ /**
8
+ * @param socialProfileId
9
+ * @param xApiVersion
10
+ * @returns EmptyEnvelope OK
11
+ * @throws ApiError
12
+ */
13
+ static getApiV2StorageServiceAvatars(socialProfileId, xApiVersion) {
14
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
15
+ method: 'GET',
16
+ url: '/api/v2/StorageService/Avatars/{socialProfileId}',
17
+ path: {
18
+ 'socialProfileId': socialProfileId,
19
+ },
20
+ headers: {
21
+ 'x-api-version': xApiVersion,
22
+ },
23
+ errors: {
24
+ 401: `Unauthorized`,
25
+ 403: `Forbidden`,
26
+ },
27
+ });
28
+ }
29
+ /**
30
+ * @param xApiVersion
31
+ * @returns EmptyEnvelope OK
32
+ * @throws ApiError
33
+ */
34
+ static getApiV2StorageServiceAvatarsUser(xApiVersion) {
35
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
36
+ method: 'GET',
37
+ url: '/api/v2/StorageService/Avatars/User',
38
+ headers: {
39
+ 'x-api-version': xApiVersion,
40
+ },
41
+ errors: {
42
+ 401: `Unauthorized`,
43
+ 403: `Forbidden`,
44
+ },
45
+ });
46
+ }
47
+ /**
48
+ * @param xApiVersion
49
+ * @param formData
50
+ * @returns EmptyEnvelope OK
51
+ * @throws ApiError
52
+ */
53
+ static postApiV2StorageServiceAvatarsUser(xApiVersion, formData) {
54
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
55
+ method: 'POST',
56
+ url: '/api/v2/StorageService/Avatars/User',
57
+ headers: {
58
+ 'x-api-version': xApiVersion,
59
+ },
60
+ formData: formData,
61
+ mediaType: 'multipart/form-data',
62
+ errors: {
63
+ 401: `Unauthorized`,
64
+ 403: `Forbidden`,
65
+ },
66
+ });
67
+ }
68
+ /**
69
+ * @param userId
70
+ * @param xApiVersion
71
+ * @returns EmptyEnvelope OK
72
+ * @throws ApiError
73
+ */
74
+ static getApiV2StorageServiceAvatarsUser1(userId, xApiVersion) {
75
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
76
+ method: 'GET',
77
+ url: '/api/v2/StorageService/Avatars/User/{userId}',
78
+ path: {
79
+ 'userId': userId,
80
+ },
81
+ headers: {
82
+ 'x-api-version': xApiVersion,
83
+ },
84
+ errors: {
85
+ 401: `Unauthorized`,
86
+ 403: `Forbidden`,
87
+ },
88
+ });
89
+ }
90
+ /**
91
+ * @param tenantId
92
+ * @param xApiVersion
93
+ * @returns EmptyEnvelope OK
94
+ * @throws ApiError
95
+ */
96
+ static getApiV2StorageServiceAvatarsTenant(tenantId, xApiVersion) {
97
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
98
+ method: 'GET',
99
+ url: '/api/v2/StorageService/Avatars/Tenant/{tenantId}',
100
+ path: {
101
+ 'tenantId': tenantId,
102
+ },
103
+ headers: {
104
+ 'x-api-version': xApiVersion,
105
+ },
106
+ errors: {
107
+ 401: `Unauthorized`,
108
+ 403: `Forbidden`,
109
+ },
110
+ });
111
+ }
112
+ /**
113
+ * @param tenantId
114
+ * @param xApiVersion
115
+ * @param formData
116
+ * @returns EmptyEnvelope OK
117
+ * @throws ApiError
118
+ */
119
+ static postApiV2StorageServiceAvatarsTenant(tenantId, xApiVersion, formData) {
120
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
121
+ method: 'POST',
122
+ url: '/api/v2/StorageService/Avatars/Tenant/{tenantId}',
123
+ path: {
124
+ 'tenantId': tenantId,
125
+ },
126
+ headers: {
127
+ 'x-api-version': xApiVersion,
128
+ },
129
+ formData: formData,
130
+ mediaType: 'multipart/form-data',
131
+ errors: {
132
+ 401: `Unauthorized`,
133
+ 403: `Forbidden`,
134
+ },
135
+ });
136
+ }
137
+ /**
138
+ * @param contactId
139
+ * @param xApiVersion
140
+ * @returns EmptyEnvelope OK
141
+ * @throws ApiError
142
+ */
143
+ static getApiV2StorageServiceAvatarsContact(contactId, xApiVersion) {
144
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
145
+ method: 'GET',
146
+ url: '/api/v2/StorageService/Avatars/Contact/{contactId}',
147
+ path: {
148
+ 'contactId': contactId,
149
+ },
150
+ headers: {
151
+ 'x-api-version': xApiVersion,
152
+ },
153
+ errors: {
154
+ 401: `Unauthorized`,
155
+ 403: `Forbidden`,
156
+ },
157
+ });
158
+ }
159
+ /**
160
+ * @param contactId
161
+ * @param tenantId
162
+ * @param xApiVersion
163
+ * @param formData
164
+ * @returns EmptyEnvelope OK
165
+ * @throws ApiError
166
+ */
167
+ static postApiV2StorageServiceAvatarsContacts(contactId, tenantId, xApiVersion, formData) {
168
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
169
+ method: 'POST',
170
+ url: '/api/v2/StorageService/Avatars/Contacts/{contactId}',
171
+ path: {
172
+ 'contactId': contactId,
173
+ },
174
+ headers: {
175
+ 'x-api-version': xApiVersion,
176
+ },
177
+ query: {
178
+ 'tenantId': tenantId,
179
+ },
180
+ formData: formData,
181
+ mediaType: 'multipart/form-data',
182
+ errors: {
183
+ 401: `Unauthorized`,
184
+ 403: `Forbidden`,
185
+ },
186
+ });
187
+ }
188
+ }
189
+ exports.AvatarsService = AvatarsService;
@@ -0,0 +1,223 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { EmptyEnvelope } from '../models/EmptyEnvelope';
6
+ import type { CancelablePromise } from '../core/CancelablePromise';
7
+ import { OpenAPI } from '../core/OpenAPI';
8
+ import { request as __request } from '../core/request';
9
+ export class AvatarsService {
10
+ /**
11
+ * @param socialProfileId
12
+ * @param xApiVersion
13
+ * @returns EmptyEnvelope OK
14
+ * @throws ApiError
15
+ */
16
+ public static getApiV2StorageServiceAvatars(
17
+ socialProfileId: string,
18
+ xApiVersion?: string,
19
+ ): CancelablePromise<EmptyEnvelope> {
20
+ return __request(OpenAPI, {
21
+ method: 'GET',
22
+ url: '/api/v2/StorageService/Avatars/{socialProfileId}',
23
+ path: {
24
+ 'socialProfileId': socialProfileId,
25
+ },
26
+ headers: {
27
+ 'x-api-version': xApiVersion,
28
+ },
29
+ errors: {
30
+ 401: `Unauthorized`,
31
+ 403: `Forbidden`,
32
+ },
33
+ });
34
+ }
35
+ /**
36
+ * @param xApiVersion
37
+ * @returns EmptyEnvelope OK
38
+ * @throws ApiError
39
+ */
40
+ public static getApiV2StorageServiceAvatarsUser(
41
+ xApiVersion?: string,
42
+ ): CancelablePromise<EmptyEnvelope> {
43
+ return __request(OpenAPI, {
44
+ method: 'GET',
45
+ url: '/api/v2/StorageService/Avatars/User',
46
+ headers: {
47
+ 'x-api-version': xApiVersion,
48
+ },
49
+ errors: {
50
+ 401: `Unauthorized`,
51
+ 403: `Forbidden`,
52
+ },
53
+ });
54
+ }
55
+ /**
56
+ * @param xApiVersion
57
+ * @param formData
58
+ * @returns EmptyEnvelope OK
59
+ * @throws ApiError
60
+ */
61
+ public static postApiV2StorageServiceAvatarsUser(
62
+ xApiVersion?: string,
63
+ formData?: {
64
+ avatar?: Blob;
65
+ },
66
+ ): CancelablePromise<EmptyEnvelope> {
67
+ return __request(OpenAPI, {
68
+ method: 'POST',
69
+ url: '/api/v2/StorageService/Avatars/User',
70
+ headers: {
71
+ 'x-api-version': xApiVersion,
72
+ },
73
+ formData: formData,
74
+ mediaType: 'multipart/form-data',
75
+ errors: {
76
+ 401: `Unauthorized`,
77
+ 403: `Forbidden`,
78
+ },
79
+ });
80
+ }
81
+ /**
82
+ * @param userId
83
+ * @param xApiVersion
84
+ * @returns EmptyEnvelope OK
85
+ * @throws ApiError
86
+ */
87
+ public static getApiV2StorageServiceAvatarsUser1(
88
+ userId: string,
89
+ xApiVersion?: string,
90
+ ): CancelablePromise<EmptyEnvelope> {
91
+ return __request(OpenAPI, {
92
+ method: 'GET',
93
+ url: '/api/v2/StorageService/Avatars/User/{userId}',
94
+ path: {
95
+ 'userId': userId,
96
+ },
97
+ headers: {
98
+ 'x-api-version': xApiVersion,
99
+ },
100
+ errors: {
101
+ 401: `Unauthorized`,
102
+ 403: `Forbidden`,
103
+ },
104
+ });
105
+ }
106
+ /**
107
+ * @param tenantId
108
+ * @param xApiVersion
109
+ * @returns EmptyEnvelope OK
110
+ * @throws ApiError
111
+ */
112
+ public static getApiV2StorageServiceAvatarsTenant(
113
+ tenantId: string,
114
+ xApiVersion?: string,
115
+ ): CancelablePromise<EmptyEnvelope> {
116
+ return __request(OpenAPI, {
117
+ method: 'GET',
118
+ url: '/api/v2/StorageService/Avatars/Tenant/{tenantId}',
119
+ path: {
120
+ 'tenantId': tenantId,
121
+ },
122
+ headers: {
123
+ 'x-api-version': xApiVersion,
124
+ },
125
+ errors: {
126
+ 401: `Unauthorized`,
127
+ 403: `Forbidden`,
128
+ },
129
+ });
130
+ }
131
+ /**
132
+ * @param tenantId
133
+ * @param xApiVersion
134
+ * @param formData
135
+ * @returns EmptyEnvelope OK
136
+ * @throws ApiError
137
+ */
138
+ public static postApiV2StorageServiceAvatarsTenant(
139
+ tenantId: string,
140
+ xApiVersion?: string,
141
+ formData?: {
142
+ avatar?: Blob;
143
+ },
144
+ ): CancelablePromise<EmptyEnvelope> {
145
+ return __request(OpenAPI, {
146
+ method: 'POST',
147
+ url: '/api/v2/StorageService/Avatars/Tenant/{tenantId}',
148
+ path: {
149
+ 'tenantId': tenantId,
150
+ },
151
+ headers: {
152
+ 'x-api-version': xApiVersion,
153
+ },
154
+ formData: formData,
155
+ mediaType: 'multipart/form-data',
156
+ errors: {
157
+ 401: `Unauthorized`,
158
+ 403: `Forbidden`,
159
+ },
160
+ });
161
+ }
162
+ /**
163
+ * @param contactId
164
+ * @param xApiVersion
165
+ * @returns EmptyEnvelope OK
166
+ * @throws ApiError
167
+ */
168
+ public static getApiV2StorageServiceAvatarsContact(
169
+ contactId: string,
170
+ xApiVersion?: string,
171
+ ): CancelablePromise<EmptyEnvelope> {
172
+ return __request(OpenAPI, {
173
+ method: 'GET',
174
+ url: '/api/v2/StorageService/Avatars/Contact/{contactId}',
175
+ path: {
176
+ 'contactId': contactId,
177
+ },
178
+ headers: {
179
+ 'x-api-version': xApiVersion,
180
+ },
181
+ errors: {
182
+ 401: `Unauthorized`,
183
+ 403: `Forbidden`,
184
+ },
185
+ });
186
+ }
187
+ /**
188
+ * @param contactId
189
+ * @param tenantId
190
+ * @param xApiVersion
191
+ * @param formData
192
+ * @returns EmptyEnvelope OK
193
+ * @throws ApiError
194
+ */
195
+ public static postApiV2StorageServiceAvatarsContacts(
196
+ contactId: string,
197
+ tenantId?: string,
198
+ xApiVersion?: string,
199
+ formData?: {
200
+ avatar?: Blob;
201
+ },
202
+ ): CancelablePromise<EmptyEnvelope> {
203
+ return __request(OpenAPI, {
204
+ method: 'POST',
205
+ url: '/api/v2/StorageService/Avatars/Contacts/{contactId}',
206
+ path: {
207
+ 'contactId': contactId,
208
+ },
209
+ headers: {
210
+ 'x-api-version': xApiVersion,
211
+ },
212
+ query: {
213
+ 'tenantId': tenantId,
214
+ },
215
+ formData: formData,
216
+ mediaType: 'multipart/form-data',
217
+ errors: {
218
+ 401: `Unauthorized`,
219
+ 403: `Forbidden`,
220
+ },
221
+ });
222
+ }
223
+ }
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BlobsService = void 0;
4
+ const OpenAPI_1 = require("../core/OpenAPI");
5
+ const request_1 = require("../core/request");
6
+ class BlobsService {
7
+ /**
8
+ * @param tenantId
9
+ * @param folderPath
10
+ * @param browseFilter
11
+ * @param filePrefix
12
+ * @param recurse
13
+ * @param maxResults
14
+ * @param includeAttributes
15
+ * @param xApiVersion
16
+ * @returns BlobEnvelope OK
17
+ * @throws ApiError
18
+ */
19
+ static getBlobsAsync(tenantId, folderPath, browseFilter, filePrefix, recurse, maxResults, includeAttributes, xApiVersion) {
20
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
21
+ method: 'GET',
22
+ url: '/api/v2/StorageService/Blobs',
23
+ headers: {
24
+ 'x-api-version': xApiVersion,
25
+ },
26
+ query: {
27
+ 'tenantId': tenantId,
28
+ 'folderPath': folderPath,
29
+ 'browseFilter': browseFilter,
30
+ 'filePrefix': filePrefix,
31
+ 'recurse': recurse,
32
+ 'maxResults': maxResults,
33
+ 'includeAttributes': includeAttributes,
34
+ },
35
+ errors: {
36
+ 401: `Unauthorized`,
37
+ 403: `Forbidden`,
38
+ },
39
+ });
40
+ }
41
+ /**
42
+ * @param tenantId
43
+ * @param filePath
44
+ * @param xApiVersion
45
+ * @returns BlobEnvelope OK
46
+ * @throws ApiError
47
+ */
48
+ static getBlobAsync(tenantId, filePath, xApiVersion) {
49
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
50
+ method: 'GET',
51
+ url: '/api/v2/StorageService/Blobs/Single',
52
+ headers: {
53
+ 'x-api-version': xApiVersion,
54
+ },
55
+ query: {
56
+ 'tenantId': tenantId,
57
+ 'filePath': filePath,
58
+ },
59
+ errors: {
60
+ 401: `Unauthorized`,
61
+ 403: `Forbidden`,
62
+ },
63
+ });
64
+ }
65
+ }
66
+ exports.BlobsService = BlobsService;
@@ -0,0 +1,81 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { BlobEnvelope } from '../models/BlobEnvelope';
6
+ import type { CancelablePromise } from '../core/CancelablePromise';
7
+ import { OpenAPI } from '../core/OpenAPI';
8
+ import { request as __request } from '../core/request';
9
+ export class BlobsService {
10
+ /**
11
+ * @param tenantId
12
+ * @param folderPath
13
+ * @param browseFilter
14
+ * @param filePrefix
15
+ * @param recurse
16
+ * @param maxResults
17
+ * @param includeAttributes
18
+ * @param xApiVersion
19
+ * @returns BlobEnvelope OK
20
+ * @throws ApiError
21
+ */
22
+ public static getBlobsAsync(
23
+ tenantId?: string,
24
+ folderPath?: string,
25
+ browseFilter?: string,
26
+ filePrefix?: string,
27
+ recurse?: boolean,
28
+ maxResults?: number,
29
+ includeAttributes?: boolean,
30
+ xApiVersion?: string,
31
+ ): CancelablePromise<BlobEnvelope> {
32
+ return __request(OpenAPI, {
33
+ method: 'GET',
34
+ url: '/api/v2/StorageService/Blobs',
35
+ headers: {
36
+ 'x-api-version': xApiVersion,
37
+ },
38
+ query: {
39
+ 'tenantId': tenantId,
40
+ 'folderPath': folderPath,
41
+ 'browseFilter': browseFilter,
42
+ 'filePrefix': filePrefix,
43
+ 'recurse': recurse,
44
+ 'maxResults': maxResults,
45
+ 'includeAttributes': includeAttributes,
46
+ },
47
+ errors: {
48
+ 401: `Unauthorized`,
49
+ 403: `Forbidden`,
50
+ },
51
+ });
52
+ }
53
+ /**
54
+ * @param tenantId
55
+ * @param filePath
56
+ * @param xApiVersion
57
+ * @returns BlobEnvelope OK
58
+ * @throws ApiError
59
+ */
60
+ public static getBlobAsync(
61
+ tenantId?: string,
62
+ filePath?: string,
63
+ xApiVersion?: string,
64
+ ): CancelablePromise<BlobEnvelope> {
65
+ return __request(OpenAPI, {
66
+ method: 'GET',
67
+ url: '/api/v2/StorageService/Blobs/Single',
68
+ headers: {
69
+ 'x-api-version': xApiVersion,
70
+ },
71
+ query: {
72
+ 'tenantId': tenantId,
73
+ 'filePath': filePath,
74
+ },
75
+ errors: {
76
+ 401: `Unauthorized`,
77
+ 403: `Forbidden`,
78
+ },
79
+ });
80
+ }
81
+ }