@emilgroup/tenant-sdk 1.0.1 → 1.2.1

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 (264) hide show
  1. package/.openapi-generator/FILES +16 -72
  2. package/README.md +2 -2
  3. package/api/custom-schema-api.ts +52 -60
  4. package/api/{user-subscription-api.ts → invite-organizations-api.ts} +139 -161
  5. package/api/invite-users-api.ts +75 -79
  6. package/api/organizations-api.ts +459 -0
  7. package/api/users-api.ts +138 -148
  8. package/api.ts +4 -18
  9. package/dist/api/custom-schema-api.d.ts +42 -42
  10. package/dist/api/custom-schema-api.js +31 -38
  11. package/dist/api/{user-subscription-api.d.ts → invite-organizations-api.d.ts} +89 -103
  12. package/dist/api/{user-subscription-api.js → invite-organizations-api.js} +106 -114
  13. package/dist/api/invite-users-api.d.ts +63 -60
  14. package/dist/api/invite-users-api.js +40 -49
  15. package/dist/api/organizations-api.d.ts +263 -0
  16. package/dist/api/{settings-api.js → organizations-api.js} +135 -195
  17. package/dist/api/users-api.d.ts +113 -109
  18. package/dist/api/users-api.js +76 -93
  19. package/dist/api.d.ts +2 -9
  20. package/dist/api.js +2 -9
  21. package/dist/models/assign-user-roles-request-dto.d.ts +2 -2
  22. package/dist/models/{manage-subscription-request-dto.d.ts → batch-delete-response-class.d.ts} +5 -5
  23. package/dist/models/create-custom-schema-request-dto.d.ts +1 -0
  24. package/dist/models/create-custom-schema-request-dto.js +2 -1
  25. package/dist/models/{insurance-response-class.d.ts → delete-response-class.d.ts} +6 -6
  26. package/dist/models/{get-embedded-url-response-class.d.ts → disable-users-response-class.d.ts} +6 -6
  27. package/dist/models/{insurance-company-response-class.d.ts → enable-users-response-class.d.ts} +6 -6
  28. package/dist/models/{create-alert-response-class.d.ts → get-organization-response-class.d.ts} +7 -7
  29. package/dist/models/index.d.ts +14 -63
  30. package/dist/models/index.js +14 -63
  31. package/dist/models/invite-org-request-dto.d.ts +78 -0
  32. package/dist/models/invite-user-request-dto.d.ts +8 -2
  33. package/dist/models/invite-users-request-dto.d.ts +2 -2
  34. package/dist/models/invite-users-response-class.d.ts +24 -0
  35. package/dist/models/{list-user-subscriptions-response-class.d.ts → list-org-invitations-response-class.d.ts} +8 -8
  36. package/dist/models/{list-data-reports-response-class.d.ts → list-organizations-response-class.d.ts} +8 -8
  37. package/dist/models/org-invitation-class.d.ts +103 -0
  38. package/dist/models/{create-dashboard-response-class.d.ts → org-invitation-response-class.d.ts} +7 -7
  39. package/dist/models/organization-class.d.ts +96 -0
  40. package/dist/models/set-setting-request-dto.d.ts +10 -4
  41. package/dist/models/subscription-class.d.ts +9 -2
  42. package/dist/models/update-custom-schema-request-dto.d.ts +1 -0
  43. package/dist/models/update-custom-schema-request-dto.js +2 -1
  44. package/dist/models/update-organization-request-dto-rest.d.ts +60 -0
  45. package/dist/models/{channel-response-class.d.ts → update-organization-response-class.d.ts} +7 -12
  46. package/dist/models/user-class.d.ts +13 -5
  47. package/models/assign-user-roles-request-dto.ts +2 -2
  48. package/models/{manage-subscription-request-dto.ts → batch-delete-response-class.ts} +5 -5
  49. package/models/create-custom-schema-request-dto.ts +2 -1
  50. package/models/{insurance-response-class.ts → delete-response-class.ts} +6 -6
  51. package/models/{get-embedded-url-response-class.ts → disable-users-response-class.ts} +6 -6
  52. package/models/{insurance-company-response-class.ts → enable-users-response-class.ts} +6 -6
  53. package/models/{channel-response-class.ts → get-organization-response-class.ts} +7 -12
  54. package/models/index.ts +14 -63
  55. package/models/invite-org-request-dto.ts +84 -0
  56. package/models/invite-user-request-dto.ts +8 -2
  57. package/models/invite-users-request-dto.ts +2 -2
  58. package/models/invite-users-response-class.ts +30 -0
  59. package/models/{list-user-subscriptions-response-class.ts → list-org-invitations-response-class.ts} +8 -8
  60. package/models/{list-data-reports-response-class.ts → list-organizations-response-class.ts} +8 -8
  61. package/models/org-invitation-class.ts +109 -0
  62. package/models/{create-alert-response-class.ts → org-invitation-response-class.ts} +7 -7
  63. package/models/organization-class.ts +102 -0
  64. package/models/set-setting-request-dto.ts +10 -4
  65. package/models/subscription-class.ts +9 -2
  66. package/models/update-custom-schema-request-dto.ts +2 -1
  67. package/models/update-organization-request-dto-rest.ts +66 -0
  68. package/models/{create-dashboard-response-class.ts → update-organization-response-class.ts} +7 -7
  69. package/models/user-class.ts +13 -5
  70. package/package.json +2 -2
  71. package/api/alerts-api.ts +0 -860
  72. package/api/dashboard-api.ts +0 -792
  73. package/api/data-report-api.ts +0 -687
  74. package/api/data-report-executor-api.ts +0 -181
  75. package/api/reports-api.ts +0 -860
  76. package/api/scenario-analysis-api.ts +0 -977
  77. package/api/settings-api.ts +0 -484
  78. package/api/tariff-comparisons-api.ts +0 -381
  79. package/dist/api/alerts-api.d.ts +0 -479
  80. package/dist/api/alerts-api.js +0 -752
  81. package/dist/api/dashboard-api.d.ts +0 -434
  82. package/dist/api/dashboard-api.js +0 -724
  83. package/dist/api/data-report-api.d.ts +0 -380
  84. package/dist/api/data-report-api.js +0 -645
  85. package/dist/api/data-report-executor-api.d.ts +0 -102
  86. package/dist/api/data-report-executor-api.js +0 -232
  87. package/dist/api/reports-api.d.ts +0 -479
  88. package/dist/api/reports-api.js +0 -752
  89. package/dist/api/scenario-analysis-api.d.ts +0 -529
  90. package/dist/api/scenario-analysis-api.js +0 -895
  91. package/dist/api/settings-api.d.ts +0 -264
  92. package/dist/api/tariff-comparisons-api.d.ts +0 -206
  93. package/dist/api/tariff-comparisons-api.js +0 -409
  94. package/dist/models/alert-class.d.ts +0 -90
  95. package/dist/models/alert-history-class.d.ts +0 -108
  96. package/dist/models/compare-tariffs-request-dto.d.ts +0 -37
  97. package/dist/models/compare-tariffs-request-dto.js +0 -22
  98. package/dist/models/compare-tariffs-response-class.d.ts +0 -31
  99. package/dist/models/condition-dto.d.ts +0 -43
  100. package/dist/models/condition-dto.js +0 -22
  101. package/dist/models/create-alert-request-dto.d.ts +0 -79
  102. package/dist/models/create-alert-request-dto.js +0 -27
  103. package/dist/models/create-dashboard-request-dto.d.ts +0 -70
  104. package/dist/models/create-dashboard-request-dto.js +0 -29
  105. package/dist/models/create-data-report-request-dto.d.ts +0 -61
  106. package/dist/models/create-data-report-response-class.d.ts +0 -25
  107. package/dist/models/create-report-request-dto.d.ts +0 -49
  108. package/dist/models/create-report-request-dto.js +0 -22
  109. package/dist/models/create-report-response-class.d.ts +0 -25
  110. package/dist/models/create-scenario-analysis-request-dto.d.ts +0 -74
  111. package/dist/models/create-scenario-analysis-request-dto.js +0 -22
  112. package/dist/models/create-scenario-analysis-response-class.d.ts +0 -25
  113. package/dist/models/dashboard-class.d.ts +0 -78
  114. package/dist/models/data-report-class.d.ts +0 -79
  115. package/dist/models/data-report-filter-class.d.ts +0 -72
  116. package/dist/models/data-report-filter-dto.d.ts +0 -48
  117. package/dist/models/data-report-filter-single-value-dto.d.ts +0 -42
  118. package/dist/models/data-report-filter-single-value-dto.js +0 -15
  119. package/dist/models/data-report-filter-value-dto.d.ts +0 -31
  120. package/dist/models/data-report-filter-value-dto.js +0 -15
  121. package/dist/models/get-alert-response-class.d.ts +0 -25
  122. package/dist/models/get-alert-response-class.js +0 -15
  123. package/dist/models/get-dashboard-response-class.d.ts +0 -25
  124. package/dist/models/get-dashboard-response-class.js +0 -15
  125. package/dist/models/get-data-report-response-class.d.ts +0 -25
  126. package/dist/models/get-data-report-response-class.js +0 -15
  127. package/dist/models/get-embedded-url-response-class.js +0 -15
  128. package/dist/models/get-report-response-class.d.ts +0 -25
  129. package/dist/models/get-report-response-class.js +0 -15
  130. package/dist/models/get-scenario-analysis-response-class.d.ts +0 -25
  131. package/dist/models/get-scenario-analysis-response-class.js +0 -15
  132. package/dist/models/grouped-tariff-class.d.ts +0 -30
  133. package/dist/models/grouped-tariff-class.js +0 -15
  134. package/dist/models/insurance-company-response-class.js +0 -15
  135. package/dist/models/insurance-response-class.js +0 -15
  136. package/dist/models/list-alert-history-response-class.d.ts +0 -31
  137. package/dist/models/list-alert-history-response-class.js +0 -15
  138. package/dist/models/list-alerts-response-class.d.ts +0 -31
  139. package/dist/models/list-alerts-response-class.js +0 -15
  140. package/dist/models/list-channels-response-class.d.ts +0 -25
  141. package/dist/models/list-channels-response-class.js +0 -15
  142. package/dist/models/list-dashboards-response-class.d.ts +0 -31
  143. package/dist/models/list-dashboards-response-class.js +0 -15
  144. package/dist/models/list-data-reports-response-class.js +0 -15
  145. package/dist/models/list-insurance-companies-response-class.d.ts +0 -25
  146. package/dist/models/list-insurance-companies-response-class.js +0 -15
  147. package/dist/models/list-report-history-response-class.d.ts +0 -31
  148. package/dist/models/list-report-history-response-class.js +0 -15
  149. package/dist/models/list-reports-response-class.d.ts +0 -31
  150. package/dist/models/list-reports-response-class.js +0 -15
  151. package/dist/models/list-scenario-analyses-response-class.d.ts +0 -31
  152. package/dist/models/list-scenario-analyses-response-class.js +0 -15
  153. package/dist/models/list-scenario-analysis-dates-response-class.d.ts +0 -25
  154. package/dist/models/list-scenario-analysis-dates-response-class.js +0 -15
  155. package/dist/models/list-tariff-insurance-companies-response-class.d.ts +0 -25
  156. package/dist/models/list-tariff-insurance-companies-response-class.js +0 -15
  157. package/dist/models/list-tariffs-response-class.d.ts +0 -25
  158. package/dist/models/list-tariffs-response-class.js +0 -15
  159. package/dist/models/list-user-subscriptions-response-class.js +0 -15
  160. package/dist/models/manage-subscription-request-dto.js +0 -15
  161. package/dist/models/manage-subscription-response-class.d.ts +0 -25
  162. package/dist/models/manage-subscription-response-class.js +0 -15
  163. package/dist/models/report-class.d.ts +0 -66
  164. package/dist/models/report-class.js +0 -15
  165. package/dist/models/report-history-class.d.ts +0 -48
  166. package/dist/models/report-history-class.js +0 -15
  167. package/dist/models/run-data-report-request-dto.d.ts +0 -31
  168. package/dist/models/run-data-report-request-dto.js +0 -15
  169. package/dist/models/run-data-report-response-class.d.ts +0 -24
  170. package/dist/models/run-data-report-response-class.js +0 -15
  171. package/dist/models/scenario-analysis-class.d.ts +0 -108
  172. package/dist/models/scenario-analysis-class.js +0 -15
  173. package/dist/models/scenario-analysis-date-response-class.d.ts +0 -36
  174. package/dist/models/scenario-analysis-date-response-class.js +0 -15
  175. package/dist/models/set-tenant-setting-response-class.d.ts +0 -36
  176. package/dist/models/set-tenant-setting-response-class.js +0 -15
  177. package/dist/models/update-alert-request-dto.d.ts +0 -72
  178. package/dist/models/update-alert-request-dto.js +0 -21
  179. package/dist/models/update-alert-response-class.d.ts +0 -25
  180. package/dist/models/update-alert-response-class.js +0 -15
  181. package/dist/models/update-dashboard-request-dto.d.ts +0 -76
  182. package/dist/models/update-dashboard-request-dto.js +0 -29
  183. package/dist/models/update-dashboard-response-class.d.ts +0 -25
  184. package/dist/models/update-dashboard-response-class.js +0 -15
  185. package/dist/models/update-data-report-request-dto.d.ts +0 -61
  186. package/dist/models/update-data-report-request-dto.js +0 -15
  187. package/dist/models/update-data-report-response-class.d.ts +0 -25
  188. package/dist/models/update-data-report-response-class.js +0 -15
  189. package/dist/models/update-report-request-dto.d.ts +0 -55
  190. package/dist/models/update-report-request-dto.js +0 -22
  191. package/dist/models/update-report-response-class.d.ts +0 -25
  192. package/dist/models/update-report-response-class.js +0 -15
  193. package/dist/models/update-scenario-analysis-request-dto.d.ts +0 -74
  194. package/dist/models/update-scenario-analysis-request-dto.js +0 -22
  195. package/dist/models/update-scenario-analysis-response-class.d.ts +0 -25
  196. package/dist/models/update-scenario-analysis-response-class.js +0 -15
  197. package/models/alert-class.ts +0 -96
  198. package/models/alert-history-class.ts +0 -114
  199. package/models/compare-tariffs-request-dto.ts +0 -46
  200. package/models/compare-tariffs-response-class.ts +0 -37
  201. package/models/condition-dto.ts +0 -52
  202. package/models/create-alert-request-dto.ts +0 -89
  203. package/models/create-dashboard-request-dto.ts +0 -81
  204. package/models/create-data-report-request-dto.ts +0 -67
  205. package/models/create-data-report-response-class.ts +0 -31
  206. package/models/create-report-request-dto.ts +0 -58
  207. package/models/create-report-response-class.ts +0 -31
  208. package/models/create-scenario-analysis-request-dto.ts +0 -83
  209. package/models/create-scenario-analysis-response-class.ts +0 -31
  210. package/models/dashboard-class.ts +0 -84
  211. package/models/data-report-class.ts +0 -85
  212. package/models/data-report-filter-class.ts +0 -78
  213. package/models/data-report-filter-dto.ts +0 -54
  214. package/models/data-report-filter-single-value-dto.ts +0 -48
  215. package/models/data-report-filter-value-dto.ts +0 -37
  216. package/models/get-alert-response-class.ts +0 -31
  217. package/models/get-dashboard-response-class.ts +0 -31
  218. package/models/get-data-report-response-class.ts +0 -31
  219. package/models/get-report-response-class.ts +0 -31
  220. package/models/get-scenario-analysis-response-class.ts +0 -31
  221. package/models/grouped-tariff-class.ts +0 -36
  222. package/models/list-alert-history-response-class.ts +0 -37
  223. package/models/list-alerts-response-class.ts +0 -37
  224. package/models/list-channels-response-class.ts +0 -31
  225. package/models/list-dashboards-response-class.ts +0 -37
  226. package/models/list-insurance-companies-response-class.ts +0 -31
  227. package/models/list-report-history-response-class.ts +0 -37
  228. package/models/list-reports-response-class.ts +0 -37
  229. package/models/list-scenario-analyses-response-class.ts +0 -37
  230. package/models/list-scenario-analysis-dates-response-class.ts +0 -31
  231. package/models/list-tariff-insurance-companies-response-class.ts +0 -31
  232. package/models/list-tariffs-response-class.ts +0 -31
  233. package/models/manage-subscription-response-class.ts +0 -31
  234. package/models/report-class.ts +0 -72
  235. package/models/report-history-class.ts +0 -54
  236. package/models/run-data-report-request-dto.ts +0 -37
  237. package/models/run-data-report-response-class.ts +0 -30
  238. package/models/scenario-analysis-class.ts +0 -114
  239. package/models/scenario-analysis-date-response-class.ts +0 -42
  240. package/models/set-tenant-setting-response-class.ts +0 -42
  241. package/models/update-alert-request-dto.ts +0 -81
  242. package/models/update-alert-response-class.ts +0 -31
  243. package/models/update-dashboard-request-dto.ts +0 -87
  244. package/models/update-dashboard-response-class.ts +0 -31
  245. package/models/update-data-report-request-dto.ts +0 -67
  246. package/models/update-data-report-response-class.ts +0 -31
  247. package/models/update-report-request-dto.ts +0 -64
  248. package/models/update-report-response-class.ts +0 -31
  249. package/models/update-scenario-analysis-request-dto.ts +0 -83
  250. package/models/update-scenario-analysis-response-class.ts +0 -31
  251. /package/dist/models/{alert-class.js → batch-delete-response-class.js} +0 -0
  252. /package/dist/models/{alert-history-class.js → delete-response-class.js} +0 -0
  253. /package/dist/models/{channel-response-class.js → disable-users-response-class.js} +0 -0
  254. /package/dist/models/{compare-tariffs-response-class.js → enable-users-response-class.js} +0 -0
  255. /package/dist/models/{create-alert-response-class.js → get-organization-response-class.js} +0 -0
  256. /package/dist/models/{create-dashboard-response-class.js → invite-org-request-dto.js} +0 -0
  257. /package/dist/models/{create-data-report-request-dto.js → invite-users-response-class.js} +0 -0
  258. /package/dist/models/{create-data-report-response-class.js → list-org-invitations-response-class.js} +0 -0
  259. /package/dist/models/{create-report-response-class.js → list-organizations-response-class.js} +0 -0
  260. /package/dist/models/{create-scenario-analysis-response-class.js → org-invitation-class.js} +0 -0
  261. /package/dist/models/{dashboard-class.js → org-invitation-response-class.js} +0 -0
  262. /package/dist/models/{data-report-class.js → organization-class.js} +0 -0
  263. /package/dist/models/{data-report-filter-class.js → update-organization-request-dto-rest.js} +0 -0
  264. /package/dist/models/{data-report-filter-dto.js → update-organization-response-class.js} +0 -0
