@emilgroup/tenant-sdk-node 1.0.0-beta.0

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 (313) hide show
  1. package/.openapi-generator/FILES +109 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +68 -0
  5. package/api/alerts-api.ts +860 -0
  6. package/api/custom-schema-api.ts +580 -0
  7. package/api/dashboard-api.ts +792 -0
  8. package/api/data-report-executor-api.ts +183 -0
  9. package/api/permissions-api.ts +307 -0
  10. package/api/reports-api.ts +860 -0
  11. package/api/roles-api.ts +564 -0
  12. package/api/scenario-analysis-api.ts +977 -0
  13. package/api/settings-api.ts +478 -0
  14. package/api/tariff-comparisons-api.ts +381 -0
  15. package/api/tenants-api.ts +514 -0
  16. package/api/user-subscription-api.ts +191 -0
  17. package/api/users-api.ts +1645 -0
  18. package/api.ts +60 -0
  19. package/base.ts +283 -0
  20. package/common.ts +199 -0
  21. package/configuration.ts +109 -0
  22. package/dist/api/alerts-api.d.ts +479 -0
  23. package/dist/api/alerts-api.js +752 -0
  24. package/dist/api/custom-schema-api.d.ts +329 -0
  25. package/dist/api/custom-schema-api.js +548 -0
  26. package/dist/api/dashboard-api.d.ts +434 -0
  27. package/dist/api/dashboard-api.js +724 -0
  28. package/dist/api/data-report-executor-api.d.ts +106 -0
  29. package/dist/api/data-report-executor-api.js +234 -0
  30. package/dist/api/permissions-api.d.ts +172 -0
  31. package/dist/api/permissions-api.js +331 -0
  32. package/dist/api/reports-api.d.ts +479 -0
  33. package/dist/api/reports-api.js +752 -0
  34. package/dist/api/roles-api.d.ts +301 -0
  35. package/dist/api/roles-api.js +578 -0
  36. package/dist/api/scenario-analysis-api.d.ts +529 -0
  37. package/dist/api/scenario-analysis-api.js +895 -0
  38. package/dist/api/settings-api.d.ts +261 -0
  39. package/dist/api/settings-api.js +509 -0
  40. package/dist/api/tariff-comparisons-api.d.ts +206 -0
  41. package/dist/api/tariff-comparisons-api.js +409 -0
  42. package/dist/api/tenants-api.d.ts +282 -0
  43. package/dist/api/tenants-api.js +514 -0
  44. package/dist/api/user-subscription-api.d.ts +111 -0
  45. package/dist/api/user-subscription-api.js +236 -0
  46. package/dist/api/users-api.d.ts +884 -0
  47. package/dist/api/users-api.js +1456 -0
  48. package/dist/api.d.ts +28 -0
  49. package/dist/api.js +48 -0
  50. package/dist/base.d.ts +76 -0
  51. package/dist/base.js +392 -0
  52. package/dist/common.d.ts +92 -0
  53. package/dist/common.js +277 -0
  54. package/dist/configuration.d.ts +90 -0
  55. package/dist/configuration.js +44 -0
  56. package/dist/index.d.ts +15 -0
  57. package/dist/index.js +35 -0
  58. package/dist/models/alert-class.d.ts +90 -0
  59. package/dist/models/alert-class.js +15 -0
  60. package/dist/models/assign-user-roles-request-dto.d.ts +30 -0
  61. package/dist/models/assign-user-roles-request-dto.js +15 -0
  62. package/dist/models/assign-user-roles-response-class.d.ts +25 -0
  63. package/dist/models/assign-user-roles-response-class.js +15 -0
  64. package/dist/models/batch-delete-request-dto.d.ts +24 -0
  65. package/dist/models/batch-delete-request-dto.js +15 -0
  66. package/dist/models/compare-tariffs-request-dto.d.ts +37 -0
  67. package/dist/models/compare-tariffs-request-dto.js +22 -0
  68. package/dist/models/compare-tariffs-response-class.d.ts +30 -0
  69. package/dist/models/compare-tariffs-response-class.js +15 -0
  70. package/dist/models/condition-dto.d.ts +43 -0
  71. package/dist/models/condition-dto.js +22 -0
  72. package/dist/models/create-alert-request-dto.d.ts +79 -0
  73. package/dist/models/create-alert-request-dto.js +27 -0
  74. package/dist/models/create-alert-response-class.d.ts +25 -0
  75. package/dist/models/create-alert-response-class.js +15 -0
  76. package/dist/models/create-custom-schema-request-dto.d.ts +44 -0
  77. package/dist/models/create-custom-schema-request-dto.js +22 -0
  78. package/dist/models/create-custom-schema-response-class.d.ts +25 -0
  79. package/dist/models/create-custom-schema-response-class.js +15 -0
  80. package/dist/models/create-dashboard-request-dto.d.ts +70 -0
  81. package/dist/models/create-dashboard-request-dto.js +29 -0
  82. package/dist/models/create-dashboard-response-class.d.ts +25 -0
  83. package/dist/models/create-dashboard-response-class.js +15 -0
  84. package/dist/models/create-permission-request-dto.d.ts +48 -0
  85. package/dist/models/create-permission-request-dto.js +15 -0
  86. package/dist/models/create-permission-response-class.d.ts +25 -0
  87. package/dist/models/create-permission-response-class.js +15 -0
  88. package/dist/models/create-report-request-dto.d.ts +49 -0
  89. package/dist/models/create-report-request-dto.js +22 -0
  90. package/dist/models/create-report-response-class.d.ts +25 -0
  91. package/dist/models/create-report-response-class.js +15 -0
  92. package/dist/models/create-role-request-dto.d.ts +36 -0
  93. package/dist/models/create-role-request-dto.js +15 -0
  94. package/dist/models/create-role-response-class.d.ts +25 -0
  95. package/dist/models/create-role-response-class.js +15 -0
  96. package/dist/models/create-scenario-analysis-request-dto.d.ts +74 -0
  97. package/dist/models/create-scenario-analysis-request-dto.js +22 -0
  98. package/dist/models/create-scenario-analysis-response-class.d.ts +25 -0
  99. package/dist/models/create-scenario-analysis-response-class.js +15 -0
  100. package/dist/models/create-tenant-request-dto.d.ts +56 -0
  101. package/dist/models/create-tenant-request-dto.js +15 -0
  102. package/dist/models/create-tenant-response-class.d.ts +42 -0
  103. package/dist/models/create-tenant-response-class.js +15 -0
  104. package/dist/models/custom-field-dto.d.ts +68 -0
  105. package/dist/models/custom-field-dto.js +23 -0
  106. package/dist/models/custom-schema-class.d.ts +66 -0
  107. package/dist/models/custom-schema-class.js +15 -0
  108. package/dist/models/dashboard-class.d.ts +78 -0
  109. package/dist/models/dashboard-class.js +15 -0
  110. package/dist/models/dbconfig-dto.d.ts +48 -0
  111. package/dist/models/dbconfig-dto.js +15 -0
  112. package/dist/models/disable-user-response-class.d.ts +25 -0
  113. package/dist/models/disable-user-response-class.js +15 -0
  114. package/dist/models/disable-users-request-dto.d.ts +24 -0
  115. package/dist/models/disable-users-request-dto.js +15 -0
  116. package/dist/models/enable-user-response-class.d.ts +25 -0
  117. package/dist/models/enable-user-response-class.js +15 -0
  118. package/dist/models/enable-users-request-dto.d.ts +24 -0
  119. package/dist/models/enable-users-request-dto.js +15 -0
  120. package/dist/models/get-alert-response-class.d.ts +25 -0
  121. package/dist/models/get-alert-response-class.js +15 -0
  122. package/dist/models/get-custom-schema-response-class.d.ts +25 -0
  123. package/dist/models/get-custom-schema-response-class.js +15 -0
  124. package/dist/models/get-dashboard-response-class.d.ts +25 -0
  125. package/dist/models/get-dashboard-response-class.js +15 -0
  126. package/dist/models/get-embedded-url-response-class.d.ts +24 -0
  127. package/dist/models/get-embedded-url-response-class.js +15 -0
  128. package/dist/models/get-report-response-class.d.ts +25 -0
  129. package/dist/models/get-report-response-class.js +15 -0
  130. package/dist/models/get-role-response-class.d.ts +25 -0
  131. package/dist/models/get-role-response-class.js +15 -0
  132. package/dist/models/get-scenario-analysis-response-class.d.ts +25 -0
  133. package/dist/models/get-scenario-analysis-response-class.js +15 -0
  134. package/dist/models/get-user-response-class.d.ts +25 -0
  135. package/dist/models/get-user-response-class.js +15 -0
  136. package/dist/models/index.d.ts +83 -0
  137. package/dist/models/index.js +99 -0
  138. package/dist/models/invite-class.d.ts +54 -0
  139. package/dist/models/invite-class.js +15 -0
  140. package/dist/models/invite-user-request-dto.d.ts +30 -0
  141. package/dist/models/invite-user-request-dto.js +15 -0
  142. package/dist/models/invite-user-response-class.d.ts +25 -0
  143. package/dist/models/invite-user-response-class.js +15 -0
  144. package/dist/models/invite-users-request-dto.d.ts +30 -0
  145. package/dist/models/invite-users-request-dto.js +15 -0
  146. package/dist/models/list-alert-history-response-class.d.ts +30 -0
  147. package/dist/models/list-alert-history-response-class.js +15 -0
  148. package/dist/models/list-alerts-response-class.d.ts +30 -0
  149. package/dist/models/list-alerts-response-class.js +15 -0
  150. package/dist/models/list-channels-response-class.d.ts +24 -0
  151. package/dist/models/list-channels-response-class.js +15 -0
  152. package/dist/models/list-custom-schemas-response-class.d.ts +30 -0
  153. package/dist/models/list-custom-schemas-response-class.js +15 -0
  154. package/dist/models/list-dashboards-response-class.d.ts +30 -0
  155. package/dist/models/list-dashboards-response-class.js +15 -0
  156. package/dist/models/list-insurance-companies-response-class.d.ts +24 -0
  157. package/dist/models/list-insurance-companies-response-class.js +15 -0
  158. package/dist/models/list-invites-response-class.d.ts +30 -0
  159. package/dist/models/list-invites-response-class.js +15 -0
  160. package/dist/models/list-permissions-response-class.d.ts +30 -0
  161. package/dist/models/list-permissions-response-class.js +15 -0
  162. package/dist/models/list-report-history-response-class.d.ts +30 -0
  163. package/dist/models/list-report-history-response-class.js +15 -0
  164. package/dist/models/list-reports-response-class.d.ts +30 -0
  165. package/dist/models/list-reports-response-class.js +15 -0
  166. package/dist/models/list-roles-response-class.d.ts +30 -0
  167. package/dist/models/list-roles-response-class.js +15 -0
  168. package/dist/models/list-scenario-analyses-response-class.d.ts +30 -0
  169. package/dist/models/list-scenario-analyses-response-class.js +15 -0
  170. package/dist/models/list-scenario-analysis-dates-response-class.d.ts +24 -0
  171. package/dist/models/list-scenario-analysis-dates-response-class.js +15 -0
  172. package/dist/models/list-tariff-insurance-companies-response-class.d.ts +24 -0
  173. package/dist/models/list-tariff-insurance-companies-response-class.js +15 -0
  174. package/dist/models/list-tariffs-response-class.d.ts +24 -0
  175. package/dist/models/list-tariffs-response-class.js +15 -0
  176. package/dist/models/list-users-response-class.d.ts +30 -0
  177. package/dist/models/list-users-response-class.js +15 -0
  178. package/dist/models/manage-subscription-request-dto.d.ts +24 -0
  179. package/dist/models/manage-subscription-request-dto.js +15 -0
  180. package/dist/models/manage-subscription-response-class.d.ts +25 -0
  181. package/dist/models/manage-subscription-response-class.js +15 -0
  182. package/dist/models/permission-class.d.ts +66 -0
  183. package/dist/models/permission-class.js +15 -0
  184. package/dist/models/report-class.d.ts +66 -0
  185. package/dist/models/report-class.js +15 -0
  186. package/dist/models/role-class.d.ts +60 -0
  187. package/dist/models/role-class.js +15 -0
  188. package/dist/models/run-data-report-request-dto.d.ts +30 -0
  189. package/dist/models/run-data-report-request-dto.js +15 -0
  190. package/dist/models/run-data-report-response-class.d.ts +24 -0
  191. package/dist/models/run-data-report-response-class.js +15 -0
  192. package/dist/models/scenario-analysis-class.d.ts +108 -0
  193. package/dist/models/scenario-analysis-class.js +15 -0
  194. package/dist/models/set-user-setting-request-dto.d.ts +30 -0
  195. package/dist/models/set-user-setting-request-dto.js +15 -0
  196. package/dist/models/subscription-class.d.ts +60 -0
  197. package/dist/models/subscription-class.js +15 -0
  198. package/dist/models/tenant-admin-user-dto.d.ts +42 -0
  199. package/dist/models/tenant-admin-user-dto.js +15 -0
  200. package/dist/models/update-alert-request-dto.d.ts +72 -0
  201. package/dist/models/update-alert-request-dto.js +21 -0
  202. package/dist/models/update-alert-response-class.d.ts +25 -0
  203. package/dist/models/update-alert-response-class.js +15 -0
  204. package/dist/models/update-custom-schema-request-dto.d.ts +44 -0
  205. package/dist/models/update-custom-schema-request-dto.js +22 -0
  206. package/dist/models/update-custom-schema-response-class.d.ts +25 -0
  207. package/dist/models/update-custom-schema-response-class.js +15 -0
  208. package/dist/models/update-dashboard-request-dto.d.ts +76 -0
  209. package/dist/models/update-dashboard-request-dto.js +29 -0
  210. package/dist/models/update-dashboard-response-class.d.ts +25 -0
  211. package/dist/models/update-dashboard-response-class.js +15 -0
  212. package/dist/models/update-report-request-dto.d.ts +55 -0
  213. package/dist/models/update-report-request-dto.js +22 -0
  214. package/dist/models/update-report-response-class.d.ts +25 -0
  215. package/dist/models/update-report-response-class.js +15 -0
  216. package/dist/models/update-role-request-dto.d.ts +42 -0
  217. package/dist/models/update-role-request-dto.js +15 -0
  218. package/dist/models/update-role-response-class.d.ts +25 -0
  219. package/dist/models/update-role-response-class.js +15 -0
  220. package/dist/models/update-scenario-analysis-request-dto.d.ts +74 -0
  221. package/dist/models/update-scenario-analysis-request-dto.js +22 -0
  222. package/dist/models/update-scenario-analysis-response-class.d.ts +25 -0
  223. package/dist/models/update-scenario-analysis-response-class.js +15 -0
  224. package/dist/models/user-class.d.ts +90 -0
  225. package/dist/models/user-class.js +15 -0
  226. package/git_push.sh +57 -0
  227. package/index.ts +19 -0
  228. package/models/alert-class.ts +96 -0
  229. package/models/assign-user-roles-request-dto.ts +36 -0
  230. package/models/assign-user-roles-response-class.ts +31 -0
  231. package/models/batch-delete-request-dto.ts +30 -0
  232. package/models/compare-tariffs-request-dto.ts +46 -0
  233. package/models/compare-tariffs-response-class.ts +36 -0
  234. package/models/condition-dto.ts +52 -0
  235. package/models/create-alert-request-dto.ts +89 -0
  236. package/models/create-alert-response-class.ts +31 -0
  237. package/models/create-custom-schema-request-dto.ts +53 -0
  238. package/models/create-custom-schema-response-class.ts +31 -0
  239. package/models/create-dashboard-request-dto.ts +81 -0
  240. package/models/create-dashboard-response-class.ts +31 -0
  241. package/models/create-permission-request-dto.ts +54 -0
  242. package/models/create-permission-response-class.ts +31 -0
  243. package/models/create-report-request-dto.ts +58 -0
  244. package/models/create-report-response-class.ts +31 -0
  245. package/models/create-role-request-dto.ts +42 -0
  246. package/models/create-role-response-class.ts +31 -0
  247. package/models/create-scenario-analysis-request-dto.ts +83 -0
  248. package/models/create-scenario-analysis-response-class.ts +31 -0
  249. package/models/create-tenant-request-dto.ts +62 -0
  250. package/models/create-tenant-response-class.ts +48 -0
  251. package/models/custom-field-dto.ts +77 -0
  252. package/models/custom-schema-class.ts +72 -0
  253. package/models/dashboard-class.ts +84 -0
  254. package/models/dbconfig-dto.ts +54 -0
  255. package/models/disable-user-response-class.ts +31 -0
  256. package/models/disable-users-request-dto.ts +30 -0
  257. package/models/enable-user-response-class.ts +31 -0
  258. package/models/enable-users-request-dto.ts +30 -0
  259. package/models/get-alert-response-class.ts +31 -0
  260. package/models/get-custom-schema-response-class.ts +31 -0
  261. package/models/get-dashboard-response-class.ts +31 -0
  262. package/models/get-embedded-url-response-class.ts +30 -0
  263. package/models/get-report-response-class.ts +31 -0
  264. package/models/get-role-response-class.ts +31 -0
  265. package/models/get-scenario-analysis-response-class.ts +31 -0
  266. package/models/get-user-response-class.ts +31 -0
  267. package/models/index.ts +83 -0
  268. package/models/invite-class.ts +60 -0
  269. package/models/invite-user-request-dto.ts +36 -0
  270. package/models/invite-user-response-class.ts +31 -0
  271. package/models/invite-users-request-dto.ts +36 -0
  272. package/models/list-alert-history-response-class.ts +36 -0
  273. package/models/list-alerts-response-class.ts +36 -0
  274. package/models/list-channels-response-class.ts +30 -0
  275. package/models/list-custom-schemas-response-class.ts +36 -0
  276. package/models/list-dashboards-response-class.ts +36 -0
  277. package/models/list-insurance-companies-response-class.ts +30 -0
  278. package/models/list-invites-response-class.ts +36 -0
  279. package/models/list-permissions-response-class.ts +36 -0
  280. package/models/list-report-history-response-class.ts +36 -0
  281. package/models/list-reports-response-class.ts +36 -0
  282. package/models/list-roles-response-class.ts +36 -0
  283. package/models/list-scenario-analyses-response-class.ts +36 -0
  284. package/models/list-scenario-analysis-dates-response-class.ts +30 -0
  285. package/models/list-tariff-insurance-companies-response-class.ts +30 -0
  286. package/models/list-tariffs-response-class.ts +30 -0
  287. package/models/list-users-response-class.ts +36 -0
  288. package/models/manage-subscription-request-dto.ts +30 -0
  289. package/models/manage-subscription-response-class.ts +31 -0
  290. package/models/permission-class.ts +72 -0
  291. package/models/report-class.ts +72 -0
  292. package/models/role-class.ts +66 -0
  293. package/models/run-data-report-request-dto.ts +36 -0
  294. package/models/run-data-report-response-class.ts +30 -0
  295. package/models/scenario-analysis-class.ts +114 -0
  296. package/models/set-user-setting-request-dto.ts +36 -0
  297. package/models/subscription-class.ts +66 -0
  298. package/models/tenant-admin-user-dto.ts +48 -0
  299. package/models/update-alert-request-dto.ts +81 -0
  300. package/models/update-alert-response-class.ts +31 -0
  301. package/models/update-custom-schema-request-dto.ts +53 -0
  302. package/models/update-custom-schema-response-class.ts +31 -0
  303. package/models/update-dashboard-request-dto.ts +87 -0
  304. package/models/update-dashboard-response-class.ts +31 -0
  305. package/models/update-report-request-dto.ts +64 -0
  306. package/models/update-report-response-class.ts +31 -0
  307. package/models/update-role-request-dto.ts +48 -0
  308. package/models/update-role-response-class.ts +31 -0
  309. package/models/update-scenario-analysis-request-dto.ts +83 -0
  310. package/models/update-scenario-analysis-response-class.ts +31 -0
  311. package/models/user-class.ts +96 -0
  312. package/package.json +29 -0
  313. package/tsconfig.json +22 -0
