ch-admin-api-client-typescript 2.9.4 → 2.9.7
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 +1562 -48
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1850 -104
- package/package.json +1 -1
- package/src/api.ts +2595 -265
package/lib/api.d.ts
CHANGED
|
@@ -12,6 +12,201 @@
|
|
|
12
12
|
import { Configuration } from './configuration';
|
|
13
13
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
14
14
|
import { RequestArgs, BaseAPI } from './base';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface AboutUsPageItemModel
|
|
19
|
+
*/
|
|
20
|
+
export interface AboutUsPageItemModel {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof AboutUsPageItemModel
|
|
25
|
+
*/
|
|
26
|
+
'id'?: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof AboutUsPageItemModel
|
|
31
|
+
*/
|
|
32
|
+
'hospitalId'?: string;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof AboutUsPageItemModel
|
|
37
|
+
*/
|
|
38
|
+
'hospitalName'?: string | null;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof AboutUsPageItemModel
|
|
43
|
+
*/
|
|
44
|
+
'hospitalSlug'?: string | null;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof AboutUsPageItemModel
|
|
49
|
+
*/
|
|
50
|
+
'overviewTitle'?: string | null;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof AboutUsPageItemModel
|
|
55
|
+
*/
|
|
56
|
+
'overview'?: string | null;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof AboutUsPageItemModel
|
|
61
|
+
*/
|
|
62
|
+
'content'?: string | null;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof AboutUsPageItemModel
|
|
67
|
+
*/
|
|
68
|
+
'customStyle'?: string | null;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {string}
|
|
72
|
+
* @memberof AboutUsPageItemModel
|
|
73
|
+
*/
|
|
74
|
+
'background'?: string | null;
|
|
75
|
+
/**
|
|
76
|
+
*
|
|
77
|
+
* @type {string}
|
|
78
|
+
* @memberof AboutUsPageItemModel
|
|
79
|
+
*/
|
|
80
|
+
'backgroundThumbnail'?: string | null;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
* @type {boolean}
|
|
84
|
+
* @memberof AboutUsPageItemModel
|
|
85
|
+
*/
|
|
86
|
+
'confirmed'?: boolean;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @type {Array<MediaModel>}
|
|
90
|
+
* @memberof AboutUsPageItemModel
|
|
91
|
+
*/
|
|
92
|
+
'medias'?: Array<MediaModel> | null;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @type {AuditableEntity}
|
|
96
|
+
* @memberof AboutUsPageItemModel
|
|
97
|
+
*/
|
|
98
|
+
'auditableEntity'?: AuditableEntity;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @export
|
|
103
|
+
* @interface AboutUsPageModel
|
|
104
|
+
*/
|
|
105
|
+
export interface AboutUsPageModel {
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof AboutUsPageModel
|
|
110
|
+
*/
|
|
111
|
+
'id'?: string;
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof AboutUsPageModel
|
|
116
|
+
*/
|
|
117
|
+
'hospitalId'?: string;
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
* @type {string}
|
|
121
|
+
* @memberof AboutUsPageModel
|
|
122
|
+
*/
|
|
123
|
+
'hospitalName'?: string | null;
|
|
124
|
+
/**
|
|
125
|
+
*
|
|
126
|
+
* @type {string}
|
|
127
|
+
* @memberof AboutUsPageModel
|
|
128
|
+
*/
|
|
129
|
+
'hospitalSlug'?: string | null;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @type {string}
|
|
133
|
+
* @memberof AboutUsPageModel
|
|
134
|
+
*/
|
|
135
|
+
'overviewTitle'?: string | null;
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @type {string}
|
|
139
|
+
* @memberof AboutUsPageModel
|
|
140
|
+
*/
|
|
141
|
+
'overview'?: string | null;
|
|
142
|
+
/**
|
|
143
|
+
*
|
|
144
|
+
* @type {string}
|
|
145
|
+
* @memberof AboutUsPageModel
|
|
146
|
+
*/
|
|
147
|
+
'content'?: string | null;
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* @type {string}
|
|
151
|
+
* @memberof AboutUsPageModel
|
|
152
|
+
*/
|
|
153
|
+
'customStyle'?: string | null;
|
|
154
|
+
/**
|
|
155
|
+
*
|
|
156
|
+
* @type {string}
|
|
157
|
+
* @memberof AboutUsPageModel
|
|
158
|
+
*/
|
|
159
|
+
'background'?: string | null;
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* @type {string}
|
|
163
|
+
* @memberof AboutUsPageModel
|
|
164
|
+
*/
|
|
165
|
+
'backgroundThumbnail'?: string | null;
|
|
166
|
+
/**
|
|
167
|
+
*
|
|
168
|
+
* @type {boolean}
|
|
169
|
+
* @memberof AboutUsPageModel
|
|
170
|
+
*/
|
|
171
|
+
'confirmed'?: boolean;
|
|
172
|
+
/**
|
|
173
|
+
*
|
|
174
|
+
* @type {Array<MediaModel>}
|
|
175
|
+
* @memberof AboutUsPageModel
|
|
176
|
+
*/
|
|
177
|
+
'medias'?: Array<MediaModel> | null;
|
|
178
|
+
/**
|
|
179
|
+
*
|
|
180
|
+
* @type {AuditableEntity}
|
|
181
|
+
* @memberof AboutUsPageModel
|
|
182
|
+
*/
|
|
183
|
+
'auditableEntity'?: AuditableEntity;
|
|
184
|
+
/**
|
|
185
|
+
*
|
|
186
|
+
* @type {string}
|
|
187
|
+
* @memberof AboutUsPageModel
|
|
188
|
+
*/
|
|
189
|
+
'languageCode'?: string | null;
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @export
|
|
194
|
+
* @interface AboutUsPagesModel
|
|
195
|
+
*/
|
|
196
|
+
export interface AboutUsPagesModel {
|
|
197
|
+
/**
|
|
198
|
+
*
|
|
199
|
+
* @type {Array<AboutUsPageItemModel>}
|
|
200
|
+
* @memberof AboutUsPagesModel
|
|
201
|
+
*/
|
|
202
|
+
'items'?: Array<AboutUsPageItemModel> | null;
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* @type {PagedListMetaData}
|
|
206
|
+
* @memberof AboutUsPagesModel
|
|
207
|
+
*/
|
|
208
|
+
'metaData'?: PagedListMetaData;
|
|
209
|
+
}
|
|
15
210
|
/**
|
|
16
211
|
*
|
|
17
212
|
* @export
|
|
@@ -2983,6 +3178,67 @@ export interface CountryModel {
|
|
|
2983
3178
|
*/
|
|
2984
3179
|
'languageCode'?: string | null;
|
|
2985
3180
|
}
|
|
3181
|
+
/**
|
|
3182
|
+
*
|
|
3183
|
+
* @export
|
|
3184
|
+
* @interface CreateAboutUsPageCommand
|
|
3185
|
+
*/
|
|
3186
|
+
export interface CreateAboutUsPageCommand {
|
|
3187
|
+
/**
|
|
3188
|
+
*
|
|
3189
|
+
* @type {string}
|
|
3190
|
+
* @memberof CreateAboutUsPageCommand
|
|
3191
|
+
*/
|
|
3192
|
+
'hospitalId'?: string;
|
|
3193
|
+
/**
|
|
3194
|
+
*
|
|
3195
|
+
* @type {string}
|
|
3196
|
+
* @memberof CreateAboutUsPageCommand
|
|
3197
|
+
*/
|
|
3198
|
+
'overviewTitle'?: string | null;
|
|
3199
|
+
/**
|
|
3200
|
+
*
|
|
3201
|
+
* @type {string}
|
|
3202
|
+
* @memberof CreateAboutUsPageCommand
|
|
3203
|
+
*/
|
|
3204
|
+
'overview'?: string | null;
|
|
3205
|
+
/**
|
|
3206
|
+
*
|
|
3207
|
+
* @type {string}
|
|
3208
|
+
* @memberof CreateAboutUsPageCommand
|
|
3209
|
+
*/
|
|
3210
|
+
'content'?: string | null;
|
|
3211
|
+
/**
|
|
3212
|
+
*
|
|
3213
|
+
* @type {string}
|
|
3214
|
+
* @memberof CreateAboutUsPageCommand
|
|
3215
|
+
*/
|
|
3216
|
+
'customStyle'?: string | null;
|
|
3217
|
+
/**
|
|
3218
|
+
*
|
|
3219
|
+
* @type {string}
|
|
3220
|
+
* @memberof CreateAboutUsPageCommand
|
|
3221
|
+
*/
|
|
3222
|
+
'background'?: string | null;
|
|
3223
|
+
/**
|
|
3224
|
+
*
|
|
3225
|
+
* @type {string}
|
|
3226
|
+
* @memberof CreateAboutUsPageCommand
|
|
3227
|
+
*/
|
|
3228
|
+
'backgroundThumbnail'?: string | null;
|
|
3229
|
+
/**
|
|
3230
|
+
*
|
|
3231
|
+
* @type {Array<Media>}
|
|
3232
|
+
* @memberof CreateAboutUsPageCommand
|
|
3233
|
+
*/
|
|
3234
|
+
'medias'?: Array<Media> | null;
|
|
3235
|
+
/**
|
|
3236
|
+
*
|
|
3237
|
+
* @type {AuditableEntity}
|
|
3238
|
+
* @memberof CreateAboutUsPageCommand
|
|
3239
|
+
*/
|
|
3240
|
+
'auditableEntity'?: AuditableEntity;
|
|
3241
|
+
}
|
|
2986
3242
|
/**
|
|
2987
3243
|
*
|
|
2988
3244
|
* @export
|
|
@@ -3938,16 +4194,16 @@ export interface CreateHospitalCommand {
|
|
|
3938
4194
|
'websiteUrl'?: string | null;
|
|
3939
4195
|
/**
|
|
3940
4196
|
*
|
|
3941
|
-
* @type {
|
|
4197
|
+
* @type {string}
|
|
3942
4198
|
* @memberof CreateHospitalCommand
|
|
3943
4199
|
*/
|
|
3944
|
-
'
|
|
4200
|
+
'contactTel'?: string | null;
|
|
3945
4201
|
/**
|
|
3946
4202
|
*
|
|
3947
|
-
* @type {
|
|
4203
|
+
* @type {string}
|
|
3948
4204
|
* @memberof CreateHospitalCommand
|
|
3949
4205
|
*/
|
|
3950
|
-
'
|
|
4206
|
+
'contactEmail'?: string | null;
|
|
3951
4207
|
/**
|
|
3952
4208
|
*
|
|
3953
4209
|
* @type {LocationModel}
|
|
@@ -4090,6 +4346,25 @@ export interface CreateHospitalServiceCommand {
|
|
|
4090
4346
|
*/
|
|
4091
4347
|
'medias'?: Array<MediaModel> | null;
|
|
4092
4348
|
}
|
|
4349
|
+
/**
|
|
4350
|
+
*
|
|
4351
|
+
* @export
|
|
4352
|
+
* @interface CreateHospitalSnsHandleCommand
|
|
4353
|
+
*/
|
|
4354
|
+
export interface CreateHospitalSnsHandleCommand {
|
|
4355
|
+
/**
|
|
4356
|
+
*
|
|
4357
|
+
* @type {SnsType}
|
|
4358
|
+
* @memberof CreateHospitalSnsHandleCommand
|
|
4359
|
+
*/
|
|
4360
|
+
'snsType'?: SnsType;
|
|
4361
|
+
/**
|
|
4362
|
+
*
|
|
4363
|
+
* @type {string}
|
|
4364
|
+
* @memberof CreateHospitalSnsHandleCommand
|
|
4365
|
+
*/
|
|
4366
|
+
'handle'?: string | null;
|
|
4367
|
+
}
|
|
4093
4368
|
/**
|
|
4094
4369
|
*
|
|
4095
4370
|
* @export
|
|
@@ -4163,6 +4438,37 @@ export interface CreateHospitalSpecialtyCommand {
|
|
|
4163
4438
|
*/
|
|
4164
4439
|
'medias'?: Array<MediaModel> | null;
|
|
4165
4440
|
}
|
|
4441
|
+
/**
|
|
4442
|
+
*
|
|
4443
|
+
* @export
|
|
4444
|
+
* @interface CreateHospitalWorkingDayCommand
|
|
4445
|
+
*/
|
|
4446
|
+
export interface CreateHospitalWorkingDayCommand {
|
|
4447
|
+
/**
|
|
4448
|
+
*
|
|
4449
|
+
* @type {string}
|
|
4450
|
+
* @memberof CreateHospitalWorkingDayCommand
|
|
4451
|
+
*/
|
|
4452
|
+
'dayOfWeek'?: string | null;
|
|
4453
|
+
/**
|
|
4454
|
+
*
|
|
4455
|
+
* @type {Date}
|
|
4456
|
+
* @memberof CreateHospitalWorkingDayCommand
|
|
4457
|
+
*/
|
|
4458
|
+
'timeFrom'?: Date;
|
|
4459
|
+
/**
|
|
4460
|
+
*
|
|
4461
|
+
* @type {Date}
|
|
4462
|
+
* @memberof CreateHospitalWorkingDayCommand
|
|
4463
|
+
*/
|
|
4464
|
+
'timeTo'?: Date;
|
|
4465
|
+
/**
|
|
4466
|
+
*
|
|
4467
|
+
* @type {boolean}
|
|
4468
|
+
* @memberof CreateHospitalWorkingDayCommand
|
|
4469
|
+
*/
|
|
4470
|
+
'checkHoliday'?: boolean;
|
|
4471
|
+
}
|
|
4166
4472
|
/**
|
|
4167
4473
|
*
|
|
4168
4474
|
* @export
|
|
@@ -7140,6 +7446,12 @@ export interface HospitalItemModel {
|
|
|
7140
7446
|
* @memberof HospitalItemModel
|
|
7141
7447
|
*/
|
|
7142
7448
|
'specialtiesSummerized'?: string | null;
|
|
7449
|
+
/**
|
|
7450
|
+
*
|
|
7451
|
+
* @type {boolean}
|
|
7452
|
+
* @memberof HospitalItemModel
|
|
7453
|
+
*/
|
|
7454
|
+
'paymentEnabled'?: boolean;
|
|
7143
7455
|
/**
|
|
7144
7456
|
*
|
|
7145
7457
|
* @type {Array<AwardModel>}
|
|
@@ -7375,6 +7687,12 @@ export interface HospitalModel {
|
|
|
7375
7687
|
* @memberof HospitalModel
|
|
7376
7688
|
*/
|
|
7377
7689
|
'specialtiesSummerized'?: string | null;
|
|
7690
|
+
/**
|
|
7691
|
+
*
|
|
7692
|
+
* @type {boolean}
|
|
7693
|
+
* @memberof HospitalModel
|
|
7694
|
+
*/
|
|
7695
|
+
'paymentEnabled'?: boolean;
|
|
7378
7696
|
/**
|
|
7379
7697
|
*
|
|
7380
7698
|
* @type {Array<AwardModel>}
|
|
@@ -7429,7 +7747,31 @@ export interface HospitalModel {
|
|
|
7429
7747
|
* @memberof HospitalModel
|
|
7430
7748
|
*/
|
|
7431
7749
|
'languageCode'?: string | null;
|
|
7432
|
-
|
|
7750
|
+
/**
|
|
7751
|
+
*
|
|
7752
|
+
* @type {string}
|
|
7753
|
+
* @memberof HospitalModel
|
|
7754
|
+
*/
|
|
7755
|
+
'contactTel'?: string | null;
|
|
7756
|
+
/**
|
|
7757
|
+
*
|
|
7758
|
+
* @type {string}
|
|
7759
|
+
* @memberof HospitalModel
|
|
7760
|
+
*/
|
|
7761
|
+
'contactEmail'?: string | null;
|
|
7762
|
+
/**
|
|
7763
|
+
*
|
|
7764
|
+
* @type {Array<WorkingDay>}
|
|
7765
|
+
* @memberof HospitalModel
|
|
7766
|
+
*/
|
|
7767
|
+
'workingDays'?: Array<WorkingDay> | null;
|
|
7768
|
+
/**
|
|
7769
|
+
*
|
|
7770
|
+
* @type {Array<SnsHandle>}
|
|
7771
|
+
* @memberof HospitalModel
|
|
7772
|
+
*/
|
|
7773
|
+
'snsHandles'?: Array<SnsHandle> | null;
|
|
7774
|
+
}
|
|
7433
7775
|
/**
|
|
7434
7776
|
*
|
|
7435
7777
|
* @export
|
|
@@ -7586,6 +7928,12 @@ export interface HospitalServiceItemModel {
|
|
|
7586
7928
|
* @memberof HospitalServiceItemModel
|
|
7587
7929
|
*/
|
|
7588
7930
|
'photoThumbnail'?: string | null;
|
|
7931
|
+
/**
|
|
7932
|
+
*
|
|
7933
|
+
* @type {Array<LocalizedUrlModel>}
|
|
7934
|
+
* @memberof HospitalServiceItemModel
|
|
7935
|
+
*/
|
|
7936
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
7589
7937
|
/**
|
|
7590
7938
|
*
|
|
7591
7939
|
* @type {Array<MediaModel>}
|
|
@@ -7755,6 +8103,12 @@ export interface HospitalServiceModel {
|
|
|
7755
8103
|
* @memberof HospitalServiceModel
|
|
7756
8104
|
*/
|
|
7757
8105
|
'photoThumbnail'?: string | null;
|
|
8106
|
+
/**
|
|
8107
|
+
*
|
|
8108
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8109
|
+
* @memberof HospitalServiceModel
|
|
8110
|
+
*/
|
|
8111
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
7758
8112
|
/**
|
|
7759
8113
|
*
|
|
7760
8114
|
* @type {Array<MediaModel>}
|
|
@@ -7818,6 +8172,25 @@ export interface HospitalSimpleItemModel {
|
|
|
7818
8172
|
*/
|
|
7819
8173
|
'confirmed'?: boolean;
|
|
7820
8174
|
}
|
|
8175
|
+
/**
|
|
8176
|
+
*
|
|
8177
|
+
* @export
|
|
8178
|
+
* @interface HospitalSnsHandlesModel
|
|
8179
|
+
*/
|
|
8180
|
+
export interface HospitalSnsHandlesModel {
|
|
8181
|
+
/**
|
|
8182
|
+
*
|
|
8183
|
+
* @type {Array<SnsHandleModel>}
|
|
8184
|
+
* @memberof HospitalSnsHandlesModel
|
|
8185
|
+
*/
|
|
8186
|
+
'items'?: Array<SnsHandleModel> | null;
|
|
8187
|
+
/**
|
|
8188
|
+
*
|
|
8189
|
+
* @type {PagedListMetaData}
|
|
8190
|
+
* @memberof HospitalSnsHandlesModel
|
|
8191
|
+
*/
|
|
8192
|
+
'metaData'?: PagedListMetaData;
|
|
8193
|
+
}
|
|
7821
8194
|
/**
|
|
7822
8195
|
*
|
|
7823
8196
|
* @export
|
|
@@ -8000,6 +8373,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8000
8373
|
* @memberof HospitalSpecialtyItemModel
|
|
8001
8374
|
*/
|
|
8002
8375
|
'backgroundThumbnail'?: string | null;
|
|
8376
|
+
/**
|
|
8377
|
+
*
|
|
8378
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8379
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8380
|
+
*/
|
|
8381
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8003
8382
|
/**
|
|
8004
8383
|
*
|
|
8005
8384
|
* @type {Array<MediaModel>}
|
|
@@ -8157,6 +8536,12 @@ export interface HospitalSpecialtyModel {
|
|
|
8157
8536
|
* @memberof HospitalSpecialtyModel
|
|
8158
8537
|
*/
|
|
8159
8538
|
'backgroundThumbnail'?: string | null;
|
|
8539
|
+
/**
|
|
8540
|
+
*
|
|
8541
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8542
|
+
* @memberof HospitalSpecialtyModel
|
|
8543
|
+
*/
|
|
8544
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8160
8545
|
/**
|
|
8161
8546
|
*
|
|
8162
8547
|
* @type {Array<MediaModel>}
|
|
@@ -8218,6 +8603,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
8218
8603
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
8219
8604
|
*/
|
|
8220
8605
|
'order'?: number;
|
|
8606
|
+
/**
|
|
8607
|
+
*
|
|
8608
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8609
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
8610
|
+
*/
|
|
8611
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8221
8612
|
/**
|
|
8222
8613
|
*
|
|
8223
8614
|
* @type {boolean}
|
|
@@ -8794,6 +9185,61 @@ export declare enum MarketingType {
|
|
|
8794
9185
|
GeneralHealth = "GeneralHealth",
|
|
8795
9186
|
Beauty = "Beauty"
|
|
8796
9187
|
}
|
|
9188
|
+
/**
|
|
9189
|
+
*
|
|
9190
|
+
* @export
|
|
9191
|
+
* @interface Media
|
|
9192
|
+
*/
|
|
9193
|
+
export interface Media {
|
|
9194
|
+
/**
|
|
9195
|
+
*
|
|
9196
|
+
* @type {string}
|
|
9197
|
+
* @memberof Media
|
|
9198
|
+
*/
|
|
9199
|
+
'id'?: string;
|
|
9200
|
+
/**
|
|
9201
|
+
*
|
|
9202
|
+
* @type {MediaType}
|
|
9203
|
+
* @memberof Media
|
|
9204
|
+
*/
|
|
9205
|
+
'mediaType'?: MediaType;
|
|
9206
|
+
/**
|
|
9207
|
+
*
|
|
9208
|
+
* @type {string}
|
|
9209
|
+
* @memberof Media
|
|
9210
|
+
*/
|
|
9211
|
+
'url'?: string | null;
|
|
9212
|
+
/**
|
|
9213
|
+
*
|
|
9214
|
+
* @type {string}
|
|
9215
|
+
* @memberof Media
|
|
9216
|
+
*/
|
|
9217
|
+
'thumbnailUrl'?: string | null;
|
|
9218
|
+
/**
|
|
9219
|
+
*
|
|
9220
|
+
* @type {string}
|
|
9221
|
+
* @memberof Media
|
|
9222
|
+
*/
|
|
9223
|
+
'description'?: string | null;
|
|
9224
|
+
/**
|
|
9225
|
+
*
|
|
9226
|
+
* @type {number}
|
|
9227
|
+
* @memberof Media
|
|
9228
|
+
*/
|
|
9229
|
+
'height'?: number;
|
|
9230
|
+
/**
|
|
9231
|
+
*
|
|
9232
|
+
* @type {number}
|
|
9233
|
+
* @memberof Media
|
|
9234
|
+
*/
|
|
9235
|
+
'width'?: number;
|
|
9236
|
+
/**
|
|
9237
|
+
*
|
|
9238
|
+
* @type {number}
|
|
9239
|
+
* @memberof Media
|
|
9240
|
+
*/
|
|
9241
|
+
'order'?: number;
|
|
9242
|
+
}
|
|
8797
9243
|
/**
|
|
8798
9244
|
*
|
|
8799
9245
|
* @export
|
|
@@ -10109,6 +10555,31 @@ export interface ServiceReviewsModel {
|
|
|
10109
10555
|
*/
|
|
10110
10556
|
'metaData'?: PagedListMetaData;
|
|
10111
10557
|
}
|
|
10558
|
+
/**
|
|
10559
|
+
*
|
|
10560
|
+
* @export
|
|
10561
|
+
* @interface SnsHandle
|
|
10562
|
+
*/
|
|
10563
|
+
export interface SnsHandle {
|
|
10564
|
+
/**
|
|
10565
|
+
*
|
|
10566
|
+
* @type {string}
|
|
10567
|
+
* @memberof SnsHandle
|
|
10568
|
+
*/
|
|
10569
|
+
'id'?: string;
|
|
10570
|
+
/**
|
|
10571
|
+
*
|
|
10572
|
+
* @type {SnsType}
|
|
10573
|
+
* @memberof SnsHandle
|
|
10574
|
+
*/
|
|
10575
|
+
'snsType'?: SnsType;
|
|
10576
|
+
/**
|
|
10577
|
+
*
|
|
10578
|
+
* @type {string}
|
|
10579
|
+
* @memberof SnsHandle
|
|
10580
|
+
*/
|
|
10581
|
+
'handle'?: string | null;
|
|
10582
|
+
}
|
|
10112
10583
|
/**
|
|
10113
10584
|
*
|
|
10114
10585
|
* @export
|
|
@@ -10142,7 +10613,9 @@ export interface SnsHandleModel {
|
|
|
10142
10613
|
export declare enum SnsType {
|
|
10143
10614
|
Twitter = "Twitter",
|
|
10144
10615
|
Facebook = "Facebook",
|
|
10145
|
-
Instagram = "Instagram"
|
|
10616
|
+
Instagram = "Instagram",
|
|
10617
|
+
LinkedIn = "LinkedIn",
|
|
10618
|
+
Youtube = "Youtube"
|
|
10146
10619
|
}
|
|
10147
10620
|
/**
|
|
10148
10621
|
*
|
|
@@ -10263,6 +10736,12 @@ export interface SpecialtyItemModel {
|
|
|
10263
10736
|
* @memberof SpecialtyItemModel
|
|
10264
10737
|
*/
|
|
10265
10738
|
'specialtyTypeName'?: string | null;
|
|
10739
|
+
/**
|
|
10740
|
+
*
|
|
10741
|
+
* @type {Array<LocalizedUrlModel>}
|
|
10742
|
+
* @memberof SpecialtyItemModel
|
|
10743
|
+
*/
|
|
10744
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
10266
10745
|
/**
|
|
10267
10746
|
*
|
|
10268
10747
|
* @type {boolean}
|
|
@@ -10342,6 +10821,12 @@ export interface SpecialtyModel {
|
|
|
10342
10821
|
* @memberof SpecialtyModel
|
|
10343
10822
|
*/
|
|
10344
10823
|
'specialtyTypeName'?: string | null;
|
|
10824
|
+
/**
|
|
10825
|
+
*
|
|
10826
|
+
* @type {Array<LocalizedUrlModel>}
|
|
10827
|
+
* @memberof SpecialtyModel
|
|
10828
|
+
*/
|
|
10829
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
10345
10830
|
/**
|
|
10346
10831
|
*
|
|
10347
10832
|
* @type {boolean}
|
|
@@ -10848,6 +11333,91 @@ export interface TranslateCommand {
|
|
|
10848
11333
|
*/
|
|
10849
11334
|
'isHtml'?: boolean;
|
|
10850
11335
|
}
|
|
11336
|
+
/**
|
|
11337
|
+
*
|
|
11338
|
+
* @export
|
|
11339
|
+
* @interface UpdateAboutUsPageCommand
|
|
11340
|
+
*/
|
|
11341
|
+
export interface UpdateAboutUsPageCommand {
|
|
11342
|
+
/**
|
|
11343
|
+
*
|
|
11344
|
+
* @type {string}
|
|
11345
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11346
|
+
*/
|
|
11347
|
+
'hospitalId'?: string;
|
|
11348
|
+
/**
|
|
11349
|
+
*
|
|
11350
|
+
* @type {string}
|
|
11351
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11352
|
+
*/
|
|
11353
|
+
'hospitalName'?: string | null;
|
|
11354
|
+
/**
|
|
11355
|
+
*
|
|
11356
|
+
* @type {string}
|
|
11357
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11358
|
+
*/
|
|
11359
|
+
'hospitalSlug'?: string | null;
|
|
11360
|
+
/**
|
|
11361
|
+
*
|
|
11362
|
+
* @type {string}
|
|
11363
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11364
|
+
*/
|
|
11365
|
+
'overviewTitle'?: string | null;
|
|
11366
|
+
/**
|
|
11367
|
+
*
|
|
11368
|
+
* @type {string}
|
|
11369
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11370
|
+
*/
|
|
11371
|
+
'overview'?: string | null;
|
|
11372
|
+
/**
|
|
11373
|
+
*
|
|
11374
|
+
* @type {string}
|
|
11375
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11376
|
+
*/
|
|
11377
|
+
'content'?: string | null;
|
|
11378
|
+
/**
|
|
11379
|
+
*
|
|
11380
|
+
* @type {string}
|
|
11381
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11382
|
+
*/
|
|
11383
|
+
'customStyle'?: string | null;
|
|
11384
|
+
/**
|
|
11385
|
+
*
|
|
11386
|
+
* @type {string}
|
|
11387
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11388
|
+
*/
|
|
11389
|
+
'background'?: string | null;
|
|
11390
|
+
/**
|
|
11391
|
+
*
|
|
11392
|
+
* @type {string}
|
|
11393
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11394
|
+
*/
|
|
11395
|
+
'backgroundThumbnail'?: string | null;
|
|
11396
|
+
/**
|
|
11397
|
+
*
|
|
11398
|
+
* @type {string}
|
|
11399
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11400
|
+
*/
|
|
11401
|
+
'languageCode'?: string | null;
|
|
11402
|
+
/**
|
|
11403
|
+
*
|
|
11404
|
+
* @type {boolean}
|
|
11405
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11406
|
+
*/
|
|
11407
|
+
'confirmed'?: boolean;
|
|
11408
|
+
/**
|
|
11409
|
+
*
|
|
11410
|
+
* @type {Array<Media>}
|
|
11411
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11412
|
+
*/
|
|
11413
|
+
'medias'?: Array<Media> | null;
|
|
11414
|
+
/**
|
|
11415
|
+
*
|
|
11416
|
+
* @type {AuditableEntity}
|
|
11417
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11418
|
+
*/
|
|
11419
|
+
'auditableEntity'?: AuditableEntity;
|
|
11420
|
+
}
|
|
10851
11421
|
/**
|
|
10852
11422
|
*
|
|
10853
11423
|
* @export
|
|
@@ -11884,6 +12454,24 @@ export interface UpdateHospitalCommand {
|
|
|
11884
12454
|
* @memberof UpdateHospitalCommand
|
|
11885
12455
|
*/
|
|
11886
12456
|
'websiteUrl'?: string | null;
|
|
12457
|
+
/**
|
|
12458
|
+
*
|
|
12459
|
+
* @type {string}
|
|
12460
|
+
* @memberof UpdateHospitalCommand
|
|
12461
|
+
*/
|
|
12462
|
+
'contactTel'?: string | null;
|
|
12463
|
+
/**
|
|
12464
|
+
*
|
|
12465
|
+
* @type {string}
|
|
12466
|
+
* @memberof UpdateHospitalCommand
|
|
12467
|
+
*/
|
|
12468
|
+
'contactEmail'?: string | null;
|
|
12469
|
+
/**
|
|
12470
|
+
*
|
|
12471
|
+
* @type {boolean}
|
|
12472
|
+
* @memberof UpdateHospitalCommand
|
|
12473
|
+
*/
|
|
12474
|
+
'paymentEnabled'?: boolean;
|
|
11887
12475
|
/**
|
|
11888
12476
|
*
|
|
11889
12477
|
* @type {boolean}
|
|
@@ -12037,6 +12625,25 @@ export interface UpdateHospitalServiceCommand {
|
|
|
12037
12625
|
*/
|
|
12038
12626
|
'medias'?: Array<MediaModel> | null;
|
|
12039
12627
|
}
|
|
12628
|
+
/**
|
|
12629
|
+
*
|
|
12630
|
+
* @export
|
|
12631
|
+
* @interface UpdateHospitalSnsHandleCommand
|
|
12632
|
+
*/
|
|
12633
|
+
export interface UpdateHospitalSnsHandleCommand {
|
|
12634
|
+
/**
|
|
12635
|
+
*
|
|
12636
|
+
* @type {SnsType}
|
|
12637
|
+
* @memberof UpdateHospitalSnsHandleCommand
|
|
12638
|
+
*/
|
|
12639
|
+
'snsType'?: SnsType;
|
|
12640
|
+
/**
|
|
12641
|
+
*
|
|
12642
|
+
* @type {string}
|
|
12643
|
+
* @memberof UpdateHospitalSnsHandleCommand
|
|
12644
|
+
*/
|
|
12645
|
+
'handle'?: string | null;
|
|
12646
|
+
}
|
|
12040
12647
|
/**
|
|
12041
12648
|
*
|
|
12042
12649
|
* @export
|
|
@@ -12125,28 +12732,59 @@ export interface UpdateHospitalSpecialtyCommand {
|
|
|
12125
12732
|
/**
|
|
12126
12733
|
*
|
|
12127
12734
|
* @export
|
|
12128
|
-
* @interface
|
|
12735
|
+
* @interface UpdateHospitalWorkingDayCommand
|
|
12129
12736
|
*/
|
|
12130
|
-
export interface
|
|
12737
|
+
export interface UpdateHospitalWorkingDayCommand {
|
|
12131
12738
|
/**
|
|
12132
12739
|
*
|
|
12133
|
-
* @type {
|
|
12134
|
-
* @memberof
|
|
12740
|
+
* @type {string}
|
|
12741
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
12135
12742
|
*/
|
|
12136
|
-
'
|
|
12743
|
+
'dayOfWeek'?: string | null;
|
|
12744
|
+
/**
|
|
12745
|
+
*
|
|
12746
|
+
* @type {Date}
|
|
12747
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
12748
|
+
*/
|
|
12749
|
+
'timeFrom'?: Date;
|
|
12750
|
+
/**
|
|
12751
|
+
*
|
|
12752
|
+
* @type {Date}
|
|
12753
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
12754
|
+
*/
|
|
12755
|
+
'timeTo'?: Date;
|
|
12137
12756
|
/**
|
|
12138
12757
|
*
|
|
12139
12758
|
* @type {boolean}
|
|
12140
|
-
* @memberof
|
|
12759
|
+
* @memberof UpdateHospitalWorkingDayCommand
|
|
12141
12760
|
*/
|
|
12142
|
-
'
|
|
12761
|
+
'checkHoliday'?: boolean;
|
|
12143
12762
|
}
|
|
12144
12763
|
/**
|
|
12145
12764
|
*
|
|
12146
12765
|
* @export
|
|
12147
|
-
* @interface
|
|
12766
|
+
* @interface UpdateHospitalsSearchIndexCommand
|
|
12148
12767
|
*/
|
|
12149
|
-
export interface
|
|
12768
|
+
export interface UpdateHospitalsSearchIndexCommand {
|
|
12769
|
+
/**
|
|
12770
|
+
*
|
|
12771
|
+
* @type {number}
|
|
12772
|
+
* @memberof UpdateHospitalsSearchIndexCommand
|
|
12773
|
+
*/
|
|
12774
|
+
'batchSize'?: number | null;
|
|
12775
|
+
/**
|
|
12776
|
+
*
|
|
12777
|
+
* @type {boolean}
|
|
12778
|
+
* @memberof UpdateHospitalsSearchIndexCommand
|
|
12779
|
+
*/
|
|
12780
|
+
'reCreate'?: boolean | null;
|
|
12781
|
+
}
|
|
12782
|
+
/**
|
|
12783
|
+
*
|
|
12784
|
+
* @export
|
|
12785
|
+
* @interface UpdateLanguageCommand
|
|
12786
|
+
*/
|
|
12787
|
+
export interface UpdateLanguageCommand {
|
|
12150
12788
|
/**
|
|
12151
12789
|
*
|
|
12152
12790
|
* @type {string}
|
|
@@ -12942,6 +13580,436 @@ export interface WeatherForecast {
|
|
|
12942
13580
|
*/
|
|
12943
13581
|
'summary'?: string | null;
|
|
12944
13582
|
}
|
|
13583
|
+
/**
|
|
13584
|
+
*
|
|
13585
|
+
* @export
|
|
13586
|
+
* @interface WorkingDay
|
|
13587
|
+
*/
|
|
13588
|
+
export interface WorkingDay {
|
|
13589
|
+
/**
|
|
13590
|
+
*
|
|
13591
|
+
* @type {string}
|
|
13592
|
+
* @memberof WorkingDay
|
|
13593
|
+
*/
|
|
13594
|
+
'id'?: string;
|
|
13595
|
+
/**
|
|
13596
|
+
*
|
|
13597
|
+
* @type {string}
|
|
13598
|
+
* @memberof WorkingDay
|
|
13599
|
+
*/
|
|
13600
|
+
'dayOfWeek'?: string | null;
|
|
13601
|
+
/**
|
|
13602
|
+
*
|
|
13603
|
+
* @type {Date}
|
|
13604
|
+
* @memberof WorkingDay
|
|
13605
|
+
*/
|
|
13606
|
+
'timeFrom'?: Date;
|
|
13607
|
+
/**
|
|
13608
|
+
*
|
|
13609
|
+
* @type {Date}
|
|
13610
|
+
* @memberof WorkingDay
|
|
13611
|
+
*/
|
|
13612
|
+
'timeTo'?: Date;
|
|
13613
|
+
/**
|
|
13614
|
+
*
|
|
13615
|
+
* @type {boolean}
|
|
13616
|
+
* @memberof WorkingDay
|
|
13617
|
+
*/
|
|
13618
|
+
'checkHoliday'?: boolean;
|
|
13619
|
+
}
|
|
13620
|
+
/**
|
|
13621
|
+
*
|
|
13622
|
+
* @export
|
|
13623
|
+
* @interface WorkingDayItemModel
|
|
13624
|
+
*/
|
|
13625
|
+
export interface WorkingDayItemModel {
|
|
13626
|
+
/**
|
|
13627
|
+
*
|
|
13628
|
+
* @type {string}
|
|
13629
|
+
* @memberof WorkingDayItemModel
|
|
13630
|
+
*/
|
|
13631
|
+
'id'?: string;
|
|
13632
|
+
/**
|
|
13633
|
+
*
|
|
13634
|
+
* @type {string}
|
|
13635
|
+
* @memberof WorkingDayItemModel
|
|
13636
|
+
*/
|
|
13637
|
+
'dayOfWeek'?: string | null;
|
|
13638
|
+
/**
|
|
13639
|
+
*
|
|
13640
|
+
* @type {Date}
|
|
13641
|
+
* @memberof WorkingDayItemModel
|
|
13642
|
+
*/
|
|
13643
|
+
'timeFrom'?: Date;
|
|
13644
|
+
/**
|
|
13645
|
+
*
|
|
13646
|
+
* @type {Date}
|
|
13647
|
+
* @memberof WorkingDayItemModel
|
|
13648
|
+
*/
|
|
13649
|
+
'timeTo'?: Date;
|
|
13650
|
+
/**
|
|
13651
|
+
*
|
|
13652
|
+
* @type {boolean}
|
|
13653
|
+
* @memberof WorkingDayItemModel
|
|
13654
|
+
*/
|
|
13655
|
+
'checkHoliday'?: boolean;
|
|
13656
|
+
}
|
|
13657
|
+
/**
|
|
13658
|
+
*
|
|
13659
|
+
* @export
|
|
13660
|
+
* @interface WorkingDayModel
|
|
13661
|
+
*/
|
|
13662
|
+
export interface WorkingDayModel {
|
|
13663
|
+
/**
|
|
13664
|
+
*
|
|
13665
|
+
* @type {string}
|
|
13666
|
+
* @memberof WorkingDayModel
|
|
13667
|
+
*/
|
|
13668
|
+
'id'?: string;
|
|
13669
|
+
/**
|
|
13670
|
+
*
|
|
13671
|
+
* @type {string}
|
|
13672
|
+
* @memberof WorkingDayModel
|
|
13673
|
+
*/
|
|
13674
|
+
'dayOfWeek'?: string | null;
|
|
13675
|
+
/**
|
|
13676
|
+
*
|
|
13677
|
+
* @type {Date}
|
|
13678
|
+
* @memberof WorkingDayModel
|
|
13679
|
+
*/
|
|
13680
|
+
'timeFrom'?: Date;
|
|
13681
|
+
/**
|
|
13682
|
+
*
|
|
13683
|
+
* @type {Date}
|
|
13684
|
+
* @memberof WorkingDayModel
|
|
13685
|
+
*/
|
|
13686
|
+
'timeTo'?: Date;
|
|
13687
|
+
/**
|
|
13688
|
+
*
|
|
13689
|
+
* @type {boolean}
|
|
13690
|
+
* @memberof WorkingDayModel
|
|
13691
|
+
*/
|
|
13692
|
+
'checkHoliday'?: boolean;
|
|
13693
|
+
}
|
|
13694
|
+
/**
|
|
13695
|
+
*
|
|
13696
|
+
* @export
|
|
13697
|
+
* @interface WorkingDaysModel
|
|
13698
|
+
*/
|
|
13699
|
+
export interface WorkingDaysModel {
|
|
13700
|
+
/**
|
|
13701
|
+
*
|
|
13702
|
+
* @type {Array<WorkingDayItemModel>}
|
|
13703
|
+
* @memberof WorkingDaysModel
|
|
13704
|
+
*/
|
|
13705
|
+
'items'?: Array<WorkingDayItemModel> | null;
|
|
13706
|
+
/**
|
|
13707
|
+
*
|
|
13708
|
+
* @type {PagedListMetaData}
|
|
13709
|
+
* @memberof WorkingDaysModel
|
|
13710
|
+
*/
|
|
13711
|
+
'metaData'?: PagedListMetaData;
|
|
13712
|
+
}
|
|
13713
|
+
/**
|
|
13714
|
+
* AboutUsApi - axios parameter creator
|
|
13715
|
+
* @export
|
|
13716
|
+
*/
|
|
13717
|
+
export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13718
|
+
/**
|
|
13719
|
+
*
|
|
13720
|
+
* @summary Get all AboutUsList.
|
|
13721
|
+
* @param {string} [hospitalId]
|
|
13722
|
+
* @param {string} [hospitalName]
|
|
13723
|
+
* @param {string} [hospitalSlug]
|
|
13724
|
+
* @param {string} [overviewTitle]
|
|
13725
|
+
* @param {string} [normalizedOverviewTitle]
|
|
13726
|
+
* @param {string} [overview]
|
|
13727
|
+
* @param {string} [content]
|
|
13728
|
+
* @param {string} [customStyle]
|
|
13729
|
+
* @param {string} [background]
|
|
13730
|
+
* @param {string} [backgroundThumbnail]
|
|
13731
|
+
* @param {string} [languageCode]
|
|
13732
|
+
* @param {boolean} [returnDefaultValue]
|
|
13733
|
+
* @param {boolean} [confirmed]
|
|
13734
|
+
* @param {number} [page]
|
|
13735
|
+
* @param {number} [limit]
|
|
13736
|
+
* @param {Date} [lastRetrieved]
|
|
13737
|
+
* @param {*} [options] Override http request option.
|
|
13738
|
+
* @throws {RequiredError}
|
|
13739
|
+
*/
|
|
13740
|
+
apiV1AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13741
|
+
/**
|
|
13742
|
+
*
|
|
13743
|
+
* @summary Delete AboutUs.
|
|
13744
|
+
* @param {string} hospitalId
|
|
13745
|
+
* @param {*} [options] Override http request option.
|
|
13746
|
+
* @throws {RequiredError}
|
|
13747
|
+
*/
|
|
13748
|
+
apiV1AboutusHospitalIdDelete: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13749
|
+
/**
|
|
13750
|
+
*
|
|
13751
|
+
* @summary Get AboutUs.
|
|
13752
|
+
* @param {string} hospitalId
|
|
13753
|
+
* @param {string} [languageCode]
|
|
13754
|
+
* @param {boolean} [returnDefaultValue]
|
|
13755
|
+
* @param {*} [options] Override http request option.
|
|
13756
|
+
* @throws {RequiredError}
|
|
13757
|
+
*/
|
|
13758
|
+
apiV1AboutusHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13759
|
+
/**
|
|
13760
|
+
*
|
|
13761
|
+
* @summary Update AboutUs.
|
|
13762
|
+
* @param {string} hospitalId
|
|
13763
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13764
|
+
* @param {*} [options] Override http request option.
|
|
13765
|
+
* @throws {RequiredError}
|
|
13766
|
+
*/
|
|
13767
|
+
apiV1AboutusHospitalIdPut: (hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13768
|
+
/**
|
|
13769
|
+
*
|
|
13770
|
+
* @summary Create AboutUs.
|
|
13771
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13772
|
+
* @param {*} [options] Override http request option.
|
|
13773
|
+
* @throws {RequiredError}
|
|
13774
|
+
*/
|
|
13775
|
+
apiV1AboutusPost: (createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13776
|
+
/**
|
|
13777
|
+
*
|
|
13778
|
+
* @param {string} slug
|
|
13779
|
+
* @param {string} [languageCode]
|
|
13780
|
+
* @param {boolean} [returnDefaultValue]
|
|
13781
|
+
* @param {*} [options] Override http request option.
|
|
13782
|
+
* @throws {RequiredError}
|
|
13783
|
+
*/
|
|
13784
|
+
apiV1AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13785
|
+
};
|
|
13786
|
+
/**
|
|
13787
|
+
* AboutUsApi - functional programming interface
|
|
13788
|
+
* @export
|
|
13789
|
+
*/
|
|
13790
|
+
export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
|
|
13791
|
+
/**
|
|
13792
|
+
*
|
|
13793
|
+
* @summary Get all AboutUsList.
|
|
13794
|
+
* @param {string} [hospitalId]
|
|
13795
|
+
* @param {string} [hospitalName]
|
|
13796
|
+
* @param {string} [hospitalSlug]
|
|
13797
|
+
* @param {string} [overviewTitle]
|
|
13798
|
+
* @param {string} [normalizedOverviewTitle]
|
|
13799
|
+
* @param {string} [overview]
|
|
13800
|
+
* @param {string} [content]
|
|
13801
|
+
* @param {string} [customStyle]
|
|
13802
|
+
* @param {string} [background]
|
|
13803
|
+
* @param {string} [backgroundThumbnail]
|
|
13804
|
+
* @param {string} [languageCode]
|
|
13805
|
+
* @param {boolean} [returnDefaultValue]
|
|
13806
|
+
* @param {boolean} [confirmed]
|
|
13807
|
+
* @param {number} [page]
|
|
13808
|
+
* @param {number} [limit]
|
|
13809
|
+
* @param {Date} [lastRetrieved]
|
|
13810
|
+
* @param {*} [options] Override http request option.
|
|
13811
|
+
* @throws {RequiredError}
|
|
13812
|
+
*/
|
|
13813
|
+
apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
|
|
13814
|
+
/**
|
|
13815
|
+
*
|
|
13816
|
+
* @summary Delete AboutUs.
|
|
13817
|
+
* @param {string} hospitalId
|
|
13818
|
+
* @param {*} [options] Override http request option.
|
|
13819
|
+
* @throws {RequiredError}
|
|
13820
|
+
*/
|
|
13821
|
+
apiV1AboutusHospitalIdDelete(hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
13822
|
+
/**
|
|
13823
|
+
*
|
|
13824
|
+
* @summary Get AboutUs.
|
|
13825
|
+
* @param {string} hospitalId
|
|
13826
|
+
* @param {string} [languageCode]
|
|
13827
|
+
* @param {boolean} [returnDefaultValue]
|
|
13828
|
+
* @param {*} [options] Override http request option.
|
|
13829
|
+
* @throws {RequiredError}
|
|
13830
|
+
*/
|
|
13831
|
+
apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13832
|
+
/**
|
|
13833
|
+
*
|
|
13834
|
+
* @summary Update AboutUs.
|
|
13835
|
+
* @param {string} hospitalId
|
|
13836
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13837
|
+
* @param {*} [options] Override http request option.
|
|
13838
|
+
* @throws {RequiredError}
|
|
13839
|
+
*/
|
|
13840
|
+
apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13841
|
+
/**
|
|
13842
|
+
*
|
|
13843
|
+
* @summary Create AboutUs.
|
|
13844
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13845
|
+
* @param {*} [options] Override http request option.
|
|
13846
|
+
* @throws {RequiredError}
|
|
13847
|
+
*/
|
|
13848
|
+
apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13849
|
+
/**
|
|
13850
|
+
*
|
|
13851
|
+
* @param {string} slug
|
|
13852
|
+
* @param {string} [languageCode]
|
|
13853
|
+
* @param {boolean} [returnDefaultValue]
|
|
13854
|
+
* @param {*} [options] Override http request option.
|
|
13855
|
+
* @throws {RequiredError}
|
|
13856
|
+
*/
|
|
13857
|
+
apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13858
|
+
};
|
|
13859
|
+
/**
|
|
13860
|
+
* AboutUsApi - factory interface
|
|
13861
|
+
* @export
|
|
13862
|
+
*/
|
|
13863
|
+
export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13864
|
+
/**
|
|
13865
|
+
*
|
|
13866
|
+
* @summary Get all AboutUsList.
|
|
13867
|
+
* @param {string} [hospitalId]
|
|
13868
|
+
* @param {string} [hospitalName]
|
|
13869
|
+
* @param {string} [hospitalSlug]
|
|
13870
|
+
* @param {string} [overviewTitle]
|
|
13871
|
+
* @param {string} [normalizedOverviewTitle]
|
|
13872
|
+
* @param {string} [overview]
|
|
13873
|
+
* @param {string} [content]
|
|
13874
|
+
* @param {string} [customStyle]
|
|
13875
|
+
* @param {string} [background]
|
|
13876
|
+
* @param {string} [backgroundThumbnail]
|
|
13877
|
+
* @param {string} [languageCode]
|
|
13878
|
+
* @param {boolean} [returnDefaultValue]
|
|
13879
|
+
* @param {boolean} [confirmed]
|
|
13880
|
+
* @param {number} [page]
|
|
13881
|
+
* @param {number} [limit]
|
|
13882
|
+
* @param {Date} [lastRetrieved]
|
|
13883
|
+
* @param {*} [options] Override http request option.
|
|
13884
|
+
* @throws {RequiredError}
|
|
13885
|
+
*/
|
|
13886
|
+
apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
|
|
13887
|
+
/**
|
|
13888
|
+
*
|
|
13889
|
+
* @summary Delete AboutUs.
|
|
13890
|
+
* @param {string} hospitalId
|
|
13891
|
+
* @param {*} [options] Override http request option.
|
|
13892
|
+
* @throws {RequiredError}
|
|
13893
|
+
*/
|
|
13894
|
+
apiV1AboutusHospitalIdDelete(hospitalId: string, options?: any): AxiosPromise<boolean>;
|
|
13895
|
+
/**
|
|
13896
|
+
*
|
|
13897
|
+
* @summary Get AboutUs.
|
|
13898
|
+
* @param {string} hospitalId
|
|
13899
|
+
* @param {string} [languageCode]
|
|
13900
|
+
* @param {boolean} [returnDefaultValue]
|
|
13901
|
+
* @param {*} [options] Override http request option.
|
|
13902
|
+
* @throws {RequiredError}
|
|
13903
|
+
*/
|
|
13904
|
+
apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13905
|
+
/**
|
|
13906
|
+
*
|
|
13907
|
+
* @summary Update AboutUs.
|
|
13908
|
+
* @param {string} hospitalId
|
|
13909
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13910
|
+
* @param {*} [options] Override http request option.
|
|
13911
|
+
* @throws {RequiredError}
|
|
13912
|
+
*/
|
|
13913
|
+
apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13914
|
+
/**
|
|
13915
|
+
*
|
|
13916
|
+
* @summary Create AboutUs.
|
|
13917
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13918
|
+
* @param {*} [options] Override http request option.
|
|
13919
|
+
* @throws {RequiredError}
|
|
13920
|
+
*/
|
|
13921
|
+
apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13922
|
+
/**
|
|
13923
|
+
*
|
|
13924
|
+
* @param {string} slug
|
|
13925
|
+
* @param {string} [languageCode]
|
|
13926
|
+
* @param {boolean} [returnDefaultValue]
|
|
13927
|
+
* @param {*} [options] Override http request option.
|
|
13928
|
+
* @throws {RequiredError}
|
|
13929
|
+
*/
|
|
13930
|
+
apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13931
|
+
};
|
|
13932
|
+
/**
|
|
13933
|
+
* AboutUsApi - object-oriented interface
|
|
13934
|
+
* @export
|
|
13935
|
+
* @class AboutUsApi
|
|
13936
|
+
* @extends {BaseAPI}
|
|
13937
|
+
*/
|
|
13938
|
+
export declare class AboutUsApi extends BaseAPI {
|
|
13939
|
+
/**
|
|
13940
|
+
*
|
|
13941
|
+
* @summary Get all AboutUsList.
|
|
13942
|
+
* @param {string} [hospitalId]
|
|
13943
|
+
* @param {string} [hospitalName]
|
|
13944
|
+
* @param {string} [hospitalSlug]
|
|
13945
|
+
* @param {string} [overviewTitle]
|
|
13946
|
+
* @param {string} [normalizedOverviewTitle]
|
|
13947
|
+
* @param {string} [overview]
|
|
13948
|
+
* @param {string} [content]
|
|
13949
|
+
* @param {string} [customStyle]
|
|
13950
|
+
* @param {string} [background]
|
|
13951
|
+
* @param {string} [backgroundThumbnail]
|
|
13952
|
+
* @param {string} [languageCode]
|
|
13953
|
+
* @param {boolean} [returnDefaultValue]
|
|
13954
|
+
* @param {boolean} [confirmed]
|
|
13955
|
+
* @param {number} [page]
|
|
13956
|
+
* @param {number} [limit]
|
|
13957
|
+
* @param {Date} [lastRetrieved]
|
|
13958
|
+
* @param {*} [options] Override http request option.
|
|
13959
|
+
* @throws {RequiredError}
|
|
13960
|
+
* @memberof AboutUsApi
|
|
13961
|
+
*/
|
|
13962
|
+
apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, overviewTitle?: string, normalizedOverviewTitle?: string, overview?: string, content?: string, customStyle?: string, background?: string, backgroundThumbnail?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel>>;
|
|
13963
|
+
/**
|
|
13964
|
+
*
|
|
13965
|
+
* @summary Delete AboutUs.
|
|
13966
|
+
* @param {string} hospitalId
|
|
13967
|
+
* @param {*} [options] Override http request option.
|
|
13968
|
+
* @throws {RequiredError}
|
|
13969
|
+
* @memberof AboutUsApi
|
|
13970
|
+
*/
|
|
13971
|
+
apiV1AboutusHospitalIdDelete(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
13972
|
+
/**
|
|
13973
|
+
*
|
|
13974
|
+
* @summary Get AboutUs.
|
|
13975
|
+
* @param {string} hospitalId
|
|
13976
|
+
* @param {string} [languageCode]
|
|
13977
|
+
* @param {boolean} [returnDefaultValue]
|
|
13978
|
+
* @param {*} [options] Override http request option.
|
|
13979
|
+
* @throws {RequiredError}
|
|
13980
|
+
* @memberof AboutUsApi
|
|
13981
|
+
*/
|
|
13982
|
+
apiV1AboutusHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
13983
|
+
/**
|
|
13984
|
+
*
|
|
13985
|
+
* @summary Update AboutUs.
|
|
13986
|
+
* @param {string} hospitalId
|
|
13987
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13988
|
+
* @param {*} [options] Override http request option.
|
|
13989
|
+
* @throws {RequiredError}
|
|
13990
|
+
* @memberof AboutUsApi
|
|
13991
|
+
*/
|
|
13992
|
+
apiV1AboutusHospitalIdPut(hospitalId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
13993
|
+
/**
|
|
13994
|
+
*
|
|
13995
|
+
* @summary Create AboutUs.
|
|
13996
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13997
|
+
* @param {*} [options] Override http request option.
|
|
13998
|
+
* @throws {RequiredError}
|
|
13999
|
+
* @memberof AboutUsApi
|
|
14000
|
+
*/
|
|
14001
|
+
apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
14002
|
+
/**
|
|
14003
|
+
*
|
|
14004
|
+
* @param {string} slug
|
|
14005
|
+
* @param {string} [languageCode]
|
|
14006
|
+
* @param {boolean} [returnDefaultValue]
|
|
14007
|
+
* @param {*} [options] Override http request option.
|
|
14008
|
+
* @throws {RequiredError}
|
|
14009
|
+
* @memberof AboutUsApi
|
|
14010
|
+
*/
|
|
14011
|
+
apiV1AboutusSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
14012
|
+
}
|
|
12945
14013
|
/**
|
|
12946
14014
|
* AccreditationsApi - axios parameter creator
|
|
12947
14015
|
* @export
|
|
@@ -13396,6 +14464,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13396
14464
|
* @param {string} [hospitalName]
|
|
13397
14465
|
* @param {string} [countryId]
|
|
13398
14466
|
* @param {string} [tag]
|
|
14467
|
+
* @param {string} [exceptArticleId]
|
|
13399
14468
|
* @param {string} [exceptHospitalId]
|
|
13400
14469
|
* @param {string} [contributorId]
|
|
13401
14470
|
* @param {string} [languageCode]
|
|
@@ -13407,7 +14476,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
13407
14476
|
* @param {*} [options] Override http request option.
|
|
13408
14477
|
* @throws {RequiredError}
|
|
13409
14478
|
*/
|
|
13410
|
-
apiV1ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14479
|
+
apiV1ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13411
14480
|
/**
|
|
13412
14481
|
*
|
|
13413
14482
|
* @summary Create a Article.
|
|
@@ -13666,6 +14735,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13666
14735
|
* @param {string} [hospitalName]
|
|
13667
14736
|
* @param {string} [countryId]
|
|
13668
14737
|
* @param {string} [tag]
|
|
14738
|
+
* @param {string} [exceptArticleId]
|
|
13669
14739
|
* @param {string} [exceptHospitalId]
|
|
13670
14740
|
* @param {string} [contributorId]
|
|
13671
14741
|
* @param {string} [languageCode]
|
|
@@ -13677,7 +14747,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13677
14747
|
* @param {*} [options] Override http request option.
|
|
13678
14748
|
* @throws {RequiredError}
|
|
13679
14749
|
*/
|
|
13680
|
-
apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
|
|
14750
|
+
apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
|
|
13681
14751
|
/**
|
|
13682
14752
|
*
|
|
13683
14753
|
* @summary Create a Article.
|
|
@@ -13936,6 +15006,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
13936
15006
|
* @param {string} [hospitalName]
|
|
13937
15007
|
* @param {string} [countryId]
|
|
13938
15008
|
* @param {string} [tag]
|
|
15009
|
+
* @param {string} [exceptArticleId]
|
|
13939
15010
|
* @param {string} [exceptHospitalId]
|
|
13940
15011
|
* @param {string} [contributorId]
|
|
13941
15012
|
* @param {string} [languageCode]
|
|
@@ -13947,7 +15018,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
13947
15018
|
* @param {*} [options] Override http request option.
|
|
13948
15019
|
* @throws {RequiredError}
|
|
13949
15020
|
*/
|
|
13950
|
-
apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
|
|
15021
|
+
apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
|
|
13951
15022
|
/**
|
|
13952
15023
|
*
|
|
13953
15024
|
* @summary Create a Article.
|
|
@@ -14230,6 +15301,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14230
15301
|
* @param {string} [hospitalName]
|
|
14231
15302
|
* @param {string} [countryId]
|
|
14232
15303
|
* @param {string} [tag]
|
|
15304
|
+
* @param {string} [exceptArticleId]
|
|
14233
15305
|
* @param {string} [exceptHospitalId]
|
|
14234
15306
|
* @param {string} [contributorId]
|
|
14235
15307
|
* @param {string} [languageCode]
|
|
@@ -14242,7 +15314,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
14242
15314
|
* @throws {RequiredError}
|
|
14243
15315
|
* @memberof ArticlesApi
|
|
14244
15316
|
*/
|
|
14245
|
-
apiV1ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
|
|
15317
|
+
apiV1ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
|
|
14246
15318
|
/**
|
|
14247
15319
|
*
|
|
14248
15320
|
* @summary Create a Article.
|
|
@@ -20169,13 +21241,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
20169
21241
|
* @param {string} [languageCode]
|
|
20170
21242
|
* @param {Array<string>} [ids]
|
|
20171
21243
|
* @param {boolean} [returnDefaultValue]
|
|
21244
|
+
* @param {boolean} [paymentEnabled]
|
|
20172
21245
|
* @param {number} [page]
|
|
20173
21246
|
* @param {number} [limit]
|
|
20174
21247
|
* @param {Date} [lastRetrieved]
|
|
20175
21248
|
* @param {*} [options] Override http request option.
|
|
20176
21249
|
* @throws {RequiredError}
|
|
20177
21250
|
*/
|
|
20178
|
-
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21251
|
+
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20179
21252
|
/**
|
|
20180
21253
|
*
|
|
20181
21254
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20395,6 +21468,58 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
20395
21468
|
* @throws {RequiredError}
|
|
20396
21469
|
*/
|
|
20397
21470
|
apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21471
|
+
/**
|
|
21472
|
+
*
|
|
21473
|
+
* @summary Get all HospitalHandles.
|
|
21474
|
+
* @param {string} hospitalId
|
|
21475
|
+
* @param {string} [hospitalId2]
|
|
21476
|
+
* @param {string} [id]
|
|
21477
|
+
* @param {SnsType} [snsType]
|
|
21478
|
+
* @param {string} [handle]
|
|
21479
|
+
* @param {number} [page]
|
|
21480
|
+
* @param {number} [limit]
|
|
21481
|
+
* @param {Date} [lastRetrieved]
|
|
21482
|
+
* @param {*} [options] Override http request option.
|
|
21483
|
+
* @throws {RequiredError}
|
|
21484
|
+
*/
|
|
21485
|
+
apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21486
|
+
/**
|
|
21487
|
+
*
|
|
21488
|
+
* @summary Delete HospitalHandle.
|
|
21489
|
+
* @param {string} hospitalId
|
|
21490
|
+
* @param {string} handleId
|
|
21491
|
+
* @param {*} [options] Override http request option.
|
|
21492
|
+
* @throws {RequiredError}
|
|
21493
|
+
*/
|
|
21494
|
+
apiV1HospitalsHospitalIdHandlesHandleIdDelete: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21495
|
+
/**
|
|
21496
|
+
*
|
|
21497
|
+
* @summary Get HospitalHandle.
|
|
21498
|
+
* @param {string} hospitalId
|
|
21499
|
+
* @param {string} handleId
|
|
21500
|
+
* @param {*} [options] Override http request option.
|
|
21501
|
+
* @throws {RequiredError}
|
|
21502
|
+
*/
|
|
21503
|
+
apiV1HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21504
|
+
/**
|
|
21505
|
+
*
|
|
21506
|
+
* @summary Update HospitalHandle.
|
|
21507
|
+
* @param {string} hospitalId
|
|
21508
|
+
* @param {string} handleId
|
|
21509
|
+
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
21510
|
+
* @param {*} [options] Override http request option.
|
|
21511
|
+
* @throws {RequiredError}
|
|
21512
|
+
*/
|
|
21513
|
+
apiV1HospitalsHospitalIdHandlesHandleIdPut: (hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21514
|
+
/**
|
|
21515
|
+
*
|
|
21516
|
+
* @summary Get HospitalHandle.
|
|
21517
|
+
* @param {string} hospitalId
|
|
21518
|
+
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
21519
|
+
* @param {*} [options] Override http request option.
|
|
21520
|
+
* @throws {RequiredError}
|
|
21521
|
+
*/
|
|
21522
|
+
apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20398
21523
|
/**
|
|
20399
21524
|
*
|
|
20400
21525
|
* @summary Get all HospitalMedias.
|
|
@@ -20624,49 +21749,103 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
20624
21749
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20625
21750
|
/**
|
|
20626
21751
|
*
|
|
20627
|
-
* @summary Get HospitalServiceMedia.
|
|
21752
|
+
* @summary Get HospitalServiceMedia.
|
|
21753
|
+
* @param {string} hospitalId
|
|
21754
|
+
* @param {string} specialtyId
|
|
21755
|
+
* @param {string} serviceId
|
|
21756
|
+
* @param {string} mediaId
|
|
21757
|
+
* @param {*} [options] Override http request option.
|
|
21758
|
+
* @throws {RequiredError}
|
|
21759
|
+
*/
|
|
21760
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21761
|
+
/**
|
|
21762
|
+
*
|
|
21763
|
+
* @summary Update HospitalServiceMedia.
|
|
21764
|
+
* @param {string} hospitalId
|
|
21765
|
+
* @param {string} specialtyId
|
|
21766
|
+
* @param {string} serviceId
|
|
21767
|
+
* @param {string} mediaId
|
|
21768
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
21769
|
+
* @param {*} [options] Override http request option.
|
|
21770
|
+
* @throws {RequiredError}
|
|
21771
|
+
*/
|
|
21772
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21773
|
+
/**
|
|
21774
|
+
*
|
|
21775
|
+
* @summary Create HospitalServiceMedia.
|
|
21776
|
+
* @param {string} hospitalId
|
|
21777
|
+
* @param {string} specialtyId
|
|
21778
|
+
* @param {string} serviceId
|
|
21779
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
21780
|
+
* @param {*} [options] Override http request option.
|
|
21781
|
+
* @throws {RequiredError}
|
|
21782
|
+
*/
|
|
21783
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21784
|
+
/**
|
|
21785
|
+
*
|
|
21786
|
+
* @summary Update HospitalService.
|
|
21787
|
+
* @param {string} hospitalId
|
|
21788
|
+
* @param {string} specialtyId
|
|
21789
|
+
* @param {string} serviceId
|
|
21790
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
21791
|
+
* @param {*} [options] Override http request option.
|
|
21792
|
+
* @throws {RequiredError}
|
|
21793
|
+
*/
|
|
21794
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21795
|
+
/**
|
|
21796
|
+
*
|
|
21797
|
+
* @summary Get all HospitalWorkingDays.
|
|
21798
|
+
* @param {string} hospitalId
|
|
21799
|
+
* @param {string} [hospitalId2]
|
|
21800
|
+
* @param {string} [id]
|
|
21801
|
+
* @param {string} [dayOfWeek]
|
|
21802
|
+
* @param {Date} [timeFrom]
|
|
21803
|
+
* @param {Date} [timeTo]
|
|
21804
|
+
* @param {boolean} [checkHoliday]
|
|
21805
|
+
* @param {number} [page]
|
|
21806
|
+
* @param {number} [limit]
|
|
21807
|
+
* @param {Date} [lastRetrieved]
|
|
21808
|
+
* @param {*} [options] Override http request option.
|
|
21809
|
+
* @throws {RequiredError}
|
|
21810
|
+
*/
|
|
21811
|
+
apiV1HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21812
|
+
/**
|
|
21813
|
+
*
|
|
21814
|
+
* @summary Create HospitalWorkingDay.
|
|
20628
21815
|
* @param {string} hospitalId
|
|
20629
|
-
* @param {
|
|
20630
|
-
* @param {string} serviceId
|
|
20631
|
-
* @param {string} mediaId
|
|
21816
|
+
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
20632
21817
|
* @param {*} [options] Override http request option.
|
|
20633
21818
|
* @throws {RequiredError}
|
|
20634
21819
|
*/
|
|
20635
|
-
|
|
21820
|
+
apiV1HospitalsHospitalIdWorkingdaysPost: (hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20636
21821
|
/**
|
|
20637
21822
|
*
|
|
20638
|
-
* @summary
|
|
21823
|
+
* @summary Delete HospitalWorkingDay.
|
|
20639
21824
|
* @param {string} hospitalId
|
|
20640
|
-
* @param {string}
|
|
20641
|
-
* @param {string} serviceId
|
|
20642
|
-
* @param {string} mediaId
|
|
20643
|
-
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
21825
|
+
* @param {string} workingDayId
|
|
20644
21826
|
* @param {*} [options] Override http request option.
|
|
20645
21827
|
* @throws {RequiredError}
|
|
20646
21828
|
*/
|
|
20647
|
-
|
|
21829
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20648
21830
|
/**
|
|
20649
21831
|
*
|
|
20650
|
-
* @summary
|
|
21832
|
+
* @summary Get HospitalWorkingDay.
|
|
20651
21833
|
* @param {string} hospitalId
|
|
20652
|
-
* @param {string}
|
|
20653
|
-
* @param {string} serviceId
|
|
20654
|
-
* @param {CreateMediaCommand} [createMediaCommand]
|
|
21834
|
+
* @param {string} workingDayId
|
|
20655
21835
|
* @param {*} [options] Override http request option.
|
|
20656
21836
|
* @throws {RequiredError}
|
|
20657
21837
|
*/
|
|
20658
|
-
|
|
21838
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20659
21839
|
/**
|
|
20660
21840
|
*
|
|
20661
|
-
* @summary Update
|
|
21841
|
+
* @summary Update HospitalWorkingDay.
|
|
20662
21842
|
* @param {string} hospitalId
|
|
20663
|
-
* @param {string}
|
|
20664
|
-
* @param {
|
|
20665
|
-
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
21843
|
+
* @param {string} workingDayId
|
|
21844
|
+
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
20666
21845
|
* @param {*} [options] Override http request option.
|
|
20667
21846
|
* @throws {RequiredError}
|
|
20668
21847
|
*/
|
|
20669
|
-
|
|
21848
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut: (hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20670
21849
|
/**
|
|
20671
21850
|
*
|
|
20672
21851
|
* @summary Create Hospital.
|
|
@@ -20691,13 +21870,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
20691
21870
|
* @param {string} [languageCode]
|
|
20692
21871
|
* @param {Array<string>} [ids]
|
|
20693
21872
|
* @param {boolean} [returnDefaultValue]
|
|
21873
|
+
* @param {boolean} [paymentEnabled]
|
|
20694
21874
|
* @param {number} [page]
|
|
20695
21875
|
* @param {number} [limit]
|
|
20696
21876
|
* @param {Date} [lastRetrieved]
|
|
20697
21877
|
* @param {*} [options] Override http request option.
|
|
20698
21878
|
* @throws {RequiredError}
|
|
20699
21879
|
*/
|
|
20700
|
-
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21880
|
+
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20701
21881
|
/**
|
|
20702
21882
|
*
|
|
20703
21883
|
* @param {string} slug
|
|
@@ -20729,13 +21909,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
20729
21909
|
* @param {string} [languageCode]
|
|
20730
21910
|
* @param {Array<string>} [ids]
|
|
20731
21911
|
* @param {boolean} [returnDefaultValue]
|
|
21912
|
+
* @param {boolean} [paymentEnabled]
|
|
20732
21913
|
* @param {number} [page]
|
|
20733
21914
|
* @param {number} [limit]
|
|
20734
21915
|
* @param {Date} [lastRetrieved]
|
|
20735
21916
|
* @param {*} [options] Override http request option.
|
|
20736
21917
|
* @throws {RequiredError}
|
|
20737
21918
|
*/
|
|
20738
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
21919
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
20739
21920
|
/**
|
|
20740
21921
|
*
|
|
20741
21922
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20955,6 +22136,58 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
20955
22136
|
* @throws {RequiredError}
|
|
20956
22137
|
*/
|
|
20957
22138
|
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
22139
|
+
/**
|
|
22140
|
+
*
|
|
22141
|
+
* @summary Get all HospitalHandles.
|
|
22142
|
+
* @param {string} hospitalId
|
|
22143
|
+
* @param {string} [hospitalId2]
|
|
22144
|
+
* @param {string} [id]
|
|
22145
|
+
* @param {SnsType} [snsType]
|
|
22146
|
+
* @param {string} [handle]
|
|
22147
|
+
* @param {number} [page]
|
|
22148
|
+
* @param {number} [limit]
|
|
22149
|
+
* @param {Date} [lastRetrieved]
|
|
22150
|
+
* @param {*} [options] Override http request option.
|
|
22151
|
+
* @throws {RequiredError}
|
|
22152
|
+
*/
|
|
22153
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
|
|
22154
|
+
/**
|
|
22155
|
+
*
|
|
22156
|
+
* @summary Delete HospitalHandle.
|
|
22157
|
+
* @param {string} hospitalId
|
|
22158
|
+
* @param {string} handleId
|
|
22159
|
+
* @param {*} [options] Override http request option.
|
|
22160
|
+
* @throws {RequiredError}
|
|
22161
|
+
*/
|
|
22162
|
+
apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22163
|
+
/**
|
|
22164
|
+
*
|
|
22165
|
+
* @summary Get HospitalHandle.
|
|
22166
|
+
* @param {string} hospitalId
|
|
22167
|
+
* @param {string} handleId
|
|
22168
|
+
* @param {*} [options] Override http request option.
|
|
22169
|
+
* @throws {RequiredError}
|
|
22170
|
+
*/
|
|
22171
|
+
apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
22172
|
+
/**
|
|
22173
|
+
*
|
|
22174
|
+
* @summary Update HospitalHandle.
|
|
22175
|
+
* @param {string} hospitalId
|
|
22176
|
+
* @param {string} handleId
|
|
22177
|
+
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
22178
|
+
* @param {*} [options] Override http request option.
|
|
22179
|
+
* @throws {RequiredError}
|
|
22180
|
+
*/
|
|
22181
|
+
apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
22182
|
+
/**
|
|
22183
|
+
*
|
|
22184
|
+
* @summary Get HospitalHandle.
|
|
22185
|
+
* @param {string} hospitalId
|
|
22186
|
+
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
22187
|
+
* @param {*} [options] Override http request option.
|
|
22188
|
+
* @throws {RequiredError}
|
|
22189
|
+
*/
|
|
22190
|
+
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
20958
22191
|
/**
|
|
20959
22192
|
*
|
|
20960
22193
|
* @summary Get all HospitalMedias.
|
|
@@ -21227,6 +22460,60 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
21227
22460
|
* @throws {RequiredError}
|
|
21228
22461
|
*/
|
|
21229
22462
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22463
|
+
/**
|
|
22464
|
+
*
|
|
22465
|
+
* @summary Get all HospitalWorkingDays.
|
|
22466
|
+
* @param {string} hospitalId
|
|
22467
|
+
* @param {string} [hospitalId2]
|
|
22468
|
+
* @param {string} [id]
|
|
22469
|
+
* @param {string} [dayOfWeek]
|
|
22470
|
+
* @param {Date} [timeFrom]
|
|
22471
|
+
* @param {Date} [timeTo]
|
|
22472
|
+
* @param {boolean} [checkHoliday]
|
|
22473
|
+
* @param {number} [page]
|
|
22474
|
+
* @param {number} [limit]
|
|
22475
|
+
* @param {Date} [lastRetrieved]
|
|
22476
|
+
* @param {*} [options] Override http request option.
|
|
22477
|
+
* @throws {RequiredError}
|
|
22478
|
+
*/
|
|
22479
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
|
|
22480
|
+
/**
|
|
22481
|
+
*
|
|
22482
|
+
* @summary Create HospitalWorkingDay.
|
|
22483
|
+
* @param {string} hospitalId
|
|
22484
|
+
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
22485
|
+
* @param {*} [options] Override http request option.
|
|
22486
|
+
* @throws {RequiredError}
|
|
22487
|
+
*/
|
|
22488
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
22489
|
+
/**
|
|
22490
|
+
*
|
|
22491
|
+
* @summary Delete HospitalWorkingDay.
|
|
22492
|
+
* @param {string} hospitalId
|
|
22493
|
+
* @param {string} workingDayId
|
|
22494
|
+
* @param {*} [options] Override http request option.
|
|
22495
|
+
* @throws {RequiredError}
|
|
22496
|
+
*/
|
|
22497
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22498
|
+
/**
|
|
22499
|
+
*
|
|
22500
|
+
* @summary Get HospitalWorkingDay.
|
|
22501
|
+
* @param {string} hospitalId
|
|
22502
|
+
* @param {string} workingDayId
|
|
22503
|
+
* @param {*} [options] Override http request option.
|
|
22504
|
+
* @throws {RequiredError}
|
|
22505
|
+
*/
|
|
22506
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
22507
|
+
/**
|
|
22508
|
+
*
|
|
22509
|
+
* @summary Update HospitalWorkingDay.
|
|
22510
|
+
* @param {string} hospitalId
|
|
22511
|
+
* @param {string} workingDayId
|
|
22512
|
+
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
22513
|
+
* @param {*} [options] Override http request option.
|
|
22514
|
+
* @throws {RequiredError}
|
|
22515
|
+
*/
|
|
22516
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
21230
22517
|
/**
|
|
21231
22518
|
*
|
|
21232
22519
|
* @summary Create Hospital.
|
|
@@ -21251,13 +22538,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
21251
22538
|
* @param {string} [languageCode]
|
|
21252
22539
|
* @param {Array<string>} [ids]
|
|
21253
22540
|
* @param {boolean} [returnDefaultValue]
|
|
22541
|
+
* @param {boolean} [paymentEnabled]
|
|
21254
22542
|
* @param {number} [page]
|
|
21255
22543
|
* @param {number} [limit]
|
|
21256
22544
|
* @param {Date} [lastRetrieved]
|
|
21257
22545
|
* @param {*} [options] Override http request option.
|
|
21258
22546
|
* @throws {RequiredError}
|
|
21259
22547
|
*/
|
|
21260
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
22548
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
21261
22549
|
/**
|
|
21262
22550
|
*
|
|
21263
22551
|
* @param {string} slug
|
|
@@ -21289,13 +22577,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
21289
22577
|
* @param {string} [languageCode]
|
|
21290
22578
|
* @param {Array<string>} [ids]
|
|
21291
22579
|
* @param {boolean} [returnDefaultValue]
|
|
22580
|
+
* @param {boolean} [paymentEnabled]
|
|
21292
22581
|
* @param {number} [page]
|
|
21293
22582
|
* @param {number} [limit]
|
|
21294
22583
|
* @param {Date} [lastRetrieved]
|
|
21295
22584
|
* @param {*} [options] Override http request option.
|
|
21296
22585
|
* @throws {RequiredError}
|
|
21297
22586
|
*/
|
|
21298
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
22587
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
21299
22588
|
/**
|
|
21300
22589
|
*
|
|
21301
22590
|
* @summary Delete HospitalAccreditation.
|
|
@@ -21515,6 +22804,58 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
21515
22804
|
* @throws {RequiredError}
|
|
21516
22805
|
*/
|
|
21517
22806
|
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
22807
|
+
/**
|
|
22808
|
+
*
|
|
22809
|
+
* @summary Get all HospitalHandles.
|
|
22810
|
+
* @param {string} hospitalId
|
|
22811
|
+
* @param {string} [hospitalId2]
|
|
22812
|
+
* @param {string} [id]
|
|
22813
|
+
* @param {SnsType} [snsType]
|
|
22814
|
+
* @param {string} [handle]
|
|
22815
|
+
* @param {number} [page]
|
|
22816
|
+
* @param {number} [limit]
|
|
22817
|
+
* @param {Date} [lastRetrieved]
|
|
22818
|
+
* @param {*} [options] Override http request option.
|
|
22819
|
+
* @throws {RequiredError}
|
|
22820
|
+
*/
|
|
22821
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
|
|
22822
|
+
/**
|
|
22823
|
+
*
|
|
22824
|
+
* @summary Delete HospitalHandle.
|
|
22825
|
+
* @param {string} hospitalId
|
|
22826
|
+
* @param {string} handleId
|
|
22827
|
+
* @param {*} [options] Override http request option.
|
|
22828
|
+
* @throws {RequiredError}
|
|
22829
|
+
*/
|
|
22830
|
+
apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: any): AxiosPromise<boolean>;
|
|
22831
|
+
/**
|
|
22832
|
+
*
|
|
22833
|
+
* @summary Get HospitalHandle.
|
|
22834
|
+
* @param {string} hospitalId
|
|
22835
|
+
* @param {string} handleId
|
|
22836
|
+
* @param {*} [options] Override http request option.
|
|
22837
|
+
* @throws {RequiredError}
|
|
22838
|
+
*/
|
|
22839
|
+
apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
22840
|
+
/**
|
|
22841
|
+
*
|
|
22842
|
+
* @summary Update HospitalHandle.
|
|
22843
|
+
* @param {string} hospitalId
|
|
22844
|
+
* @param {string} handleId
|
|
22845
|
+
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
22846
|
+
* @param {*} [options] Override http request option.
|
|
22847
|
+
* @throws {RequiredError}
|
|
22848
|
+
*/
|
|
22849
|
+
apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
22850
|
+
/**
|
|
22851
|
+
*
|
|
22852
|
+
* @summary Get HospitalHandle.
|
|
22853
|
+
* @param {string} hospitalId
|
|
22854
|
+
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
22855
|
+
* @param {*} [options] Override http request option.
|
|
22856
|
+
* @throws {RequiredError}
|
|
22857
|
+
*/
|
|
22858
|
+
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
21518
22859
|
/**
|
|
21519
22860
|
*
|
|
21520
22861
|
* @summary Get all HospitalMedias.
|
|
@@ -21787,6 +23128,60 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
21787
23128
|
* @throws {RequiredError}
|
|
21788
23129
|
*/
|
|
21789
23130
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
23131
|
+
/**
|
|
23132
|
+
*
|
|
23133
|
+
* @summary Get all HospitalWorkingDays.
|
|
23134
|
+
* @param {string} hospitalId
|
|
23135
|
+
* @param {string} [hospitalId2]
|
|
23136
|
+
* @param {string} [id]
|
|
23137
|
+
* @param {string} [dayOfWeek]
|
|
23138
|
+
* @param {Date} [timeFrom]
|
|
23139
|
+
* @param {Date} [timeTo]
|
|
23140
|
+
* @param {boolean} [checkHoliday]
|
|
23141
|
+
* @param {number} [page]
|
|
23142
|
+
* @param {number} [limit]
|
|
23143
|
+
* @param {Date} [lastRetrieved]
|
|
23144
|
+
* @param {*} [options] Override http request option.
|
|
23145
|
+
* @throws {RequiredError}
|
|
23146
|
+
*/
|
|
23147
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
|
|
23148
|
+
/**
|
|
23149
|
+
*
|
|
23150
|
+
* @summary Create HospitalWorkingDay.
|
|
23151
|
+
* @param {string} hospitalId
|
|
23152
|
+
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
23153
|
+
* @param {*} [options] Override http request option.
|
|
23154
|
+
* @throws {RequiredError}
|
|
23155
|
+
*/
|
|
23156
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
23157
|
+
/**
|
|
23158
|
+
*
|
|
23159
|
+
* @summary Delete HospitalWorkingDay.
|
|
23160
|
+
* @param {string} hospitalId
|
|
23161
|
+
* @param {string} workingDayId
|
|
23162
|
+
* @param {*} [options] Override http request option.
|
|
23163
|
+
* @throws {RequiredError}
|
|
23164
|
+
*/
|
|
23165
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<boolean>;
|
|
23166
|
+
/**
|
|
23167
|
+
*
|
|
23168
|
+
* @summary Get HospitalWorkingDay.
|
|
23169
|
+
* @param {string} hospitalId
|
|
23170
|
+
* @param {string} workingDayId
|
|
23171
|
+
* @param {*} [options] Override http request option.
|
|
23172
|
+
* @throws {RequiredError}
|
|
23173
|
+
*/
|
|
23174
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<WorkingDayModel>;
|
|
23175
|
+
/**
|
|
23176
|
+
*
|
|
23177
|
+
* @summary Update HospitalWorkingDay.
|
|
23178
|
+
* @param {string} hospitalId
|
|
23179
|
+
* @param {string} workingDayId
|
|
23180
|
+
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
23181
|
+
* @param {*} [options] Override http request option.
|
|
23182
|
+
* @throws {RequiredError}
|
|
23183
|
+
*/
|
|
23184
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDayModel>;
|
|
21790
23185
|
/**
|
|
21791
23186
|
*
|
|
21792
23187
|
* @summary Create Hospital.
|
|
@@ -21811,13 +23206,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
21811
23206
|
* @param {string} [languageCode]
|
|
21812
23207
|
* @param {Array<string>} [ids]
|
|
21813
23208
|
* @param {boolean} [returnDefaultValue]
|
|
23209
|
+
* @param {boolean} [paymentEnabled]
|
|
21814
23210
|
* @param {number} [page]
|
|
21815
23211
|
* @param {number} [limit]
|
|
21816
23212
|
* @param {Date} [lastRetrieved]
|
|
21817
23213
|
* @param {*} [options] Override http request option.
|
|
21818
23214
|
* @throws {RequiredError}
|
|
21819
23215
|
*/
|
|
21820
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
23216
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
21821
23217
|
/**
|
|
21822
23218
|
*
|
|
21823
23219
|
* @param {string} slug
|
|
@@ -21851,6 +23247,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
21851
23247
|
* @param {string} [languageCode]
|
|
21852
23248
|
* @param {Array<string>} [ids]
|
|
21853
23249
|
* @param {boolean} [returnDefaultValue]
|
|
23250
|
+
* @param {boolean} [paymentEnabled]
|
|
21854
23251
|
* @param {number} [page]
|
|
21855
23252
|
* @param {number} [limit]
|
|
21856
23253
|
* @param {Date} [lastRetrieved]
|
|
@@ -21858,7 +23255,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
21858
23255
|
* @throws {RequiredError}
|
|
21859
23256
|
* @memberof HospitalsApi
|
|
21860
23257
|
*/
|
|
21861
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
23258
|
+
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
21862
23259
|
/**
|
|
21863
23260
|
*
|
|
21864
23261
|
* @summary Delete HospitalAccreditation.
|
|
@@ -22099,6 +23496,63 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
22099
23496
|
* @memberof HospitalsApi
|
|
22100
23497
|
*/
|
|
22101
23498
|
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
23499
|
+
/**
|
|
23500
|
+
*
|
|
23501
|
+
* @summary Get all HospitalHandles.
|
|
23502
|
+
* @param {string} hospitalId
|
|
23503
|
+
* @param {string} [hospitalId2]
|
|
23504
|
+
* @param {string} [id]
|
|
23505
|
+
* @param {SnsType} [snsType]
|
|
23506
|
+
* @param {string} [handle]
|
|
23507
|
+
* @param {number} [page]
|
|
23508
|
+
* @param {number} [limit]
|
|
23509
|
+
* @param {Date} [lastRetrieved]
|
|
23510
|
+
* @param {*} [options] Override http request option.
|
|
23511
|
+
* @throws {RequiredError}
|
|
23512
|
+
* @memberof HospitalsApi
|
|
23513
|
+
*/
|
|
23514
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel>>;
|
|
23515
|
+
/**
|
|
23516
|
+
*
|
|
23517
|
+
* @summary Delete HospitalHandle.
|
|
23518
|
+
* @param {string} hospitalId
|
|
23519
|
+
* @param {string} handleId
|
|
23520
|
+
* @param {*} [options] Override http request option.
|
|
23521
|
+
* @throws {RequiredError}
|
|
23522
|
+
* @memberof HospitalsApi
|
|
23523
|
+
*/
|
|
23524
|
+
apiV1HospitalsHospitalIdHandlesHandleIdDelete(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23525
|
+
/**
|
|
23526
|
+
*
|
|
23527
|
+
* @summary Get HospitalHandle.
|
|
23528
|
+
* @param {string} hospitalId
|
|
23529
|
+
* @param {string} handleId
|
|
23530
|
+
* @param {*} [options] Override http request option.
|
|
23531
|
+
* @throws {RequiredError}
|
|
23532
|
+
* @memberof HospitalsApi
|
|
23533
|
+
*/
|
|
23534
|
+
apiV1HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
23535
|
+
/**
|
|
23536
|
+
*
|
|
23537
|
+
* @summary Update HospitalHandle.
|
|
23538
|
+
* @param {string} hospitalId
|
|
23539
|
+
* @param {string} handleId
|
|
23540
|
+
* @param {UpdateHospitalSnsHandleCommand} [updateHospitalSnsHandleCommand]
|
|
23541
|
+
* @param {*} [options] Override http request option.
|
|
23542
|
+
* @throws {RequiredError}
|
|
23543
|
+
* @memberof HospitalsApi
|
|
23544
|
+
*/
|
|
23545
|
+
apiV1HospitalsHospitalIdHandlesHandleIdPut(hospitalId: string, handleId: string, updateHospitalSnsHandleCommand?: UpdateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
23546
|
+
/**
|
|
23547
|
+
*
|
|
23548
|
+
* @summary Get HospitalHandle.
|
|
23549
|
+
* @param {string} hospitalId
|
|
23550
|
+
* @param {CreateHospitalSnsHandleCommand} [createHospitalSnsHandleCommand]
|
|
23551
|
+
* @param {*} [options] Override http request option.
|
|
23552
|
+
* @throws {RequiredError}
|
|
23553
|
+
* @memberof HospitalsApi
|
|
23554
|
+
*/
|
|
23555
|
+
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
22102
23556
|
/**
|
|
22103
23557
|
*
|
|
22104
23558
|
* @summary Get all HospitalMedias.
|
|
@@ -22393,6 +23847,65 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
22393
23847
|
* @memberof HospitalsApi
|
|
22394
23848
|
*/
|
|
22395
23849
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
23850
|
+
/**
|
|
23851
|
+
*
|
|
23852
|
+
* @summary Get all HospitalWorkingDays.
|
|
23853
|
+
* @param {string} hospitalId
|
|
23854
|
+
* @param {string} [hospitalId2]
|
|
23855
|
+
* @param {string} [id]
|
|
23856
|
+
* @param {string} [dayOfWeek]
|
|
23857
|
+
* @param {Date} [timeFrom]
|
|
23858
|
+
* @param {Date} [timeTo]
|
|
23859
|
+
* @param {boolean} [checkHoliday]
|
|
23860
|
+
* @param {number} [page]
|
|
23861
|
+
* @param {number} [limit]
|
|
23862
|
+
* @param {Date} [lastRetrieved]
|
|
23863
|
+
* @param {*} [options] Override http request option.
|
|
23864
|
+
* @throws {RequiredError}
|
|
23865
|
+
* @memberof HospitalsApi
|
|
23866
|
+
*/
|
|
23867
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel>>;
|
|
23868
|
+
/**
|
|
23869
|
+
*
|
|
23870
|
+
* @summary Create HospitalWorkingDay.
|
|
23871
|
+
* @param {string} hospitalId
|
|
23872
|
+
* @param {CreateHospitalWorkingDayCommand} [createHospitalWorkingDayCommand]
|
|
23873
|
+
* @param {*} [options] Override http request option.
|
|
23874
|
+
* @throws {RequiredError}
|
|
23875
|
+
* @memberof HospitalsApi
|
|
23876
|
+
*/
|
|
23877
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
23878
|
+
/**
|
|
23879
|
+
*
|
|
23880
|
+
* @summary Delete HospitalWorkingDay.
|
|
23881
|
+
* @param {string} hospitalId
|
|
23882
|
+
* @param {string} workingDayId
|
|
23883
|
+
* @param {*} [options] Override http request option.
|
|
23884
|
+
* @throws {RequiredError}
|
|
23885
|
+
* @memberof HospitalsApi
|
|
23886
|
+
*/
|
|
23887
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdDelete(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23888
|
+
/**
|
|
23889
|
+
*
|
|
23890
|
+
* @summary Get HospitalWorkingDay.
|
|
23891
|
+
* @param {string} hospitalId
|
|
23892
|
+
* @param {string} workingDayId
|
|
23893
|
+
* @param {*} [options] Override http request option.
|
|
23894
|
+
* @throws {RequiredError}
|
|
23895
|
+
* @memberof HospitalsApi
|
|
23896
|
+
*/
|
|
23897
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
|
|
23898
|
+
/**
|
|
23899
|
+
*
|
|
23900
|
+
* @summary Update HospitalWorkingDay.
|
|
23901
|
+
* @param {string} hospitalId
|
|
23902
|
+
* @param {string} workingDayId
|
|
23903
|
+
* @param {UpdateHospitalWorkingDayCommand} [updateHospitalWorkingDayCommand]
|
|
23904
|
+
* @param {*} [options] Override http request option.
|
|
23905
|
+
* @throws {RequiredError}
|
|
23906
|
+
* @memberof HospitalsApi
|
|
23907
|
+
*/
|
|
23908
|
+
apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
|
|
22396
23909
|
/**
|
|
22397
23910
|
*
|
|
22398
23911
|
* @summary Create Hospital.
|
|
@@ -22418,6 +23931,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
22418
23931
|
* @param {string} [languageCode]
|
|
22419
23932
|
* @param {Array<string>} [ids]
|
|
22420
23933
|
* @param {boolean} [returnDefaultValue]
|
|
23934
|
+
* @param {boolean} [paymentEnabled]
|
|
22421
23935
|
* @param {number} [page]
|
|
22422
23936
|
* @param {number} [limit]
|
|
22423
23937
|
* @param {Date} [lastRetrieved]
|
|
@@ -22425,7 +23939,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
22425
23939
|
* @throws {RequiredError}
|
|
22426
23940
|
* @memberof HospitalsApi
|
|
22427
23941
|
*/
|
|
22428
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
|
|
23942
|
+
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
|
|
22429
23943
|
/**
|
|
22430
23944
|
*
|
|
22431
23945
|
* @param {string} slug
|