ch-admin-api-client-typescript 5.3.0 → 5.3.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.
- package/lib/api/hospitals-api.d.ts +148 -29
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +222 -34
- package/lib/api/vonage-users-api.d.ts +109 -0
- package/lib/api/vonage-users-api.d.ts.map +1 -0
- package/lib/api/vonage-users-api.js +286 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/get-users-result-embedded.d.ts +26 -0
- package/lib/models/get-users-result-embedded.d.ts.map +1 -0
- package/lib/models/get-users-result-embedded.js +15 -0
- package/lib/models/get-users-result.d.ts +45 -0
- package/lib/models/get-users-result.d.ts.map +1 -0
- package/lib/models/get-users-result.js +15 -0
- package/lib/models/index.d.ts +3 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +3 -0
- package/lib/models/vonage-user.d.ts +44 -0
- package/lib/models/vonage-user.d.ts.map +1 -0
- package/lib/models/vonage-user.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +4 -0
- package/src/api/hospitals-api.ts +259 -47
- package/src/api/vonage-users-api.ts +203 -0
- package/src/api.ts +1 -0
- package/src/models/get-users-result-embedded.ts +33 -0
- package/src/models/get-users-result.ts +54 -0
- package/src/models/index.ts +3 -0
- package/src/models/vonage-user.ts +51 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { VonageUser } from './vonage-user';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface GetUsersResultEmbedded
|
|
24
|
+
*/
|
|
25
|
+
export interface GetUsersResultEmbedded {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<VonageUser>}
|
|
29
|
+
* @memberof GetUsersResultEmbedded
|
|
30
|
+
*/
|
|
31
|
+
'users'?: Array<VonageUser> | null;
|
|
32
|
+
}
|
|
33
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { GetUsersResultEmbedded } from './get-users-result-embedded';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { Links } from './links';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface GetUsersResult
|
|
27
|
+
*/
|
|
28
|
+
export interface GetUsersResult {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof GetUsersResult
|
|
33
|
+
*/
|
|
34
|
+
'pageSsize'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof GetUsersResult
|
|
39
|
+
*/
|
|
40
|
+
'cursor'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {GetUsersResultEmbedded}
|
|
44
|
+
* @memberof GetUsersResult
|
|
45
|
+
*/
|
|
46
|
+
'embedded'?: GetUsersResultEmbedded;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {Links}
|
|
50
|
+
* @memberof GetUsersResult
|
|
51
|
+
*/
|
|
52
|
+
'links'?: Links;
|
|
53
|
+
}
|
|
54
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -200,6 +200,8 @@ export * from './footer-navigation-item-model';
|
|
|
200
200
|
export * from './gender';
|
|
201
201
|
export * from './get-transfer-balance-embeded';
|
|
202
202
|
export * from './get-transfer-balance-result';
|
|
203
|
+
export * from './get-users-result';
|
|
204
|
+
export * from './get-users-result-embedded';
|
|
203
205
|
export * from './grade-item-model';
|
|
204
206
|
export * from './grade-model';
|
|
205
207
|
export * from './grade-targets';
|
|
@@ -456,6 +458,7 @@ export * from './user-model';
|
|
|
456
458
|
export * from './vbc';
|
|
457
459
|
export * from './video';
|
|
458
460
|
export * from './voice';
|
|
461
|
+
export * from './vonage-user';
|
|
459
462
|
export * from './webhook';
|
|
460
463
|
export * from './working-day-item-model';
|
|
461
464
|
export * from './working-day-model';
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { Links } from './links';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VonageUser
|
|
24
|
+
*/
|
|
25
|
+
export interface VonageUser {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof VonageUser
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof VonageUser
|
|
36
|
+
*/
|
|
37
|
+
'name'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof VonageUser
|
|
42
|
+
*/
|
|
43
|
+
'displayName'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Links}
|
|
47
|
+
* @memberof VonageUser
|
|
48
|
+
*/
|
|
49
|
+
'links'?: Links;
|
|
50
|
+
}
|
|
51
|
+
|