ch-admin-api-client-typescript 5.51.0 → 5.53.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.
@@ -0,0 +1,402 @@
1
+ /**
2
+ * CloudHospital Admin Api
3
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: developer@icloudhospital.com
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 { CreateUserCommand } from '../models';
16
+ import { GeneralUserModel } from '../models';
17
+ import { GeneralUsersModel } from '../models';
18
+ import { UpdateUserCommand } from '../models';
19
+ /**
20
+ * UsersApi - axios parameter creator
21
+ * @export
22
+ */
23
+ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
24
+ /**
25
+ *
26
+ * @summary Get users (Auth policies: RequireLocalManagerRole)
27
+ * @param {string} [name]
28
+ * @param {string} [email]
29
+ * @param {string} [role]
30
+ * @param {string} [hospitalId]
31
+ * @param {boolean} [showHidden]
32
+ * @param {number} [page]
33
+ * @param {number} [limit]
34
+ * @param {Date} [lastRetrieved]
35
+ * @param {*} [options] Override http request option.
36
+ * @throws {RequiredError}
37
+ */
38
+ apiV1UsersGet: (name?: string, email?: string, role?: string, hospitalId?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
39
+ /**
40
+ *
41
+ * @summary Delete user (Auth policies: RequireLocalManagerRole)
42
+ * @param {string} id
43
+ * @param {boolean} [isPermanent]
44
+ * @param {*} [options] Override http request option.
45
+ * @throws {RequiredError}
46
+ */
47
+ apiV1UsersIdDelete: (id: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
48
+ /**
49
+ *
50
+ * @summary Get user by id (Auth policies: RequireLocalManagerRole)
51
+ * @param {string} id
52
+ * @param {*} [options] Override http request option.
53
+ * @throws {RequiredError}
54
+ */
55
+ apiV1UsersIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
56
+ /**
57
+ *
58
+ * @summary Reactivate user (Auth policies: RequireLocalManagerRole)
59
+ * @param {string} id
60
+ * @param {UpdateUserCommand} [updateUserCommand]
61
+ * @param {*} [options] Override http request option.
62
+ * @throws {RequiredError}
63
+ */
64
+ apiV1UsersIdPut: (id: string, updateUserCommand?: UpdateUserCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
65
+ /**
66
+ *
67
+ * @summary Reactivate user (Auth policies: RequireLocalManagerRole)
68
+ * @param {string} id
69
+ * @param {*} [options] Override http request option.
70
+ * @throws {RequiredError}
71
+ */
72
+ apiV1UsersIdReactivatePut: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
73
+ /**
74
+ *
75
+ * @summary Create user (Auth policies: RequireLocalManagerRole)
76
+ * @param {CreateUserCommand} [createUserCommand]
77
+ * @param {*} [options] Override http request option.
78
+ * @throws {RequiredError}
79
+ */
80
+ apiV1UsersPost: (createUserCommand?: CreateUserCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
81
+ };
82
+ /**
83
+ * UsersApi - functional programming interface
84
+ * @export
85
+ */
86
+ export declare const UsersApiFp: (configuration?: Configuration) => {
87
+ /**
88
+ *
89
+ * @summary Get users (Auth policies: RequireLocalManagerRole)
90
+ * @param {string} [name]
91
+ * @param {string} [email]
92
+ * @param {string} [role]
93
+ * @param {string} [hospitalId]
94
+ * @param {boolean} [showHidden]
95
+ * @param {number} [page]
96
+ * @param {number} [limit]
97
+ * @param {Date} [lastRetrieved]
98
+ * @param {*} [options] Override http request option.
99
+ * @throws {RequiredError}
100
+ */
101
+ apiV1UsersGet(name?: string, email?: string, role?: string, hospitalId?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralUsersModel>>;
102
+ /**
103
+ *
104
+ * @summary Delete user (Auth policies: RequireLocalManagerRole)
105
+ * @param {string} id
106
+ * @param {boolean} [isPermanent]
107
+ * @param {*} [options] Override http request option.
108
+ * @throws {RequiredError}
109
+ */
110
+ apiV1UsersIdDelete(id: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
111
+ /**
112
+ *
113
+ * @summary Get user by id (Auth policies: RequireLocalManagerRole)
114
+ * @param {string} id
115
+ * @param {*} [options] Override http request option.
116
+ * @throws {RequiredError}
117
+ */
118
+ apiV1UsersIdGet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralUserModel>>;
119
+ /**
120
+ *
121
+ * @summary Reactivate user (Auth policies: RequireLocalManagerRole)
122
+ * @param {string} id
123
+ * @param {UpdateUserCommand} [updateUserCommand]
124
+ * @param {*} [options] Override http request option.
125
+ * @throws {RequiredError}
126
+ */
127
+ apiV1UsersIdPut(id: string, updateUserCommand?: UpdateUserCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralUserModel>>;
128
+ /**
129
+ *
130
+ * @summary Reactivate user (Auth policies: RequireLocalManagerRole)
131
+ * @param {string} id
132
+ * @param {*} [options] Override http request option.
133
+ * @throws {RequiredError}
134
+ */
135
+ apiV1UsersIdReactivatePut(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
136
+ /**
137
+ *
138
+ * @summary Create user (Auth policies: RequireLocalManagerRole)
139
+ * @param {CreateUserCommand} [createUserCommand]
140
+ * @param {*} [options] Override http request option.
141
+ * @throws {RequiredError}
142
+ */
143
+ apiV1UsersPost(createUserCommand?: CreateUserCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GeneralUserModel>>;
144
+ };
145
+ /**
146
+ * UsersApi - factory interface
147
+ * @export
148
+ */
149
+ export declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
150
+ /**
151
+ *
152
+ * @summary Get users (Auth policies: RequireLocalManagerRole)
153
+ * @param {string} [name]
154
+ * @param {string} [email]
155
+ * @param {string} [role]
156
+ * @param {string} [hospitalId]
157
+ * @param {boolean} [showHidden]
158
+ * @param {number} [page]
159
+ * @param {number} [limit]
160
+ * @param {Date} [lastRetrieved]
161
+ * @param {*} [options] Override http request option.
162
+ * @throws {RequiredError}
163
+ */
164
+ apiV1UsersGet(name?: string, email?: string, role?: string, hospitalId?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<GeneralUsersModel>;
165
+ /**
166
+ *
167
+ * @summary Delete user (Auth policies: RequireLocalManagerRole)
168
+ * @param {string} id
169
+ * @param {boolean} [isPermanent]
170
+ * @param {*} [options] Override http request option.
171
+ * @throws {RequiredError}
172
+ */
173
+ apiV1UsersIdDelete(id: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
174
+ /**
175
+ *
176
+ * @summary Get user by id (Auth policies: RequireLocalManagerRole)
177
+ * @param {string} id
178
+ * @param {*} [options] Override http request option.
179
+ * @throws {RequiredError}
180
+ */
181
+ apiV1UsersIdGet(id: string, options?: any): AxiosPromise<GeneralUserModel>;
182
+ /**
183
+ *
184
+ * @summary Reactivate user (Auth policies: RequireLocalManagerRole)
185
+ * @param {string} id
186
+ * @param {UpdateUserCommand} [updateUserCommand]
187
+ * @param {*} [options] Override http request option.
188
+ * @throws {RequiredError}
189
+ */
190
+ apiV1UsersIdPut(id: string, updateUserCommand?: UpdateUserCommand, options?: any): AxiosPromise<GeneralUserModel>;
191
+ /**
192
+ *
193
+ * @summary Reactivate user (Auth policies: RequireLocalManagerRole)
194
+ * @param {string} id
195
+ * @param {*} [options] Override http request option.
196
+ * @throws {RequiredError}
197
+ */
198
+ apiV1UsersIdReactivatePut(id: string, options?: any): AxiosPromise<boolean>;
199
+ /**
200
+ *
201
+ * @summary Create user (Auth policies: RequireLocalManagerRole)
202
+ * @param {CreateUserCommand} [createUserCommand]
203
+ * @param {*} [options] Override http request option.
204
+ * @throws {RequiredError}
205
+ */
206
+ apiV1UsersPost(createUserCommand?: CreateUserCommand, options?: any): AxiosPromise<GeneralUserModel>;
207
+ };
208
+ /**
209
+ * Request parameters for apiV1UsersGet operation in UsersApi.
210
+ * @export
211
+ * @interface UsersApiApiV1UsersGetRequest
212
+ */
213
+ export interface UsersApiApiV1UsersGetRequest {
214
+ /**
215
+ *
216
+ * @type {string}
217
+ * @memberof UsersApiApiV1UsersGet
218
+ */
219
+ readonly name?: string;
220
+ /**
221
+ *
222
+ * @type {string}
223
+ * @memberof UsersApiApiV1UsersGet
224
+ */
225
+ readonly email?: string;
226
+ /**
227
+ *
228
+ * @type {string}
229
+ * @memberof UsersApiApiV1UsersGet
230
+ */
231
+ readonly role?: string;
232
+ /**
233
+ *
234
+ * @type {string}
235
+ * @memberof UsersApiApiV1UsersGet
236
+ */
237
+ readonly hospitalId?: string;
238
+ /**
239
+ *
240
+ * @type {boolean}
241
+ * @memberof UsersApiApiV1UsersGet
242
+ */
243
+ readonly showHidden?: boolean;
244
+ /**
245
+ *
246
+ * @type {number}
247
+ * @memberof UsersApiApiV1UsersGet
248
+ */
249
+ readonly page?: number;
250
+ /**
251
+ *
252
+ * @type {number}
253
+ * @memberof UsersApiApiV1UsersGet
254
+ */
255
+ readonly limit?: number;
256
+ /**
257
+ *
258
+ * @type {Date}
259
+ * @memberof UsersApiApiV1UsersGet
260
+ */
261
+ readonly lastRetrieved?: Date;
262
+ }
263
+ /**
264
+ * Request parameters for apiV1UsersIdDelete operation in UsersApi.
265
+ * @export
266
+ * @interface UsersApiApiV1UsersIdDeleteRequest
267
+ */
268
+ export interface UsersApiApiV1UsersIdDeleteRequest {
269
+ /**
270
+ *
271
+ * @type {string}
272
+ * @memberof UsersApiApiV1UsersIdDelete
273
+ */
274
+ readonly id: string;
275
+ /**
276
+ *
277
+ * @type {boolean}
278
+ * @memberof UsersApiApiV1UsersIdDelete
279
+ */
280
+ readonly isPermanent?: boolean;
281
+ }
282
+ /**
283
+ * Request parameters for apiV1UsersIdGet operation in UsersApi.
284
+ * @export
285
+ * @interface UsersApiApiV1UsersIdGetRequest
286
+ */
287
+ export interface UsersApiApiV1UsersIdGetRequest {
288
+ /**
289
+ *
290
+ * @type {string}
291
+ * @memberof UsersApiApiV1UsersIdGet
292
+ */
293
+ readonly id: string;
294
+ }
295
+ /**
296
+ * Request parameters for apiV1UsersIdPut operation in UsersApi.
297
+ * @export
298
+ * @interface UsersApiApiV1UsersIdPutRequest
299
+ */
300
+ export interface UsersApiApiV1UsersIdPutRequest {
301
+ /**
302
+ *
303
+ * @type {string}
304
+ * @memberof UsersApiApiV1UsersIdPut
305
+ */
306
+ readonly id: string;
307
+ /**
308
+ *
309
+ * @type {UpdateUserCommand}
310
+ * @memberof UsersApiApiV1UsersIdPut
311
+ */
312
+ readonly updateUserCommand?: UpdateUserCommand;
313
+ }
314
+ /**
315
+ * Request parameters for apiV1UsersIdReactivatePut operation in UsersApi.
316
+ * @export
317
+ * @interface UsersApiApiV1UsersIdReactivatePutRequest
318
+ */
319
+ export interface UsersApiApiV1UsersIdReactivatePutRequest {
320
+ /**
321
+ *
322
+ * @type {string}
323
+ * @memberof UsersApiApiV1UsersIdReactivatePut
324
+ */
325
+ readonly id: string;
326
+ }
327
+ /**
328
+ * Request parameters for apiV1UsersPost operation in UsersApi.
329
+ * @export
330
+ * @interface UsersApiApiV1UsersPostRequest
331
+ */
332
+ export interface UsersApiApiV1UsersPostRequest {
333
+ /**
334
+ *
335
+ * @type {CreateUserCommand}
336
+ * @memberof UsersApiApiV1UsersPost
337
+ */
338
+ readonly createUserCommand?: CreateUserCommand;
339
+ }
340
+ /**
341
+ * UsersApi - object-oriented interface
342
+ * @export
343
+ * @class UsersApi
344
+ * @extends {BaseAPI}
345
+ */
346
+ export declare class UsersApi extends BaseAPI {
347
+ /**
348
+ *
349
+ * @summary Get users (Auth policies: RequireLocalManagerRole)
350
+ * @param {UsersApiApiV1UsersGetRequest} requestParameters Request parameters.
351
+ * @param {*} [options] Override http request option.
352
+ * @throws {RequiredError}
353
+ * @memberof UsersApi
354
+ */
355
+ apiV1UsersGet(requestParameters?: UsersApiApiV1UsersGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralUsersModel, any>>;
356
+ /**
357
+ *
358
+ * @summary Delete user (Auth policies: RequireLocalManagerRole)
359
+ * @param {UsersApiApiV1UsersIdDeleteRequest} requestParameters Request parameters.
360
+ * @param {*} [options] Override http request option.
361
+ * @throws {RequiredError}
362
+ * @memberof UsersApi
363
+ */
364
+ apiV1UsersIdDelete(requestParameters: UsersApiApiV1UsersIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
365
+ /**
366
+ *
367
+ * @summary Get user by id (Auth policies: RequireLocalManagerRole)
368
+ * @param {UsersApiApiV1UsersIdGetRequest} requestParameters Request parameters.
369
+ * @param {*} [options] Override http request option.
370
+ * @throws {RequiredError}
371
+ * @memberof UsersApi
372
+ */
373
+ apiV1UsersIdGet(requestParameters: UsersApiApiV1UsersIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralUserModel, any>>;
374
+ /**
375
+ *
376
+ * @summary Reactivate user (Auth policies: RequireLocalManagerRole)
377
+ * @param {UsersApiApiV1UsersIdPutRequest} requestParameters Request parameters.
378
+ * @param {*} [options] Override http request option.
379
+ * @throws {RequiredError}
380
+ * @memberof UsersApi
381
+ */
382
+ apiV1UsersIdPut(requestParameters: UsersApiApiV1UsersIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralUserModel, any>>;
383
+ /**
384
+ *
385
+ * @summary Reactivate user (Auth policies: RequireLocalManagerRole)
386
+ * @param {UsersApiApiV1UsersIdReactivatePutRequest} requestParameters Request parameters.
387
+ * @param {*} [options] Override http request option.
388
+ * @throws {RequiredError}
389
+ * @memberof UsersApi
390
+ */
391
+ apiV1UsersIdReactivatePut(requestParameters: UsersApiApiV1UsersIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
392
+ /**
393
+ *
394
+ * @summary Create user (Auth policies: RequireLocalManagerRole)
395
+ * @param {UsersApiApiV1UsersPostRequest} requestParameters Request parameters.
396
+ * @param {*} [options] Override http request option.
397
+ * @throws {RequiredError}
398
+ * @memberof UsersApi
399
+ */
400
+ apiV1UsersPost(requestParameters?: UsersApiApiV1UsersPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeneralUserModel, any>>;
401
+ }
402
+ //# sourceMappingURL=users-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"users-api.d.ts","sourceRoot":"","sources":["../../src/api/users-api.ts"],"names":[],"mappings":"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"}