@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
@@ -5,1123 +5,97 @@
5
5
 
6
6
 
7
7
  export interface paths {
8
- "/version": {
9
- get: {
10
- responses: {
11
- /** @description OK */
12
- 200: {
13
- content: never;
14
- };
15
- };
16
- };
17
- };
18
- "/health": {
19
- get: {
20
- responses: {
21
- /** @description OK */
22
- 200: {
23
- content: never;
24
- };
25
- };
26
- };
27
- };
28
- "/hello": {
29
- get: {
30
- responses: {
31
- /** @description OK */
32
- 200: {
33
- content: never;
34
- };
35
- };
36
- };
37
- };
38
- "/register": {
39
- post: {
40
- requestBody?: {
41
- content: {
42
- "application/json": components["schemas"]["RegisterRequest"];
43
- };
44
- };
45
- responses: {
46
- /** @description OK */
47
- 200: {
48
- content: never;
49
- };
50
- /** @description Bad Request */
51
- 400: {
52
- content: {
53
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
54
- };
55
- };
56
- };
57
- };
58
- };
59
- "/login": {
60
- post: {
61
- parameters: {
62
- query?: {
63
- useCookies?: boolean;
64
- useSessionCookies?: boolean;
65
- };
66
- };
67
- requestBody?: {
68
- content: {
69
- "application/json": components["schemas"]["LoginRequest"];
70
- };
71
- };
72
- responses: {
73
- /** @description OK */
74
- 200: {
75
- content: {
76
- "application/json": components["schemas"]["AccessTokenResponse"];
77
- };
78
- };
79
- };
80
- };
81
- };
82
- "/refresh": {
83
- post: {
84
- requestBody?: {
85
- content: {
86
- "application/json": components["schemas"]["RefreshRequest"];
87
- };
88
- };
89
- responses: {
90
- /** @description OK */
91
- 200: {
92
- content: {
93
- "application/json": components["schemas"]["AccessTokenResponse"];
94
- };
95
- };
96
- };
97
- };
98
- };
99
- "/confirmEmail": {
100
- get: operations["MapIdentityApi-/confirmEmail"];
101
- };
102
- "/resendConfirmationEmail": {
103
- post: {
104
- requestBody?: {
105
- content: {
106
- "application/json": components["schemas"]["ResendConfirmationEmailRequest"];
107
- };
108
- };
109
- responses: {
110
- /** @description OK */
111
- 200: {
112
- content: never;
113
- };
114
- };
115
- };
116
- };
117
- "/forgotPassword": {
118
- post: {
119
- requestBody?: {
120
- content: {
121
- "application/json": components["schemas"]["ForgotPasswordRequest"];
122
- };
123
- };
124
- responses: {
125
- /** @description OK */
126
- 200: {
127
- content: never;
128
- };
129
- /** @description Bad Request */
130
- 400: {
131
- content: {
132
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
133
- };
134
- };
135
- };
136
- };
137
- };
138
- "/resetPassword": {
139
- post: {
140
- requestBody?: {
141
- content: {
142
- "application/json": components["schemas"]["ResetPasswordRequest"];
143
- };
144
- };
145
- responses: {
146
- /** @description OK */
147
- 200: {
148
- content: never;
149
- };
150
- /** @description Bad Request */
151
- 400: {
152
- content: {
153
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
154
- };
155
- };
156
- };
157
- };
158
- };
159
- "/manage/2fa": {
160
- post: {
161
- requestBody?: {
162
- content: {
163
- "application/json": components["schemas"]["TwoFactorRequest"];
164
- };
165
- };
166
- responses: {
167
- /** @description OK */
168
- 200: {
169
- content: {
170
- "application/json": components["schemas"]["TwoFactorResponse"];
171
- };
172
- };
173
- /** @description Bad Request */
174
- 400: {
175
- content: {
176
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
177
- };
178
- };
179
- /** @description Not Found */
180
- 404: {
181
- content: never;
182
- };
183
- };
184
- };
185
- };
186
- "/manage/info": {
187
- get: {
188
- responses: {
189
- /** @description OK */
190
- 200: {
191
- content: {
192
- "application/json": components["schemas"]["InfoResponse"];
193
- };
194
- };
195
- /** @description Bad Request */
196
- 400: {
197
- content: {
198
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
199
- };
200
- };
201
- /** @description Not Found */
202
- 404: {
203
- content: never;
204
- };
205
- };
206
- };
207
- post: {
208
- requestBody?: {
209
- content: {
210
- "application/json": components["schemas"]["InfoRequest"];
211
- };
212
- };
213
- responses: {
214
- /** @description OK */
215
- 200: {
216
- content: {
217
- "application/json": components["schemas"]["InfoResponse"];
218
- };
219
- };
220
- /** @description Bad Request */
221
- 400: {
222
- content: {
223
- "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
224
- };
225
- };
226
- /** @description Not Found */
227
- 404: {
228
- content: never;
229
- };
230
- };
231
- };
232
- };
233
- "/Account/PerformExternalLogin": {
234
- post: {
235
- requestBody?: {
236
- content: {
237
- "multipart/form-data": {
238
- provider: string;
239
- returnUrl: string;
240
- };
241
- "application/x-www-form-urlencoded": {
242
- provider: string;
243
- returnUrl: string;
244
- };
245
- };
246
- };
247
- responses: {
248
- /** @description OK */
249
- 200: {
250
- content: never;
251
- };
252
- };
253
- };
254
- };
255
- "/Account/Logout": {
256
- post: {
257
- requestBody?: {
258
- content: {
259
- "multipart/form-data": {
260
- returnUrl: string;
261
- };
262
- "application/x-www-form-urlencoded": {
263
- returnUrl: string;
264
- };
265
- };
266
- };
267
- responses: {
268
- /** @description OK */
269
- 200: {
270
- content: never;
271
- };
272
- };
273
- };
274
- };
275
- "/Account/Manage/LinkExternalLogin": {
276
- post: {
277
- requestBody?: {
278
- content: {
279
- "multipart/form-data": {
280
- provider: string;
281
- };
282
- "application/x-www-form-urlencoded": {
283
- provider: string;
284
- };
285
- };
286
- };
287
- responses: {
288
- /** @description OK */
289
- 200: {
290
- content: never;
291
- };
292
- };
293
- };
294
- };
295
- "/Account/Manage/DownloadPersonalData": {
296
- post: {
297
- responses: {
298
- /** @description OK */
299
- 200: {
300
- content: never;
301
- };
302
- };
303
- };
304
- };
305
8
  "/api/v2/Me": {
306
- get: {
307
- parameters: {
308
- query?: {
309
- "api-version"?: string;
310
- };
311
- header?: {
312
- "x-api-version"?: string;
313
- };
314
- };
315
- responses: {
316
- /** @description OK */
317
- 200: {
318
- content: {
319
- "application/json": components["schemas"]["UserDtoEnvelope"];
320
- "application/xml": components["schemas"]["UserDtoEnvelope"];
321
- "multipart/form-data": components["schemas"]["UserDtoEnvelope"];
322
- };
323
- };
324
- /** @description Unauthorized */
325
- 401: {
326
- content: {
327
- "application/json": components["schemas"]["ErrorEnvelope"];
328
- "application/xml": components["schemas"]["ErrorEnvelope"];
329
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
330
- };
331
- };
332
- };
333
- };
334
- put: {
335
- parameters: {
336
- query?: {
337
- "api-version"?: string;
338
- };
339
- header?: {
340
- "x-api-version"?: string;
341
- };
342
- };
343
- requestBody?: {
344
- content: {
345
- "application/json": components["schemas"]["UserUpdateDto"];
346
- "application/xml": components["schemas"]["UserUpdateDto"];
347
- "multipart/form-data": components["schemas"]["UserUpdateDto"];
348
- };
349
- };
350
- responses: {
351
- /** @description OK */
352
- 200: {
353
- content: {
354
- "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
355
- "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
356
- "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
357
- };
358
- };
359
- /** @description Unauthorized */
360
- 401: {
361
- content: {
362
- "application/json": components["schemas"]["ErrorEnvelope"];
363
- "application/xml": components["schemas"]["ErrorEnvelope"];
364
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
365
- };
366
- };
367
- };
368
- };
369
- patch: {
370
- parameters: {
371
- query?: {
372
- "api-version"?: string;
373
- };
374
- header?: {
375
- "x-api-version"?: string;
376
- };
377
- };
378
- requestBody?: {
379
- content: {
380
- "application/json": components["schemas"]["Operation"][];
381
- "application/xml": components["schemas"]["Operation"][];
382
- "multipart/form-data": components["schemas"]["Operation"][];
383
- };
384
- };
385
- responses: {
386
- /** @description OK */
387
- 200: {
388
- content: {
389
- "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
390
- "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
391
- "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
392
- };
393
- };
394
- /** @description Unauthorized */
395
- 401: {
396
- content: {
397
- "application/json": components["schemas"]["ErrorEnvelope"];
398
- "application/xml": components["schemas"]["ErrorEnvelope"];
399
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
400
- };
401
- };
402
- };
403
- };
9
+ /** Gets the current user */
10
+ get: operations["GetCurrentUser"];
11
+ /** Updates the current user */
12
+ put: operations["UpdateCurrentUser"];
13
+ /** Patches the current user */
14
+ patch: operations["PatchCurrentUser"];
404
15
  };
405
16
  "/api/v2/Me/Extended": {
406
- get: {
407
- parameters: {
408
- query?: {
409
- "api-version"?: string;
410
- };
411
- header?: {
412
- "x-api-version"?: string;
413
- };
414
- };
415
- responses: {
416
- /** @description OK */
417
- 200: {
418
- content: {
419
- "application/json": components["schemas"]["ExtendedUserDtoEnvelope"];
420
- "application/xml": components["schemas"]["ExtendedUserDtoEnvelope"];
421
- "multipart/form-data": components["schemas"]["ExtendedUserDtoEnvelope"];
422
- };
423
- };
424
- /** @description Unauthorized */
425
- 401: {
426
- content: {
427
- "application/json": components["schemas"]["ErrorEnvelope"];
428
- "application/xml": components["schemas"]["ErrorEnvelope"];
429
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
430
- };
431
- };
432
- };
433
- };
17
+ /** Gets the current user with extended information */
18
+ get: operations["GetExtendedCurrentUser"];
434
19
  };
435
20
  "/api/v2/Me/Avatar": {
436
- get: {
437
- parameters: {
438
- query?: {
439
- "api-version"?: string;
440
- };
441
- header?: {
442
- "x-api-version"?: string;
443
- };
444
- };
445
- responses: {
446
- /** @description OK */
447
- 200: {
448
- content: {
449
- "application/json": components["schemas"]["FollowRecordDto"][];
450
- "application/xml": components["schemas"]["FollowRecordDto"][];
451
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
452
- };
453
- };
454
- /** @description Unauthorized */
455
- 401: {
456
- content: {
457
- "application/json": components["schemas"]["ErrorEnvelope"];
458
- "application/xml": components["schemas"]["ErrorEnvelope"];
459
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
460
- };
461
- };
462
- };
463
- };
464
- post: {
465
- parameters: {
466
- query?: {
467
- "api-version"?: string;
468
- };
469
- header?: {
470
- "x-api-version"?: string;
471
- };
472
- };
473
- requestBody?: {
474
- content: {
475
- "multipart/form-data": {
476
- /** Format: binary */
477
- avatar?: string;
478
- };
479
- "application/json": {
480
- /** Format: binary */
481
- avatar?: string;
482
- };
483
- "application/xml": {
484
- /** Format: binary */
485
- avatar?: string;
486
- };
487
- };
488
- };
489
- responses: {
490
- /** @description OK */
491
- 200: {
492
- content: {
493
- "application/json": components["schemas"]["EmptyEnvelope"];
494
- "application/xml": components["schemas"]["EmptyEnvelope"];
495
- "multipart/form-data": components["schemas"]["EmptyEnvelope"];
496
- };
497
- };
498
- /** @description Unauthorized */
499
- 401: {
500
- content: {
501
- "application/json": components["schemas"]["ErrorEnvelope"];
502
- "application/xml": components["schemas"]["ErrorEnvelope"];
503
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
504
- };
505
- };
506
- /** @description Forbidden */
507
- 403: {
508
- content: {
509
- "application/json": components["schemas"]["ErrorEnvelope"];
510
- "application/xml": components["schemas"]["ErrorEnvelope"];
511
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
512
- };
513
- };
514
- };
515
- };
21
+ /** Gets the current user's avatar */
22
+ get: operations["GetMyAvatar"];
23
+ /** Updates the current user's avatar */
24
+ post: operations["UpdateMyAvatar"];
516
25
  };
517
26
  "/api/v2/Me/Follows": {
518
- get: {
519
- parameters: {
520
- query?: {
521
- "api-version"?: string;
522
- };
523
- header?: {
524
- "x-api-version"?: string;
525
- };
526
- };
527
- responses: {
528
- /** @description OK */
529
- 200: {
530
- content: {
531
- "application/json": components["schemas"]["FollowRecordDto"][];
532
- "application/xml": components["schemas"]["FollowRecordDto"][];
533
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
534
- };
535
- };
536
- /** @description Unauthorized */
537
- 401: {
538
- content: {
539
- "application/json": components["schemas"]["ErrorEnvelope"];
540
- "application/xml": components["schemas"]["ErrorEnvelope"];
541
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
542
- };
543
- };
544
- };
545
- };
27
+ /** Gets the social profiles that the current user follows */
28
+ get: operations["GetMyFollows"];
546
29
  };
547
30
  "/api/v2/Me/Follows/Count": {
548
- get: {
549
- parameters: {
550
- query?: {
551
- "api-version"?: string;
552
- };
553
- header?: {
554
- "x-api-version"?: string;
555
- };
556
- };
557
- responses: {
558
- /** @description OK */
559
- 200: {
560
- content: {
561
- "application/json": components["schemas"]["FollowRecordDto"][];
562
- "application/xml": components["schemas"]["FollowRecordDto"][];
563
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
564
- };
565
- };
566
- /** @description Unauthorized */
567
- 401: {
568
- content: {
569
- "application/json": components["schemas"]["ErrorEnvelope"];
570
- "application/xml": components["schemas"]["ErrorEnvelope"];
571
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
572
- };
573
- };
574
- };
575
- };
31
+ /** Counts the social profiles that the current user follows */
32
+ get: operations["CountMyFollows"];
576
33
  };
577
34
  "/api/v2/Me/Followers": {
578
- get: {
579
- parameters: {
580
- query?: {
581
- "api-version"?: string;
582
- };
583
- header?: {
584
- "x-api-version"?: string;
585
- };
586
- };
587
- responses: {
588
- /** @description OK */
589
- 200: {
590
- content: {
591
- "application/json": components["schemas"]["FollowRecordDto"][];
592
- "application/xml": components["schemas"]["FollowRecordDto"][];
593
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
594
- };
595
- };
596
- /** @description Unauthorized */
597
- 401: {
598
- content: {
599
- "application/json": components["schemas"]["ErrorEnvelope"];
600
- "application/xml": components["schemas"]["ErrorEnvelope"];
601
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
602
- };
603
- };
604
- };
605
- };
35
+ /** Gets the social profiles that follow the current user */
36
+ get: operations["GetMyFollowers"];
606
37
  };
607
38
  "/api/v2/Me/Followers/Count": {
608
- get: {
609
- parameters: {
610
- query?: {
611
- "api-version"?: string;
612
- };
613
- header?: {
614
- "x-api-version"?: string;
615
- };
616
- };
617
- responses: {
618
- /** @description OK */
619
- 200: {
620
- content: {
621
- "application/json": components["schemas"]["FollowRecordDto"][];
622
- "application/xml": components["schemas"]["FollowRecordDto"][];
623
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
624
- };
625
- };
626
- /** @description Unauthorized */
627
- 401: {
628
- content: {
629
- "application/json": components["schemas"]["ErrorEnvelope"];
630
- "application/xml": components["schemas"]["ErrorEnvelope"];
631
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
632
- };
633
- };
634
- };
635
- };
39
+ /** Counts the social profiles that follow the current user */
40
+ get: operations["CountMyFollowers"];
636
41
  };
637
42
  "/api/v2/Me/Businesses": {
638
- get: {
639
- parameters: {
640
- query?: {
641
- "api-version"?: string;
642
- };
643
- header?: {
644
- "x-api-version"?: string;
645
- };
646
- };
647
- responses: {
648
- /** @description OK */
649
- 200: {
650
- content: {
651
- "application/json": components["schemas"]["TenantDtoListEnvelope"];
652
- "application/xml": components["schemas"]["TenantDtoListEnvelope"];
653
- "multipart/form-data": components["schemas"]["TenantDtoListEnvelope"];
654
- };
655
- };
656
- /** @description Unauthorized */
657
- 401: {
658
- content: {
659
- "application/json": components["schemas"]["ErrorEnvelope"];
660
- "application/xml": components["schemas"]["ErrorEnvelope"];
661
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
662
- };
663
- };
664
- /** @description Forbidden */
665
- 403: {
666
- content: {
667
- "application/json": components["schemas"]["ErrorEnvelope"];
668
- "application/xml": components["schemas"]["ErrorEnvelope"];
669
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
670
- };
671
- };
672
- };
673
- };
43
+ /** Gets the tenants that the current user is enrolled in */
44
+ get: operations["GetMyTenants"];
674
45
  };
675
46
  "/api/v2/Me/Businesses/Count": {
676
- get: {
677
- parameters: {
678
- query?: {
679
- "api-version"?: string;
680
- };
681
- header?: {
682
- "x-api-version"?: string;
683
- };
684
- };
685
- responses: {
686
- /** @description OK */
687
- 200: {
688
- content: {
689
- "application/json": components["schemas"]["Int32Envelope"];
690
- "application/xml": components["schemas"]["Int32Envelope"];
691
- "multipart/form-data": components["schemas"]["Int32Envelope"];
692
- };
693
- };
694
- /** @description Unauthorized */
695
- 401: {
696
- content: {
697
- "application/json": components["schemas"]["ErrorEnvelope"];
698
- "application/xml": components["schemas"]["ErrorEnvelope"];
699
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
700
- };
701
- };
702
- /** @description Forbidden */
703
- 403: {
704
- content: {
705
- "application/json": components["schemas"]["ErrorEnvelope"];
706
- "application/xml": components["schemas"]["ErrorEnvelope"];
707
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
708
- };
709
- };
710
- };
711
- };
47
+ /** Counts the tenants that the current user is enrolled in */
48
+ get: operations["CountMyTenants"];
712
49
  };
713
50
  "/api/v2/Me/Businesses/Extended": {
714
- get: {
715
- parameters: {
716
- query?: {
717
- "api-version"?: string;
718
- };
719
- header?: {
720
- "x-api-version"?: string;
721
- };
722
- };
723
- responses: {
724
- /** @description OK */
725
- 200: {
726
- content: {
727
- "application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
728
- "application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
729
- "multipart/form-data": components["schemas"]["ExtendedTenantDtoListEnvelope"];
730
- };
731
- };
732
- /** @description Unauthorized */
733
- 401: {
734
- content: {
735
- "application/json": components["schemas"]["ErrorEnvelope"];
736
- "application/xml": components["schemas"]["ErrorEnvelope"];
737
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
738
- };
739
- };
740
- /** @description Forbidden */
741
- 403: {
742
- content: {
743
- "application/json": components["schemas"]["ErrorEnvelope"];
744
- "application/xml": components["schemas"]["ErrorEnvelope"];
745
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
746
- };
747
- };
748
- };
749
- };
51
+ /** Gets the tenants that the current user is enrolled in with extended information */
52
+ get: operations["GetMyTenantsExtended"];
750
53
  };
751
54
  "/api/v2/Me/Enrollments": {
752
- get: {
753
- parameters: {
754
- query?: {
755
- "api-version"?: string;
756
- };
757
- header?: {
758
- "x-api-version"?: string;
759
- };
760
- };
761
- responses: {
762
- /** @description OK */
763
- 200: {
764
- content: {
765
- "application/json": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
766
- "application/xml": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
767
- "multipart/form-data": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
768
- };
769
- };
770
- /** @description Unauthorized */
771
- 401: {
772
- content: {
773
- "application/json": components["schemas"]["ErrorEnvelope"];
774
- "application/xml": components["schemas"]["ErrorEnvelope"];
775
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
776
- };
777
- };
778
- };
779
- };
55
+ /** Gets the list of enrollments for the current user */
56
+ get: operations["GetMyEnrollments"];
780
57
  };
781
58
  "/api/v2/Me/Enrollments/Extended": {
782
- get: {
783
- parameters: {
784
- query?: {
785
- "api-version"?: string;
786
- };
787
- header?: {
788
- "x-api-version"?: string;
789
- };
790
- };
791
- responses: {
792
- /** @description OK */
793
- 200: {
794
- content: {
795
- "application/json": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
796
- "application/xml": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
797
- "multipart/form-data": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
798
- };
799
- };
800
- /** @description Unauthorized */
801
- 401: {
802
- content: {
803
- "application/json": components["schemas"]["ErrorEnvelope"];
804
- "application/xml": components["schemas"]["ErrorEnvelope"];
805
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
806
- };
807
- };
808
- };
809
- };
59
+ /** Gets the list of enrollments for the current user with extended information */
60
+ get: operations["GetMyEnrollmentsExtended"];
810
61
  };
811
62
  "/api/v2/Me/Enrollments/{enrollmentId}": {
812
- get: {
813
- parameters: {
814
- query?: {
815
- "api-version"?: string;
816
- };
817
- header?: {
818
- "x-api-version"?: string;
819
- };
820
- path: {
821
- enrollmentId: string;
822
- };
823
- };
824
- requestBody?: {
825
- content: {
826
- "application/json": components["schemas"]["EnrollmentId"];
827
- "application/xml": components["schemas"]["EnrollmentId"];
828
- "multipart/form-data": components["schemas"]["EnrollmentId"];
829
- };
830
- };
831
- responses: {
832
- /** @description OK */
833
- 200: {
834
- content: {
835
- "application/json": components["schemas"]["TenantEnrolmentDtoEnvelope"];
836
- "application/xml": components["schemas"]["TenantEnrolmentDtoEnvelope"];
837
- "multipart/form-data": components["schemas"]["TenantEnrolmentDtoEnvelope"];
838
- };
839
- };
840
- /** @description Unauthorized */
841
- 401: {
842
- content: {
843
- "application/json": components["schemas"]["ErrorEnvelope"];
844
- "application/xml": components["schemas"]["ErrorEnvelope"];
845
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
846
- };
847
- };
848
- };
849
- };
63
+ /** Gets a single TenantEnrollment by its ID */
64
+ get: operations["GetMyEnrollment"];
850
65
  };
851
66
  "/api/v2/Me/SocialProfile": {
852
- get: {
853
- parameters: {
854
- query?: {
855
- "api-version"?: string;
856
- };
857
- header?: {
858
- "x-api-version"?: string;
859
- };
860
- };
861
- responses: {
862
- /** @description OK */
863
- 200: {
864
- content: {
865
- "application/json": components["schemas"]["SocialProfileDtoEnvelope"];
866
- "application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
867
- "multipart/form-data": components["schemas"]["SocialProfileDtoEnvelope"];
868
- };
869
- };
870
- /** @description Unauthorized */
871
- 401: {
872
- content: {
873
- "application/json": components["schemas"]["ErrorEnvelope"];
874
- "application/xml": components["schemas"]["ErrorEnvelope"];
875
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
876
- };
877
- };
878
- };
879
- };
67
+ /** Gets the current user's social profile */
68
+ get: operations["GetMySocialProfile"];
880
69
  };
881
70
  "/api/v2/Me/Cart": {
882
- get: {
883
- parameters: {
884
- query?: {
885
- "api-version"?: string;
886
- };
887
- header?: {
888
- "x-api-version"?: string;
889
- };
890
- };
891
- responses: {
892
- /** @description OK */
893
- 200: {
894
- content: {
895
- "application/json": components["schemas"]["CartDtoEnvelope"];
896
- "application/xml": components["schemas"]["CartDtoEnvelope"];
897
- "multipart/form-data": components["schemas"]["CartDtoEnvelope"];
898
- };
899
- };
900
- /** @description Unauthorized */
901
- 401: {
902
- content: {
903
- "application/json": components["schemas"]["ErrorEnvelope"];
904
- "application/xml": components["schemas"]["ErrorEnvelope"];
905
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
906
- };
907
- };
908
- };
909
- };
71
+ /** Gets the current user's cart */
72
+ get: operations["GetMyCart"];
910
73
  };
911
74
  "/api/v2/Me/Wallet": {
912
- get: {
913
- parameters: {
914
- query?: {
915
- "api-version"?: string;
916
- };
917
- header?: {
918
- "x-api-version"?: string;
919
- };
920
- };
921
- responses: {
922
- /** @description OK */
923
- 200: {
924
- content: {
925
- "application/json": components["schemas"]["WalletDtoEnvelope"];
926
- "application/xml": components["schemas"]["WalletDtoEnvelope"];
927
- "multipart/form-data": components["schemas"]["WalletDtoEnvelope"];
928
- };
929
- };
930
- /** @description Unauthorized */
931
- 401: {
932
- content: {
933
- "application/json": components["schemas"]["ErrorEnvelope"];
934
- "application/xml": components["schemas"]["ErrorEnvelope"];
935
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
936
- };
937
- };
938
- };
939
- };
75
+ /** Gets the current user's billing profile */
76
+ get: operations["GetMyWallet"];
940
77
  };
941
78
  "/api/v2/Me/Notifications": {
942
- get: {
943
- parameters: {
944
- query?: {
945
- "api-version"?: string;
946
- };
947
- header?: {
948
- "x-api-version"?: string;
949
- };
950
- };
951
- responses: {
952
- /** @description OK */
953
- 200: {
954
- content: {
955
- "application/json": components["schemas"]["NotificationDtoListEnvelope"];
956
- "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
957
- "multipart/form-data": components["schemas"]["NotificationDtoListEnvelope"];
958
- };
959
- };
960
- /** @description Unauthorized */
961
- 401: {
962
- content: {
963
- "application/json": components["schemas"]["ErrorEnvelope"];
964
- "application/xml": components["schemas"]["ErrorEnvelope"];
965
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
966
- };
967
- };
968
- };
969
- };
79
+ /** Gets the list of notifications for the current user */
80
+ get: operations["GetMyNotifications"];
970
81
  };
971
82
  "/api/v2/Me/Notifications/Count": {
972
- get: {
973
- parameters: {
974
- query?: {
975
- "api-version"?: string;
976
- };
977
- header?: {
978
- "x-api-version"?: string;
979
- };
980
- };
981
- responses: {
982
- /** @description OK */
983
- 200: {
984
- content: {
985
- "application/json": components["schemas"]["Int32Envelope"];
986
- "application/xml": components["schemas"]["Int32Envelope"];
987
- "multipart/form-data": components["schemas"]["Int32Envelope"];
988
- };
989
- };
990
- /** @description Unauthorized */
991
- 401: {
992
- content: {
993
- "application/json": components["schemas"]["ErrorEnvelope"];
994
- "application/xml": components["schemas"]["ErrorEnvelope"];
995
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
996
- };
997
- };
998
- };
999
- };
83
+ /** Counts the list of notifications for the current user */
84
+ get: operations["CountMyNotifications"];
1000
85
  };
1001
86
  "/api/v2/Me/Settings": {
1002
- get: {
1003
- parameters: {
1004
- query?: {
1005
- "api-version"?: string;
1006
- };
1007
- header?: {
1008
- "x-api-version"?: string;
1009
- };
1010
- };
1011
- responses: {
1012
- /** @description OK */
1013
- 200: {
1014
- content: {
1015
- "application/json": components["schemas"]["UserSettingsDtoEnvelope"];
1016
- "application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
1017
- "multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
1018
- };
1019
- };
1020
- /** @description Unauthorized */
1021
- 401: {
1022
- content: {
1023
- "application/json": components["schemas"]["ErrorEnvelope"];
1024
- "application/xml": components["schemas"]["ErrorEnvelope"];
1025
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1026
- };
1027
- };
1028
- };
1029
- };
1030
- put: {
1031
- parameters: {
1032
- query?: {
1033
- "api-version"?: string;
1034
- };
1035
- header?: {
1036
- "x-api-version"?: string;
1037
- };
1038
- };
1039
- requestBody?: {
1040
- content: {
1041
- "application/json": components["schemas"]["UserSettingsUpdateDto"];
1042
- "application/xml": components["schemas"]["UserSettingsUpdateDto"];
1043
- "multipart/form-data": components["schemas"]["UserSettingsUpdateDto"];
1044
- };
1045
- };
1046
- responses: {
1047
- /** @description OK */
1048
- 200: {
1049
- content: {
1050
- "application/json": components["schemas"]["UserSettingsDtoEnvelope"];
1051
- "application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
1052
- "multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
1053
- };
1054
- };
1055
- /** @description Unauthorized */
1056
- 401: {
1057
- content: {
1058
- "application/json": components["schemas"]["ErrorEnvelope"];
1059
- "application/xml": components["schemas"]["ErrorEnvelope"];
1060
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1061
- };
1062
- };
1063
- };
1064
- };
87
+ /** Gets the settings for the current user */
88
+ get: operations["GetMySettings"];
89
+ /** Updates the settings for the current user */
90
+ put: operations["UpdateMySettings"];
1065
91
  };
1066
92
  "/api/v2/Me/Addresses": {
1067
- get: {
1068
- parameters: {
1069
- query?: {
1070
- "api-version"?: string;
1071
- };
1072
- header?: {
1073
- "x-api-version"?: string;
1074
- };
1075
- };
1076
- responses: {
1077
- /** @description OK */
1078
- 200: {
1079
- content: {
1080
- "application/json": components["schemas"]["AddressDtoListEnvelope"];
1081
- "application/xml": components["schemas"]["AddressDtoListEnvelope"];
1082
- "multipart/form-data": components["schemas"]["AddressDtoListEnvelope"];
1083
- };
1084
- };
1085
- /** @description Unauthorized */
1086
- 401: {
1087
- content: {
1088
- "application/json": components["schemas"]["ErrorEnvelope"];
1089
- "application/xml": components["schemas"]["ErrorEnvelope"];
1090
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1091
- };
1092
- };
1093
- };
1094
- };
93
+ /** Gets the list of addresses for the current user */
94
+ get: operations["GetMyAddresses"];
1095
95
  };
1096
96
  "/api/v2/Me/Invitations": {
1097
- get: {
1098
- parameters: {
1099
- query?: {
1100
- "api-version"?: string;
1101
- };
1102
- header?: {
1103
- "x-api-version"?: string;
1104
- };
1105
- };
1106
- responses: {
1107
- /** @description OK */
1108
- 200: {
1109
- content: {
1110
- "application/json": components["schemas"]["TenantInvitationDtoListEnvelope"];
1111
- "application/xml": components["schemas"]["TenantInvitationDtoListEnvelope"];
1112
- "multipart/form-data": components["schemas"]["TenantInvitationDtoListEnvelope"];
1113
- };
1114
- };
1115
- /** @description Unauthorized */
1116
- 401: {
1117
- content: {
1118
- "application/json": components["schemas"]["ErrorEnvelope"];
1119
- "application/xml": components["schemas"]["ErrorEnvelope"];
1120
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1121
- };
1122
- };
1123
- };
1124
- };
97
+ /** Gets the list of tenant enrollment invitations for the current user */
98
+ get: operations["GetMyInvitations"];
1125
99
  };
1126
100
  }