@@ -0,0 +1,884 @@
1
+ /**
2
+ * EMIL Tenant Service
3
+ * The EMIL TenantService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { AssignUserRolesRequestDto } from '../models';
16
+ import { AssignUserRolesResponseClass } from '../models';
17
+ import { BatchDeleteRequestDto } from '../models';
18
+ import { DisableUserResponseClass } from '../models';
19
+ import { DisableUsersRequestDto } from '../models';
20
+ import { EnableUserResponseClass } from '../models';
21
+ import { EnableUsersRequestDto } from '../models';
22
+ import { GetUserResponseClass } from '../models';
23
+ import { InviteUserRequestDto } from '../models';
24
+ import { InviteUserResponseClass } from '../models';
25
+ import { InviteUsersRequestDto } from '../models';
26
+ import { ListInvitesResponseClass } from '../models';
27
+ import { ListUsersResponseClass } from '../models';
28
+ /**
29
+ * UsersApi - axios parameter creator
30
+ * @export
31
+ */
32
+ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
33
+ /**
34
+ *
35
+ * @param {number} id
36
+ * @param {AssignUserRolesRequestDto} assignUserRolesRequestDto
37
+ * @param {string} [authorization] Bearer Token
38
+ * @param {*} [options] Override http request option.
39
+ * @throws {RequiredError}
40
+ */
41
+ assignUserRoles: (id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
42
+ /**
43
+ *
44
+ * @param {number} id
45
+ * @param {string} [authorization] Bearer Token
46
+ * @param {*} [options] Override http request option.
47
+ * @throws {RequiredError}
48
+ */
49
+ deleteInvite: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
50
+ /**
51
+ *
52
+ * @param {BatchDeleteRequestDto} batchDeleteRequestDto
53
+ * @param {string} [authorization] Bearer Token
54
+ * @param {*} [options] Override http request option.
55
+ * @throws {RequiredError}
56
+ */
57
+ deleteInvites: (batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
58
+ /**
59
+ *
60
+ * @param {number} id
61
+ * @param {string} [authorization] Bearer Token
62
+ * @param {*} [options] Override http request option.
63
+ * @throws {RequiredError}
64
+ */
65
+ deleteUser: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
66
+ /**
67
+ *
68
+ * @param {BatchDeleteRequestDto} batchDeleteRequestDto
69
+ * @param {string} [authorization] Bearer Token
70
+ * @param {*} [options] Override http request option.
71
+ * @throws {RequiredError}
72
+ */
73
+ deleteUsers: (batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
74
+ /**
75
+ *
76
+ * @param {number} id
77
+ * @param {string} [authorization] Bearer Token
78
+ * @param {*} [options] Override http request option.
79
+ * @throws {RequiredError}
80
+ */
81
+ disableUser: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
82
+ /**
83
+ *
84
+ * @param {DisableUsersRequestDto} disableUsersRequestDto
85
+ * @param {string} [authorization] Bearer Token
86
+ * @param {*} [options] Override http request option.
87
+ * @throws {RequiredError}
88
+ */
89
+ disableUsers: (disableUsersRequestDto: DisableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
90
+ /**
91
+ *
92
+ * @param {number} id
93
+ * @param {string} [authorization] Bearer Token
94
+ * @param {*} [options] Override http request option.
95
+ * @throws {RequiredError}
96
+ */
97
+ enableUser: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
98
+ /**
99
+ *
100
+ * @param {EnableUsersRequestDto} enableUsersRequestDto
101
+ * @param {string} [authorization] Bearer Token
102
+ * @param {*} [options] Override http request option.
103
+ * @throws {RequiredError}
104
+ */
105
+ enableUsers: (enableUsersRequestDto: EnableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
106
+ /**
107
+ *
108
+ * @param {string} code
109
+ * @param {string} code2 code
110
+ * @param {string} [authorization] Bearer Token
111
+ * @param {string} [expand] Fields to expand response by
112
+ * @param {*} [options] Override http request option.
113
+ * @throws {RequiredError}
114
+ */
115
+ getUser: (code: string, code2: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
116
+ /**
117
+ *
118
+ * @param {InviteUserRequestDto} inviteUserRequestDto
119
+ * @param {string} [authorization] Bearer Token
120
+ * @param {*} [options] Override http request option.
121
+ * @throws {RequiredError}
122
+ */
123
+ inviteUser: (inviteUserRequestDto: InviteUserRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
124
+ /**
125
+ *
126
+ * @param {InviteUsersRequestDto} inviteUsersRequestDto
127
+ * @param {string} [authorization] Bearer Token
128
+ * @param {*} [options] Override http request option.
129
+ * @throws {RequiredError}
130
+ */
131
+ inviteUsers: (inviteUsersRequestDto: InviteUsersRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
132
+ /**
133
+ *
134
+ * @param {string} [authorization] Bearer Token
135
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
136
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
137
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
138
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
139
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
140
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
141
+ * @param {*} [options] Override http request option.
142
+ * @throws {RequiredError}
143
+ */
144
+ listInvites: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
145
+ /**
146
+ *
147
+ * @param {string} [authorization] Bearer Token
148
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
149
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
150
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
151
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
152
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
153
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
154
+ * @param {*} [options] Override http request option.
155
+ * @throws {RequiredError}
156
+ */
157
+ listUsers: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
158
+ };
159
+ /**
160
+ * UsersApi - functional programming interface
161
+ * @export
162
+ */
163
+ export declare const UsersApiFp: (configuration?: Configuration) => {
164
+ /**
165
+ *
166
+ * @param {number} id
167
+ * @param {AssignUserRolesRequestDto} assignUserRolesRequestDto
168
+ * @param {string} [authorization] Bearer Token
169
+ * @param {*} [options] Override http request option.
170
+ * @throws {RequiredError}
171
+ */
172
+ assignUserRoles(id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssignUserRolesResponseClass>>;
173
+ /**
174
+ *
175
+ * @param {number} id
176
+ * @param {string} [authorization] Bearer Token
177
+ * @param {*} [options] Override http request option.
178
+ * @throws {RequiredError}
179
+ */
180
+ deleteInvite(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
181
+ /**
182
+ *
183
+ * @param {BatchDeleteRequestDto} batchDeleteRequestDto
184
+ * @param {string} [authorization] Bearer Token
185
+ * @param {*} [options] Override http request option.
186
+ * @throws {RequiredError}
187
+ */
188
+ deleteInvites(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
189
+ /**
190
+ *
191
+ * @param {number} id
192
+ * @param {string} [authorization] Bearer Token
193
+ * @param {*} [options] Override http request option.
194
+ * @throws {RequiredError}
195
+ */
196
+ deleteUser(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
197
+ /**
198
+ *
199
+ * @param {BatchDeleteRequestDto} batchDeleteRequestDto
200
+ * @param {string} [authorization] Bearer Token
201
+ * @param {*} [options] Override http request option.
202
+ * @throws {RequiredError}
203
+ */
204
+ deleteUsers(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
205
+ /**
206
+ *
207
+ * @param {number} id
208
+ * @param {string} [authorization] Bearer Token
209
+ * @param {*} [options] Override http request option.
210
+ * @throws {RequiredError}
211
+ */
212
+ disableUser(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisableUserResponseClass>>;
213
+ /**
214
+ *
215
+ * @param {DisableUsersRequestDto} disableUsersRequestDto
216
+ * @param {string} [authorization] Bearer Token
217
+ * @param {*} [options] Override http request option.
218
+ * @throws {RequiredError}
219
+ */
220
+ disableUsers(disableUsersRequestDto: DisableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
221
+ /**
222
+ *
223
+ * @param {number} id
224
+ * @param {string} [authorization] Bearer Token
225
+ * @param {*} [options] Override http request option.
226
+ * @throws {RequiredError}
227
+ */
228
+ enableUser(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnableUserResponseClass>>;
229
+ /**
230
+ *
231
+ * @param {EnableUsersRequestDto} enableUsersRequestDto
232
+ * @param {string} [authorization] Bearer Token
233
+ * @param {*} [options] Override http request option.
234
+ * @throws {RequiredError}
235
+ */
236
+ enableUsers(enableUsersRequestDto: EnableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
237
+ /**
238
+ *
239
+ * @param {string} code
240
+ * @param {string} code2 code
241
+ * @param {string} [authorization] Bearer Token
242
+ * @param {string} [expand] Fields to expand response by
243
+ * @param {*} [options] Override http request option.
244
+ * @throws {RequiredError}
245
+ */
246
+ getUser(code: string, code2: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserResponseClass>>;
247
+ /**
248
+ *
249
+ * @param {InviteUserRequestDto} inviteUserRequestDto
250
+ * @param {string} [authorization] Bearer Token
251
+ * @param {*} [options] Override http request option.
252
+ * @throws {RequiredError}
253
+ */
254
+ inviteUser(inviteUserRequestDto: InviteUserRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteUserResponseClass>>;
255
+ /**
256
+ *
257
+ * @param {InviteUsersRequestDto} inviteUsersRequestDto
258
+ * @param {string} [authorization] Bearer Token
259
+ * @param {*} [options] Override http request option.
260
+ * @throws {RequiredError}
261
+ */
262
+ inviteUsers(inviteUsersRequestDto: InviteUsersRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
263
+ /**
264
+ *
265
+ * @param {string} [authorization] Bearer Token
266
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
267
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
268
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
269
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
270
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
271
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
272
+ * @param {*} [options] Override http request option.
273
+ * @throws {RequiredError}
274
+ */
275
+ listInvites(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListInvitesResponseClass>>;
276
+ /**
277
+ *
278
+ * @param {string} [authorization] Bearer Token
279
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
280
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
281
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
282
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
283
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
284
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
285
+ * @param {*} [options] Override http request option.
286
+ * @throws {RequiredError}
287
+ */
288
+ listUsers(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListUsersResponseClass>>;
289
+ };
290
+ /**
291
+ * UsersApi - factory interface
292
+ * @export
293
+ */
294
+ export declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
295
+ /**
296
+ *
297
+ * @param {number} id
298
+ * @param {AssignUserRolesRequestDto} assignUserRolesRequestDto
299
+ * @param {string} [authorization] Bearer Token
300
+ * @param {*} [options] Override http request option.
301
+ * @throws {RequiredError}
302
+ */
303
+ assignUserRoles(id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, authorization?: string, options?: any): AxiosPromise<AssignUserRolesResponseClass>;
304
+ /**
305
+ *
306
+ * @param {number} id
307
+ * @param {string} [authorization] Bearer Token
308
+ * @param {*} [options] Override http request option.
309
+ * @throws {RequiredError}
310
+ */
311
+ deleteInvite(id: number, authorization?: string, options?: any): AxiosPromise<object>;
312
+ /**
313
+ *
314
+ * @param {BatchDeleteRequestDto} batchDeleteRequestDto
315
+ * @param {string} [authorization] Bearer Token
316
+ * @param {*} [options] Override http request option.
317
+ * @throws {RequiredError}
318
+ */
319
+ deleteInvites(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: any): AxiosPromise<object>;
320
+ /**
321
+ *
322
+ * @param {number} id
323
+ * @param {string} [authorization] Bearer Token
324
+ * @param {*} [options] Override http request option.
325
+ * @throws {RequiredError}
326
+ */
327
+ deleteUser(id: number, authorization?: string, options?: any): AxiosPromise<object>;
328
+ /**
329
+ *
330
+ * @param {BatchDeleteRequestDto} batchDeleteRequestDto
331
+ * @param {string} [authorization] Bearer Token
332
+ * @param {*} [options] Override http request option.
333
+ * @throws {RequiredError}
334
+ */
335
+ deleteUsers(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: any): AxiosPromise<object>;
336
+ /**
337
+ *
338
+ * @param {number} id
339
+ * @param {string} [authorization] Bearer Token
340
+ * @param {*} [options] Override http request option.
341
+ * @throws {RequiredError}
342
+ */
343
+ disableUser(id: number, authorization?: string, options?: any): AxiosPromise<DisableUserResponseClass>;
344
+ /**
345
+ *
346
+ * @param {DisableUsersRequestDto} disableUsersRequestDto
347
+ * @param {string} [authorization] Bearer Token
348
+ * @param {*} [options] Override http request option.
349
+ * @throws {RequiredError}
350
+ */
351
+ disableUsers(disableUsersRequestDto: DisableUsersRequestDto, authorization?: string, options?: any): AxiosPromise<object>;
352
+ /**
353
+ *
354
+ * @param {number} id
355
+ * @param {string} [authorization] Bearer Token
356
+ * @param {*} [options] Override http request option.
357
+ * @throws {RequiredError}
358
+ */
359
+ enableUser(id: number, authorization?: string, options?: any): AxiosPromise<EnableUserResponseClass>;
360
+ /**
361
+ *
362
+ * @param {EnableUsersRequestDto} enableUsersRequestDto
363
+ * @param {string} [authorization] Bearer Token
364
+ * @param {*} [options] Override http request option.
365
+ * @throws {RequiredError}
366
+ */
367
+ enableUsers(enableUsersRequestDto: EnableUsersRequestDto, authorization?: string, options?: any): AxiosPromise<object>;
368
+ /**
369
+ *
370
+ * @param {string} code
371
+ * @param {string} code2 code
372
+ * @param {string} [authorization] Bearer Token
373
+ * @param {string} [expand] Fields to expand response by
374
+ * @param {*} [options] Override http request option.
375
+ * @throws {RequiredError}
376
+ */
377
+ getUser(code: string, code2: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetUserResponseClass>;
378
+ /**
379
+ *
380
+ * @param {InviteUserRequestDto} inviteUserRequestDto
381
+ * @param {string} [authorization] Bearer Token
382
+ * @param {*} [options] Override http request option.
383
+ * @throws {RequiredError}
384
+ */
385
+ inviteUser(inviteUserRequestDto: InviteUserRequestDto, authorization?: string, options?: any): AxiosPromise<InviteUserResponseClass>;
386
+ /**
387
+ *
388
+ * @param {InviteUsersRequestDto} inviteUsersRequestDto
389
+ * @param {string} [authorization] Bearer Token
390
+ * @param {*} [options] Override http request option.
391
+ * @throws {RequiredError}
392
+ */
393
+ inviteUsers(inviteUsersRequestDto: InviteUsersRequestDto, authorization?: string, options?: any): AxiosPromise<object>;
394
+ /**
395
+ *
396
+ * @param {string} [authorization] Bearer Token
397
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
398
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
399
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
400
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
401
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
402
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
403
+ * @param {*} [options] Override http request option.
404
+ * @throws {RequiredError}
405
+ */
406
+ listInvites(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListInvitesResponseClass>;
407
+ /**
408
+ *
409
+ * @param {string} [authorization] Bearer Token
410
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
411
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
412
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
413
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
414
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
415
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
416
+ * @param {*} [options] Override http request option.
417
+ * @throws {RequiredError}
418
+ */
419
+ listUsers(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListUsersResponseClass>;
420
+ };
421
+ /**
422
+ * Request parameters for assignUserRoles operation in UsersApi.
423
+ * @export
424
+ * @interface UsersApiAssignUserRolesRequest
425
+ */
426
+ export interface UsersApiAssignUserRolesRequest {
427
+ /**
428
+ *
429
+ * @type {number}
430
+ * @memberof UsersApiAssignUserRoles
431
+ */
432
+ readonly id: number;
433
+ /**
434
+ *
435
+ * @type {AssignUserRolesRequestDto}
436
+ * @memberof UsersApiAssignUserRoles
437
+ */
438
+ readonly assignUserRolesRequestDto: AssignUserRolesRequestDto;
439
+ /**
440
+ * Bearer Token
441
+ * @type {string}
442
+ * @memberof UsersApiAssignUserRoles
443
+ */
444
+ readonly authorization?: string;
445
+ }
446
+ /**
447
+ * Request parameters for deleteInvite operation in UsersApi.
448
+ * @export
449
+ * @interface UsersApiDeleteInviteRequest
450
+ */
451
+ export interface UsersApiDeleteInviteRequest {
452
+ /**
453
+ *
454
+ * @type {number}
455
+ * @memberof UsersApiDeleteInvite
456
+ */
457
+ readonly id: number;
458
+ /**
459
+ * Bearer Token
460
+ * @type {string}
461
+ * @memberof UsersApiDeleteInvite
462
+ */
463
+ readonly authorization?: string;
464
+ }
465
+ /**
466
+ * Request parameters for deleteInvites operation in UsersApi.
467
+ * @export
468
+ * @interface UsersApiDeleteInvitesRequest
469
+ */
470
+ export interface UsersApiDeleteInvitesRequest {
471
+ /**
472
+ *
473
+ * @type {BatchDeleteRequestDto}
474
+ * @memberof UsersApiDeleteInvites
475
+ */
476
+ readonly batchDeleteRequestDto: BatchDeleteRequestDto;
477
+ /**
478
+ * Bearer Token
479
+ * @type {string}
480
+ * @memberof UsersApiDeleteInvites
481
+ */
482
+ readonly authorization?: string;
483
+ }
484
+ /**
485
+ * Request parameters for deleteUser operation in UsersApi.
486
+ * @export
487
+ * @interface UsersApiDeleteUserRequest
488
+ */
489
+ export interface UsersApiDeleteUserRequest {
490
+ /**
491
+ *
492
+ * @type {number}
493
+ * @memberof UsersApiDeleteUser
494
+ */
495
+ readonly id: number;
496
+ /**
497
+ * Bearer Token
498
+ * @type {string}
499
+ * @memberof UsersApiDeleteUser
500
+ */
501
+ readonly authorization?: string;
502
+ }
503
+ /**
504
+ * Request parameters for deleteUsers operation in UsersApi.
505
+ * @export
506
+ * @interface UsersApiDeleteUsersRequest
507
+ */
508
+ export interface UsersApiDeleteUsersRequest {
509
+ /**
510
+ *
511
+ * @type {BatchDeleteRequestDto}
512
+ * @memberof UsersApiDeleteUsers
513
+ */
514
+ readonly batchDeleteRequestDto: BatchDeleteRequestDto;
515
+ /**
516
+ * Bearer Token
517
+ * @type {string}
518
+ * @memberof UsersApiDeleteUsers
519
+ */
520
+ readonly authorization?: string;
521
+ }
522
+ /**
523
+ * Request parameters for disableUser operation in UsersApi.
524
+ * @export
525
+ * @interface UsersApiDisableUserRequest
526
+ */
527
+ export interface UsersApiDisableUserRequest {
528
+ /**
529
+ *
530
+ * @type {number}
531
+ * @memberof UsersApiDisableUser
532
+ */
533
+ readonly id: number;
534
+ /**
535
+ * Bearer Token
536
+ * @type {string}
537
+ * @memberof UsersApiDisableUser
538
+ */
539
+ readonly authorization?: string;
540
+ }
541
+ /**
542
+ * Request parameters for disableUsers operation in UsersApi.
543
+ * @export
544
+ * @interface UsersApiDisableUsersRequest
545
+ */
546
+ export interface UsersApiDisableUsersRequest {
547
+ /**
548
+ *
549
+ * @type {DisableUsersRequestDto}
550
+ * @memberof UsersApiDisableUsers
551
+ */
552
+ readonly disableUsersRequestDto: DisableUsersRequestDto;
553
+ /**
554
+ * Bearer Token
555
+ * @type {string}
556
+ * @memberof UsersApiDisableUsers
557
+ */
558
+ readonly authorization?: string;
559
+ }
560
+ /**
561
+ * Request parameters for enableUser operation in UsersApi.
562
+ * @export
563
+ * @interface UsersApiEnableUserRequest
564
+ */
565
+ export interface UsersApiEnableUserRequest {
566
+ /**
567
+ *
568
+ * @type {number}
569
+ * @memberof UsersApiEnableUser
570
+ */
571
+ readonly id: number;
572
+ /**
573
+ * Bearer Token
574
+ * @type {string}
575
+ * @memberof UsersApiEnableUser
576
+ */
577
+ readonly authorization?: string;
578
+ }
579
+ /**
580
+ * Request parameters for enableUsers operation in UsersApi.
581
+ * @export
582
+ * @interface UsersApiEnableUsersRequest
583
+ */
584
+ export interface UsersApiEnableUsersRequest {
585
+ /**
586
+ *
587
+ * @type {EnableUsersRequestDto}
588
+ * @memberof UsersApiEnableUsers
589
+ */
590
+ readonly enableUsersRequestDto: EnableUsersRequestDto;
591
+ /**
592
+ * Bearer Token
593
+ * @type {string}
594
+ * @memberof UsersApiEnableUsers
595
+ */
596
+ readonly authorization?: string;
597
+ }
598
+ /**
599
+ * Request parameters for getUser operation in UsersApi.
600
+ * @export
601
+ * @interface UsersApiGetUserRequest
602
+ */
603
+ export interface UsersApiGetUserRequest {
604
+ /**
605
+ *
606
+ * @type {string}
607
+ * @memberof UsersApiGetUser
608
+ */
609
+ readonly code: string;
610
+ /**
611
+ * code
612
+ * @type {string}
613
+ * @memberof UsersApiGetUser
614
+ */
615
+ readonly code2: string;
616
+ /**
617
+ * Bearer Token
618
+ * @type {string}
619
+ * @memberof UsersApiGetUser
620
+ */
621
+ readonly authorization?: string;
622
+ /**
623
+ * Fields to expand response by
624
+ * @type {string}
625
+ * @memberof UsersApiGetUser
626
+ */
627
+ readonly expand?: string;
628
+ }
629
+ /**
630
+ * Request parameters for inviteUser operation in UsersApi.
631
+ * @export
632
+ * @interface UsersApiInviteUserRequest
633
+ */
634
+ export interface UsersApiInviteUserRequest {
635
+ /**
636
+ *
637
+ * @type {InviteUserRequestDto}
638
+ * @memberof UsersApiInviteUser
639
+ */
640
+ readonly inviteUserRequestDto: InviteUserRequestDto;
641
+ /**
642
+ * Bearer Token
643
+ * @type {string}
644
+ * @memberof UsersApiInviteUser
645
+ */
646
+ readonly authorization?: string;
647
+ }
648
+ /**
649
+ * Request parameters for inviteUsers operation in UsersApi.
650
+ * @export
651
+ * @interface UsersApiInviteUsersRequest
652
+ */
653
+ export interface UsersApiInviteUsersRequest {
654
+ /**
655
+ *
656
+ * @type {InviteUsersRequestDto}
657
+ * @memberof UsersApiInviteUsers
658
+ */
659
+ readonly inviteUsersRequestDto: InviteUsersRequestDto;
660
+ /**
661
+ * Bearer Token
662
+ * @type {string}
663
+ * @memberof UsersApiInviteUsers
664
+ */
665
+ readonly authorization?: string;
666
+ }
667
+ /**
668
+ * Request parameters for listInvites operation in UsersApi.
669
+ * @export
670
+ * @interface UsersApiListInvitesRequest
671
+ */
672
+ export interface UsersApiListInvitesRequest {
673
+ /**
674
+ * Bearer Token
675
+ * @type {string}
676
+ * @memberof UsersApiListInvites
677
+ */
678
+ readonly authorization?: string;
679
+ /**
680
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
681
+ * @type {any}
682
+ * @memberof UsersApiListInvites
683
+ */
684
+ readonly pageSize?: any;
685
+ /**
686
+ * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
687
+ * @type {any}
688
+ * @memberof UsersApiListInvites
689
+ */
690
+ readonly pageToken?: any;
691
+ /**
692
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
693
+ * @type {any}
694
+ * @memberof UsersApiListInvites
695
+ */
696
+ readonly filter?: any;
697
+ /**
698
+ * Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
699
+ * @type {any}
700
+ * @memberof UsersApiListInvites
701
+ */
702
+ readonly search?: any;
703
+ /**
704
+ * The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
705
+ * @type {any}
706
+ * @memberof UsersApiListInvites
707
+ */
708
+ readonly order?: any;
709
+ /**
710
+ * Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
711
+ * @type {any}
712
+ * @memberof UsersApiListInvites
713
+ */
714
+ readonly expand?: any;
715
+ }
716
+ /**
717
+ * Request parameters for listUsers operation in UsersApi.
718
+ * @export
719
+ * @interface UsersApiListUsersRequest
720
+ */
721
+ export interface UsersApiListUsersRequest {
722
+ /**
723
+ * Bearer Token
724
+ * @type {string}
725
+ * @memberof UsersApiListUsers
726
+ */
727
+ readonly authorization?: string;
728
+ /**
729
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
730
+ * @type {any}
731
+ * @memberof UsersApiListUsers
732
+ */
733
+ readonly pageSize?: any;
734
+ /**
735
+ * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
736
+ * @type {any}
737
+ * @memberof UsersApiListUsers
738
+ */
739
+ readonly pageToken?: any;
740
+ /**
741
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
742
+ * @type {any}
743
+ * @memberof UsersApiListUsers
744
+ */
745
+ readonly filter?: any;
746
+ /**
747
+ * Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
748
+ * @type {any}
749
+ * @memberof UsersApiListUsers
750
+ */
751
+ readonly search?: any;
752
+ /**
753
+ * The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
754
+ * @type {any}
755
+ * @memberof UsersApiListUsers
756
+ */
757
+ readonly order?: any;
758
+ /**
759
+ * Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
760
+ * @type {any}
761
+ * @memberof UsersApiListUsers
762
+ */
763
+ readonly expand?: any;
764
+ }
765
+ /**
766
+ * UsersApi - object-oriented interface
767
+ * @export
768
+ * @class UsersApi
769
+ * @extends {BaseAPI}
770
+ */
771
+ export declare class UsersApi extends BaseAPI {
772
+ /**
773
+ *
774
+ * @param {UsersApiAssignUserRolesRequest} requestParameters Request parameters.
775
+ * @param {*} [options] Override http request option.
776
+ * @throws {RequiredError}
777
+ * @memberof UsersApi
778
+ */
779
+ assignUserRoles(requestParameters: UsersApiAssignUserRolesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AssignUserRolesResponseClass, any>>;
780
+ /**
781
+ *
782
+ * @param {UsersApiDeleteInviteRequest} requestParameters Request parameters.
783
+ * @param {*} [options] Override http request option.
784
+ * @throws {RequiredError}
785
+ * @memberof UsersApi
786
+ */
787
+ deleteInvite(requestParameters: UsersApiDeleteInviteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
788
+ /**
789
+ *
790
+ * @param {UsersApiDeleteInvitesRequest} requestParameters Request parameters.
791
+ * @param {*} [options] Override http request option.
792
+ * @throws {RequiredError}
793
+ * @memberof UsersApi
794
+ */
795
+ deleteInvites(requestParameters: UsersApiDeleteInvitesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
796
+ /**
797
+ *
798
+ * @param {UsersApiDeleteUserRequest} requestParameters Request parameters.
799
+ * @param {*} [options] Override http request option.
800
+ * @throws {RequiredError}
801
+ * @memberof UsersApi
802
+ */
803
+ deleteUser(requestParameters: UsersApiDeleteUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
804
+ /**
805
+ *
806
+ * @param {UsersApiDeleteUsersRequest} requestParameters Request parameters.
807
+ * @param {*} [options] Override http request option.
808
+ * @throws {RequiredError}
809
+ * @memberof UsersApi
810
+ */
811
+ deleteUsers(requestParameters: UsersApiDeleteUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
812
+ /**
813
+ *
814
+ * @param {UsersApiDisableUserRequest} requestParameters Request parameters.
815
+ * @param {*} [options] Override http request option.
816
+ * @throws {RequiredError}
817
+ * @memberof UsersApi
818
+ */
819
+ disableUser(requestParameters: UsersApiDisableUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DisableUserResponseClass, any>>;
820
+ /**
821
+ *
822
+ * @param {UsersApiDisableUsersRequest} requestParameters Request parameters.
823
+ * @param {*} [options] Override http request option.
824
+ * @throws {RequiredError}
825
+ * @memberof UsersApi
826
+ */
827
+ disableUsers(requestParameters: UsersApiDisableUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
828
+ /**
829
+ *
830
+ * @param {UsersApiEnableUserRequest} requestParameters Request parameters.
831
+ * @param {*} [options] Override http request option.
832
+ * @throws {RequiredError}
833
+ * @memberof UsersApi
834
+ */
835
+ enableUser(requestParameters: UsersApiEnableUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EnableUserResponseClass, any>>;
836
+ /**
837
+ *
838
+ * @param {UsersApiEnableUsersRequest} requestParameters Request parameters.
839
+ * @param {*} [options] Override http request option.
840
+ * @throws {RequiredError}
841
+ * @memberof UsersApi
842
+ */
843
+ enableUsers(requestParameters: UsersApiEnableUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
844
+ /**
845
+ *
846
+ * @param {UsersApiGetUserRequest} requestParameters Request parameters.
847
+ * @param {*} [options] Override http request option.
848
+ * @throws {RequiredError}
849
+ * @memberof UsersApi
850
+ */
851
+ getUser(requestParameters: UsersApiGetUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserResponseClass, any>>;
852
+ /**
853
+ *
854
+ * @param {UsersApiInviteUserRequest} requestParameters Request parameters.
855
+ * @param {*} [options] Override http request option.
856
+ * @throws {RequiredError}
857
+ * @memberof UsersApi
858
+ */
859
+ inviteUser(requestParameters: UsersApiInviteUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteUserResponseClass, any>>;
860
+ /**
861
+ *
862
+ * @param {UsersApiInviteUsersRequest} requestParameters Request parameters.
863
+ * @param {*} [options] Override http request option.
864
+ * @throws {RequiredError}
865
+ * @memberof UsersApi
866
+ */
867
+ inviteUsers(requestParameters: UsersApiInviteUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
868
+ /**
869
+ *
870
+ * @param {UsersApiListInvitesRequest} requestParameters Request parameters.
871
+ * @param {*} [options] Override http request option.
872
+ * @throws {RequiredError}
873
+ * @memberof UsersApi
874
+ */
875
+ listInvites(requestParameters?: UsersApiListInvitesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListInvitesResponseClass, any>>;
876
+ /**
877
+ *
878
+ * @param {UsersApiListUsersRequest} requestParameters Request parameters.
879
+ * @param {*} [options] Override http request option.
880
+ * @throws {RequiredError}
881
+ * @memberof UsersApi
882
+ */
883
+ listUsers(requestParameters?: UsersApiListUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListUsersResponseClass, any>>;
884
+ }