ch-admin-api-client-typescript 2.8.7 → 2.8.10
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.d.ts +78 -0
- package/lib/api.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +78 -0
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -3865,6 +3865,12 @@ export interface CreateHospitalCommand {
|
|
|
3865
3865
|
* @memberof CreateHospitalCommand
|
|
3866
3866
|
*/
|
|
3867
3867
|
'timeZone'?: string | null;
|
|
3868
|
+
/**
|
|
3869
|
+
*
|
|
3870
|
+
* @type {string}
|
|
3871
|
+
* @memberof CreateHospitalCommand
|
|
3872
|
+
*/
|
|
3873
|
+
'websiteUrl'?: string | null;
|
|
3868
3874
|
/**
|
|
3869
3875
|
*
|
|
3870
3876
|
* @type {Array<AwardModel>}
|
|
@@ -4006,6 +4012,12 @@ export interface CreateHospitalServiceCommand {
|
|
|
4006
4012
|
* @memberof CreateHospitalServiceCommand
|
|
4007
4013
|
*/
|
|
4008
4014
|
'photoThumbnail'?: string | null;
|
|
4015
|
+
/**
|
|
4016
|
+
*
|
|
4017
|
+
* @type {Array<MediaModel>}
|
|
4018
|
+
* @memberof CreateHospitalServiceCommand
|
|
4019
|
+
*/
|
|
4020
|
+
'medias'?: Array<MediaModel> | null;
|
|
4009
4021
|
}
|
|
4010
4022
|
/**
|
|
4011
4023
|
*
|
|
@@ -4467,6 +4479,12 @@ export interface CreateSpecialtyCommand {
|
|
|
4467
4479
|
* @memberof CreateSpecialtyCommand
|
|
4468
4480
|
*/
|
|
4469
4481
|
'specialtyTypeId'?: string;
|
|
4482
|
+
/**
|
|
4483
|
+
*
|
|
4484
|
+
* @type {Array<MediaModel>}
|
|
4485
|
+
* @memberof CreateSpecialtyCommand
|
|
4486
|
+
*/
|
|
4487
|
+
'medias'?: Array<MediaModel> | null;
|
|
4470
4488
|
}
|
|
4471
4489
|
/**
|
|
4472
4490
|
*
|
|
@@ -6971,6 +6989,12 @@ export interface HospitalItemModel {
|
|
|
6971
6989
|
* @memberof HospitalItemModel
|
|
6972
6990
|
*/
|
|
6973
6991
|
'timeZone'?: string | null;
|
|
6992
|
+
/**
|
|
6993
|
+
*
|
|
6994
|
+
* @type {string}
|
|
6995
|
+
* @memberof HospitalItemModel
|
|
6996
|
+
*/
|
|
6997
|
+
'websiteUrl'?: string | null;
|
|
6974
6998
|
/**
|
|
6975
6999
|
*
|
|
6976
7000
|
* @type {number}
|
|
@@ -7188,6 +7212,12 @@ export interface HospitalModel {
|
|
|
7188
7212
|
* @memberof HospitalModel
|
|
7189
7213
|
*/
|
|
7190
7214
|
'timeZone'?: string | null;
|
|
7215
|
+
/**
|
|
7216
|
+
*
|
|
7217
|
+
* @type {string}
|
|
7218
|
+
* @memberof HospitalModel
|
|
7219
|
+
*/
|
|
7220
|
+
'websiteUrl'?: string | null;
|
|
7191
7221
|
/**
|
|
7192
7222
|
*
|
|
7193
7223
|
* @type {number}
|
|
@@ -7447,6 +7477,12 @@ export interface HospitalServiceItemModel {
|
|
|
7447
7477
|
* @memberof HospitalServiceItemModel
|
|
7448
7478
|
*/
|
|
7449
7479
|
'photoThumbnail'?: string | null;
|
|
7480
|
+
/**
|
|
7481
|
+
*
|
|
7482
|
+
* @type {Array<MediaModel>}
|
|
7483
|
+
* @memberof HospitalServiceItemModel
|
|
7484
|
+
*/
|
|
7485
|
+
'medias'?: Array<MediaModel> | null;
|
|
7450
7486
|
/**
|
|
7451
7487
|
*
|
|
7452
7488
|
* @type {AuditableEntity}
|
|
@@ -7598,6 +7634,12 @@ export interface HospitalServiceModel {
|
|
|
7598
7634
|
* @memberof HospitalServiceModel
|
|
7599
7635
|
*/
|
|
7600
7636
|
'photoThumbnail'?: string | null;
|
|
7637
|
+
/**
|
|
7638
|
+
*
|
|
7639
|
+
* @type {Array<MediaModel>}
|
|
7640
|
+
* @memberof HospitalServiceModel
|
|
7641
|
+
*/
|
|
7642
|
+
'medias'?: Array<MediaModel> | null;
|
|
7601
7643
|
/**
|
|
7602
7644
|
*
|
|
7603
7645
|
* @type {AuditableEntity}
|
|
@@ -8013,6 +8055,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
8013
8055
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8014
8056
|
*/
|
|
8015
8057
|
'id'?: string;
|
|
8058
|
+
/**
|
|
8059
|
+
*
|
|
8060
|
+
* @type {string}
|
|
8061
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8062
|
+
*/
|
|
8063
|
+
'title'?: string | null;
|
|
8016
8064
|
/**
|
|
8017
8065
|
*
|
|
8018
8066
|
* @type {string}
|
|
@@ -10104,6 +10152,12 @@ export interface SpecialtyItemModel {
|
|
|
10104
10152
|
* @memberof SpecialtyItemModel
|
|
10105
10153
|
*/
|
|
10106
10154
|
'auditableEntity'?: AuditableEntity;
|
|
10155
|
+
/**
|
|
10156
|
+
*
|
|
10157
|
+
* @type {Array<MediaModel>}
|
|
10158
|
+
* @memberof SpecialtyItemModel
|
|
10159
|
+
*/
|
|
10160
|
+
'medias'?: Array<MediaModel> | null;
|
|
10107
10161
|
}
|
|
10108
10162
|
/**
|
|
10109
10163
|
*
|
|
@@ -10177,6 +10231,12 @@ export interface SpecialtyModel {
|
|
|
10177
10231
|
* @memberof SpecialtyModel
|
|
10178
10232
|
*/
|
|
10179
10233
|
'auditableEntity'?: AuditableEntity;
|
|
10234
|
+
/**
|
|
10235
|
+
*
|
|
10236
|
+
* @type {Array<MediaModel>}
|
|
10237
|
+
* @memberof SpecialtyModel
|
|
10238
|
+
*/
|
|
10239
|
+
'medias'?: Array<MediaModel> | null;
|
|
10180
10240
|
/**
|
|
10181
10241
|
*
|
|
10182
10242
|
* @type {string}
|
|
@@ -11683,6 +11743,12 @@ export interface UpdateHospitalCommand {
|
|
|
11683
11743
|
* @memberof UpdateHospitalCommand
|
|
11684
11744
|
*/
|
|
11685
11745
|
'timeZone'?: string | null;
|
|
11746
|
+
/**
|
|
11747
|
+
*
|
|
11748
|
+
* @type {string}
|
|
11749
|
+
* @memberof UpdateHospitalCommand
|
|
11750
|
+
*/
|
|
11751
|
+
'websiteUrl'?: string | null;
|
|
11686
11752
|
/**
|
|
11687
11753
|
*
|
|
11688
11754
|
* @type {boolean}
|
|
@@ -11823,6 +11889,12 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11823
11889
|
* @memberof UpdateHospitalServiceCommand
|
|
11824
11890
|
*/
|
|
11825
11891
|
'photoThumbnail'?: string | null;
|
|
11892
|
+
/**
|
|
11893
|
+
*
|
|
11894
|
+
* @type {Array<MediaModel>}
|
|
11895
|
+
* @memberof UpdateHospitalServiceCommand
|
|
11896
|
+
*/
|
|
11897
|
+
'medias'?: Array<MediaModel> | null;
|
|
11826
11898
|
}
|
|
11827
11899
|
/**
|
|
11828
11900
|
*
|
|
@@ -12370,6 +12442,12 @@ export interface UpdateSpecialtyCommand {
|
|
|
12370
12442
|
* @memberof UpdateSpecialtyCommand
|
|
12371
12443
|
*/
|
|
12372
12444
|
'confirmed'?: boolean;
|
|
12445
|
+
/**
|
|
12446
|
+
*
|
|
12447
|
+
* @type {Array<MediaModel>}
|
|
12448
|
+
* @memberof UpdateSpecialtyCommand
|
|
12449
|
+
*/
|
|
12450
|
+
'medias'?: Array<MediaModel> | null;
|
|
12373
12451
|
}
|
|
12374
12452
|
/**
|
|
12375
12453
|
*
|