@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,1042 @@
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/StorageService/Avatars/{socialProfileId}": {
9
+ get: {
10
+ parameters: {
11
+ query?: {
12
+ "api-version"?: string;
13
+ };
14
+ header?: {
15
+ "x-api-version"?: string;
16
+ };
17
+ path: {
18
+ socialProfileId: string;
19
+ };
20
+ };
21
+ responses: {
22
+ /** @description OK */
23
+ 200: {
24
+ content: {
25
+ "application/json": components["schemas"]["EmptyEnvelope"];
26
+ "image/png": components["schemas"]["EmptyEnvelope"];
27
+ };
28
+ };
29
+ /** @description Unauthorized */
30
+ 401: {
31
+ content: {
32
+ "application/json": components["schemas"]["ErrorEnvelope"];
33
+ "image/png": components["schemas"]["ErrorEnvelope"];
34
+ };
35
+ };
36
+ /** @description Forbidden */
37
+ 403: {
38
+ content: {
39
+ "application/json": components["schemas"]["ErrorEnvelope"];
40
+ "image/png": components["schemas"]["ErrorEnvelope"];
41
+ };
42
+ };
43
+ };
44
+ };
45
+ };
46
+ "/api/v2/StorageService/Avatars/User": {
47
+ get: {
48
+ parameters: {
49
+ query?: {
50
+ "api-version"?: string;
51
+ };
52
+ header?: {
53
+ "x-api-version"?: string;
54
+ };
55
+ };
56
+ responses: {
57
+ /** @description OK */
58
+ 200: {
59
+ content: {
60
+ "application/json": components["schemas"]["EmptyEnvelope"];
61
+ "image/png": components["schemas"]["EmptyEnvelope"];
62
+ };
63
+ };
64
+ /** @description Unauthorized */
65
+ 401: {
66
+ content: {
67
+ "application/json": components["schemas"]["ErrorEnvelope"];
68
+ "image/png": components["schemas"]["ErrorEnvelope"];
69
+ };
70
+ };
71
+ /** @description Forbidden */
72
+ 403: {
73
+ content: {
74
+ "application/json": components["schemas"]["ErrorEnvelope"];
75
+ "image/png": components["schemas"]["ErrorEnvelope"];
76
+ };
77
+ };
78
+ };
79
+ };
80
+ post: {
81
+ parameters: {
82
+ query?: {
83
+ "api-version"?: string;
84
+ };
85
+ header?: {
86
+ "x-api-version"?: string;
87
+ };
88
+ };
89
+ requestBody?: {
90
+ content: {
91
+ "multipart/form-data": {
92
+ /** Format: binary */
93
+ avatar?: string;
94
+ };
95
+ };
96
+ };
97
+ responses: {
98
+ /** @description OK */
99
+ 200: {
100
+ content: {
101
+ "application/json": components["schemas"]["EmptyEnvelope"];
102
+ "image/png": components["schemas"]["EmptyEnvelope"];
103
+ };
104
+ };
105
+ /** @description Unauthorized */
106
+ 401: {
107
+ content: {
108
+ "application/json": components["schemas"]["ErrorEnvelope"];
109
+ "image/png": components["schemas"]["ErrorEnvelope"];
110
+ };
111
+ };
112
+ /** @description Forbidden */
113
+ 403: {
114
+ content: {
115
+ "application/json": components["schemas"]["ErrorEnvelope"];
116
+ "image/png": components["schemas"]["ErrorEnvelope"];
117
+ };
118
+ };
119
+ };
120
+ };
121
+ };
122
+ "/api/v2/StorageService/Avatars/User/{userId}": {
123
+ get: {
124
+ parameters: {
125
+ query?: {
126
+ "api-version"?: string;
127
+ };
128
+ header?: {
129
+ "x-api-version"?: string;
130
+ };
131
+ path: {
132
+ userId: string;
133
+ };
134
+ };
135
+ responses: {
136
+ /** @description OK */
137
+ 200: {
138
+ content: {
139
+ "application/json": components["schemas"]["EmptyEnvelope"];
140
+ "image/png": components["schemas"]["EmptyEnvelope"];
141
+ };
142
+ };
143
+ /** @description Unauthorized */
144
+ 401: {
145
+ content: {
146
+ "application/json": components["schemas"]["ErrorEnvelope"];
147
+ "image/png": components["schemas"]["ErrorEnvelope"];
148
+ };
149
+ };
150
+ /** @description Forbidden */
151
+ 403: {
152
+ content: {
153
+ "application/json": components["schemas"]["ErrorEnvelope"];
154
+ "image/png": components["schemas"]["ErrorEnvelope"];
155
+ };
156
+ };
157
+ };
158
+ };
159
+ };
160
+ "/api/v2/StorageService/Avatars/Tenant/{tenantId}": {
161
+ get: {
162
+ parameters: {
163
+ query?: {
164
+ "api-version"?: string;
165
+ };
166
+ header?: {
167
+ "x-api-version"?: string;
168
+ };
169
+ path: {
170
+ tenantId: string;
171
+ };
172
+ };
173
+ responses: {
174
+ /** @description OK */
175
+ 200: {
176
+ content: {
177
+ "application/json": components["schemas"]["EmptyEnvelope"];
178
+ "image/png": components["schemas"]["EmptyEnvelope"];
179
+ };
180
+ };
181
+ /** @description Unauthorized */
182
+ 401: {
183
+ content: {
184
+ "application/json": components["schemas"]["ErrorEnvelope"];
185
+ "image/png": components["schemas"]["ErrorEnvelope"];
186
+ };
187
+ };
188
+ /** @description Forbidden */
189
+ 403: {
190
+ content: {
191
+ "application/json": components["schemas"]["ErrorEnvelope"];
192
+ "image/png": components["schemas"]["ErrorEnvelope"];
193
+ };
194
+ };
195
+ };
196
+ };
197
+ post: {
198
+ parameters: {
199
+ query?: {
200
+ "api-version"?: string;
201
+ };
202
+ header?: {
203
+ "x-api-version"?: string;
204
+ };
205
+ path: {
206
+ tenantId: string;
207
+ };
208
+ };
209
+ requestBody?: {
210
+ content: {
211
+ "multipart/form-data": {
212
+ /** Format: binary */
213
+ avatar?: string;
214
+ };
215
+ };
216
+ };
217
+ responses: {
218
+ /** @description OK */
219
+ 200: {
220
+ content: {
221
+ "application/json": components["schemas"]["EmptyEnvelope"];
222
+ "image/png": components["schemas"]["EmptyEnvelope"];
223
+ };
224
+ };
225
+ /** @description Unauthorized */
226
+ 401: {
227
+ content: {
228
+ "application/json": components["schemas"]["ErrorEnvelope"];
229
+ "image/png": components["schemas"]["ErrorEnvelope"];
230
+ };
231
+ };
232
+ /** @description Forbidden */
233
+ 403: {
234
+ content: {
235
+ "application/json": components["schemas"]["ErrorEnvelope"];
236
+ "image/png": components["schemas"]["ErrorEnvelope"];
237
+ };
238
+ };
239
+ };
240
+ };
241
+ };
242
+ "/api/v2/StorageService/Avatars/Contact/{contactId}": {
243
+ get: {
244
+ parameters: {
245
+ query?: {
246
+ "api-version"?: string;
247
+ };
248
+ header?: {
249
+ "x-api-version"?: string;
250
+ };
251
+ path: {
252
+ contactId: string;
253
+ };
254
+ };
255
+ responses: {
256
+ /** @description OK */
257
+ 200: {
258
+ content: {
259
+ "application/json": components["schemas"]["EmptyEnvelope"];
260
+ "image/png": components["schemas"]["EmptyEnvelope"];
261
+ };
262
+ };
263
+ /** @description Unauthorized */
264
+ 401: {
265
+ content: {
266
+ "application/json": components["schemas"]["ErrorEnvelope"];
267
+ "image/png": components["schemas"]["ErrorEnvelope"];
268
+ };
269
+ };
270
+ /** @description Forbidden */
271
+ 403: {
272
+ content: {
273
+ "application/json": components["schemas"]["ErrorEnvelope"];
274
+ "image/png": components["schemas"]["ErrorEnvelope"];
275
+ };
276
+ };
277
+ };
278
+ };
279
+ };
280
+ "/api/v2/StorageService/Avatars/Contacts/{contactId}": {
281
+ post: {
282
+ parameters: {
283
+ query?: {
284
+ tenantId?: string;
285
+ "api-version"?: string;
286
+ };
287
+ header?: {
288
+ "x-api-version"?: string;
289
+ };
290
+ path: {
291
+ contactId: string;
292
+ };
293
+ };
294
+ requestBody?: {
295
+ content: {
296
+ "multipart/form-data": {
297
+ /** Format: binary */
298
+ avatar?: string;
299
+ };
300
+ };
301
+ };
302
+ responses: {
303
+ /** @description OK */
304
+ 200: {
305
+ content: {
306
+ "application/json": components["schemas"]["EmptyEnvelope"];
307
+ "image/png": components["schemas"]["EmptyEnvelope"];
308
+ };
309
+ };
310
+ /** @description Unauthorized */
311
+ 401: {
312
+ content: {
313
+ "application/json": components["schemas"]["ErrorEnvelope"];
314
+ "image/png": components["schemas"]["ErrorEnvelope"];
315
+ };
316
+ };
317
+ /** @description Forbidden */
318
+ 403: {
319
+ content: {
320
+ "application/json": components["schemas"]["ErrorEnvelope"];
321
+ "image/png": components["schemas"]["ErrorEnvelope"];
322
+ };
323
+ };
324
+ };
325
+ };
326
+ };
327
+ "/api/v2/StorageService/Blobs": {
328
+ get: operations["GetBlobsAsync"];
329
+ };
330
+ "/api/v2/StorageService/Blobs/Single": {
331
+ get: operations["GetBlobAsync"];
332
+ };
333
+ "/api/v2/StorageService/Files": {
334
+ get: operations["GetFilesAsync"];
335
+ post: operations["CreateFileAsync"];
336
+ };
337
+ "/api/v2/StorageService/Files/{fileId}": {
338
+ get: operations["GetFileAsync"];
339
+ put: operations["UpdateFileAsync"];
340
+ delete: operations["DeleteFileAsync"];
341
+ };
342
+ "/api/v2/StorageService/Files/{fileId}/Raw": {
343
+ get: operations["DownloadFileAsync"];
344
+ };
345
+ "/api/v2/StorageService/RadzenEditor/Uploads/Single": {
346
+ post: {
347
+ parameters: {
348
+ query?: {
349
+ tenantId?: string;
350
+ "api-version"?: string;
351
+ };
352
+ header?: {
353
+ "x-api-version"?: string;
354
+ };
355
+ };
356
+ requestBody?: {
357
+ content: {
358
+ "multipart/form-data": {
359
+ /** Format: binary */
360
+ file?: string;
361
+ };
362
+ };
363
+ };
364
+ responses: {
365
+ /** @description OK */
366
+ 200: {
367
+ content: never;
368
+ };
369
+ };
370
+ };
371
+ };
372
+ "/api/v2/StorageService/RadzenEditor/Uploads/Image": {
373
+ post: {
374
+ parameters: {
375
+ query?: {
376
+ tenantId?: string;
377
+ "api-version"?: string;
378
+ };
379
+ header?: {
380
+ "x-api-version"?: string;
381
+ };
382
+ };
383
+ requestBody?: {
384
+ content: {
385
+ "multipart/form-data": {
386
+ /** Format: binary */
387
+ file?: string;
388
+ };
389
+ };
390
+ };
391
+ responses: {
392
+ /** @description OK */
393
+ 200: {
394
+ content: never;
395
+ };
396
+ };
397
+ };
398
+ };
399
+ "/api/v2/StorageService/RadzenEditor/Uploads/Multiple": {
400
+ post: {
401
+ parameters: {
402
+ query?: {
403
+ tenantId?: string;
404
+ "api-version"?: string;
405
+ };
406
+ header?: {
407
+ "x-api-version"?: string;
408
+ };
409
+ };
410
+ requestBody?: {
411
+ content: {
412
+ "multipart/form-data": {
413
+ files?: string[];
414
+ };
415
+ };
416
+ };
417
+ responses: {
418
+ /** @description OK */
419
+ 200: {
420
+ content: never;
421
+ };
422
+ };
423
+ };
424
+ };
425
+ "/api/v2/StorageService/RadzenEditor/Uploads/{id}": {
426
+ post: {
427
+ parameters: {
428
+ query?: {
429
+ tenantId?: string;
430
+ "api-version"?: string;
431
+ };
432
+ header?: {
433
+ "x-api-version"?: string;
434
+ };
435
+ path: {
436
+ id: number;
437
+ };
438
+ };
439
+ requestBody?: {
440
+ content: {
441
+ "multipart/form-data": {
442
+ files?: string[];
443
+ };
444
+ };
445
+ };
446
+ responses: {
447
+ /** @description OK */
448
+ 200: {
449
+ content: never;
450
+ };
451
+ };
452
+ };
453
+ };
454
+ "/api/v2/StorageService/RadzenEditor/Uploads/Specific": {
455
+ post: {
456
+ parameters: {
457
+ query?: {
458
+ tenantId?: string;
459
+ "api-version"?: string;
460
+ };
461
+ header?: {
462
+ "x-api-version"?: string;
463
+ };
464
+ };
465
+ requestBody?: {
466
+ content: {
467
+ "multipart/form-data": {
468
+ /** Format: binary */
469
+ file?: string;
470
+ };
471
+ };
472
+ };
473
+ responses: {
474
+ /** @description OK */
475
+ 200: {
476
+ content: never;
477
+ };
478
+ };
479
+ };
480
+ };
481
+ "/api/v2/StorageService/Uploads": {
482
+ post: {
483
+ parameters: {
484
+ query?: {
485
+ tenantId?: string;
486
+ "api-version"?: string;
487
+ };
488
+ header?: {
489
+ "x-api-version"?: string;
490
+ };
491
+ };
492
+ requestBody?: {
493
+ content: {
494
+ "multipart/form-data": {
495
+ notes?: string;
496
+ title?: string;
497
+ author?: string;
498
+ isFolder?: boolean;
499
+ fileName?: string;
500
+ abstract?: string;
501
+ keyWords?: string;
502
+ validResponse?: boolean;
503
+ parentFileUploadId?: string;
504
+ filePath?: string;
505
+ /** Format: binary */
506
+ file?: string;
507
+ /** Format: uuid */
508
+ iD?: string;
509
+ /** Format: date-time */
510
+ timestamp?: string;
511
+ };
512
+ };
513
+ };
514
+ responses: {
515
+ /** @description OK */
516
+ 200: {
517
+ content: {
518
+ "application/json": components["schemas"]["EmptyEnvelope"];
519
+ "application/xml": components["schemas"]["EmptyEnvelope"];
520
+ };
521
+ };
522
+ /** @description Unauthorized */
523
+ 401: {
524
+ content: {
525
+ "application/json": components["schemas"]["ErrorEnvelope"];
526
+ "application/xml": components["schemas"]["ErrorEnvelope"];
527
+ };
528
+ };
529
+ /** @description Forbidden */
530
+ 403: {
531
+ content: {
532
+ "application/json": components["schemas"]["ErrorEnvelope"];
533
+ "application/xml": components["schemas"]["ErrorEnvelope"];
534
+ };
535
+ };
536
+ };
537
+ };
538
+ };
539
+ }
540
+
541
+ export type webhooks = Record<string, never>;
542
+
543
+ export interface components {
544
+ schemas: {
545
+ Blob: {
546
+ /**
547
+ * Format: int32
548
+ * @enum {integer}
549
+ */
550
+ kind?: 0 | 1;
551
+ isFolder?: boolean;
552
+ isFile?: boolean;
553
+ folderPath?: string | null;
554
+ name?: string | null;
555
+ /** Format: int64 */
556
+ size?: number | null;
557
+ md5?: string | null;
558
+ /** Format: date-time */
559
+ createdTime?: string | null;
560
+ /** Format: date-time */
561
+ lastModificationTime?: string | null;
562
+ fullPath?: string | null;
563
+ properties?: {
564
+ [key: string]: unknown;
565
+ } | null;
566
+ metadata?: ({
567
+ [key: string]: string | null;
568
+ }) | null;
569
+ isRootFolder?: boolean;
570
+ };
571
+ BlobEnvelope: {
572
+ isSuccess?: boolean;
573
+ errorMessage?: string | null;
574
+ correlationId?: string | null;
575
+ /** Format: date-time */
576
+ timestamp?: string;
577
+ activityId?: string | null;
578
+ result?: components["schemas"]["Blob"];
579
+ };
580
+ EmptyEnvelope: {
581
+ isSuccess?: boolean;
582
+ errorMessage?: string | null;
583
+ correlationId?: string | null;
584
+ /** Format: date-time */
585
+ timestamp?: string;
586
+ activityId?: string | null;
587
+ };
588
+ ErrorEnvelope: {
589
+ isSuccess?: boolean;
590
+ errorMessage?: string | null;
591
+ correlationId?: string | null;
592
+ /** Format: date-time */
593
+ timestamp?: string;
594
+ activityId?: string | null;
595
+ };
596
+ FileUploadCreateDto: {
597
+ /** Format: uuid */
598
+ id?: string;
599
+ /** Format: date-time */
600
+ timestamp?: string;
601
+ notes?: string | null;
602
+ title?: string | null;
603
+ author?: string | null;
604
+ isFolder?: boolean;
605
+ fileName?: string | null;
606
+ abstract?: string | null;
607
+ keyWords?: string | null;
608
+ validResponse?: boolean;
609
+ parentFileUploadId?: string | null;
610
+ filePath?: string | null;
611
+ /** Format: binary */
612
+ file?: string | null;
613
+ };
614
+ FileUploadDto: {
615
+ id?: string | null;
616
+ /** Format: date-time */
617
+ timestamp?: string | null;
618
+ notes?: string | null;
619
+ title?: string | null;
620
+ author?: string | null;
621
+ isFolder?: boolean;
622
+ hash?: string | null;
623
+ fileUrl?: string | null;
624
+ filePath?: string | null;
625
+ fileName?: string | null;
626
+ abstract?: string | null;
627
+ keyWords?: string | null;
628
+ metadata?: string | null;
629
+ /** Format: int64 */
630
+ fileLength?: number;
631
+ contentType?: string | null;
632
+ parentFileId?: string | null;
633
+ validResponse?: boolean;
634
+ userId?: string | null;
635
+ tenantId?: string | null;
636
+ enrollmentId?: string | null;
637
+ socialProfileId?: string | null;
638
+ folderPath?: string | null;
639
+ };
640
+ FileUploadDtoEnvelope: {
641
+ isSuccess?: boolean;
642
+ errorMessage?: string | null;
643
+ correlationId?: string | null;
644
+ /** Format: date-time */
645
+ timestamp?: string;
646
+ activityId?: string | null;
647
+ result?: components["schemas"]["FileUploadDto"];
648
+ };
649
+ FileUploadUpdateDto: {
650
+ notes?: string | null;
651
+ metadata?: string | null;
652
+ title?: string | null;
653
+ author?: string | null;
654
+ isFolder?: boolean;
655
+ fileName?: string | null;
656
+ abstract?: string | null;
657
+ keyWords?: string | null;
658
+ validResponse?: boolean;
659
+ parentFileUploadID?: string | null;
660
+ filePath?: string | null;
661
+ /** Format: binary */
662
+ file?: string | null;
663
+ };
664
+ };
665
+ responses: never;
666
+ parameters: never;
667
+ requestBodies: never;
668
+ headers: never;
669
+ pathItems: never;
670
+ }
671
+
672
+ export type $defs = Record<string, never>;
673
+
674
+ export type external = Record<string, never>;
675
+
676
+ export interface operations {
677
+
678
+ GetBlobsAsync: {
679
+ parameters: {
680
+ query?: {
681
+ tenantId?: string;
682
+ folderPath?: string;
683
+ browseFilter?: string;
684
+ filePrefix?: string;
685
+ recurse?: boolean;
686
+ maxResults?: number;
687
+ includeAttributes?: boolean;
688
+ "api-version"?: string;
689
+ };
690
+ header?: {
691
+ "x-api-version"?: string;
692
+ };
693
+ };
694
+ responses: {
695
+ /** @description OK */
696
+ 200: {
697
+ content: {
698
+ "application/json": components["schemas"]["BlobEnvelope"];
699
+ "image/png": components["schemas"]["BlobEnvelope"];
700
+ };
701
+ };
702
+ /** @description Unauthorized */
703
+ 401: {
704
+ content: {
705
+ "application/json": components["schemas"]["ErrorEnvelope"];
706
+ "image/png": components["schemas"]["ErrorEnvelope"];
707
+ };
708
+ };
709
+ /** @description Forbidden */
710
+ 403: {
711
+ content: {
712
+ "application/json": components["schemas"]["ErrorEnvelope"];
713
+ "image/png": components["schemas"]["ErrorEnvelope"];
714
+ };
715
+ };
716
+ };
717
+ };
718
+ GetBlobAsync: {
719
+ parameters: {
720
+ query?: {
721
+ tenantId?: string;
722
+ filePath?: string;
723
+ "api-version"?: string;
724
+ };
725
+ header?: {
726
+ "x-api-version"?: string;
727
+ };
728
+ };
729
+ responses: {
730
+ /** @description OK */
731
+ 200: {
732
+ content: {
733
+ "application/json": components["schemas"]["BlobEnvelope"];
734
+ "image/png": components["schemas"]["BlobEnvelope"];
735
+ };
736
+ };
737
+ /** @description Unauthorized */
738
+ 401: {
739
+ content: {
740
+ "application/json": components["schemas"]["ErrorEnvelope"];
741
+ "image/png": components["schemas"]["ErrorEnvelope"];
742
+ };
743
+ };
744
+ /** @description Forbidden */
745
+ 403: {
746
+ content: {
747
+ "application/json": components["schemas"]["ErrorEnvelope"];
748
+ "image/png": components["schemas"]["ErrorEnvelope"];
749
+ };
750
+ };
751
+ };
752
+ };
753
+ GetFilesAsync: {
754
+ parameters: {
755
+ query?: {
756
+ tenantId?: string;
757
+ "api-version"?: string;
758
+ };
759
+ header?: {
760
+ "x-api-version"?: string;
761
+ };
762
+ };
763
+ responses: {
764
+ /** @description OK */
765
+ 200: {
766
+ content: {
767
+ "application/json": components["schemas"]["FileUploadDtoEnvelope"];
768
+ "image/png": components["schemas"]["FileUploadDtoEnvelope"];
769
+ };
770
+ };
771
+ /** @description Unauthorized */
772
+ 401: {
773
+ content: {
774
+ "application/json": components["schemas"]["ErrorEnvelope"];
775
+ "image/png": components["schemas"]["ErrorEnvelope"];
776
+ };
777
+ };
778
+ /** @description Forbidden */
779
+ 403: {
780
+ content: {
781
+ "application/json": components["schemas"]["ErrorEnvelope"];
782
+ "image/png": components["schemas"]["ErrorEnvelope"];
783
+ };
784
+ };
785
+ };
786
+ };
787
+ CreateFileAsync: {
788
+ parameters: {
789
+ query?: {
790
+ tenantId?: string;
791
+ "api-version"?: string;
792
+ };
793
+ header?: {
794
+ "x-api-version"?: string;
795
+ };
796
+ };
797
+ requestBody?: {
798
+ content: {
799
+ "multipart/form-data": components["schemas"]["FileUploadCreateDto"];
800
+ };
801
+ };
802
+ responses: {
803
+ /** @description Created */
804
+ 201: {
805
+ content: {
806
+ "application/json": components["schemas"]["EmptyEnvelope"];
807
+ "image/png": components["schemas"]["EmptyEnvelope"];
808
+ };
809
+ };
810
+ /** @description Bad Request */
811
+ 400: {
812
+ content: {
813
+ "application/json": components["schemas"]["ErrorEnvelope"];
814
+ "image/png": components["schemas"]["ErrorEnvelope"];
815
+ };
816
+ };
817
+ /** @description Unauthorized */
818
+ 401: {
819
+ content: {
820
+ "application/json": components["schemas"]["ErrorEnvelope"];
821
+ "image/png": components["schemas"]["ErrorEnvelope"];
822
+ };
823
+ };
824
+ /** @description Forbidden */
825
+ 403: {
826
+ content: {
827
+ "application/json": components["schemas"]["ErrorEnvelope"];
828
+ "image/png": components["schemas"]["ErrorEnvelope"];
829
+ };
830
+ };
831
+ /** @description Conflict */
832
+ 409: {
833
+ content: {
834
+ "application/json": components["schemas"]["ErrorEnvelope"];
835
+ "image/png": components["schemas"]["ErrorEnvelope"];
836
+ };
837
+ };
838
+ /** @description Unprocessable Content */
839
+ 422: {
840
+ content: {
841
+ "application/json": components["schemas"]["ErrorEnvelope"];
842
+ "image/png": components["schemas"]["ErrorEnvelope"];
843
+ };
844
+ };
845
+ };
846
+ };
847
+ GetFileAsync: {
848
+ parameters: {
849
+ query?: {
850
+ tenantId?: string;
851
+ "api-version"?: string;
852
+ };
853
+ header?: {
854
+ "x-api-version"?: string;
855
+ };
856
+ path: {
857
+ fileId: string;
858
+ };
859
+ };
860
+ responses: {
861
+ /** @description OK */
862
+ 200: {
863
+ content: {
864
+ "application/json": components["schemas"]["FileUploadDtoEnvelope"];
865
+ "image/png": components["schemas"]["FileUploadDtoEnvelope"];
866
+ };
867
+ };
868
+ /** @description Unauthorized */
869
+ 401: {
870
+ content: {
871
+ "application/json": components["schemas"]["ErrorEnvelope"];
872
+ "image/png": components["schemas"]["ErrorEnvelope"];
873
+ };
874
+ };
875
+ /** @description Forbidden */
876
+ 403: {
877
+ content: {
878
+ "application/json": components["schemas"]["ErrorEnvelope"];
879
+ "image/png": components["schemas"]["ErrorEnvelope"];
880
+ };
881
+ };
882
+ };
883
+ };
884
+ UpdateFileAsync: {
885
+ parameters: {
886
+ query?: {
887
+ tenantId?: string;
888
+ "api-version"?: string;
889
+ };
890
+ header?: {
891
+ "x-api-version"?: string;
892
+ };
893
+ path: {
894
+ fileId: string;
895
+ };
896
+ };
897
+ requestBody?: {
898
+ content: {
899
+ "multipart/form-data": components["schemas"]["FileUploadUpdateDto"];
900
+ };
901
+ };
902
+ responses: {
903
+ /** @description OK */
904
+ 200: {
905
+ content: {
906
+ "application/json": components["schemas"]["FileUploadDtoEnvelope"];
907
+ "image/png": components["schemas"]["FileUploadDtoEnvelope"];
908
+ };
909
+ };
910
+ /** @description Bad Request */
911
+ 400: {
912
+ content: {
913
+ "application/json": components["schemas"]["ErrorEnvelope"];
914
+ "image/png": components["schemas"]["ErrorEnvelope"];
915
+ };
916
+ };
917
+ /** @description Unauthorized */
918
+ 401: {
919
+ content: {
920
+ "application/json": components["schemas"]["ErrorEnvelope"];
921
+ "image/png": components["schemas"]["ErrorEnvelope"];
922
+ };
923
+ };
924
+ /** @description Forbidden */
925
+ 403: {
926
+ content: {
927
+ "application/json": components["schemas"]["ErrorEnvelope"];
928
+ "image/png": components["schemas"]["ErrorEnvelope"];
929
+ };
930
+ };
931
+ /** @description Conflict */
932
+ 409: {
933
+ content: {
934
+ "application/json": components["schemas"]["ErrorEnvelope"];
935
+ "image/png": components["schemas"]["ErrorEnvelope"];
936
+ };
937
+ };
938
+ /** @description Unprocessable Content */
939
+ 422: {
940
+ content: {
941
+ "application/json": components["schemas"]["ErrorEnvelope"];
942
+ "image/png": components["schemas"]["ErrorEnvelope"];
943
+ };
944
+ };
945
+ };
946
+ };
947
+ DeleteFileAsync: {
948
+ parameters: {
949
+ query?: {
950
+ tenantId?: string;
951
+ "api-version"?: string;
952
+ };
953
+ header?: {
954
+ "x-api-version"?: string;
955
+ };
956
+ path: {
957
+ fileId: string;
958
+ };
959
+ };
960
+ responses: {
961
+ /** @description OK */
962
+ 200: {
963
+ content: {
964
+ "application/json": components["schemas"]["FileUploadDtoEnvelope"];
965
+ "image/png": components["schemas"]["FileUploadDtoEnvelope"];
966
+ };
967
+ };
968
+ /** @description Bad Request */
969
+ 400: {
970
+ content: {
971
+ "application/json": components["schemas"]["ErrorEnvelope"];
972
+ "image/png": components["schemas"]["ErrorEnvelope"];
973
+ };
974
+ };
975
+ /** @description Unauthorized */
976
+ 401: {
977
+ content: {
978
+ "application/json": components["schemas"]["ErrorEnvelope"];
979
+ "image/png": components["schemas"]["ErrorEnvelope"];
980
+ };
981
+ };
982
+ /** @description Forbidden */
983
+ 403: {
984
+ content: {
985
+ "application/json": components["schemas"]["ErrorEnvelope"];
986
+ "image/png": components["schemas"]["ErrorEnvelope"];
987
+ };
988
+ };
989
+ /** @description Conflict */
990
+ 409: {
991
+ content: {
992
+ "application/json": components["schemas"]["ErrorEnvelope"];
993
+ "image/png": components["schemas"]["ErrorEnvelope"];
994
+ };
995
+ };
996
+ /** @description Unprocessable Content */
997
+ 422: {
998
+ content: {
999
+ "application/json": components["schemas"]["ErrorEnvelope"];
1000
+ "image/png": components["schemas"]["ErrorEnvelope"];
1001
+ };
1002
+ };
1003
+ };
1004
+ };
1005
+ DownloadFileAsync: {
1006
+ parameters: {
1007
+ query?: {
1008
+ tenantId?: string;
1009
+ "api-version"?: string;
1010
+ };
1011
+ header?: {
1012
+ "x-api-version"?: string;
1013
+ };
1014
+ path: {
1015
+ fileId: string;
1016
+ };
1017
+ };
1018
+ responses: {
1019
+ /** @description OK */
1020
+ 200: {
1021
+ content: {
1022
+ "application/json": string;
1023
+ "image/png": string;
1024
+ };
1025
+ };
1026
+ /** @description Unauthorized */
1027
+ 401: {
1028
+ content: {
1029
+ "application/json": components["schemas"]["ErrorEnvelope"];
1030
+ "image/png": components["schemas"]["ErrorEnvelope"];
1031
+ };
1032
+ };
1033
+ /** @description Forbidden */
1034
+ 403: {
1035
+ content: {
1036
+ "application/json": components["schemas"]["ErrorEnvelope"];
1037
+ "image/png": components["schemas"]["ErrorEnvelope"];
1038
+ };
1039
+ };
1040
+ };
1041
+ };
1042
+ }