1127
101
 
@@ -1129,13 +103,6 @@ export type webhooks = Record<string, never>;
1129
103
 
1130
104
  export interface components {
1131
105
  schemas: {
1132
- AccessTokenResponse: {
1133
- tokenType?: string | null;
1134
- accessToken: string | null;
1135
- /** Format: int64 */
1136
- expiresIn: number;
1137
- refreshToken: string | null;
1138
- };
1139
106
  AddressDto: {
1140
107
  id?: string | null;
1141
108
  /** Format: date-time */
@@ -1387,29 +354,14 @@ export interface components {
1387
354
  followedID?: string | null;
1388
355
  alerts?: boolean;
1389
356
  };
1390
- ForgotPasswordRequest: {
1391
- email: string | null;
1392
- };
1393
- HttpValidationProblemDetails: {
1394
- type?: string | null;
1395
- title?: string | null;
1396
- /** Format: int32 */
1397
- status?: number | null;
1398
- detail?: string | null;
1399
- instance?: string | null;
1400
- errors?: {
1401
- [key: string]: string[];
1402
- } | null;
1403
- [key: string]: unknown;
1404
- };
1405
- InfoRequest: {
1406
- newEmail?: string | null;
1407
- newPassword?: string | null;
1408
- oldPassword?: string | null;
1409
- };
1410
- InfoResponse: {
1411
- email: string | null;
1412
- isEmailConfirmed: boolean;
357
+ FollowRecordDtoListEnvelope: {
358
+ isSuccess?: boolean;
359
+ errorMessage?: string | null;
360
+ correlationId?: string | null;
361
+ /** Format: date-time */
362
+ timestamp?: string;
363
+ activityId?: string | null;
364
+ result?: components["schemas"]["FollowRecordDto"][] | null;
1413
365
  };
1414
366
  Int32Envelope: {
1415
367
  isSuccess?: boolean;
@@ -1421,12 +373,6 @@ export interface components {
1421
373
  /** Format: int32 */
1422
374
  result?: number;
1423
375
  };
1424
- LoginRequest: {
1425
- email: string | null;
1426
- password: string | null;
1427
- twoFactorCode?: string | null;
1428
- twoFactorRecoveryCode?: string | null;
1429
- };
1430
376
  NotificationDto: {
1431
377
  id?: string | null;
1432
378
  /** Format: date-time */
@@ -1461,21 +407,6 @@ export interface components {
1461
407
  from?: string | null;
1462
408
  value?: unknown;
1463
409
  };
1464
- RefreshRequest: {
1465
- refreshToken: string | null;
1466
- };
1467
- RegisterRequest: {
1468
- email: string | null;
1469
- password: string | null;
1470
- };
1471
- ResendConfirmationEmailRequest: {
1472
- email: string | null;
1473
- };
1474
- ResetPasswordRequest: {
1475
- email: string | null;
1476
- resetCode: string | null;
1477
- newPassword: string | null;
1478
- };
1479
410
  SocialProfileDto: {
1480
411
  id?: string | null;
1481
412
  /** Format: date-time */
@@ -1625,21 +556,6 @@ export interface components {
1625
556
  activityId?: string | null;
1626
557
  result?: components["schemas"]["TenantInvitationDto"][] | null;
1627
558
  };
1628
- TwoFactorRequest: {
1629
- enable?: boolean | null;
1630
- twoFactorCode?: string | null;
1631
- resetSharedKey?: boolean;
1632
- resetRecoveryCodes?: boolean;
1633
- forgetMachine?: boolean;
1634
- };
1635
- TwoFactorResponse: {
1636
- sharedKey: string | null;
1637
- /** Format: int32 */
1638
- recoveryCodesLeft: number;
1639
- recoveryCodes?: string[] | null;
1640
- isTwoFactorEnabled: boolean;
1641
- isMachineRemembered: boolean;
1642
- };
1643
559
  UserDto: {
1644
560
  id?: string | null;
1645
561
  /** Format: date-time */
@@ -1830,18 +746,815 @@ export type external = Record<string, never>;
1830
746
 
1831
747
  export interface operations {
1832
748
 
1833
- "MapIdentityApi-/confirmEmail": {
749
+ /** Gets the current user */
750
+ GetCurrentUser: {
1834
751
  parameters: {
1835
752
  query?: {
1836
- userId?: string;
1837
- code?: string;
1838
- changedEmail?: string;
753
+ "api-version"?: string;
754
+ };
755
+ header?: {
756
+ "x-api-version"?: string;
1839
757
  };
1840
758
  };
1841
759
  responses: {
1842
760
  /** @description OK */
1843
761
  200: {
1844
- content: never;
762
+ content: {
763
+ "application/json": components["schemas"]["UserDtoEnvelope"];
764
+ "application/xml": components["schemas"]["UserDtoEnvelope"];
765
+ "multipart/form-data": components["schemas"]["UserDtoEnvelope"];
766
+ };
767
+ };
768
+ /** @description Unauthorized */
769
+ 401: {
770
+ content: {
771
+ "application/json": components["schemas"]["ErrorEnvelope"];
772
+ "application/xml": components["schemas"]["ErrorEnvelope"];
773
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
774
+ };
775
+ };
776
+ };
777
+ };
778
+ /** Updates the current user */
779
+ UpdateCurrentUser: {
780
+ parameters: {
781
+ query?: {
782
+ "api-version"?: string;
783
+ };
784
+ header?: {
785
+ "x-api-version"?: string;
786
+ };
787
+ };
788
+ requestBody?: {
789
+ content: {
790
+ "application/json": components["schemas"]["UserUpdateDto"];
791
+ "application/xml": components["schemas"]["UserUpdateDto"];
792
+ "multipart/form-data": components["schemas"]["UserUpdateDto"];
793
+ };
794
+ };
795
+ responses: {
796
+ /** @description OK */
797
+ 200: {
798
+ content: {
799
+ "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
800
+ "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
801
+ "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
802
+ };
803
+ };
804
+ /** @description Unauthorized */
805
+ 401: {
806
+ content: {
807
+ "application/json": components["schemas"]["ErrorEnvelope"];
808
+ "application/xml": components["schemas"]["ErrorEnvelope"];
809
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
810
+ };
811
+ };
812
+ };
813
+ };
814
+ /** Patches the current user */
815
+ PatchCurrentUser: {
816
+ parameters: {
817
+ query?: {
818
+ "api-version"?: string;
819
+ };
820
+ header?: {
821
+ "x-api-version"?: string;
822
+ };
823
+ };
824
+ requestBody?: {
825
+ content: {
826
+ "application/json": components["schemas"]["Operation"][];
827
+ "application/xml": components["schemas"]["Operation"][];
828
+ "multipart/form-data": components["schemas"]["Operation"][];
829
+ };
830
+ };
831
+ responses: {
832
+ /** @description OK */
833
+ 200: {
834
+ content: {
835
+ "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
836
+ "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
837
+ "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
838
+ };
839
+ };
840
+ /** @description Unauthorized */
841
+ 401: {
842
+ content: {
843
+ "application/json": components["schemas"]["ErrorEnvelope"];
844
+ "application/xml": components["schemas"]["ErrorEnvelope"];
845
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
846
+ };
847
+ };
848
+ };
849
+ };
850
+ /** Gets the current user with extended information */
851
+ GetExtendedCurrentUser: {
852
+ parameters: {
853
+ query?: {
854
+ "api-version"?: string;
855
+ };
856
+ header?: {
857
+ "x-api-version"?: string;
858
+ };
859
+ };
860
+ responses: {
861
+ /** @description OK */
862
+ 200: {
863
+ content: {
864
+ "application/json": components["schemas"]["ExtendedUserDtoEnvelope"];
865
+ "application/xml": components["schemas"]["ExtendedUserDtoEnvelope"];
866
+ "multipart/form-data": components["schemas"]["ExtendedUserDtoEnvelope"];
867
+ };
868
+ };
869
+ /** @description Unauthorized */
870
+ 401: {
871
+ content: {
872
+ "application/json": components["schemas"]["ErrorEnvelope"];
873
+ "application/xml": components["schemas"]["ErrorEnvelope"];
874
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
875
+ };
876
+ };
877
+ };
878
+ };
879
+ /** Gets the current user's avatar */
880
+ GetMyAvatar: {
881
+ parameters: {
882
+ query?: {
883
+ "api-version"?: string;
884
+ };
885
+ header?: {
886
+ "x-api-version"?: string;
887
+ };
888
+ };
889
+ responses: {
890
+ /** @description OK */
891
+ 200: {
892
+ content: {
893
+ "application/json": string;
894
+ "application/xml": string;
895
+ "multipart/form-data": string;
896
+ };
897
+ };
898
+ /** @description Unauthorized */
899
+ 401: {
900
+ content: {
901
+ "application/json": components["schemas"]["ErrorEnvelope"];
902
+ "application/xml": components["schemas"]["ErrorEnvelope"];
903
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
904
+ };
905
+ };
906
+ /** @description Forbidden */
907
+ 403: {
908
+ content: {
909
+ "application/json": components["schemas"]["ErrorEnvelope"];
910
+ "application/xml": components["schemas"]["ErrorEnvelope"];
911
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
912
+ };
913
+ };
914
+ };
915
+ };
916
+ /** Updates the current user's avatar */
917
+ UpdateMyAvatar: {
918
+ parameters: {
919
+ query?: {
920
+ "api-version"?: string;
921
+ };
922
+ header?: {
923
+ "x-api-version"?: string;
924
+ };
925
+ };
926
+ requestBody?: {
927
+ content: {
928
+ "multipart/form-data": {
929
+ /** Format: binary */
930
+ avatar?: string;
931
+ };
932
+ "application/json": {
933
+ /** Format: binary */
934
+ avatar?: string;
935
+ };
936
+ "application/xml": {
937
+ /** Format: binary */
938
+ avatar?: string;
939
+ };
940
+ };
941
+ };
942
+ responses: {
943
+ /** @description OK */
944
+ 200: {
945
+ content: {
946
+ "application/json": components["schemas"]["EmptyEnvelope"];
947
+ "application/xml": components["schemas"]["EmptyEnvelope"];
948
+ "multipart/form-data": components["schemas"]["EmptyEnvelope"];
949
+ };
950
+ };
951
+ /** @description Unauthorized */
952
+ 401: {
953
+ content: {
954
+ "application/json": components["schemas"]["ErrorEnvelope"];
955
+ "application/xml": components["schemas"]["ErrorEnvelope"];
956
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
957
+ };
958
+ };
959
+ /** @description Forbidden */
960
+ 403: {
961
+ content: {
962
+ "application/json": components["schemas"]["ErrorEnvelope"];
963
+ "application/xml": components["schemas"]["ErrorEnvelope"];
964
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
965
+ };
966
+ };
967
+ };
968
+ };
969
+ /** Gets the social profiles that the current user follows */
970
+ GetMyFollows: {
971
+ parameters: {
972
+ query?: {
973
+ "api-version"?: string;
974
+ };
975
+ header?: {
976
+ "x-api-version"?: string;
977
+ };
978
+ };
979
+ responses: {
980
+ /** @description OK */
981
+ 200: {
982
+ content: {
983
+ "application/json": components["schemas"]["FollowRecordDtoListEnvelope"];
984
+ "application/xml": components["schemas"]["FollowRecordDtoListEnvelope"];
985
+ "multipart/form-data": components["schemas"]["FollowRecordDtoListEnvelope"];
986
+ };
987
+ };
988
+ /** @description Unauthorized */
989
+ 401: {
990
+ content: {
991
+ "application/json": components["schemas"]["ErrorEnvelope"];
992
+ "application/xml": components["schemas"]["ErrorEnvelope"];
993
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
994
+ };
995
+ };
996
+ };
997
+ };
998
+ /** Counts the social profiles that the current user follows */
999
+ CountMyFollows: {
1000
+ parameters: {
1001
+ query?: {
1002
+ "api-version"?: string;
1003
+ };
1004
+ header?: {
1005
+ "x-api-version"?: string;
1006
+ };
1007
+ };
1008
+ responses: {
1009
+ /** @description OK */
1010
+ 200: {
1011
+ content: {
1012
+ "application/json": components["schemas"]["Int32Envelope"];
1013
+ "application/xml": components["schemas"]["Int32Envelope"];
1014
+ "multipart/form-data": components["schemas"]["Int32Envelope"];
1015
+ };
1016
+ };
1017
+ /** @description Unauthorized */
1018
+ 401: {
1019
+ content: {
1020
+ "application/json": components["schemas"]["ErrorEnvelope"];
1021
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1022
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1023
+ };
1024
+ };
1025
+ };
1026
+ };
1027
+ /** Gets the social profiles that follow the current user */
1028
+ GetMyFollowers: {
1029
+ parameters: {
1030
+ query?: {
1031
+ "api-version"?: string;
1032
+ };
1033
+ header?: {
1034
+ "x-api-version"?: string;
1035
+ };
1036
+ };
1037
+ responses: {
1038
+ /** @description OK */
1039
+ 200: {
1040
+ content: {
1041
+ "application/json": components["schemas"]["FollowRecordDtoListEnvelope"];
1042
+ "application/xml": components["schemas"]["FollowRecordDtoListEnvelope"];
1043
+ "multipart/form-data": components["schemas"]["FollowRecordDtoListEnvelope"];
1044
+ };
1045
+ };
1046
+ /** @description Unauthorized */
1047
+ 401: {
1048
+ content: {
1049
+ "application/json": components["schemas"]["ErrorEnvelope"];
1050
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1051
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1052
+ };
1053
+ };
1054
+ };
1055
+ };
1056
+ /** Counts the social profiles that follow the current user */
1057
+ CountMyFollowers: {
1058
+ parameters: {
1059
+ query?: {
1060
+ "api-version"?: string;
1061
+ };
1062
+ header?: {
1063
+ "x-api-version"?: string;
1064
+ };
1065
+ };
1066
+ responses: {
1067
+ /** @description OK */
1068
+ 200: {
1069
+ content: {
1070
+ "application/json": components["schemas"]["Int32Envelope"];
1071
+ "application/xml": components["schemas"]["Int32Envelope"];
1072
+ "multipart/form-data": components["schemas"]["Int32Envelope"];
1073
+ };
1074
+ };
1075
+ /** @description Unauthorized */
1076
+ 401: {
1077
+ content: {
1078
+ "application/json": components["schemas"]["ErrorEnvelope"];
1079
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1080
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1081
+ };
1082
+ };
1083
+ };
1084
+ };
1085
+ /** Gets the tenants that the current user is enrolled in */
1086
+ GetMyTenants: {
1087
+ parameters: {
1088
+ query?: {
1089
+ "api-version"?: string;
1090
+ };
1091
+ header?: {
1092
+ "x-api-version"?: string;
1093
+ };
1094
+ };
1095
+ responses: {
1096
+ /** @description OK */
1097
+ 200: {
1098
+ content: {
1099
+ "application/json": components["schemas"]["TenantDtoListEnvelope"];
1100
+ "application/xml": components["schemas"]["TenantDtoListEnvelope"];
1101
+ "multipart/form-data": components["schemas"]["TenantDtoListEnvelope"];
1102
+ };
1103
+ };
1104
+ /** @description Unauthorized */
1105
+ 401: {
1106
+ content: {
1107
+ "application/json": components["schemas"]["ErrorEnvelope"];
1108
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1109
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1110
+ };
1111
+ };
1112
+ /** @description Forbidden */
1113
+ 403: {
1114
+ content: {
1115
+ "application/json": components["schemas"]["ErrorEnvelope"];
1116
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1117
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1118
+ };
1119
+ };
1120
+ };
1121
+ };
1122
+ /** Counts the tenants that the current user is enrolled in */
1123
+ CountMyTenants: {
1124
+ parameters: {
1125
+ query?: {
1126
+ "api-version"?: string;
1127
+ };
1128
+ header?: {
1129
+ "x-api-version"?: string;
1130
+ };
1131
+ };
1132
+ responses: {
1133
+ /** @description OK */
1134
+ 200: {
1135
+ content: {
1136
+ "application/json": components["schemas"]["Int32Envelope"];
1137
+ "application/xml": components["schemas"]["Int32Envelope"];
1138
+ "multipart/form-data": components["schemas"]["Int32Envelope"];
1139
+ };
1140
+ };
1141
+ /** @description Unauthorized */
1142
+ 401: {
1143
+ content: {
1144
+ "application/json": components["schemas"]["ErrorEnvelope"];
1145
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1146
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1147
+ };
1148
+ };
1149
+ /** @description Forbidden */
1150
+ 403: {
1151
+ content: {
1152
+ "application/json": components["schemas"]["ErrorEnvelope"];
1153
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1154
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1155
+ };
1156
+ };
1157
+ };
1158
+ };
1159
+ /** Gets the tenants that the current user is enrolled in with extended information */
1160
+ GetMyTenantsExtended: {
1161
+ parameters: {
1162
+ query?: {
1163
+ "api-version"?: string;
1164
+ };
1165
+ header?: {
1166
+ "x-api-version"?: string;
1167
+ };
1168
+ };
1169
+ responses: {
1170
+ /** @description OK */
1171
+ 200: {
1172
+ content: {
1173
+ "application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
1174
+ "application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
1175
+ "multipart/form-data": components["schemas"]["ExtendedTenantDtoListEnvelope"];
1176
+ };
1177
+ };
1178
+ /** @description Unauthorized */
1179
+ 401: {
1180
+ content: {
1181
+ "application/json": components["schemas"]["ErrorEnvelope"];
1182
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1183
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1184
+ };
1185
+ };
1186
+ /** @description Forbidden */
1187
+ 403: {
1188
+ content: {
1189
+ "application/json": components["schemas"]["ErrorEnvelope"];
1190
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1191
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1192
+ };
1193
+ };
1194
+ };
1195
+ };
1196
+ /** Gets the list of enrollments for the current user */
1197
+ GetMyEnrollments: {
1198
+ parameters: {
1199
+ query?: {
1200
+ "api-version"?: string;
1201
+ };
1202
+ header?: {
1203
+ "x-api-version"?: string;
1204
+ };
1205
+ };
1206
+ responses: {
1207
+ /** @description OK */
1208
+ 200: {
1209
+ content: {
1210
+ "application/json": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
1211
+ "application/xml": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
1212
+ "multipart/form-data": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
1213
+ };
1214
+ };
1215
+ /** @description Unauthorized */
1216
+ 401: {
1217
+ content: {
1218
+ "application/json": components["schemas"]["ErrorEnvelope"];
1219
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1220
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1221
+ };
1222
+ };
1223
+ };
1224
+ };
1225
+ /** Gets the list of enrollments for the current user with extended information */
1226
+ GetMyEnrollmentsExtended: {
1227
+ parameters: {
1228
+ query?: {
1229
+ "api-version"?: string;
1230
+ };
1231
+ header?: {
1232
+ "x-api-version"?: string;
1233
+ };
1234
+ };
1235
+ responses: {
1236
+ /** @description OK */
1237
+ 200: {
1238
+ content: {
1239
+ "application/json": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
1240
+ "application/xml": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
1241
+ "multipart/form-data": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
1242
+ };
1243
+ };
1244
+ /** @description Unauthorized */
1245
+ 401: {
1246
+ content: {
1247
+ "application/json": components["schemas"]["ErrorEnvelope"];
1248
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1249
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1250
+ };
1251
+ };
1252
+ };
1253
+ };
1254
+ /** Gets a single TenantEnrollment by its ID */
1255
+ GetMyEnrollment: {
1256
+ parameters: {
1257
+ query?: {
1258
+ "api-version"?: string;
1259
+ };
1260
+ header?: {
1261
+ "x-api-version"?: string;
1262
+ };
1263
+ path: {
1264
+ enrollmentId: string;
1265
+ };
1266
+ };
1267
+ requestBody?: {
1268
+ content: {
1269
+ "application/json": components["schemas"]["EnrollmentId"];
1270
+ "application/xml": components["schemas"]["EnrollmentId"];
1271
+ "multipart/form-data": components["schemas"]["EnrollmentId"];
1272
+ };
1273
+ };
1274
+ responses: {
1275
+ /** @description OK */
1276
+ 200: {
1277
+ content: {
1278
+ "application/json": components["schemas"]["TenantEnrolmentDtoEnvelope"];
1279
+ "application/xml": components["schemas"]["TenantEnrolmentDtoEnvelope"];
1280
+ "multipart/form-data": components["schemas"]["TenantEnrolmentDtoEnvelope"];
1281
+ };
1282
+ };
1283
+ /** @description Unauthorized */
1284
+ 401: {
1285
+ content: {
1286
+ "application/json": components["schemas"]["ErrorEnvelope"];
1287
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1288
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1289
+ };
1290
+ };
1291
+ };
1292
+ };
1293
+ /** Gets the current user's social profile */
1294
+ GetMySocialProfile: {
1295
+ parameters: {
1296
+ query?: {
1297
+ "api-version"?: string;
1298
+ };
1299
+ header?: {
1300
+ "x-api-version"?: string;
1301
+ };
1302
+ };
1303
+ responses: {
1304
+ /** @description OK */
1305
+ 200: {
1306
+ content: {
1307
+ "application/json": components["schemas"]["SocialProfileDtoEnvelope"];
1308
+ "application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
1309
+ "multipart/form-data": components["schemas"]["SocialProfileDtoEnvelope"];
1310
+ };
1311
+ };
1312
+ /** @description Unauthorized */
1313
+ 401: {
1314
+ content: {
1315
+ "application/json": components["schemas"]["ErrorEnvelope"];
1316
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1317
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1318
+ };
1319
+ };
1320
+ };
1321
+ };
1322
+ /** Gets the current user's cart */
1323
+ GetMyCart: {
1324
+ parameters: {
1325
+ query?: {
1326
+ "api-version"?: string;
1327
+ };
1328
+ header?: {
1329
+ "x-api-version"?: string;
1330
+ };
1331
+ };
1332
+ responses: {
1333
+ /** @description OK */
1334
+ 200: {
1335
+ content: {
1336
+ "application/json": components["schemas"]["CartDtoEnvelope"];
1337
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
1338
+ "multipart/form-data": components["schemas"]["CartDtoEnvelope"];
1339
+ };
1340
+ };
1341
+ /** @description Unauthorized */
1342
+ 401: {
1343
+ content: {
1344
+ "application/json": components["schemas"]["ErrorEnvelope"];
1345
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1346
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1347
+ };
1348
+ };
1349
+ };
1350
+ };
1351
+ /** Gets the current user's billing profile */
1352
+ GetMyWallet: {
1353
+ parameters: {
1354
+ query?: {
1355
+ "api-version"?: string;
1356
+ };
1357
+ header?: {
1358
+ "x-api-version"?: string;
1359
+ };
1360
+ };
1361
+ responses: {
1362
+ /** @description OK */
1363
+ 200: {
1364
+ content: {
1365
+ "application/json": components["schemas"]["WalletDtoEnvelope"];
1366
+ "application/xml": components["schemas"]["WalletDtoEnvelope"];
1367
+ "multipart/form-data": components["schemas"]["WalletDtoEnvelope"];
1368
+ };
1369
+ };
1370
+ /** @description Unauthorized */
1371
+ 401: {
1372
+ content: {
1373
+ "application/json": components["schemas"]["ErrorEnvelope"];
1374
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1375
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1376
+ };
1377
+ };
1378
+ };
1379
+ };
1380
+ /** Gets the list of notifications for the current user */
1381
+ GetMyNotifications: {
1382
+ parameters: {
1383
+ query?: {
1384
+ "api-version"?: string;
1385
+ };
1386
+ header?: {
1387
+ "x-api-version"?: string;
1388
+ };
1389
+ };
1390
+ responses: {
1391
+ /** @description OK */
1392
+ 200: {
1393
+ content: {
1394
+ "application/json": components["schemas"]["NotificationDtoListEnvelope"];
1395
+ "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
1396
+ "multipart/form-data": components["schemas"]["NotificationDtoListEnvelope"];
1397
+ };
1398
+ };
1399
+ /** @description Unauthorized */
1400
+ 401: {
1401
+ content: {
1402
+ "application/json": components["schemas"]["ErrorEnvelope"];
1403
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1404
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1405
+ };
1406
+ };
1407
+ };
1408
+ };
1409
+ /** Counts the list of notifications for the current user */
1410
+ CountMyNotifications: {
1411
+ parameters: {
1412
+ query?: {
1413
+ "api-version"?: string;
1414
+ };
1415
+ header?: {
1416
+ "x-api-version"?: string;
1417
+ };
1418
+ };
1419
+ responses: {
1420
+ /** @description OK */
1421
+ 200: {
1422
+ content: {
1423
+ "application/json": components["schemas"]["Int32Envelope"];
1424
+ "application/xml": components["schemas"]["Int32Envelope"];
1425
+ "multipart/form-data": components["schemas"]["Int32Envelope"];
1426
+ };
1427
+ };
1428
+ /** @description Unauthorized */
1429
+ 401: {
1430
+ content: {
1431
+ "application/json": components["schemas"]["ErrorEnvelope"];
1432
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1433
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1434
+ };
1435
+ };
1436
+ };
1437
+ };
1438
+ /** Gets the settings for the current user */
1439
+ GetMySettings: {
1440
+ parameters: {
1441
+ query?: {
1442
+ "api-version"?: string;
1443
+ };
1444
+ header?: {
1445
+ "x-api-version"?: string;
1446
+ };
1447
+ };
1448
+ responses: {
1449
+ /** @description OK */
1450
+ 200: {
1451
+ content: {
1452
+ "application/json": components["schemas"]["UserSettingsDtoEnvelope"];
1453
+ "application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
1454
+ "multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
1455
+ };
1456
+ };
1457
+ /** @description Unauthorized */
1458
+ 401: {
1459
+ content: {
1460
+ "application/json": components["schemas"]["ErrorEnvelope"];
1461
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1462
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1463
+ };
1464
+ };
1465
+ };
1466
+ };
1467
+ /** Updates the settings for the current user */
1468
+ UpdateMySettings: {
1469
+ parameters: {
1470
+ query?: {
1471
+ "api-version"?: string;
1472
+ };
1473
+ header?: {
1474
+ "x-api-version"?: string;
1475
+ };
1476
+ };
1477
+ requestBody?: {
1478
+ content: {
1479
+ "application/json": components["schemas"]["UserSettingsUpdateDto"];
1480
+ "application/xml": components["schemas"]["UserSettingsUpdateDto"];
1481
+ "multipart/form-data": components["schemas"]["UserSettingsUpdateDto"];
1482
+ };
1483
+ };
1484
+ responses: {
1485
+ /** @description OK */
1486
+ 200: {
1487
+ content: {
1488
+ "application/json": components["schemas"]["UserSettingsDtoEnvelope"];
1489
+ "application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
1490
+ "multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
1491
+ };
1492
+ };
1493
+ /** @description Unauthorized */
1494
+ 401: {
1495
+ content: {
1496
+ "application/json": components["schemas"]["ErrorEnvelope"];
1497
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1498
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1499
+ };
1500
+ };
1501
+ };
1502
+ };
1503
+ /** Gets the list of addresses for the current user */
1504
+ GetMyAddresses: {
1505
+ parameters: {
1506
+ query?: {
1507
+ "api-version"?: string;
1508
+ };
1509
+ header?: {
1510
+ "x-api-version"?: string;
1511
+ };
1512
+ };
1513
+ responses: {
1514
+ /** @description OK */
1515
+ 200: {
1516
+ content: {
1517
+ "application/json": components["schemas"]["AddressDtoListEnvelope"];
1518
+ "application/xml": components["schemas"]["AddressDtoListEnvelope"];
1519
+ "multipart/form-data": components["schemas"]["AddressDtoListEnvelope"];
1520
+ };
1521
+ };
1522
+ /** @description Unauthorized */
1523
+ 401: {
1524
+ content: {
1525
+ "application/json": components["schemas"]["ErrorEnvelope"];
1526
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1527
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1528
+ };
1529
+ };
1530
+ };
1531
+ };
1532
+ /** Gets the list of tenant enrollment invitations for the current user */
1533
+ GetMyInvitations: {
1534
+ parameters: {
1535
+ query?: {
1536
+ "api-version"?: string;
1537
+ };
1538
+ header?: {
1539
+ "x-api-version"?: string;
1540
+ };
1541
+ };
1542
+ responses: {
1543
+ /** @description OK */
1544
+ 200: {
1545
+ content: {
1546
+ "application/json": components["schemas"]["TenantInvitationDtoListEnvelope"];
1547
+ "application/xml": components["schemas"]["TenantInvitationDtoListEnvelope"];
1548
+ "multipart/form-data": components["schemas"]["TenantInvitationDtoListEnvelope"];
1549
+ };
1550
+ };
1551
+ /** @description Unauthorized */
1552
+ 401: {
1553
+ content: {
1554
+ "application/json": components["schemas"]["ErrorEnvelope"];
1555
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1556
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1557
+ };
1845
1558
  };
1846
1559
  };
1847
1560
  };