ch-admin-api-client-typescript 2.9.4 → 2.9.5
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 +696 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +688 -1
- package/package.json +1 -1
- package/src/api.ts +1026 -8
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
|
|
@@ -8794,6 +9050,61 @@ export declare enum MarketingType {
|
|
|
8794
9050
|
GeneralHealth = "GeneralHealth",
|
|
8795
9051
|
Beauty = "Beauty"
|
|
8796
9052
|
}
|
|
9053
|
+
/**
|
|
9054
|
+
*
|
|
9055
|
+
* @export
|
|
9056
|
+
* @interface Media
|
|
9057
|
+
*/
|
|
9058
|
+
export interface Media {
|
|
9059
|
+
/**
|
|
9060
|
+
*
|
|
9061
|
+
* @type {string}
|
|
9062
|
+
* @memberof Media
|
|
9063
|
+
*/
|
|
9064
|
+
'id'?: string;
|
|
9065
|
+
/**
|
|
9066
|
+
*
|
|
9067
|
+
* @type {MediaType}
|
|
9068
|
+
* @memberof Media
|
|
9069
|
+
*/
|
|
9070
|
+
'mediaType'?: MediaType;
|
|
9071
|
+
/**
|
|
9072
|
+
*
|
|
9073
|
+
* @type {string}
|
|
9074
|
+
* @memberof Media
|
|
9075
|
+
*/
|
|
9076
|
+
'url'?: string | null;
|
|
9077
|
+
/**
|
|
9078
|
+
*
|
|
9079
|
+
* @type {string}
|
|
9080
|
+
* @memberof Media
|
|
9081
|
+
*/
|
|
9082
|
+
'thumbnailUrl'?: string | null;
|
|
9083
|
+
/**
|
|
9084
|
+
*
|
|
9085
|
+
* @type {string}
|
|
9086
|
+
* @memberof Media
|
|
9087
|
+
*/
|
|
9088
|
+
'description'?: string | null;
|
|
9089
|
+
/**
|
|
9090
|
+
*
|
|
9091
|
+
* @type {number}
|
|
9092
|
+
* @memberof Media
|
|
9093
|
+
*/
|
|
9094
|
+
'height'?: number;
|
|
9095
|
+
/**
|
|
9096
|
+
*
|
|
9097
|
+
* @type {number}
|
|
9098
|
+
* @memberof Media
|
|
9099
|
+
*/
|
|
9100
|
+
'width'?: number;
|
|
9101
|
+
/**
|
|
9102
|
+
*
|
|
9103
|
+
* @type {number}
|
|
9104
|
+
* @memberof Media
|
|
9105
|
+
*/
|
|
9106
|
+
'order'?: number;
|
|
9107
|
+
}
|
|
8797
9108
|
/**
|
|
8798
9109
|
*
|
|
8799
9110
|
* @export
|
|
@@ -10848,6 +11159,91 @@ export interface TranslateCommand {
|
|
|
10848
11159
|
*/
|
|
10849
11160
|
'isHtml'?: boolean;
|
|
10850
11161
|
}
|
|
11162
|
+
/**
|
|
11163
|
+
*
|
|
11164
|
+
* @export
|
|
11165
|
+
* @interface UpdateAboutUsPageCommand
|
|
11166
|
+
*/
|
|
11167
|
+
export interface UpdateAboutUsPageCommand {
|
|
11168
|
+
/**
|
|
11169
|
+
*
|
|
11170
|
+
* @type {string}
|
|
11171
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11172
|
+
*/
|
|
11173
|
+
'hospitalId'?: string;
|
|
11174
|
+
/**
|
|
11175
|
+
*
|
|
11176
|
+
* @type {string}
|
|
11177
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11178
|
+
*/
|
|
11179
|
+
'hospitalName'?: string | null;
|
|
11180
|
+
/**
|
|
11181
|
+
*
|
|
11182
|
+
* @type {string}
|
|
11183
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11184
|
+
*/
|
|
11185
|
+
'hospitalSlug'?: string | null;
|
|
11186
|
+
/**
|
|
11187
|
+
*
|
|
11188
|
+
* @type {string}
|
|
11189
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11190
|
+
*/
|
|
11191
|
+
'overviewTitle'?: string | null;
|
|
11192
|
+
/**
|
|
11193
|
+
*
|
|
11194
|
+
* @type {string}
|
|
11195
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11196
|
+
*/
|
|
11197
|
+
'overview'?: string | null;
|
|
11198
|
+
/**
|
|
11199
|
+
*
|
|
11200
|
+
* @type {string}
|
|
11201
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11202
|
+
*/
|
|
11203
|
+
'content'?: string | null;
|
|
11204
|
+
/**
|
|
11205
|
+
*
|
|
11206
|
+
* @type {string}
|
|
11207
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11208
|
+
*/
|
|
11209
|
+
'customStyle'?: string | null;
|
|
11210
|
+
/**
|
|
11211
|
+
*
|
|
11212
|
+
* @type {string}
|
|
11213
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11214
|
+
*/
|
|
11215
|
+
'background'?: string | null;
|
|
11216
|
+
/**
|
|
11217
|
+
*
|
|
11218
|
+
* @type {string}
|
|
11219
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11220
|
+
*/
|
|
11221
|
+
'backgroundThumbnail'?: string | null;
|
|
11222
|
+
/**
|
|
11223
|
+
*
|
|
11224
|
+
* @type {string}
|
|
11225
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11226
|
+
*/
|
|
11227
|
+
'languageCode'?: string | null;
|
|
11228
|
+
/**
|
|
11229
|
+
*
|
|
11230
|
+
* @type {boolean}
|
|
11231
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11232
|
+
*/
|
|
11233
|
+
'confirmed'?: boolean;
|
|
11234
|
+
/**
|
|
11235
|
+
*
|
|
11236
|
+
* @type {Array<Media>}
|
|
11237
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11238
|
+
*/
|
|
11239
|
+
'medias'?: Array<Media> | null;
|
|
11240
|
+
/**
|
|
11241
|
+
*
|
|
11242
|
+
* @type {AuditableEntity}
|
|
11243
|
+
* @memberof UpdateAboutUsPageCommand
|
|
11244
|
+
*/
|
|
11245
|
+
'auditableEntity'?: AuditableEntity;
|
|
11246
|
+
}
|
|
10851
11247
|
/**
|
|
10852
11248
|
*
|
|
10853
11249
|
* @export
|
|
@@ -12942,6 +13338,306 @@ export interface WeatherForecast {
|
|
|
12942
13338
|
*/
|
|
12943
13339
|
'summary'?: string | null;
|
|
12944
13340
|
}
|
|
13341
|
+
/**
|
|
13342
|
+
* AboutUsApi - axios parameter creator
|
|
13343
|
+
* @export
|
|
13344
|
+
*/
|
|
13345
|
+
export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13346
|
+
/**
|
|
13347
|
+
*
|
|
13348
|
+
* @summary Delete AboutUs.
|
|
13349
|
+
* @param {string} aboutUsId
|
|
13350
|
+
* @param {*} [options] Override http request option.
|
|
13351
|
+
* @throws {RequiredError}
|
|
13352
|
+
*/
|
|
13353
|
+
apiV1AboutusAboutUsIdDelete: (aboutUsId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13354
|
+
/**
|
|
13355
|
+
*
|
|
13356
|
+
* @summary Get AboutUs.
|
|
13357
|
+
* @param {string} aboutUsId
|
|
13358
|
+
* @param {string} [languageCode]
|
|
13359
|
+
* @param {boolean} [returnDefaultValue]
|
|
13360
|
+
* @param {*} [options] Override http request option.
|
|
13361
|
+
* @throws {RequiredError}
|
|
13362
|
+
*/
|
|
13363
|
+
apiV1AboutusAboutUsIdGet: (aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13364
|
+
/**
|
|
13365
|
+
*
|
|
13366
|
+
* @summary Update AboutUs.
|
|
13367
|
+
* @param {string} aboutUsId
|
|
13368
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13369
|
+
* @param {*} [options] Override http request option.
|
|
13370
|
+
* @throws {RequiredError}
|
|
13371
|
+
*/
|
|
13372
|
+
apiV1AboutusAboutUsIdPut: (aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13373
|
+
/**
|
|
13374
|
+
*
|
|
13375
|
+
* @summary Get all AboutUsList.
|
|
13376
|
+
* @param {string} [hospitalId]
|
|
13377
|
+
* @param {string} [hospitalName]
|
|
13378
|
+
* @param {string} [hospitalSlug]
|
|
13379
|
+
* @param {string} [overviewTitle]
|
|
13380
|
+
* @param {string} [normalizedOverviewTitle]
|
|
13381
|
+
* @param {string} [overview]
|
|
13382
|
+
* @param {string} [content]
|
|
13383
|
+
* @param {string} [customStyle]
|
|
13384
|
+
* @param {string} [background]
|
|
13385
|
+
* @param {string} [backgroundThumbnail]
|
|
13386
|
+
* @param {string} [languageCode]
|
|
13387
|
+
* @param {boolean} [returnDefaultValue]
|
|
13388
|
+
* @param {boolean} [confirmed]
|
|
13389
|
+
* @param {number} [page]
|
|
13390
|
+
* @param {number} [limit]
|
|
13391
|
+
* @param {Date} [lastRetrieved]
|
|
13392
|
+
* @param {*} [options] Override http request option.
|
|
13393
|
+
* @throws {RequiredError}
|
|
13394
|
+
*/
|
|
13395
|
+
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>;
|
|
13396
|
+
/**
|
|
13397
|
+
*
|
|
13398
|
+
* @summary Create AboutUs.
|
|
13399
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13400
|
+
* @param {*} [options] Override http request option.
|
|
13401
|
+
* @throws {RequiredError}
|
|
13402
|
+
*/
|
|
13403
|
+
apiV1AboutusPost: (createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13404
|
+
/**
|
|
13405
|
+
*
|
|
13406
|
+
* @param {string} slug
|
|
13407
|
+
* @param {string} [languageCode]
|
|
13408
|
+
* @param {boolean} [returnDefaultValue]
|
|
13409
|
+
* @param {*} [options] Override http request option.
|
|
13410
|
+
* @throws {RequiredError}
|
|
13411
|
+
*/
|
|
13412
|
+
apiV1AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13413
|
+
};
|
|
13414
|
+
/**
|
|
13415
|
+
* AboutUsApi - functional programming interface
|
|
13416
|
+
* @export
|
|
13417
|
+
*/
|
|
13418
|
+
export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
|
|
13419
|
+
/**
|
|
13420
|
+
*
|
|
13421
|
+
* @summary Delete AboutUs.
|
|
13422
|
+
* @param {string} aboutUsId
|
|
13423
|
+
* @param {*} [options] Override http request option.
|
|
13424
|
+
* @throws {RequiredError}
|
|
13425
|
+
*/
|
|
13426
|
+
apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
13427
|
+
/**
|
|
13428
|
+
*
|
|
13429
|
+
* @summary Get AboutUs.
|
|
13430
|
+
* @param {string} aboutUsId
|
|
13431
|
+
* @param {string} [languageCode]
|
|
13432
|
+
* @param {boolean} [returnDefaultValue]
|
|
13433
|
+
* @param {*} [options] Override http request option.
|
|
13434
|
+
* @throws {RequiredError}
|
|
13435
|
+
*/
|
|
13436
|
+
apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13437
|
+
/**
|
|
13438
|
+
*
|
|
13439
|
+
* @summary Update AboutUs.
|
|
13440
|
+
* @param {string} aboutUsId
|
|
13441
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13442
|
+
* @param {*} [options] Override http request option.
|
|
13443
|
+
* @throws {RequiredError}
|
|
13444
|
+
*/
|
|
13445
|
+
apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13446
|
+
/**
|
|
13447
|
+
*
|
|
13448
|
+
* @summary Get all AboutUsList.
|
|
13449
|
+
* @param {string} [hospitalId]
|
|
13450
|
+
* @param {string} [hospitalName]
|
|
13451
|
+
* @param {string} [hospitalSlug]
|
|
13452
|
+
* @param {string} [overviewTitle]
|
|
13453
|
+
* @param {string} [normalizedOverviewTitle]
|
|
13454
|
+
* @param {string} [overview]
|
|
13455
|
+
* @param {string} [content]
|
|
13456
|
+
* @param {string} [customStyle]
|
|
13457
|
+
* @param {string} [background]
|
|
13458
|
+
* @param {string} [backgroundThumbnail]
|
|
13459
|
+
* @param {string} [languageCode]
|
|
13460
|
+
* @param {boolean} [returnDefaultValue]
|
|
13461
|
+
* @param {boolean} [confirmed]
|
|
13462
|
+
* @param {number} [page]
|
|
13463
|
+
* @param {number} [limit]
|
|
13464
|
+
* @param {Date} [lastRetrieved]
|
|
13465
|
+
* @param {*} [options] Override http request option.
|
|
13466
|
+
* @throws {RequiredError}
|
|
13467
|
+
*/
|
|
13468
|
+
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>>;
|
|
13469
|
+
/**
|
|
13470
|
+
*
|
|
13471
|
+
* @summary Create AboutUs.
|
|
13472
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13473
|
+
* @param {*} [options] Override http request option.
|
|
13474
|
+
* @throws {RequiredError}
|
|
13475
|
+
*/
|
|
13476
|
+
apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13477
|
+
/**
|
|
13478
|
+
*
|
|
13479
|
+
* @param {string} slug
|
|
13480
|
+
* @param {string} [languageCode]
|
|
13481
|
+
* @param {boolean} [returnDefaultValue]
|
|
13482
|
+
* @param {*} [options] Override http request option.
|
|
13483
|
+
* @throws {RequiredError}
|
|
13484
|
+
*/
|
|
13485
|
+
apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
13486
|
+
};
|
|
13487
|
+
/**
|
|
13488
|
+
* AboutUsApi - factory interface
|
|
13489
|
+
* @export
|
|
13490
|
+
*/
|
|
13491
|
+
export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
13492
|
+
/**
|
|
13493
|
+
*
|
|
13494
|
+
* @summary Delete AboutUs.
|
|
13495
|
+
* @param {string} aboutUsId
|
|
13496
|
+
* @param {*} [options] Override http request option.
|
|
13497
|
+
* @throws {RequiredError}
|
|
13498
|
+
*/
|
|
13499
|
+
apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: any): AxiosPromise<boolean>;
|
|
13500
|
+
/**
|
|
13501
|
+
*
|
|
13502
|
+
* @summary Get AboutUs.
|
|
13503
|
+
* @param {string} aboutUsId
|
|
13504
|
+
* @param {string} [languageCode]
|
|
13505
|
+
* @param {boolean} [returnDefaultValue]
|
|
13506
|
+
* @param {*} [options] Override http request option.
|
|
13507
|
+
* @throws {RequiredError}
|
|
13508
|
+
*/
|
|
13509
|
+
apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13510
|
+
/**
|
|
13511
|
+
*
|
|
13512
|
+
* @summary Update AboutUs.
|
|
13513
|
+
* @param {string} aboutUsId
|
|
13514
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13515
|
+
* @param {*} [options] Override http request option.
|
|
13516
|
+
* @throws {RequiredError}
|
|
13517
|
+
*/
|
|
13518
|
+
apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13519
|
+
/**
|
|
13520
|
+
*
|
|
13521
|
+
* @summary Get all AboutUsList.
|
|
13522
|
+
* @param {string} [hospitalId]
|
|
13523
|
+
* @param {string} [hospitalName]
|
|
13524
|
+
* @param {string} [hospitalSlug]
|
|
13525
|
+
* @param {string} [overviewTitle]
|
|
13526
|
+
* @param {string} [normalizedOverviewTitle]
|
|
13527
|
+
* @param {string} [overview]
|
|
13528
|
+
* @param {string} [content]
|
|
13529
|
+
* @param {string} [customStyle]
|
|
13530
|
+
* @param {string} [background]
|
|
13531
|
+
* @param {string} [backgroundThumbnail]
|
|
13532
|
+
* @param {string} [languageCode]
|
|
13533
|
+
* @param {boolean} [returnDefaultValue]
|
|
13534
|
+
* @param {boolean} [confirmed]
|
|
13535
|
+
* @param {number} [page]
|
|
13536
|
+
* @param {number} [limit]
|
|
13537
|
+
* @param {Date} [lastRetrieved]
|
|
13538
|
+
* @param {*} [options] Override http request option.
|
|
13539
|
+
* @throws {RequiredError}
|
|
13540
|
+
*/
|
|
13541
|
+
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>;
|
|
13542
|
+
/**
|
|
13543
|
+
*
|
|
13544
|
+
* @summary Create AboutUs.
|
|
13545
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13546
|
+
* @param {*} [options] Override http request option.
|
|
13547
|
+
* @throws {RequiredError}
|
|
13548
|
+
*/
|
|
13549
|
+
apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13550
|
+
/**
|
|
13551
|
+
*
|
|
13552
|
+
* @param {string} slug
|
|
13553
|
+
* @param {string} [languageCode]
|
|
13554
|
+
* @param {boolean} [returnDefaultValue]
|
|
13555
|
+
* @param {*} [options] Override http request option.
|
|
13556
|
+
* @throws {RequiredError}
|
|
13557
|
+
*/
|
|
13558
|
+
apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
13559
|
+
};
|
|
13560
|
+
/**
|
|
13561
|
+
* AboutUsApi - object-oriented interface
|
|
13562
|
+
* @export
|
|
13563
|
+
* @class AboutUsApi
|
|
13564
|
+
* @extends {BaseAPI}
|
|
13565
|
+
*/
|
|
13566
|
+
export declare class AboutUsApi extends BaseAPI {
|
|
13567
|
+
/**
|
|
13568
|
+
*
|
|
13569
|
+
* @summary Delete AboutUs.
|
|
13570
|
+
* @param {string} aboutUsId
|
|
13571
|
+
* @param {*} [options] Override http request option.
|
|
13572
|
+
* @throws {RequiredError}
|
|
13573
|
+
* @memberof AboutUsApi
|
|
13574
|
+
*/
|
|
13575
|
+
apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
13576
|
+
/**
|
|
13577
|
+
*
|
|
13578
|
+
* @summary Get AboutUs.
|
|
13579
|
+
* @param {string} aboutUsId
|
|
13580
|
+
* @param {string} [languageCode]
|
|
13581
|
+
* @param {boolean} [returnDefaultValue]
|
|
13582
|
+
* @param {*} [options] Override http request option.
|
|
13583
|
+
* @throws {RequiredError}
|
|
13584
|
+
* @memberof AboutUsApi
|
|
13585
|
+
*/
|
|
13586
|
+
apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
13587
|
+
/**
|
|
13588
|
+
*
|
|
13589
|
+
* @summary Update AboutUs.
|
|
13590
|
+
* @param {string} aboutUsId
|
|
13591
|
+
* @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
|
|
13592
|
+
* @param {*} [options] Override http request option.
|
|
13593
|
+
* @throws {RequiredError}
|
|
13594
|
+
* @memberof AboutUsApi
|
|
13595
|
+
*/
|
|
13596
|
+
apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
13597
|
+
/**
|
|
13598
|
+
*
|
|
13599
|
+
* @summary Get all AboutUsList.
|
|
13600
|
+
* @param {string} [hospitalId]
|
|
13601
|
+
* @param {string} [hospitalName]
|
|
13602
|
+
* @param {string} [hospitalSlug]
|
|
13603
|
+
* @param {string} [overviewTitle]
|
|
13604
|
+
* @param {string} [normalizedOverviewTitle]
|
|
13605
|
+
* @param {string} [overview]
|
|
13606
|
+
* @param {string} [content]
|
|
13607
|
+
* @param {string} [customStyle]
|
|
13608
|
+
* @param {string} [background]
|
|
13609
|
+
* @param {string} [backgroundThumbnail]
|
|
13610
|
+
* @param {string} [languageCode]
|
|
13611
|
+
* @param {boolean} [returnDefaultValue]
|
|
13612
|
+
* @param {boolean} [confirmed]
|
|
13613
|
+
* @param {number} [page]
|
|
13614
|
+
* @param {number} [limit]
|
|
13615
|
+
* @param {Date} [lastRetrieved]
|
|
13616
|
+
* @param {*} [options] Override http request option.
|
|
13617
|
+
* @throws {RequiredError}
|
|
13618
|
+
* @memberof AboutUsApi
|
|
13619
|
+
*/
|
|
13620
|
+
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>>;
|
|
13621
|
+
/**
|
|
13622
|
+
*
|
|
13623
|
+
* @summary Create AboutUs.
|
|
13624
|
+
* @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
|
|
13625
|
+
* @param {*} [options] Override http request option.
|
|
13626
|
+
* @throws {RequiredError}
|
|
13627
|
+
* @memberof AboutUsApi
|
|
13628
|
+
*/
|
|
13629
|
+
apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
13630
|
+
/**
|
|
13631
|
+
*
|
|
13632
|
+
* @param {string} slug
|
|
13633
|
+
* @param {string} [languageCode]
|
|
13634
|
+
* @param {boolean} [returnDefaultValue]
|
|
13635
|
+
* @param {*} [options] Override http request option.
|
|
13636
|
+
* @throws {RequiredError}
|
|
13637
|
+
* @memberof AboutUsApi
|
|
13638
|
+
*/
|
|
13639
|
+
apiV1AboutusSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
|
|
13640
|
+
}
|
|
12945
13641
|
/**
|
|
12946
13642
|
* AccreditationsApi - axios parameter creator
|
|
12947
13643
|
* @export
|