ch-admin-api-client-typescript 5.51.0 → 5.55.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/users-api.d.ts +402 -0
- package/lib/api/users-api.d.ts.map +1 -0
- package/lib/api/users-api.js +730 -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/create-user-command.d.ts +159 -0
- package/lib/models/create-user-command.d.ts.map +1 -0
- package/lib/models/create-user-command.js +15 -0
- package/lib/models/general-user-item-model.d.ts +117 -0
- package/lib/models/general-user-item-model.d.ts.map +1 -0
- package/lib/models/general-user-item-model.js +15 -0
- package/lib/models/general-user-model.d.ts +136 -0
- package/lib/models/general-user-model.d.ts.map +1 -0
- package/lib/models/general-user-model.js +15 -0
- package/lib/models/general-users-model.d.ts +33 -0
- package/lib/models/general-users-model.d.ts.map +1 -0
- package/lib/models/general-users-model.js +15 -0
- package/lib/models/index.d.ts +6 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +6 -0
- package/lib/models/translate-command.d.ts +8 -2
- package/lib/models/translate-command.d.ts.map +1 -1
- package/lib/models/update-user-command.d.ts +159 -0
- package/lib/models/update-user-command.d.ts.map +1 -0
- package/lib/models/update-user-command.js +15 -0
- package/lib/models/user-language-input-model.d.ts +37 -0
- package/lib/models/user-language-input-model.d.ts.map +1 -0
- package/lib/models/user-language-input-model.js +15 -0
- package/package.json +1 -1
package/lib/models/index.js
CHANGED
|
@@ -186,6 +186,7 @@ __exportStar(require("./create-specialty-type-command"), exports);
|
|
|
186
186
|
__exportStar(require("./create-survey-form-command"), exports);
|
|
187
187
|
__exportStar(require("./create-tag-command"), exports);
|
|
188
188
|
__exportStar(require("./create-template-version-command"), exports);
|
|
189
|
+
__exportStar(require("./create-user-command"), exports);
|
|
189
190
|
__exportStar(require("./create-walk-in-appointment-command"), exports);
|
|
190
191
|
__exportStar(require("./create-web-app-command"), exports);
|
|
191
192
|
__exportStar(require("./create-whats-app-template-media-command"), exports);
|
|
@@ -285,6 +286,9 @@ __exportStar(require("./form-template-type"), exports);
|
|
|
285
286
|
__exportStar(require("./form-templates-model"), exports);
|
|
286
287
|
__exportStar(require("./gender"), exports);
|
|
287
288
|
__exportStar(require("./general-statistics-model"), exports);
|
|
289
|
+
__exportStar(require("./general-user-item-model"), exports);
|
|
290
|
+
__exportStar(require("./general-user-model"), exports);
|
|
291
|
+
__exportStar(require("./general-users-model"), exports);
|
|
288
292
|
__exportStar(require("./generated-pdf-command"), exports);
|
|
289
293
|
__exportStar(require("./get-appointment-timetables-response-model"), exports);
|
|
290
294
|
__exportStar(require("./get-patient-walk-in-query"), exports);
|
|
@@ -615,11 +619,13 @@ __exportStar(require("./update-specialty-command"), exports);
|
|
|
615
619
|
__exportStar(require("./update-specialty-type-command"), exports);
|
|
616
620
|
__exportStar(require("./update-survey-form-command"), exports);
|
|
617
621
|
__exportStar(require("./update-template-version-command"), exports);
|
|
622
|
+
__exportStar(require("./update-user-command"), exports);
|
|
618
623
|
__exportStar(require("./update-web-app-command"), exports);
|
|
619
624
|
__exportStar(require("./upi-payment-model"), exports);
|
|
620
625
|
__exportStar(require("./upload-media-from-uri-command"), exports);
|
|
621
626
|
__exportStar(require("./uploaded-medias-model"), exports);
|
|
622
627
|
__exportStar(require("./user"), exports);
|
|
628
|
+
__exportStar(require("./user-language-input-model"), exports);
|
|
623
629
|
__exportStar(require("./user-language-model"), exports);
|
|
624
630
|
__exportStar(require("./user-model"), exports);
|
|
625
631
|
__exportStar(require("./web-app-environment-model"), exports);
|
|
@@ -27,6 +27,12 @@ export interface TranslateCommand {
|
|
|
27
27
|
* @memberof TranslateCommand
|
|
28
28
|
*/
|
|
29
29
|
'languageCodeTo'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof TranslateCommand
|
|
34
|
+
*/
|
|
35
|
+
'content'?: string | null;
|
|
30
36
|
/**
|
|
31
37
|
*
|
|
32
38
|
* @type {boolean}
|
|
@@ -35,9 +41,9 @@ export interface TranslateCommand {
|
|
|
35
41
|
'isHtml'?: boolean;
|
|
36
42
|
/**
|
|
37
43
|
*
|
|
38
|
-
* @type {
|
|
44
|
+
* @type {boolean}
|
|
39
45
|
* @memberof TranslateCommand
|
|
40
46
|
*/
|
|
41
|
-
'
|
|
47
|
+
'isDescriptive'?: boolean;
|
|
42
48
|
}
|
|
43
49
|
//# sourceMappingURL=translate-command.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translate-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"translate-command.d.ts","sourceRoot":"","sources":["../../src/models/translate-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;CAC7B"}
|
|
@@ -0,0 +1,159 @@
|
|
|
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 { Gender } from './gender';
|
|
13
|
+
import { UserLanguageInputModel } from './user-language-input-model';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface UpdateUserCommand
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateUserCommand {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof UpdateUserCommand
|
|
24
|
+
*/
|
|
25
|
+
'email'?: string | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof UpdateUserCommand
|
|
30
|
+
*/
|
|
31
|
+
'firstName'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof UpdateUserCommand
|
|
36
|
+
*/
|
|
37
|
+
'lastName'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof UpdateUserCommand
|
|
42
|
+
*/
|
|
43
|
+
'phone'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof UpdateUserCommand
|
|
48
|
+
*/
|
|
49
|
+
'photo'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof UpdateUserCommand
|
|
54
|
+
*/
|
|
55
|
+
'photoThumbnail'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {Gender}
|
|
59
|
+
* @memberof UpdateUserCommand
|
|
60
|
+
*/
|
|
61
|
+
'gender'?: Gender;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {Date}
|
|
65
|
+
* @memberof UpdateUserCommand
|
|
66
|
+
*/
|
|
67
|
+
'dateOfBirth'?: Date | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof UpdateUserCommand
|
|
72
|
+
*/
|
|
73
|
+
'timeZone'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof UpdateUserCommand
|
|
78
|
+
*/
|
|
79
|
+
'languageCode'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof UpdateUserCommand
|
|
84
|
+
*/
|
|
85
|
+
'name'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof UpdateUserCommand
|
|
90
|
+
*/
|
|
91
|
+
'jobTitle'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof UpdateUserCommand
|
|
96
|
+
*/
|
|
97
|
+
'jobPosition'?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {Date}
|
|
101
|
+
* @memberof UpdateUserCommand
|
|
102
|
+
*/
|
|
103
|
+
'startPracticeDate'?: Date | null;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {boolean}
|
|
107
|
+
* @memberof UpdateUserCommand
|
|
108
|
+
*/
|
|
109
|
+
'consultationEnabled'?: boolean | null;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {number}
|
|
113
|
+
* @memberof UpdateUserCommand
|
|
114
|
+
*/
|
|
115
|
+
'consultationFee'?: number | null;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof UpdateUserCommand
|
|
120
|
+
*/
|
|
121
|
+
'license'?: string | null;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {Array<string>}
|
|
125
|
+
* @memberof UpdateUserCommand
|
|
126
|
+
*/
|
|
127
|
+
'roles'?: Array<string> | null;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {Array<UserLanguageInputModel>}
|
|
131
|
+
* @memberof UpdateUserCommand
|
|
132
|
+
*/
|
|
133
|
+
'userLanguages'?: Array<UserLanguageInputModel> | null;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {boolean}
|
|
137
|
+
* @memberof UpdateUserCommand
|
|
138
|
+
*/
|
|
139
|
+
'createIdentityAccount'?: boolean | null;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {Array<string>}
|
|
143
|
+
* @memberof UpdateUserCommand
|
|
144
|
+
*/
|
|
145
|
+
'managerAffiliations'?: Array<string> | null;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {Array<string>}
|
|
149
|
+
* @memberof UpdateUserCommand
|
|
150
|
+
*/
|
|
151
|
+
'patientAffiliations'?: Array<string> | null;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {Array<string>}
|
|
155
|
+
* @memberof UpdateUserCommand
|
|
156
|
+
*/
|
|
157
|
+
'doctorAffiliations'?: Array<string> | null;
|
|
158
|
+
}
|
|
159
|
+
//# sourceMappingURL=update-user-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-user-command.d.ts","sourceRoot":"","sources":["../../src/models/update-user-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAGlC,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAErE;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,KAAK,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC;IACvD;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACzC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7C;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAC7C;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CAC/C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UserLanguageInputModel
|
|
16
|
+
*/
|
|
17
|
+
export interface UserLanguageInputModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UserLanguageInputModel
|
|
22
|
+
*/
|
|
23
|
+
'code'?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof UserLanguageInputModel
|
|
28
|
+
*/
|
|
29
|
+
'order'?: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof UserLanguageInputModel
|
|
34
|
+
*/
|
|
35
|
+
'isPrimary'?: boolean;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=user-language-input-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"user-language-input-model.d.ts","sourceRoot":"","sources":["../../src/models/user-language-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|