@@ -15,10 +15,14 @@ import { RequestArgs, BaseAPI } from '../base';
15
15
  import { AssignUserRolesRequestDto } from '../models';
16
16
  import { AssignUserRolesResponseClass } from '../models';
17
17
  import { BatchDeleteRequestDto } from '../models';
18
+ import { BatchDeleteResponseClass } from '../models';
19
+ import { DeleteResponseClass } from '../models';
18
20
  import { DisableUserResponseClass } from '../models';
19
21
  import { DisableUsersRequestDto } from '../models';
22
+ import { DisableUsersResponseClass } from '../models';
20
23
  import { EnableUserResponseClass } from '../models';
21
24
  import { EnableUsersRequestDto } from '../models';
25
+ import { EnableUsersResponseClass } from '../models';
22
26
  import { GetUserResponseClass } from '../models';
23
27
  import { ListUsersResponseClass } from '../models';
24
28
  /**
@@ -28,75 +32,75 @@ import { ListUsersResponseClass } from '../models';
28
32
  export declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
29
33
  /**
30
34
  *
31
- * @param {string} authorization Bearer Token
32
35
  * @param {number} id
33
36
  * @param {AssignUserRolesRequestDto} assignUserRolesRequestDto
37
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
34
38
  * @param {*} [options] Override http request option.
35
39
  * @throws {RequiredError}
36
40
  */
