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/lib/api.d.ts
CHANGED
|
@@ -3846,6 +3846,12 @@ export interface CreateHospitalCommand {
|
|
|
3846
3846
|
* @memberof CreateHospitalCommand
|
|
3847
3847
|
*/
|
|
3848
3848
|
'timeZone'?: string | null;
|
|
3849
|
+
/**
|
|
3850
|
+
*
|
|
3851
|
+
* @type {string}
|
|
3852
|
+
* @memberof CreateHospitalCommand
|
|
3853
|
+
*/
|
|
3854
|
+
'websiteUrl'?: string | null;
|
|
3849
3855
|
/**
|
|
3850
3856
|
*
|
|
3851
3857
|
* @type {Array<AwardModel>}
|
|
@@ -3987,6 +3993,12 @@ export interface CreateHospitalServiceCommand {
|
|
|
3987
3993
|
* @memberof CreateHospitalServiceCommand
|
|
3988
3994
|
*/
|
|
3989
3995
|
'photoThumbnail'?: string | null;
|
|
3996
|
+
/**
|
|
3997
|
+
*
|
|
3998
|
+
* @type {Array<MediaModel>}
|
|
3999
|
+
* @memberof CreateHospitalServiceCommand
|
|
4000
|
+
*/
|
|
4001
|
+
'medias'?: Array<MediaModel> | null;
|
|
3990
4002
|
}
|
|
3991
4003
|
/**
|
|
3992
4004
|
*
|
|
@@ -4448,6 +4460,12 @@ export interface CreateSpecialtyCommand {
|
|
|
4448
4460
|
* @memberof CreateSpecialtyCommand
|
|
4449
4461
|
*/
|
|
4450
4462
|
'specialtyTypeId'?: string;
|
|
4463
|
+
/**
|
|
4464
|
+
*
|
|
4465
|
+
* @type {Array<MediaModel>}
|
|
4466
|
+
* @memberof CreateSpecialtyCommand
|
|
4467
|
+
*/
|
|
4468
|
+
'medias'?: Array<MediaModel> | null;
|
|
4451
4469
|
}
|
|
4452
4470
|
/**
|
|
4453
4471
|
*
|
|
@@ -6948,6 +6966,12 @@ export interface HospitalItemModel {
|
|
|
6948
6966
|
* @memberof HospitalItemModel
|
|
6949
6967
|
*/
|
|
6950
6968
|
'timeZone'?: string | null;
|
|
6969
|
+
/**
|
|
6970
|
+
*
|
|
6971
|
+
* @type {string}
|
|
6972
|
+
* @memberof HospitalItemModel
|
|
6973
|
+
*/
|
|
6974
|
+
'websiteUrl'?: string | null;
|
|
6951
6975
|
/**
|
|
6952
6976
|
*
|
|
6953
6977
|
* @type {number}
|
|
@@ -7165,6 +7189,12 @@ export interface HospitalModel {
|
|
|
7165
7189
|
* @memberof HospitalModel
|
|
7166
7190
|
*/
|
|
7167
7191
|
'timeZone'?: string | null;
|
|
7192
|
+
/**
|
|
7193
|
+
*
|
|
7194
|
+
* @type {string}
|
|
7195
|
+
* @memberof HospitalModel
|
|
7196
|
+
*/
|
|
7197
|
+
'websiteUrl'?: string | null;
|
|
7168
7198
|
/**
|
|
7169
7199
|
*
|
|
7170
7200
|
* @type {number}
|
|
@@ -7424,6 +7454,12 @@ export interface HospitalServiceItemModel {
|
|
|
7424
7454
|
* @memberof HospitalServiceItemModel
|
|
7425
7455
|
*/
|
|
7426
7456
|
'photoThumbnail'?: string | null;
|
|
7457
|
+
/**
|
|
7458
|
+
*
|
|
7459
|
+
* @type {Array<MediaModel>}
|
|
7460
|
+
* @memberof HospitalServiceItemModel
|
|
7461
|
+
*/
|
|
7462
|
+
'medias'?: Array<MediaModel> | null;
|
|
7427
7463
|
/**
|
|
7428
7464
|
*
|
|
7429
7465
|
* @type {AuditableEntity}
|
|
@@ -7575,6 +7611,12 @@ export interface HospitalServiceModel {
|
|
|
7575
7611
|
* @memberof HospitalServiceModel
|
|
7576
7612
|
*/
|
|
7577
7613
|
'photoThumbnail'?: string | null;
|
|
7614
|
+
/**
|
|
7615
|
+
*
|
|
7616
|
+
* @type {Array<MediaModel>}
|
|
7617
|
+
* @memberof HospitalServiceModel
|
|
7618
|
+
*/
|
|
7619
|
+
'medias'?: Array<MediaModel> | null;
|
|
7578
7620
|
/**
|
|
7579
7621
|
*
|
|
7580
7622
|
* @type {AuditableEntity}
|
|
@@ -7990,6 +8032,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
7990
8032
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
7991
8033
|
*/
|
|
7992
8034
|
'id'?: string;
|
|
8035
|
+
/**
|
|
8036
|
+
*
|
|
8037
|
+
* @type {string}
|
|
8038
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8039
|
+
*/
|
|
8040
|
+
'title'?: string | null;
|
|
7993
8041
|
/**
|
|
7994
8042
|
*
|
|
7995
8043
|
* @type {string}
|
|
@@ -10062,6 +10110,12 @@ export interface SpecialtyItemModel {
|
|
|
10062
10110
|
* @memberof SpecialtyItemModel
|
|
10063
10111
|
*/
|
|
10064
10112
|
'auditableEntity'?: AuditableEntity;
|
|
10113
|
+
/**
|
|
10114
|
+
*
|
|
10115
|
+
* @type {Array<MediaModel>}
|
|
10116
|
+
* @memberof SpecialtyItemModel
|
|
10117
|
+
*/
|
|
10118
|
+
'medias'?: Array<MediaModel> | null;
|
|
10065
10119
|
}
|
|
10066
10120
|
/**
|
|
10067
10121
|
*
|
|
@@ -10135,6 +10189,12 @@ export interface SpecialtyModel {
|
|
|
10135
10189
|
* @memberof SpecialtyModel
|
|
10136
10190
|
*/
|
|
10137
10191
|
'auditableEntity'?: AuditableEntity;
|
|
10192
|
+
/**
|
|
10193
|
+
*
|
|
10194
|
+
* @type {Array<MediaModel>}
|
|
10195
|
+
* @memberof SpecialtyModel
|
|
10196
|
+
*/
|
|
10197
|
+
'medias'?: Array<MediaModel> | null;
|
|
10138
10198
|
/**
|
|
10139
10199
|
*
|
|
10140
10200
|
* @type {string}
|
|
@@ -11641,6 +11701,12 @@ export interface UpdateHospitalCommand {
|
|
|
11641
11701
|
* @memberof UpdateHospitalCommand
|
|
11642
11702
|
*/
|
|
11643
11703
|
'timeZone'?: string | null;
|
|
11704
|
+
/**
|
|
11705
|
+
*
|
|
11706
|
+
* @type {string}
|
|
11707
|
+
* @memberof UpdateHospitalCommand
|
|
11708
|
+
*/
|
|
11709
|
+
'websiteUrl'?: string | null;
|
|
11644
11710
|
/**
|
|
11645
11711
|
*
|
|
11646
11712
|
* @type {boolean}
|
|
@@ -11781,6 +11847,12 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11781
11847
|
* @memberof UpdateHospitalServiceCommand
|
|
11782
11848
|
*/
|
|
11783
11849
|
'photoThumbnail'?: string | null;
|
|
11850
|
+
/**
|
|
11851
|
+
*
|
|
11852
|
+
* @type {Array<MediaModel>}
|
|
11853
|
+
* @memberof UpdateHospitalServiceCommand
|
|
11854
|
+
*/
|
|
11855
|
+
'medias'?: Array<MediaModel> | null;
|
|
11784
11856
|
}
|
|
11785
11857
|
/**
|
|
11786
11858
|
*
|
|
@@ -12328,6 +12400,12 @@ export interface UpdateSpecialtyCommand {
|
|
|
12328
12400
|
* @memberof UpdateSpecialtyCommand
|
|
12329
12401
|
*/
|
|
12330
12402
|
'confirmed'?: boolean;
|
|
12403
|
+
/**
|
|
12404
|
+
*
|
|
12405
|
+
* @type {Array<MediaModel>}
|
|
12406
|
+
* @memberof UpdateSpecialtyCommand
|
|
12407
|
+
*/
|
|
12408
|
+
'medias'?: Array<MediaModel> | null;
|
|
12331
12409
|
}
|
|
12332
12410
|
/**
|
|
12333
12411
|
*
|