ch-admin-api-client-typescript 4.4.4 → 4.4.6
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 +560 -4
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +673 -8
- package/package.json +1 -1
- package/src/api.ts +861 -7
package/lib/api.d.ts
CHANGED
|
@@ -1144,6 +1144,62 @@ export interface BatchAddHospitalConsultationTimetableOverrideModel {
|
|
|
1144
1144
|
* @memberof BatchAddHospitalConsultationTimetableOverrideModel
|
|
1145
1145
|
*/
|
|
1146
1146
|
'end'?: string | null;
|
|
1147
|
+
/**
|
|
1148
|
+
*
|
|
1149
|
+
* @type {boolean}
|
|
1150
|
+
* @memberof BatchAddHospitalConsultationTimetableOverrideModel
|
|
1151
|
+
*/
|
|
1152
|
+
'isUnavailable'?: boolean | null;
|
|
1153
|
+
}
|
|
1154
|
+
/**
|
|
1155
|
+
*
|
|
1156
|
+
* @export
|
|
1157
|
+
* @interface BatchHeaderNavigationItemResultModel
|
|
1158
|
+
*/
|
|
1159
|
+
export interface BatchHeaderNavigationItemResultModel {
|
|
1160
|
+
/**
|
|
1161
|
+
*
|
|
1162
|
+
* @type {Array<HeaderNavigationItemModel>}
|
|
1163
|
+
* @memberof BatchHeaderNavigationItemResultModel
|
|
1164
|
+
*/
|
|
1165
|
+
'added'?: Array<HeaderNavigationItemModel> | null;
|
|
1166
|
+
/**
|
|
1167
|
+
*
|
|
1168
|
+
* @type {Array<HeaderNavigationItemModel>}
|
|
1169
|
+
* @memberof BatchHeaderNavigationItemResultModel
|
|
1170
|
+
*/
|
|
1171
|
+
'updated'?: Array<HeaderNavigationItemModel> | null;
|
|
1172
|
+
/**
|
|
1173
|
+
*
|
|
1174
|
+
* @type {Array<string>}
|
|
1175
|
+
* @memberof BatchHeaderNavigationItemResultModel
|
|
1176
|
+
*/
|
|
1177
|
+
'deleted'?: Array<string> | null;
|
|
1178
|
+
}
|
|
1179
|
+
/**
|
|
1180
|
+
*
|
|
1181
|
+
* @export
|
|
1182
|
+
* @interface BatchHeaderNavigationItemsCommand
|
|
1183
|
+
*/
|
|
1184
|
+
export interface BatchHeaderNavigationItemsCommand {
|
|
1185
|
+
/**
|
|
1186
|
+
*
|
|
1187
|
+
* @type {Array<CreateHeaderNavigationItemModel>}
|
|
1188
|
+
* @memberof BatchHeaderNavigationItemsCommand
|
|
1189
|
+
*/
|
|
1190
|
+
'adds'?: Array<CreateHeaderNavigationItemModel> | null;
|
|
1191
|
+
/**
|
|
1192
|
+
*
|
|
1193
|
+
* @type {Array<UpdateHeaderNavigationItemModel>}
|
|
1194
|
+
* @memberof BatchHeaderNavigationItemsCommand
|
|
1195
|
+
*/
|
|
1196
|
+
'updates'?: Array<UpdateHeaderNavigationItemModel> | null;
|
|
1197
|
+
/**
|
|
1198
|
+
*
|
|
1199
|
+
* @type {Array<string>}
|
|
1200
|
+
* @memberof BatchHeaderNavigationItemsCommand
|
|
1201
|
+
*/
|
|
1202
|
+
'deletes'?: Array<string> | null;
|
|
1147
1203
|
}
|
|
1148
1204
|
/**
|
|
1149
1205
|
*
|
|
@@ -1300,6 +1356,12 @@ export interface BatchUpdateHospitalConsultationTimetableOverrideModel {
|
|
|
1300
1356
|
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1301
1357
|
*/
|
|
1302
1358
|
'end'?: string | null;
|
|
1359
|
+
/**
|
|
1360
|
+
*
|
|
1361
|
+
* @type {boolean}
|
|
1362
|
+
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1363
|
+
*/
|
|
1364
|
+
'isUnavailable'?: boolean | null;
|
|
1303
1365
|
/**
|
|
1304
1366
|
*
|
|
1305
1367
|
* @type {string}
|
|
@@ -4528,6 +4590,80 @@ export interface CreateFaqTagCommand {
|
|
|
4528
4590
|
*/
|
|
4529
4591
|
'tagId'?: string | null;
|
|
4530
4592
|
}
|
|
4593
|
+
/**
|
|
4594
|
+
*
|
|
4595
|
+
* @export
|
|
4596
|
+
* @interface CreateHeaderNavigationItemCommand
|
|
4597
|
+
*/
|
|
4598
|
+
export interface CreateHeaderNavigationItemCommand {
|
|
4599
|
+
/**
|
|
4600
|
+
*
|
|
4601
|
+
* @type {string}
|
|
4602
|
+
* @memberof CreateHeaderNavigationItemCommand
|
|
4603
|
+
*/
|
|
4604
|
+
'languageCode'?: string | null;
|
|
4605
|
+
/**
|
|
4606
|
+
*
|
|
4607
|
+
* @type {string}
|
|
4608
|
+
* @memberof CreateHeaderNavigationItemCommand
|
|
4609
|
+
*/
|
|
4610
|
+
'name'?: string | null;
|
|
4611
|
+
/**
|
|
4612
|
+
*
|
|
4613
|
+
* @type {string}
|
|
4614
|
+
* @memberof CreateHeaderNavigationItemCommand
|
|
4615
|
+
*/
|
|
4616
|
+
'url'?: string | null;
|
|
4617
|
+
/**
|
|
4618
|
+
*
|
|
4619
|
+
* @type {number}
|
|
4620
|
+
* @memberof CreateHeaderNavigationItemCommand
|
|
4621
|
+
*/
|
|
4622
|
+
'order'?: number;
|
|
4623
|
+
/**
|
|
4624
|
+
*
|
|
4625
|
+
* @type {string}
|
|
4626
|
+
* @memberof CreateHeaderNavigationItemCommand
|
|
4627
|
+
*/
|
|
4628
|
+
'parentId'?: string | null;
|
|
4629
|
+
}
|
|
4630
|
+
/**
|
|
4631
|
+
*
|
|
4632
|
+
* @export
|
|
4633
|
+
* @interface CreateHeaderNavigationItemModel
|
|
4634
|
+
*/
|
|
4635
|
+
export interface CreateHeaderNavigationItemModel {
|
|
4636
|
+
/**
|
|
4637
|
+
*
|
|
4638
|
+
* @type {string}
|
|
4639
|
+
* @memberof CreateHeaderNavigationItemModel
|
|
4640
|
+
*/
|
|
4641
|
+
'languageCode'?: string | null;
|
|
4642
|
+
/**
|
|
4643
|
+
*
|
|
4644
|
+
* @type {string}
|
|
4645
|
+
* @memberof CreateHeaderNavigationItemModel
|
|
4646
|
+
*/
|
|
4647
|
+
'name'?: string | null;
|
|
4648
|
+
/**
|
|
4649
|
+
*
|
|
4650
|
+
* @type {string}
|
|
4651
|
+
* @memberof CreateHeaderNavigationItemModel
|
|
4652
|
+
*/
|
|
4653
|
+
'url'?: string | null;
|
|
4654
|
+
/**
|
|
4655
|
+
*
|
|
4656
|
+
* @type {number}
|
|
4657
|
+
* @memberof CreateHeaderNavigationItemModel
|
|
4658
|
+
*/
|
|
4659
|
+
'order'?: number;
|
|
4660
|
+
/**
|
|
4661
|
+
*
|
|
4662
|
+
* @type {string}
|
|
4663
|
+
* @memberof CreateHeaderNavigationItemModel
|
|
4664
|
+
*/
|
|
4665
|
+
'parentId'?: string | null;
|
|
4666
|
+
}
|
|
4531
4667
|
/**
|
|
4532
4668
|
*
|
|
4533
4669
|
* @export
|
|
@@ -4723,6 +4859,12 @@ export interface CreateHospitalConsultationTimetableOverrideCommand {
|
|
|
4723
4859
|
* @memberof CreateHospitalConsultationTimetableOverrideCommand
|
|
4724
4860
|
*/
|
|
4725
4861
|
'end'?: string | null;
|
|
4862
|
+
/**
|
|
4863
|
+
*
|
|
4864
|
+
* @type {boolean}
|
|
4865
|
+
* @memberof CreateHospitalConsultationTimetableOverrideCommand
|
|
4866
|
+
*/
|
|
4867
|
+
'isUnavailable'?: boolean | null;
|
|
4726
4868
|
}
|
|
4727
4869
|
/**
|
|
4728
4870
|
*
|
|
@@ -7930,6 +8072,49 @@ export declare enum Gender {
|
|
|
7930
8072
|
NonBinary = "NonBinary",
|
|
7931
8073
|
PreferNotToSay = "PreferNotToSay"
|
|
7932
8074
|
}
|
|
8075
|
+
/**
|
|
8076
|
+
*
|
|
8077
|
+
* @export
|
|
8078
|
+
* @interface HeaderNavigationItemModel
|
|
8079
|
+
*/
|
|
8080
|
+
export interface HeaderNavigationItemModel {
|
|
8081
|
+
/**
|
|
8082
|
+
*
|
|
8083
|
+
* @type {string}
|
|
8084
|
+
* @memberof HeaderNavigationItemModel
|
|
8085
|
+
*/
|
|
8086
|
+
'id'?: string;
|
|
8087
|
+
/**
|
|
8088
|
+
*
|
|
8089
|
+
* @type {string}
|
|
8090
|
+
* @memberof HeaderNavigationItemModel
|
|
8091
|
+
*/
|
|
8092
|
+
'name'?: string | null;
|
|
8093
|
+
/**
|
|
8094
|
+
*
|
|
8095
|
+
* @type {string}
|
|
8096
|
+
* @memberof HeaderNavigationItemModel
|
|
8097
|
+
*/
|
|
8098
|
+
'url'?: string | null;
|
|
8099
|
+
/**
|
|
8100
|
+
*
|
|
8101
|
+
* @type {number}
|
|
8102
|
+
* @memberof HeaderNavigationItemModel
|
|
8103
|
+
*/
|
|
8104
|
+
'level'?: number;
|
|
8105
|
+
/**
|
|
8106
|
+
*
|
|
8107
|
+
* @type {number}
|
|
8108
|
+
* @memberof HeaderNavigationItemModel
|
|
8109
|
+
*/
|
|
8110
|
+
'order'?: number;
|
|
8111
|
+
/**
|
|
8112
|
+
*
|
|
8113
|
+
* @type {Array<HeaderNavigationItemModel>}
|
|
8114
|
+
* @memberof HeaderNavigationItemModel
|
|
8115
|
+
*/
|
|
8116
|
+
'subItems'?: Array<HeaderNavigationItemModel> | null;
|
|
8117
|
+
}
|
|
7933
8118
|
/**
|
|
7934
8119
|
*
|
|
7935
8120
|
* @export
|
|
@@ -8128,6 +8313,12 @@ export interface HospitalConsultationTimetableOverrideItemModel {
|
|
|
8128
8313
|
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
8129
8314
|
*/
|
|
8130
8315
|
'end'?: string | null;
|
|
8316
|
+
/**
|
|
8317
|
+
*
|
|
8318
|
+
* @type {boolean}
|
|
8319
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
8320
|
+
*/
|
|
8321
|
+
'isUnavailable'?: boolean;
|
|
8131
8322
|
}
|
|
8132
8323
|
/**
|
|
8133
8324
|
*
|
|
@@ -8159,6 +8350,12 @@ export interface HospitalConsultationTimetableOverrideModel {
|
|
|
8159
8350
|
* @memberof HospitalConsultationTimetableOverrideModel
|
|
8160
8351
|
*/
|
|
8161
8352
|
'end'?: string | null;
|
|
8353
|
+
/**
|
|
8354
|
+
*
|
|
8355
|
+
* @type {boolean}
|
|
8356
|
+
* @memberof HospitalConsultationTimetableOverrideModel
|
|
8357
|
+
*/
|
|
8358
|
+
'isUnavailable'?: boolean;
|
|
8162
8359
|
}
|
|
8163
8360
|
/**
|
|
8164
8361
|
*
|
|
@@ -14035,6 +14232,86 @@ export interface UpdateFaqCommand {
|
|
|
14035
14232
|
*/
|
|
14036
14233
|
'medias'?: Array<MediaModel> | null;
|
|
14037
14234
|
}
|
|
14235
|
+
/**
|
|
14236
|
+
*
|
|
14237
|
+
* @export
|
|
14238
|
+
* @interface UpdateHeaderNavigationItemCommand
|
|
14239
|
+
*/
|
|
14240
|
+
export interface UpdateHeaderNavigationItemCommand {
|
|
14241
|
+
/**
|
|
14242
|
+
*
|
|
14243
|
+
* @type {string}
|
|
14244
|
+
* @memberof UpdateHeaderNavigationItemCommand
|
|
14245
|
+
*/
|
|
14246
|
+
'languageCode'?: string | null;
|
|
14247
|
+
/**
|
|
14248
|
+
*
|
|
14249
|
+
* @type {string}
|
|
14250
|
+
* @memberof UpdateHeaderNavigationItemCommand
|
|
14251
|
+
*/
|
|
14252
|
+
'name'?: string | null;
|
|
14253
|
+
/**
|
|
14254
|
+
*
|
|
14255
|
+
* @type {string}
|
|
14256
|
+
* @memberof UpdateHeaderNavigationItemCommand
|
|
14257
|
+
*/
|
|
14258
|
+
'url'?: string | null;
|
|
14259
|
+
/**
|
|
14260
|
+
*
|
|
14261
|
+
* @type {number}
|
|
14262
|
+
* @memberof UpdateHeaderNavigationItemCommand
|
|
14263
|
+
*/
|
|
14264
|
+
'order'?: number;
|
|
14265
|
+
/**
|
|
14266
|
+
*
|
|
14267
|
+
* @type {string}
|
|
14268
|
+
* @memberof UpdateHeaderNavigationItemCommand
|
|
14269
|
+
*/
|
|
14270
|
+
'parentId'?: string | null;
|
|
14271
|
+
}
|
|
14272
|
+
/**
|
|
14273
|
+
*
|
|
14274
|
+
* @export
|
|
14275
|
+
* @interface UpdateHeaderNavigationItemModel
|
|
14276
|
+
*/
|
|
14277
|
+
export interface UpdateHeaderNavigationItemModel {
|
|
14278
|
+
/**
|
|
14279
|
+
*
|
|
14280
|
+
* @type {string}
|
|
14281
|
+
* @memberof UpdateHeaderNavigationItemModel
|
|
14282
|
+
*/
|
|
14283
|
+
'languageCode'?: string | null;
|
|
14284
|
+
/**
|
|
14285
|
+
*
|
|
14286
|
+
* @type {string}
|
|
14287
|
+
* @memberof UpdateHeaderNavigationItemModel
|
|
14288
|
+
*/
|
|
14289
|
+
'name'?: string | null;
|
|
14290
|
+
/**
|
|
14291
|
+
*
|
|
14292
|
+
* @type {string}
|
|
14293
|
+
* @memberof UpdateHeaderNavigationItemModel
|
|
14294
|
+
*/
|
|
14295
|
+
'url'?: string | null;
|
|
14296
|
+
/**
|
|
14297
|
+
*
|
|
14298
|
+
* @type {number}
|
|
14299
|
+
* @memberof UpdateHeaderNavigationItemModel
|
|
14300
|
+
*/
|
|
14301
|
+
'order'?: number;
|
|
14302
|
+
/**
|
|
14303
|
+
*
|
|
14304
|
+
* @type {string}
|
|
14305
|
+
* @memberof UpdateHeaderNavigationItemModel
|
|
14306
|
+
*/
|
|
14307
|
+
'parentId'?: string | null;
|
|
14308
|
+
/**
|
|
14309
|
+
*
|
|
14310
|
+
* @type {string}
|
|
14311
|
+
* @memberof UpdateHeaderNavigationItemModel
|
|
14312
|
+
*/
|
|
14313
|
+
'id'?: string;
|
|
14314
|
+
}
|
|
14038
14315
|
/**
|
|
14039
14316
|
*
|
|
14040
14317
|
* @export
|
|
@@ -14241,6 +14518,12 @@ export interface UpdateHospitalConsultationTimetableOverrideCommand {
|
|
|
14241
14518
|
* @memberof UpdateHospitalConsultationTimetableOverrideCommand
|
|
14242
14519
|
*/
|
|
14243
14520
|
'end'?: string | null;
|
|
14521
|
+
/**
|
|
14522
|
+
*
|
|
14523
|
+
* @type {boolean}
|
|
14524
|
+
* @memberof UpdateHospitalConsultationTimetableOverrideCommand
|
|
14525
|
+
*/
|
|
14526
|
+
'isUnavailable'?: boolean | null;
|
|
14244
14527
|
}
|
|
14245
14528
|
/**
|
|
14246
14529
|
*
|
|
@@ -24095,6 +24378,267 @@ export declare class GroupChannelsApi extends BaseAPI {
|
|
|
24095
24378
|
*/
|
|
24096
24379
|
apiV1GroupchannelsChannelUrlInvitePost(channelUrl: string, inviteSendBirdGroupChannelCommand?: InviteSendBirdGroupChannelCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel>>;
|
|
24097
24380
|
}
|
|
24381
|
+
/**
|
|
24382
|
+
* HeaderNavigationsApi - axios parameter creator
|
|
24383
|
+
* @export
|
|
24384
|
+
*/
|
|
24385
|
+
export declare const HeaderNavigationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
24386
|
+
/**
|
|
24387
|
+
*
|
|
24388
|
+
* @summary Batch HeaderNavigationItems; Do Add, update, delete at one request
|
|
24389
|
+
* @param {BatchHeaderNavigationItemsCommand} [batchHeaderNavigationItemsCommand]
|
|
24390
|
+
* @param {*} [options] Override http request option.
|
|
24391
|
+
* @throws {RequiredError}
|
|
24392
|
+
*/
|
|
24393
|
+
apiV1HeadernavigationsBatchPost: (batchHeaderNavigationItemsCommand?: BatchHeaderNavigationItemsCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24394
|
+
/**
|
|
24395
|
+
*
|
|
24396
|
+
* @summary Get all HeaderNavigationItems
|
|
24397
|
+
* @param {string} [languageCode]
|
|
24398
|
+
* @param {*} [options] Override http request option.
|
|
24399
|
+
* @throws {RequiredError}
|
|
24400
|
+
*/
|
|
24401
|
+
apiV1HeadernavigationsGet: (languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24402
|
+
/**
|
|
24403
|
+
*
|
|
24404
|
+
* @summary Delete HeaderNavigationItem
|
|
24405
|
+
* @param {string} id
|
|
24406
|
+
* @param {*} [options] Override http request option.
|
|
24407
|
+
* @throws {RequiredError}
|
|
24408
|
+
*/
|
|
24409
|
+
apiV1HeadernavigationsIdDelete: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24410
|
+
/**
|
|
24411
|
+
*
|
|
24412
|
+
* @summary Get HeaderNavigationItem by id
|
|
24413
|
+
* @param {string} id
|
|
24414
|
+
* @param {*} [options] Override http request option.
|
|
24415
|
+
* @throws {RequiredError}
|
|
24416
|
+
*/
|
|
24417
|
+
apiV1HeadernavigationsIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24418
|
+
/**
|
|
24419
|
+
*
|
|
24420
|
+
* @summary Update HeaderNavigationItem
|
|
24421
|
+
* @param {string} id
|
|
24422
|
+
* @param {UpdateHeaderNavigationItemCommand} [updateHeaderNavigationItemCommand]
|
|
24423
|
+
* @param {*} [options] Override http request option.
|
|
24424
|
+
* @throws {RequiredError}
|
|
24425
|
+
*/
|
|
24426
|
+
apiV1HeadernavigationsIdPut: (id: string, updateHeaderNavigationItemCommand?: UpdateHeaderNavigationItemCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24427
|
+
/**
|
|
24428
|
+
*
|
|
24429
|
+
* @summary Get HeaderNavigationItems by parent id
|
|
24430
|
+
* @param {string} parentId
|
|
24431
|
+
* @param {*} [options] Override http request option.
|
|
24432
|
+
* @throws {RequiredError}
|
|
24433
|
+
*/
|
|
24434
|
+
apiV1HeadernavigationsParentIdSubitemsGet: (parentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24435
|
+
/**
|
|
24436
|
+
*
|
|
24437
|
+
* @summary Create HeaderNavigationItem
|
|
24438
|
+
* @param {CreateHeaderNavigationItemCommand} [createHeaderNavigationItemCommand]
|
|
24439
|
+
* @param {*} [options] Override http request option.
|
|
24440
|
+
* @throws {RequiredError}
|
|
24441
|
+
*/
|
|
24442
|
+
apiV1HeadernavigationsPost: (createHeaderNavigationItemCommand?: CreateHeaderNavigationItemCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24443
|
+
};
|
|
24444
|
+
/**
|
|
24445
|
+
* HeaderNavigationsApi - functional programming interface
|
|
24446
|
+
* @export
|
|
24447
|
+
*/
|
|
24448
|
+
export declare const HeaderNavigationsApiFp: (configuration?: Configuration | undefined) => {
|
|
24449
|
+
/**
|
|
24450
|
+
*
|
|
24451
|
+
* @summary Batch HeaderNavigationItems; Do Add, update, delete at one request
|
|
24452
|
+
* @param {BatchHeaderNavigationItemsCommand} [batchHeaderNavigationItemsCommand]
|
|
24453
|
+
* @param {*} [options] Override http request option.
|
|
24454
|
+
* @throws {RequiredError}
|
|
24455
|
+
*/
|
|
24456
|
+
apiV1HeadernavigationsBatchPost(batchHeaderNavigationItemsCommand?: BatchHeaderNavigationItemsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BatchHeaderNavigationItemResultModel>>;
|
|
24457
|
+
/**
|
|
24458
|
+
*
|
|
24459
|
+
* @summary Get all HeaderNavigationItems
|
|
24460
|
+
* @param {string} [languageCode]
|
|
24461
|
+
* @param {*} [options] Override http request option.
|
|
24462
|
+
* @throws {RequiredError}
|
|
24463
|
+
*/
|
|
24464
|
+
apiV1HeadernavigationsGet(languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
24465
|
+
/**
|
|
24466
|
+
*
|
|
24467
|
+
* @summary Delete HeaderNavigationItem
|
|
24468
|
+
* @param {string} id
|
|
24469
|
+
* @param {*} [options] Override http request option.
|
|
24470
|
+
* @throws {RequiredError}
|
|
24471
|
+
*/
|
|
24472
|
+
apiV1HeadernavigationsIdDelete(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
24473
|
+
/**
|
|
24474
|
+
*
|
|
24475
|
+
* @summary Get HeaderNavigationItem by id
|
|
24476
|
+
* @param {string} id
|
|
24477
|
+
* @param {*} [options] Override http request option.
|
|
24478
|
+
* @throws {RequiredError}
|
|
24479
|
+
*/
|
|
24480
|
+
apiV1HeadernavigationsIdGet(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HeaderNavigationItemModel>>;
|
|
24481
|
+
/**
|
|
24482
|
+
*
|
|
24483
|
+
* @summary Update HeaderNavigationItem
|
|
24484
|
+
* @param {string} id
|
|
24485
|
+
* @param {UpdateHeaderNavigationItemCommand} [updateHeaderNavigationItemCommand]
|
|
24486
|
+
* @param {*} [options] Override http request option.
|
|
24487
|
+
* @throws {RequiredError}
|
|
24488
|
+
*/
|
|
24489
|
+
apiV1HeadernavigationsIdPut(id: string, updateHeaderNavigationItemCommand?: UpdateHeaderNavigationItemCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
24490
|
+
/**
|
|
24491
|
+
*
|
|
24492
|
+
* @summary Get HeaderNavigationItems by parent id
|
|
24493
|
+
* @param {string} parentId
|
|
24494
|
+
* @param {*} [options] Override http request option.
|
|
24495
|
+
* @throws {RequiredError}
|
|
24496
|
+
*/
|
|
24497
|
+
apiV1HeadernavigationsParentIdSubitemsGet(parentId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
24498
|
+
/**
|
|
24499
|
+
*
|
|
24500
|
+
* @summary Create HeaderNavigationItem
|
|
24501
|
+
* @param {CreateHeaderNavigationItemCommand} [createHeaderNavigationItemCommand]
|
|
24502
|
+
* @param {*} [options] Override http request option.
|
|
24503
|
+
* @throws {RequiredError}
|
|
24504
|
+
*/
|
|
24505
|
+
apiV1HeadernavigationsPost(createHeaderNavigationItemCommand?: CreateHeaderNavigationItemCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HeaderNavigationItemModel>>;
|
|
24506
|
+
};
|
|
24507
|
+
/**
|
|
24508
|
+
* HeaderNavigationsApi - factory interface
|
|
24509
|
+
* @export
|
|
24510
|
+
*/
|
|
24511
|
+
export declare const HeaderNavigationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
24512
|
+
/**
|
|
24513
|
+
*
|
|
24514
|
+
* @summary Batch HeaderNavigationItems; Do Add, update, delete at one request
|
|
24515
|
+
* @param {BatchHeaderNavigationItemsCommand} [batchHeaderNavigationItemsCommand]
|
|
24516
|
+
* @param {*} [options] Override http request option.
|
|
24517
|
+
* @throws {RequiredError}
|
|
24518
|
+
*/
|
|
24519
|
+
apiV1HeadernavigationsBatchPost(batchHeaderNavigationItemsCommand?: BatchHeaderNavigationItemsCommand | undefined, options?: any): AxiosPromise<BatchHeaderNavigationItemResultModel>;
|
|
24520
|
+
/**
|
|
24521
|
+
*
|
|
24522
|
+
* @summary Get all HeaderNavigationItems
|
|
24523
|
+
* @param {string} [languageCode]
|
|
24524
|
+
* @param {*} [options] Override http request option.
|
|
24525
|
+
* @throws {RequiredError}
|
|
24526
|
+
*/
|
|
24527
|
+
apiV1HeadernavigationsGet(languageCode?: string | undefined, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
24528
|
+
/**
|
|
24529
|
+
*
|
|
24530
|
+
* @summary Delete HeaderNavigationItem
|
|
24531
|
+
* @param {string} id
|
|
24532
|
+
* @param {*} [options] Override http request option.
|
|
24533
|
+
* @throws {RequiredError}
|
|
24534
|
+
*/
|
|
24535
|
+
apiV1HeadernavigationsIdDelete(id: string, options?: any): AxiosPromise<boolean>;
|
|
24536
|
+
/**
|
|
24537
|
+
*
|
|
24538
|
+
* @summary Get HeaderNavigationItem by id
|
|
24539
|
+
* @param {string} id
|
|
24540
|
+
* @param {*} [options] Override http request option.
|
|
24541
|
+
* @throws {RequiredError}
|
|
24542
|
+
*/
|
|
24543
|
+
apiV1HeadernavigationsIdGet(id: string, options?: any): AxiosPromise<HeaderNavigationItemModel>;
|
|
24544
|
+
/**
|
|
24545
|
+
*
|
|
24546
|
+
* @summary Update HeaderNavigationItem
|
|
24547
|
+
* @param {string} id
|
|
24548
|
+
* @param {UpdateHeaderNavigationItemCommand} [updateHeaderNavigationItemCommand]
|
|
24549
|
+
* @param {*} [options] Override http request option.
|
|
24550
|
+
* @throws {RequiredError}
|
|
24551
|
+
*/
|
|
24552
|
+
apiV1HeadernavigationsIdPut(id: string, updateHeaderNavigationItemCommand?: UpdateHeaderNavigationItemCommand | undefined, options?: any): AxiosPromise<void>;
|
|
24553
|
+
/**
|
|
24554
|
+
*
|
|
24555
|
+
* @summary Get HeaderNavigationItems by parent id
|
|
24556
|
+
* @param {string} parentId
|
|
24557
|
+
* @param {*} [options] Override http request option.
|
|
24558
|
+
* @throws {RequiredError}
|
|
24559
|
+
*/
|
|
24560
|
+
apiV1HeadernavigationsParentIdSubitemsGet(parentId: string, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
24561
|
+
/**
|
|
24562
|
+
*
|
|
24563
|
+
* @summary Create HeaderNavigationItem
|
|
24564
|
+
* @param {CreateHeaderNavigationItemCommand} [createHeaderNavigationItemCommand]
|
|
24565
|
+
* @param {*} [options] Override http request option.
|
|
24566
|
+
* @throws {RequiredError}
|
|
24567
|
+
*/
|
|
24568
|
+
apiV1HeadernavigationsPost(createHeaderNavigationItemCommand?: CreateHeaderNavigationItemCommand | undefined, options?: any): AxiosPromise<HeaderNavigationItemModel>;
|
|
24569
|
+
};
|
|
24570
|
+
/**
|
|
24571
|
+
* HeaderNavigationsApi - object-oriented interface
|
|
24572
|
+
* @export
|
|
24573
|
+
* @class HeaderNavigationsApi
|
|
24574
|
+
* @extends {BaseAPI}
|
|
24575
|
+
*/
|
|
24576
|
+
export declare class HeaderNavigationsApi extends BaseAPI {
|
|
24577
|
+
/**
|
|
24578
|
+
*
|
|
24579
|
+
* @summary Batch HeaderNavigationItems; Do Add, update, delete at one request
|
|
24580
|
+
* @param {BatchHeaderNavigationItemsCommand} [batchHeaderNavigationItemsCommand]
|
|
24581
|
+
* @param {*} [options] Override http request option.
|
|
24582
|
+
* @throws {RequiredError}
|
|
24583
|
+
* @memberof HeaderNavigationsApi
|
|
24584
|
+
*/
|
|
24585
|
+
apiV1HeadernavigationsBatchPost(batchHeaderNavigationItemsCommand?: BatchHeaderNavigationItemsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchHeaderNavigationItemResultModel>>;
|
|
24586
|
+
/**
|
|
24587
|
+
*
|
|
24588
|
+
* @summary Get all HeaderNavigationItems
|
|
24589
|
+
* @param {string} [languageCode]
|
|
24590
|
+
* @param {*} [options] Override http request option.
|
|
24591
|
+
* @throws {RequiredError}
|
|
24592
|
+
* @memberof HeaderNavigationsApi
|
|
24593
|
+
*/
|
|
24594
|
+
apiV1HeadernavigationsGet(languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[]>>;
|
|
24595
|
+
/**
|
|
24596
|
+
*
|
|
24597
|
+
* @summary Delete HeaderNavigationItem
|
|
24598
|
+
* @param {string} id
|
|
24599
|
+
* @param {*} [options] Override http request option.
|
|
24600
|
+
* @throws {RequiredError}
|
|
24601
|
+
* @memberof HeaderNavigationsApi
|
|
24602
|
+
*/
|
|
24603
|
+
apiV1HeadernavigationsIdDelete(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24604
|
+
/**
|
|
24605
|
+
*
|
|
24606
|
+
* @summary Get HeaderNavigationItem by id
|
|
24607
|
+
* @param {string} id
|
|
24608
|
+
* @param {*} [options] Override http request option.
|
|
24609
|
+
* @throws {RequiredError}
|
|
24610
|
+
* @memberof HeaderNavigationsApi
|
|
24611
|
+
*/
|
|
24612
|
+
apiV1HeadernavigationsIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel>>;
|
|
24613
|
+
/**
|
|
24614
|
+
*
|
|
24615
|
+
* @summary Update HeaderNavigationItem
|
|
24616
|
+
* @param {string} id
|
|
24617
|
+
* @param {UpdateHeaderNavigationItemCommand} [updateHeaderNavigationItemCommand]
|
|
24618
|
+
* @param {*} [options] Override http request option.
|
|
24619
|
+
* @throws {RequiredError}
|
|
24620
|
+
* @memberof HeaderNavigationsApi
|
|
24621
|
+
*/
|
|
24622
|
+
apiV1HeadernavigationsIdPut(id: string, updateHeaderNavigationItemCommand?: UpdateHeaderNavigationItemCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
24623
|
+
/**
|
|
24624
|
+
*
|
|
24625
|
+
* @summary Get HeaderNavigationItems by parent id
|
|
24626
|
+
* @param {string} parentId
|
|
24627
|
+
* @param {*} [options] Override http request option.
|
|
24628
|
+
* @throws {RequiredError}
|
|
24629
|
+
* @memberof HeaderNavigationsApi
|
|
24630
|
+
*/
|
|
24631
|
+
apiV1HeadernavigationsParentIdSubitemsGet(parentId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[]>>;
|
|
24632
|
+
/**
|
|
24633
|
+
*
|
|
24634
|
+
* @summary Create HeaderNavigationItem
|
|
24635
|
+
* @param {CreateHeaderNavigationItemCommand} [createHeaderNavigationItemCommand]
|
|
24636
|
+
* @param {*} [options] Override http request option.
|
|
24637
|
+
* @throws {RequiredError}
|
|
24638
|
+
* @memberof HeaderNavigationsApi
|
|
24639
|
+
*/
|
|
24640
|
+
apiV1HeadernavigationsPost(createHeaderNavigationItemCommand?: CreateHeaderNavigationItemCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel>>;
|
|
24641
|
+
}
|
|
24098
24642
|
/**
|
|
24099
24643
|
* HospitalsApi - axios parameter creator
|
|
24100
24644
|
* @export
|
|
@@ -27534,13 +28078,16 @@ export declare const HospitalsConsultationTimetableOverridesApiAxiosParamCreator
|
|
|
27534
28078
|
*
|
|
27535
28079
|
* @summary Get consultation timetable override items
|
|
27536
28080
|
* @param {string} hospitalId
|
|
28081
|
+
* @param {boolean} [includesPreviousItems]
|
|
28082
|
+
* @param {Date} [startDate]
|
|
28083
|
+
* @param {Date} [endDate]
|
|
27537
28084
|
* @param {number} [page]
|
|
27538
28085
|
* @param {number} [limit]
|
|
27539
28086
|
* @param {Date} [lastRetrieved]
|
|
27540
28087
|
* @param {*} [options] Override http request option.
|
|
27541
28088
|
* @throws {RequiredError}
|
|
27542
28089
|
*/
|
|
27543
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet: (hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28090
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet: (hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27544
28091
|
/**
|
|
27545
28092
|
*
|
|
27546
28093
|
* @summary Delete timetable item
|
|
@@ -27597,13 +28144,16 @@ export declare const HospitalsConsultationTimetableOverridesApiFp: (configuratio
|
|
|
27597
28144
|
*
|
|
27598
28145
|
* @summary Get consultation timetable override items
|
|
27599
28146
|
* @param {string} hospitalId
|
|
28147
|
+
* @param {boolean} [includesPreviousItems]
|
|
28148
|
+
* @param {Date} [startDate]
|
|
28149
|
+
* @param {Date} [endDate]
|
|
27600
28150
|
* @param {number} [page]
|
|
27601
28151
|
* @param {number} [limit]
|
|
27602
28152
|
* @param {Date} [lastRetrieved]
|
|
27603
28153
|
* @param {*} [options] Override http request option.
|
|
27604
28154
|
* @throws {RequiredError}
|
|
27605
28155
|
*/
|
|
27606
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverridesModel>>;
|
|
28156
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverridesModel>>;
|
|
27607
28157
|
/**
|
|
27608
28158
|
*
|
|
27609
28159
|
* @summary Delete timetable item
|
|
@@ -27660,13 +28210,16 @@ export declare const HospitalsConsultationTimetableOverridesApiFactory: (configu
|
|
|
27660
28210
|
*
|
|
27661
28211
|
* @summary Get consultation timetable override items
|
|
27662
28212
|
* @param {string} hospitalId
|
|
28213
|
+
* @param {boolean} [includesPreviousItems]
|
|
28214
|
+
* @param {Date} [startDate]
|
|
28215
|
+
* @param {Date} [endDate]
|
|
27663
28216
|
* @param {number} [page]
|
|
27664
28217
|
* @param {number} [limit]
|
|
27665
28218
|
* @param {Date} [lastRetrieved]
|
|
27666
28219
|
* @param {*} [options] Override http request option.
|
|
27667
28220
|
* @throws {RequiredError}
|
|
27668
28221
|
*/
|
|
27669
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverridesModel>;
|
|
28222
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverridesModel>;
|
|
27670
28223
|
/**
|
|
27671
28224
|
*
|
|
27672
28225
|
* @summary Delete timetable item
|
|
@@ -27726,6 +28279,9 @@ export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI
|
|
|
27726
28279
|
*
|
|
27727
28280
|
* @summary Get consultation timetable override items
|
|
27728
28281
|
* @param {string} hospitalId
|
|
28282
|
+
* @param {boolean} [includesPreviousItems]
|
|
28283
|
+
* @param {Date} [startDate]
|
|
28284
|
+
* @param {Date} [endDate]
|
|
27729
28285
|
* @param {number} [page]
|
|
27730
28286
|
* @param {number} [limit]
|
|
27731
28287
|
* @param {Date} [lastRetrieved]
|
|
@@ -27733,7 +28289,7 @@ export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI
|
|
|
27733
28289
|
* @throws {RequiredError}
|
|
27734
28290
|
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
27735
28291
|
*/
|
|
27736
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverridesModel>>;
|
|
28292
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverridesModel>>;
|
|
27737
28293
|
/**
|
|
27738
28294
|
*
|
|
27739
28295
|
* @summary Delete timetable item
|