37
- assignUserRoles: (authorization: string, id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, options?: AxiosRequestConfig) => Promise<RequestArgs>;
41
+ assignUserRoles: (id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
38
42
  /**
39
43
  *
40
- * @param {string} authorization Bearer Token
41
44
  * @param {number} id
45
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
42
46
  * @param {*} [options] Override http request option.
43
47
  * @throws {RequiredError}
44
48
  */
45
- deleteUser: (authorization: string, id: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
49
+ deleteUser: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
46
50
  /**
47
51
  *
48
- * @param {string} authorization Bearer Token
49
52
  * @param {BatchDeleteRequestDto} batchDeleteRequestDto
53
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
50
54
  * @param {*} [options] Override http request option.
51
55
  * @throws {RequiredError}
52
56
  */
53
- deleteUsers: (authorization: string, batchDeleteRequestDto: BatchDeleteRequestDto, options?: AxiosRequestConfig) => Promise<RequestArgs>;
57
+ deleteUsers: (batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
54
58
  /**
55
59
  *
56
- * @param {string} authorization Bearer Token
57
60
  * @param {number} id
61
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
58
62
  * @param {*} [options] Override http request option.
59
63
  * @throws {RequiredError}
60
64
  */
61
- disableUser: (authorization: string, id: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
65
+ disableUser: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
62
66
  /**
63
67
  *
64
- * @param {string} authorization Bearer Token
65
68
  * @param {DisableUsersRequestDto} disableUsersRequestDto
69
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
66
70
  * @param {*} [options] Override http request option.
67
71
  * @throws {RequiredError}
68
72
  */
69
- disableUsers: (authorization: string, disableUsersRequestDto: DisableUsersRequestDto, options?: AxiosRequestConfig) => Promise<RequestArgs>;
73
+ disableUsers: (disableUsersRequestDto: DisableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
70
74
  /**
71
75
  *
72
- * @param {string} authorization Bearer Token
73
76
  * @param {number} id
77
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
74
78
  * @param {*} [options] Override http request option.
75
79
  * @throws {RequiredError}
76
80
  */
77
- enableUser: (authorization: string, id: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
81
+ enableUser: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
78
82
  /**
79
83
  *
80
- * @param {string} authorization Bearer Token
81
84
  * @param {EnableUsersRequestDto} enableUsersRequestDto
85
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
82
86
  * @param {*} [options] Override http request option.
83
87
  * @throws {RequiredError}
84
88
  */
85
- enableUsers: (authorization: string, enableUsersRequestDto: EnableUsersRequestDto, options?: AxiosRequestConfig) => Promise<RequestArgs>;
89
+ enableUsers: (enableUsersRequestDto: EnableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
86
90
  /**
87
91
  *
88
- * @param {string} authorization Bearer Token
89
92
  * @param {string} code
90
93
  * @param {string} code2 code
94
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
91
95
  * @param {string} [expand] Fields to expand response by
92
96
  * @param {*} [options] Override http request option.
93
97
  * @throws {RequiredError}
94
98
  */
95
- getUser: (authorization: string, code: string, code2: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
99
+ getUser: (code: string, code2: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
96
100
  /**
97
101
  * Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
98
102
  * @summary List users
99
- * @param {string} authorization Bearer Token
103
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
100
104
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
101
105
  * @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.
102
106
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -106,7 +110,7 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
106
110
  * @param {*} [options] Override http request option.
107
111
  * @throws {RequiredError}
108
112
  */
109
- listUsers: (authorization: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
113
+ listUsers: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
110
114
  };
111
115
  /**
112
116
  * UsersApi - functional programming interface
@@ -115,75 +119,75 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
115
119
  export declare const UsersApiFp: (configuration?: Configuration) => {
116
120
  /**
117
121
  *
118
- * @param {string} authorization Bearer Token
119
122
  * @param {number} id
120
123
  * @param {AssignUserRolesRequestDto} assignUserRolesRequestDto
124
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
121
125
  * @param {*} [options] Override http request option.
122
126
  * @throws {RequiredError}
123
127
  */
124
- assignUserRoles(authorization: string, id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssignUserRolesResponseClass>>;
128
+ assignUserRoles(id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AssignUserRolesResponseClass>>;
125
129
  /**
126
130
  *
127
- * @param {string} authorization Bearer Token
128
131
  * @param {number} id
132
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
129
133
  * @param {*} [options] Override http request option.
130
134
  * @throws {RequiredError}
131
135
  */
132
- deleteUser(authorization: string, id: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
136
+ deleteUser(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteResponseClass>>;
133
137
  /**
134
138
  *
135
- * @param {string} authorization Bearer Token
136
139
  * @param {BatchDeleteRequestDto} batchDeleteRequestDto
140
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
137
141
  * @param {*} [options] Override http request option.
138
142
  * @throws {RequiredError}
139
143
  */
140
- deleteUsers(authorization: string, batchDeleteRequestDto: BatchDeleteRequestDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
144
+ deleteUsers(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BatchDeleteResponseClass>>;
141
145
  /**
142
146
  *
143
- * @param {string} authorization Bearer Token
144
147
  * @param {number} id
148
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
145
149
  * @param {*} [options] Override http request option.
146
150
  * @throws {RequiredError}
147
151
  */
148
- disableUser(authorization: string, id: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisableUserResponseClass>>;
152
+ disableUser(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisableUserResponseClass>>;
149
153
  /**
150
154
  *
151
- * @param {string} authorization Bearer Token
152
155
  * @param {DisableUsersRequestDto} disableUsersRequestDto
156
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
153
157
  * @param {*} [options] Override http request option.
154
158
  * @throws {RequiredError}
155
159
  */
156
- disableUsers(authorization: string, disableUsersRequestDto: DisableUsersRequestDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
160
+ disableUsers(disableUsersRequestDto: DisableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisableUsersResponseClass>>;
157
161
  /**
158
162
  *
159
- * @param {string} authorization Bearer Token
160
163
  * @param {number} id
164
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
161
165
  * @param {*} [options] Override http request option.
162
166
  * @throws {RequiredError}
163
167
  */
164
- enableUser(authorization: string, id: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnableUserResponseClass>>;
168
+ enableUser(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnableUserResponseClass>>;
165
169
  /**
166
170
  *
167
- * @param {string} authorization Bearer Token
168
171
  * @param {EnableUsersRequestDto} enableUsersRequestDto
172
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
169
173
  * @param {*} [options] Override http request option.
170
174
  * @throws {RequiredError}
171
175
  */
172
- enableUsers(authorization: string, enableUsersRequestDto: EnableUsersRequestDto, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
176
+ enableUsers(enableUsersRequestDto: EnableUsersRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnableUsersResponseClass>>;
173
177
  /**
174
178
  *
175
- * @param {string} authorization Bearer Token
176
179
  * @param {string} code
177
180
  * @param {string} code2 code
181
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
178
182
  * @param {string} [expand] Fields to expand response by
179
183
  * @param {*} [options] Override http request option.
180
184
  * @throws {RequiredError}
181
185
  */
182
- getUser(authorization: string, code: string, code2: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserResponseClass>>;
186
+ getUser(code: string, code2: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserResponseClass>>;
183
187
  /**
184
188
  * Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
185
189
  * @summary List users
186
- * @param {string} authorization Bearer Token
190
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
187
191
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
188
192
  * @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.
189
193
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -193,7 +197,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
193
197
  * @param {*} [options] Override http request option.
194
198
  * @throws {RequiredError}
195
199
  */
196
- listUsers(authorization: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListUsersResponseClass>>;
200
+ listUsers(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListUsersResponseClass>>;
197
201
  };
198
202
  /**
199
203
  * UsersApi - factory interface
@@ -202,75 +206,75 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
202
206
  export declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
203
207
  /**
204
208
  *
205
- * @param {string} authorization Bearer Token
206
209
  * @param {number} id
207
210
  * @param {AssignUserRolesRequestDto} assignUserRolesRequestDto
211
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
208
212
  * @param {*} [options] Override http request option.
209
213
  * @throws {RequiredError}
210
214
  */
211
- assignUserRoles(authorization: string, id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, options?: any): AxiosPromise<AssignUserRolesResponseClass>;
215
+ assignUserRoles(id: number, assignUserRolesRequestDto: AssignUserRolesRequestDto, authorization?: string, options?: any): AxiosPromise<AssignUserRolesResponseClass>;
212
216
  /**
213
217
  *
214
- * @param {string} authorization Bearer Token
215
218
  * @param {number} id
219
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
216
220
  * @param {*} [options] Override http request option.
217
221
  * @throws {RequiredError}
218
222
  */
219
- deleteUser(authorization: string, id: number, options?: any): AxiosPromise<object>;
223
+ deleteUser(id: number, authorization?: string, options?: any): AxiosPromise<DeleteResponseClass>;
220
224
  /**
221
225
  *
222
- * @param {string} authorization Bearer Token
223
226
  * @param {BatchDeleteRequestDto} batchDeleteRequestDto
227
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
224
228
  * @param {*} [options] Override http request option.
225
229
  * @throws {RequiredError}
226
230
  */
227
- deleteUsers(authorization: string, batchDeleteRequestDto: BatchDeleteRequestDto, options?: any): AxiosPromise<object>;
231
+ deleteUsers(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: any): AxiosPromise<BatchDeleteResponseClass>;
228
232
  /**
229
233
  *
230
- * @param {string} authorization Bearer Token
231
234
  * @param {number} id
235
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
232
236
  * @param {*} [options] Override http request option.
233
237
  * @throws {RequiredError}
234
238
  */
235
- disableUser(authorization: string, id: number, options?: any): AxiosPromise<DisableUserResponseClass>;
239
+ disableUser(id: number, authorization?: string, options?: any): AxiosPromise<DisableUserResponseClass>;
236
240
  /**
237
241
  *
238
- * @param {string} authorization Bearer Token
239
242
  * @param {DisableUsersRequestDto} disableUsersRequestDto
243
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
240
244
  * @param {*} [options] Override http request option.
241
245
  * @throws {RequiredError}
242
246
  */
243
- disableUsers(authorization: string, disableUsersRequestDto: DisableUsersRequestDto, options?: any): AxiosPromise<object>;
247
+ disableUsers(disableUsersRequestDto: DisableUsersRequestDto, authorization?: string, options?: any): AxiosPromise<DisableUsersResponseClass>;
244
248
  /**
245
249
  *
246
- * @param {string} authorization Bearer Token
247
250
  * @param {number} id
251
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
248
252
  * @param {*} [options] Override http request option.
249
253
  * @throws {RequiredError}
250
254
  */
251
- enableUser(authorization: string, id: number, options?: any): AxiosPromise<EnableUserResponseClass>;
255
+ enableUser(id: number, authorization?: string, options?: any): AxiosPromise<EnableUserResponseClass>;
252
256
  /**
253
257
  *
254
- * @param {string} authorization Bearer Token
255
258
  * @param {EnableUsersRequestDto} enableUsersRequestDto
259
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
256
260
  * @param {*} [options] Override http request option.
257
261
  * @throws {RequiredError}
258
262
  */
259
- enableUsers(authorization: string, enableUsersRequestDto: EnableUsersRequestDto, options?: any): AxiosPromise<object>;
263
+ enableUsers(enableUsersRequestDto: EnableUsersRequestDto, authorization?: string, options?: any): AxiosPromise<EnableUsersResponseClass>;
260
264
  /**
261
265
  *
262
- * @param {string} authorization Bearer Token
263
266
  * @param {string} code
264
267
  * @param {string} code2 code
268
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
265
269
  * @param {string} [expand] Fields to expand response by
266
270
  * @param {*} [options] Override http request option.
267
271
  * @throws {RequiredError}
268
272
  */
269
- getUser(authorization: string, code: string, code2: string, expand?: string, options?: any): AxiosPromise<GetUserResponseClass>;
273
+ getUser(code: string, code2: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetUserResponseClass>;
270
274
  /**
271
275
  * Returns a list of users you have previously created. The users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
272
276
  * @summary List users
273
- * @param {string} authorization Bearer Token
277
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
274
278
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
275
279
  * @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.
276
280
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -280,7 +284,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
280
284
  * @param {*} [options] Override http request option.
281
285
  * @throws {RequiredError}
282
286
  */
283
- listUsers(authorization: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListUsersResponseClass>;
287
+ listUsers(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListUsersResponseClass>;
284
288
  };
285
289
  /**
286
290
  * Request parameters for assignUserRoles operation in UsersApi.
@@ -288,12 +292,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
288
292
  * @interface UsersApiAssignUserRolesRequest
289
293
  */
290
294
  export interface UsersApiAssignUserRolesRequest {
291
- /**
292
- * Bearer Token
293
- * @type {string}
294
- * @memberof UsersApiAssignUserRoles
295
- */
296
- readonly authorization: string;
297
295
  /**
298
296
  *
299
297
  * @type {number}
@@ -306,6 +304,12 @@ export interface UsersApiAssignUserRolesRequest {
306
304
  * @memberof UsersApiAssignUserRoles
307
305
  */
308
306
  readonly assignUserRolesRequestDto: AssignUserRolesRequestDto;
307
+ /**
308
+ * Bearer Token: provided by the login endpoint under the name accessToken.
309
+ * @type {string}
310
+ * @memberof UsersApiAssignUserRoles
311
+ */
312
+ readonly authorization?: string;
309
313
  }
310
314
  /**
311
315
  * Request parameters for deleteUser operation in UsersApi.
@@ -313,18 +317,18 @@ export interface UsersApiAssignUserRolesRequest {
313
317
  * @interface UsersApiDeleteUserRequest
314
318
  */
315
319
  export interface UsersApiDeleteUserRequest {
316
- /**
317
- * Bearer Token
318
- * @type {string}
319
- * @memberof UsersApiDeleteUser
320
- */
321
- readonly authorization: string;
322
320
  /**
323
321
  *
324
322
  * @type {number}
325
323
  * @memberof UsersApiDeleteUser
326
324
  */
327
325
  readonly id: number;
326
+ /**
327
+ * Bearer Token: provided by the login endpoint under the name accessToken.
328
+ * @type {string}
329
+ * @memberof UsersApiDeleteUser
330
+ */
331
+ readonly authorization?: string;
328
332
  }
329
333
  /**
330
334
  * Request parameters for deleteUsers operation in UsersApi.
@@ -332,18 +336,18 @@ export interface UsersApiDeleteUserRequest {
332
336
  * @interface UsersApiDeleteUsersRequest
333
337
  */
334
338
  export interface UsersApiDeleteUsersRequest {
335
- /**
336
- * Bearer Token
337
- * @type {string}
338
- * @memberof UsersApiDeleteUsers
339
- */
340
- readonly authorization: string;
341
339
  /**
342
340
  *
343
341
  * @type {BatchDeleteRequestDto}
344
342
  * @memberof UsersApiDeleteUsers
345
343
  */
346
344
  readonly batchDeleteRequestDto: BatchDeleteRequestDto;
345
+ /**
346
+ * Bearer Token: provided by the login endpoint under the name accessToken.
347
+ * @type {string}
348
+ * @memberof UsersApiDeleteUsers
349
+ */
350
+ readonly authorization?: string;
347
351
  }
348
352
  /**
349
353
  * Request parameters for disableUser operation in UsersApi.
@@ -351,18 +355,18 @@ export interface UsersApiDeleteUsersRequest {
351
355
  * @interface UsersApiDisableUserRequest
352
356
  */
353
357
  export interface UsersApiDisableUserRequest {
354
- /**
355
- * Bearer Token
356
- * @type {string}
357
- * @memberof UsersApiDisableUser
358
- */
359
- readonly authorization: string;
360
358
  /**
361
359
  *
362
360
  * @type {number}
363
361
  * @memberof UsersApiDisableUser
364
362
  */
365
363
  readonly id: number;
364
+ /**
365
+ * Bearer Token: provided by the login endpoint under the name accessToken.
366
+ * @type {string}
367
+ * @memberof UsersApiDisableUser
368
+ */
369
+ readonly authorization?: string;
366
370
  }
367
371
  /**
368
372
  * Request parameters for disableUsers operation in UsersApi.
@@ -370,18 +374,18 @@ export interface UsersApiDisableUserRequest {
370
374
  * @interface UsersApiDisableUsersRequest
371
375
  */
372
376
  export interface UsersApiDisableUsersRequest {
373
- /**
374
- * Bearer Token
375
- * @type {string}
376
- * @memberof UsersApiDisableUsers
377
- */
378
- readonly authorization: string;
379
377
  /**
380
378
  *
381
379
  * @type {DisableUsersRequestDto}
382
380
  * @memberof UsersApiDisableUsers
383
381
  */
384
382
  readonly disableUsersRequestDto: DisableUsersRequestDto;
383
+ /**
384
+ * Bearer Token: provided by the login endpoint under the name accessToken.
385
+ * @type {string}
386
+ * @memberof UsersApiDisableUsers
387
+ */
388
+ readonly authorization?: string;
385
389
  }
386
390
  /**
387
391
  * Request parameters for enableUser operation in UsersApi.
@@ -389,18 +393,18 @@ export interface UsersApiDisableUsersRequest {
389
393
  * @interface UsersApiEnableUserRequest
390
394
  */
391
395
  export interface UsersApiEnableUserRequest {
392
- /**
393
- * Bearer Token
394
- * @type {string}
395
- * @memberof UsersApiEnableUser
396
- */
397
- readonly authorization: string;
398
396
  /**
399
397
  *
400
398
  * @type {number}
401
399
  * @memberof UsersApiEnableUser
402
400
  */
403
401
  readonly id: number;
402
+ /**
403
+ * Bearer Token: provided by the login endpoint under the name accessToken.
404
+ * @type {string}
405
+ * @memberof UsersApiEnableUser
406
+ */
407
+ readonly authorization?: string;
404
408
  }
405
409
  /**
406
410
  * Request parameters for enableUsers operation in UsersApi.
@@ -408,18 +412,18 @@ export interface UsersApiEnableUserRequest {
408
412
  * @interface UsersApiEnableUsersRequest
409
413
  */
410
414
  export interface UsersApiEnableUsersRequest {
411
- /**
412
- * Bearer Token
413
- * @type {string}
414
- * @memberof UsersApiEnableUsers
415
- */
416
- readonly authorization: string;
417
415
  /**
418
416
  *
419
417
  * @type {EnableUsersRequestDto}
420
418
  * @memberof UsersApiEnableUsers
421
419
  */
422
420
  readonly enableUsersRequestDto: EnableUsersRequestDto;
421
+ /**
422
+ * Bearer Token: provided by the login endpoint under the name accessToken.
423
+ * @type {string}
424
+ * @memberof UsersApiEnableUsers
425
+ */
426
+ readonly authorization?: string;
423
427
  }
424
428
  /**
425
429
  * Request parameters for getUser operation in UsersApi.
@@ -427,12 +431,6 @@ export interface UsersApiEnableUsersRequest {
427
431
  * @interface UsersApiGetUserRequest
428
432
  */
429
433
  export interface UsersApiGetUserRequest {
430
- /**
431
- * Bearer Token
432
- * @type {string}
433
- * @memberof UsersApiGetUser
434
- */
435
- readonly authorization: string;
436
434
  /**
437
435
  *
438
436
  * @type {string}
@@ -445,6 +443,12 @@ export interface UsersApiGetUserRequest {
445
443
  * @memberof UsersApiGetUser
446
444
  */
447
445
  readonly code2: string;
446
+ /**
447
+ * Bearer Token: provided by the login endpoint under the name accessToken.
448
+ * @type {string}
449
+ * @memberof UsersApiGetUser
450
+ */
451
+ readonly authorization?: string;
448
452
  /**
449
453
  * Fields to expand response by
450
454
  * @type {string}
@@ -459,11 +463,11 @@ export interface UsersApiGetUserRequest {
459
463
  */
460
464
  export interface UsersApiListUsersRequest {
461
465
  /**
462
- * Bearer Token
466
+ * Bearer Token: provided by the login endpoint under the name accessToken.
463
467
  * @type {string}
464
468
  * @memberof UsersApiListUsers
465
469
  */
466
- readonly authorization: string;
470
+ readonly authorization?: string;
467
471
  /**
468
472
  * A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
469
473
  * @type {any}
@@ -523,7 +527,7 @@ export declare class UsersApi extends BaseAPI {
523
527
  * @throws {RequiredError}
524
528
  * @memberof UsersApi
525
529
  */
526
- deleteUser(requestParameters: UsersApiDeleteUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
530
+ deleteUser(requestParameters: UsersApiDeleteUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
527
531
  /**
528
532
  *
529
533
  * @param {UsersApiDeleteUsersRequest} requestParameters Request parameters.
@@ -531,7 +535,7 @@ export declare class UsersApi extends BaseAPI {
531
535
  * @throws {RequiredError}
532
536
  * @memberof UsersApi
533
537
  */
534
- deleteUsers(requestParameters: UsersApiDeleteUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
538
+ deleteUsers(requestParameters: UsersApiDeleteUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchDeleteResponseClass, any>>;
535
539
  /**
536
540
  *
537
541
  * @param {UsersApiDisableUserRequest} requestParameters Request parameters.
@@ -547,7 +551,7 @@ export declare class UsersApi extends BaseAPI {
547
551
  * @throws {RequiredError}
548
552
  * @memberof UsersApi
549
553
  */
550
- disableUsers(requestParameters: UsersApiDisableUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
554
+ disableUsers(requestParameters: UsersApiDisableUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DisableUsersResponseClass, any>>;
551
555
  /**
552
556
  *
553
557
  * @param {UsersApiEnableUserRequest} requestParameters Request parameters.
@@ -563,7 +567,7 @@ export declare class UsersApi extends BaseAPI {
563
567
  * @throws {RequiredError}
564
568
  * @memberof UsersApi
565
569
  */
566
- enableUsers(requestParameters: UsersApiEnableUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
570
+ enableUsers(requestParameters: UsersApiEnableUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EnableUsersResponseClass, any>>;
567
571
  /**
568
572
  *
569
573
  * @param {UsersApiGetUserRequest} requestParameters Request parameters.
@@ -580,5 +584,5 @@ export declare class UsersApi extends BaseAPI {
580
584
  * @throws {RequiredError}
581
585
  * @memberof UsersApi
582
586
  */
583
- listUsers(requestParameters: UsersApiListUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListUsersResponseClass, any>>;
587
+ listUsers(requestParameters?: UsersApiListUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListUsersResponseClass, any>>;
584
588
  }