ch-admin-api-client-typescript 2.7.5 → 2.7.8
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 +226 -56
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +76 -64
- package/package.json +1 -1
- package/src/api.ts +263 -87
package/lib/api.d.ts
CHANGED
|
@@ -406,34 +406,34 @@ export interface ArticleItemModel {
|
|
|
406
406
|
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
407
407
|
/**
|
|
408
408
|
*
|
|
409
|
-
* @type {Array<
|
|
409
|
+
* @type {Array<LocalizedUrlModel>}
|
|
410
410
|
* @memberof ArticleItemModel
|
|
411
411
|
*/
|
|
412
|
-
'
|
|
412
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
413
413
|
/**
|
|
414
414
|
*
|
|
415
|
-
* @type {
|
|
415
|
+
* @type {boolean}
|
|
416
416
|
* @memberof ArticleItemModel
|
|
417
417
|
*/
|
|
418
|
-
'
|
|
418
|
+
'confirmed'?: boolean;
|
|
419
419
|
/**
|
|
420
420
|
*
|
|
421
|
-
* @type {
|
|
421
|
+
* @type {Array<MediaModel>}
|
|
422
422
|
* @memberof ArticleItemModel
|
|
423
423
|
*/
|
|
424
|
-
'
|
|
424
|
+
'medias'?: Array<MediaModel> | null;
|
|
425
425
|
/**
|
|
426
426
|
*
|
|
427
|
-
* @type {Array<
|
|
427
|
+
* @type {Array<SourceModel>}
|
|
428
428
|
* @memberof ArticleItemModel
|
|
429
429
|
*/
|
|
430
|
-
'
|
|
430
|
+
'sources'?: Array<SourceModel> | null;
|
|
431
431
|
/**
|
|
432
432
|
*
|
|
433
|
-
* @type {
|
|
433
|
+
* @type {AuditableEntity}
|
|
434
434
|
* @memberof ArticleItemModel
|
|
435
435
|
*/
|
|
436
|
-
'
|
|
436
|
+
'auditableEntity'?: AuditableEntity;
|
|
437
437
|
}
|
|
438
438
|
/**
|
|
439
439
|
*
|
|
@@ -533,34 +533,34 @@ export interface ArticleModel {
|
|
|
533
533
|
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
534
534
|
/**
|
|
535
535
|
*
|
|
536
|
-
* @type {Array<
|
|
536
|
+
* @type {Array<LocalizedUrlModel>}
|
|
537
537
|
* @memberof ArticleModel
|
|
538
538
|
*/
|
|
539
|
-
'
|
|
539
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
540
540
|
/**
|
|
541
541
|
*
|
|
542
|
-
* @type {
|
|
542
|
+
* @type {boolean}
|
|
543
543
|
* @memberof ArticleModel
|
|
544
544
|
*/
|
|
545
|
-
'
|
|
545
|
+
'confirmed'?: boolean;
|
|
546
546
|
/**
|
|
547
547
|
*
|
|
548
|
-
* @type {
|
|
548
|
+
* @type {Array<MediaModel>}
|
|
549
549
|
* @memberof ArticleModel
|
|
550
550
|
*/
|
|
551
|
-
'
|
|
551
|
+
'medias'?: Array<MediaModel> | null;
|
|
552
552
|
/**
|
|
553
553
|
*
|
|
554
|
-
* @type {Array<
|
|
554
|
+
* @type {Array<SourceModel>}
|
|
555
555
|
* @memberof ArticleModel
|
|
556
556
|
*/
|
|
557
|
-
'
|
|
557
|
+
'sources'?: Array<SourceModel> | null;
|
|
558
558
|
/**
|
|
559
559
|
*
|
|
560
|
-
* @type {
|
|
560
|
+
* @type {AuditableEntity}
|
|
561
561
|
* @memberof ArticleModel
|
|
562
562
|
*/
|
|
563
|
-
'
|
|
563
|
+
'auditableEntity'?: AuditableEntity;
|
|
564
564
|
/**
|
|
565
565
|
*
|
|
566
566
|
* @type {string}
|
|
@@ -3988,12 +3988,36 @@ export interface CreateHospitalSpecialtyCommand {
|
|
|
3988
3988
|
* @memberof CreateHospitalSpecialtyCommand
|
|
3989
3989
|
*/
|
|
3990
3990
|
'specialtyId'?: string;
|
|
3991
|
+
/**
|
|
3992
|
+
*
|
|
3993
|
+
* @type {string}
|
|
3994
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
3995
|
+
*/
|
|
3996
|
+
'title'?: string | null;
|
|
3997
|
+
/**
|
|
3998
|
+
*
|
|
3999
|
+
* @type {string}
|
|
4000
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4001
|
+
*/
|
|
4002
|
+
'description'?: string | null;
|
|
4003
|
+
/**
|
|
4004
|
+
*
|
|
4005
|
+
* @type {string}
|
|
4006
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4007
|
+
*/
|
|
4008
|
+
'content'?: string | null;
|
|
3991
4009
|
/**
|
|
3992
4010
|
*
|
|
3993
4011
|
* @type {number}
|
|
3994
4012
|
* @memberof CreateHospitalSpecialtyCommand
|
|
3995
4013
|
*/
|
|
3996
4014
|
'order'?: number;
|
|
4015
|
+
/**
|
|
4016
|
+
*
|
|
4017
|
+
* @type {Array<MediaModel>}
|
|
4018
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4019
|
+
*/
|
|
4020
|
+
'medias'?: Array<MediaModel> | null;
|
|
3997
4021
|
}
|
|
3998
4022
|
/**
|
|
3999
4023
|
*
|
|
@@ -7262,6 +7286,12 @@ export interface HospitalSpecialtiesModel {
|
|
|
7262
7286
|
* @interface HospitalSpecialtyItemModel
|
|
7263
7287
|
*/
|
|
7264
7288
|
export interface HospitalSpecialtyItemModel {
|
|
7289
|
+
/**
|
|
7290
|
+
*
|
|
7291
|
+
* @type {string}
|
|
7292
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7293
|
+
*/
|
|
7294
|
+
'id'?: string;
|
|
7265
7295
|
/**
|
|
7266
7296
|
*
|
|
7267
7297
|
* @type {string}
|
|
@@ -7310,12 +7340,54 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7310
7340
|
* @memberof HospitalSpecialtyItemModel
|
|
7311
7341
|
*/
|
|
7312
7342
|
'marketingType'?: MarketingType;
|
|
7343
|
+
/**
|
|
7344
|
+
*
|
|
7345
|
+
* @type {string}
|
|
7346
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7347
|
+
*/
|
|
7348
|
+
'title'?: string | null;
|
|
7349
|
+
/**
|
|
7350
|
+
*
|
|
7351
|
+
* @type {string}
|
|
7352
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7353
|
+
*/
|
|
7354
|
+
'normalizedTitle'?: string | null;
|
|
7355
|
+
/**
|
|
7356
|
+
*
|
|
7357
|
+
* @type {string}
|
|
7358
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7359
|
+
*/
|
|
7360
|
+
'description'?: string | null;
|
|
7361
|
+
/**
|
|
7362
|
+
*
|
|
7363
|
+
* @type {string}
|
|
7364
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7365
|
+
*/
|
|
7366
|
+
'content'?: string | null;
|
|
7313
7367
|
/**
|
|
7314
7368
|
*
|
|
7315
7369
|
* @type {number}
|
|
7316
7370
|
* @memberof HospitalSpecialtyItemModel
|
|
7317
7371
|
*/
|
|
7318
7372
|
'order'?: number;
|
|
7373
|
+
/**
|
|
7374
|
+
*
|
|
7375
|
+
* @type {boolean}
|
|
7376
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7377
|
+
*/
|
|
7378
|
+
'confirmed'?: boolean;
|
|
7379
|
+
/**
|
|
7380
|
+
*
|
|
7381
|
+
* @type {Array<MediaModel>}
|
|
7382
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7383
|
+
*/
|
|
7384
|
+
'medias'?: Array<MediaModel> | null;
|
|
7385
|
+
/**
|
|
7386
|
+
*
|
|
7387
|
+
* @type {AuditableEntity}
|
|
7388
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7389
|
+
*/
|
|
7390
|
+
'auditableEntity'?: AuditableEntity;
|
|
7319
7391
|
}
|
|
7320
7392
|
/**
|
|
7321
7393
|
*
|
|
@@ -7323,6 +7395,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7323
7395
|
* @interface HospitalSpecialtyModel
|
|
7324
7396
|
*/
|
|
7325
7397
|
export interface HospitalSpecialtyModel {
|
|
7398
|
+
/**
|
|
7399
|
+
*
|
|
7400
|
+
* @type {string}
|
|
7401
|
+
* @memberof HospitalSpecialtyModel
|
|
7402
|
+
*/
|
|
7403
|
+
'id'?: string;
|
|
7326
7404
|
/**
|
|
7327
7405
|
*
|
|
7328
7406
|
* @type {string}
|
|
@@ -7371,12 +7449,60 @@ export interface HospitalSpecialtyModel {
|
|
|
7371
7449
|
* @memberof HospitalSpecialtyModel
|
|
7372
7450
|
*/
|
|
7373
7451
|
'marketingType'?: MarketingType;
|
|
7452
|
+
/**
|
|
7453
|
+
*
|
|
7454
|
+
* @type {string}
|
|
7455
|
+
* @memberof HospitalSpecialtyModel
|
|
7456
|
+
*/
|
|
7457
|
+
'title'?: string | null;
|
|
7458
|
+
/**
|
|
7459
|
+
*
|
|
7460
|
+
* @type {string}
|
|
7461
|
+
* @memberof HospitalSpecialtyModel
|
|
7462
|
+
*/
|
|
7463
|
+
'normalizedTitle'?: string | null;
|
|
7464
|
+
/**
|
|
7465
|
+
*
|
|
7466
|
+
* @type {string}
|
|
7467
|
+
* @memberof HospitalSpecialtyModel
|
|
7468
|
+
*/
|
|
7469
|
+
'description'?: string | null;
|
|
7470
|
+
/**
|
|
7471
|
+
*
|
|
7472
|
+
* @type {string}
|
|
7473
|
+
* @memberof HospitalSpecialtyModel
|
|
7474
|
+
*/
|
|
7475
|
+
'content'?: string | null;
|
|
7374
7476
|
/**
|
|
7375
7477
|
*
|
|
7376
7478
|
* @type {number}
|
|
7377
7479
|
* @memberof HospitalSpecialtyModel
|
|
7378
7480
|
*/
|
|
7379
7481
|
'order'?: number;
|
|
7482
|
+
/**
|
|
7483
|
+
*
|
|
7484
|
+
* @type {boolean}
|
|
7485
|
+
* @memberof HospitalSpecialtyModel
|
|
7486
|
+
*/
|
|
7487
|
+
'confirmed'?: boolean;
|
|
7488
|
+
/**
|
|
7489
|
+
*
|
|
7490
|
+
* @type {Array<MediaModel>}
|
|
7491
|
+
* @memberof HospitalSpecialtyModel
|
|
7492
|
+
*/
|
|
7493
|
+
'medias'?: Array<MediaModel> | null;
|
|
7494
|
+
/**
|
|
7495
|
+
*
|
|
7496
|
+
* @type {AuditableEntity}
|
|
7497
|
+
* @memberof HospitalSpecialtyModel
|
|
7498
|
+
*/
|
|
7499
|
+
'auditableEntity'?: AuditableEntity;
|
|
7500
|
+
/**
|
|
7501
|
+
*
|
|
7502
|
+
* @type {string}
|
|
7503
|
+
* @memberof HospitalSpecialtyModel
|
|
7504
|
+
*/
|
|
7505
|
+
'languageCode'?: string | null;
|
|
7380
7506
|
}
|
|
7381
7507
|
/**
|
|
7382
7508
|
*
|
|
@@ -11133,12 +11259,48 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11133
11259
|
* @interface UpdateHospitalSpecialtyCommand
|
|
11134
11260
|
*/
|
|
11135
11261
|
export interface UpdateHospitalSpecialtyCommand {
|
|
11262
|
+
/**
|
|
11263
|
+
*
|
|
11264
|
+
* @type {string}
|
|
11265
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11266
|
+
*/
|
|
11267
|
+
'title'?: string | null;
|
|
11268
|
+
/**
|
|
11269
|
+
*
|
|
11270
|
+
* @type {string}
|
|
11271
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11272
|
+
*/
|
|
11273
|
+
'description'?: string | null;
|
|
11274
|
+
/**
|
|
11275
|
+
*
|
|
11276
|
+
* @type {string}
|
|
11277
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11278
|
+
*/
|
|
11279
|
+
'content'?: string | null;
|
|
11136
11280
|
/**
|
|
11137
11281
|
*
|
|
11138
11282
|
* @type {number}
|
|
11139
11283
|
* @memberof UpdateHospitalSpecialtyCommand
|
|
11140
11284
|
*/
|
|
11141
11285
|
'order'?: number;
|
|
11286
|
+
/**
|
|
11287
|
+
*
|
|
11288
|
+
* @type {string}
|
|
11289
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11290
|
+
*/
|
|
11291
|
+
'languageCode'?: string | null;
|
|
11292
|
+
/**
|
|
11293
|
+
*
|
|
11294
|
+
* @type {boolean}
|
|
11295
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11296
|
+
*/
|
|
11297
|
+
'confirmed'?: boolean;
|
|
11298
|
+
/**
|
|
11299
|
+
*
|
|
11300
|
+
* @type {Array<MediaModel>}
|
|
11301
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11302
|
+
*/
|
|
11303
|
+
'medias'?: Array<MediaModel> | null;
|
|
11142
11304
|
}
|
|
11143
11305
|
/**
|
|
11144
11306
|
*
|
|
@@ -18877,7 +19039,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18877
19039
|
* @summary Get all Hospitals.
|
|
18878
19040
|
* @param {string} [hospitalId]
|
|
18879
19041
|
* @param {string} [name]
|
|
18880
|
-
* @param {string} [description]
|
|
18881
19042
|
* @param {string} [countryId]
|
|
18882
19043
|
* @param {Date} [created]
|
|
18883
19044
|
* @param {MarketingType} [marketingType]
|
|
@@ -18895,7 +19056,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18895
19056
|
* @param {*} [options] Override http request option.
|
|
18896
19057
|
* @throws {RequiredError}
|
|
18897
19058
|
*/
|
|
18898
|
-
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
19059
|
+
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>;
|
|
18899
19060
|
/**
|
|
18900
19061
|
*
|
|
18901
19062
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19183,15 +19344,18 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19183
19344
|
* @param {string} [specialtyId]
|
|
19184
19345
|
* @param {string} [specialtyName]
|
|
19185
19346
|
* @param {string} [specialtyTypeId]
|
|
19347
|
+
* @param {string} [title]
|
|
19186
19348
|
* @param {MarketingType} [marketingType]
|
|
19187
|
-
* @param {
|
|
19349
|
+
* @param {string} [languageCode]
|
|
19350
|
+
* @param {boolean} [showHidden]
|
|
19351
|
+
* @param {boolean} [returnDefaultValue]
|
|
19188
19352
|
* @param {number} [page]
|
|
19189
19353
|
* @param {number} [limit]
|
|
19190
19354
|
* @param {Date} [lastRetrieved]
|
|
19191
19355
|
* @param {*} [options] Override http request option.
|
|
19192
19356
|
* @throws {RequiredError}
|
|
19193
19357
|
*/
|
|
19194
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
19358
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19195
19359
|
/**
|
|
19196
19360
|
*
|
|
19197
19361
|
* @summary Create HospitalSpecialty.
|
|
@@ -19215,10 +19379,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19215
19379
|
* @summary Get HospitalSpecialty.
|
|
19216
19380
|
* @param {string} hospitalId
|
|
19217
19381
|
* @param {string} specialtyId
|
|
19382
|
+
* @param {string} [languageCode]
|
|
19383
|
+
* @param {boolean} [returnDefaultValue]
|
|
19218
19384
|
* @param {*} [options] Override http request option.
|
|
19219
19385
|
* @throws {RequiredError}
|
|
19220
19386
|
*/
|
|
19221
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19387
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19222
19388
|
/**
|
|
19223
19389
|
*
|
|
19224
19390
|
* @summary Update HospitalSpecialty.
|
|
@@ -19369,7 +19535,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19369
19535
|
* @summary Get all Hospitals.
|
|
19370
19536
|
* @param {string} [hospitalId]
|
|
19371
19537
|
* @param {string} [name]
|
|
19372
|
-
* @param {string} [description]
|
|
19373
19538
|
* @param {string} [countryId]
|
|
19374
19539
|
* @param {Date} [created]
|
|
19375
19540
|
* @param {MarketingType} [marketingType]
|
|
@@ -19387,7 +19552,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19387
19552
|
* @param {*} [options] Override http request option.
|
|
19388
19553
|
* @throws {RequiredError}
|
|
19389
19554
|
*/
|
|
19390
|
-
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
19555
|
+
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>;
|
|
19391
19556
|
/**
|
|
19392
19557
|
*
|
|
19393
19558
|
* @param {string} slug
|
|
@@ -19408,7 +19573,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19408
19573
|
* @summary Get all Hospitals.
|
|
19409
19574
|
* @param {string} [hospitalId]
|
|
19410
19575
|
* @param {string} [name]
|
|
19411
|
-
* @param {string} [description]
|
|
19412
19576
|
* @param {string} [countryId]
|
|
19413
19577
|
* @param {Date} [created]
|
|
19414
19578
|
* @param {MarketingType} [marketingType]
|
|
@@ -19426,7 +19590,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19426
19590
|
* @param {*} [options] Override http request option.
|
|
19427
19591
|
* @throws {RequiredError}
|
|
19428
19592
|
*/
|
|
19429
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
19593
|
+
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>>;
|
|
19430
19594
|
/**
|
|
19431
19595
|
*
|
|
19432
19596
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19714,15 +19878,18 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19714
19878
|
* @param {string} [specialtyId]
|
|
19715
19879
|
* @param {string} [specialtyName]
|
|
19716
19880
|
* @param {string} [specialtyTypeId]
|
|
19881
|
+
* @param {string} [title]
|
|
19717
19882
|
* @param {MarketingType} [marketingType]
|
|
19718
|
-
* @param {
|
|
19883
|
+
* @param {string} [languageCode]
|
|
19884
|
+
* @param {boolean} [showHidden]
|
|
19885
|
+
* @param {boolean} [returnDefaultValue]
|
|
19719
19886
|
* @param {number} [page]
|
|
19720
19887
|
* @param {number} [limit]
|
|
19721
19888
|
* @param {Date} [lastRetrieved]
|
|
19722
19889
|
* @param {*} [options] Override http request option.
|
|
19723
19890
|
* @throws {RequiredError}
|
|
19724
19891
|
*/
|
|
19725
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
19892
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | 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<HospitalSpecialtiesModel>>;
|
|
19726
19893
|
/**
|
|
19727
19894
|
*
|
|
19728
19895
|
* @summary Create HospitalSpecialty.
|
|
@@ -19746,10 +19913,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19746
19913
|
* @summary Get HospitalSpecialty.
|
|
19747
19914
|
* @param {string} hospitalId
|
|
19748
19915
|
* @param {string} specialtyId
|
|
19916
|
+
* @param {string} [languageCode]
|
|
19917
|
+
* @param {boolean} [returnDefaultValue]
|
|
19749
19918
|
* @param {*} [options] Override http request option.
|
|
19750
19919
|
* @throws {RequiredError}
|
|
19751
19920
|
*/
|
|
19752
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
19921
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
19753
19922
|
/**
|
|
19754
19923
|
*
|
|
19755
19924
|
* @summary Update HospitalSpecialty.
|
|
@@ -19900,7 +20069,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19900
20069
|
* @summary Get all Hospitals.
|
|
19901
20070
|
* @param {string} [hospitalId]
|
|
19902
20071
|
* @param {string} [name]
|
|
19903
|
-
* @param {string} [description]
|
|
19904
20072
|
* @param {string} [countryId]
|
|
19905
20073
|
* @param {Date} [created]
|
|
19906
20074
|
* @param {MarketingType} [marketingType]
|
|
@@ -19918,7 +20086,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19918
20086
|
* @param {*} [options] Override http request option.
|
|
19919
20087
|
* @throws {RequiredError}
|
|
19920
20088
|
*/
|
|
19921
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20089
|
+
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>>;
|
|
19922
20090
|
/**
|
|
19923
20091
|
*
|
|
19924
20092
|
* @param {string} slug
|
|
@@ -19939,7 +20107,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19939
20107
|
* @summary Get all Hospitals.
|
|
19940
20108
|
* @param {string} [hospitalId]
|
|
19941
20109
|
* @param {string} [name]
|
|
19942
|
-
* @param {string} [description]
|
|
19943
20110
|
* @param {string} [countryId]
|
|
19944
20111
|
* @param {Date} [created]
|
|
19945
20112
|
* @param {MarketingType} [marketingType]
|
|
@@ -19957,7 +20124,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19957
20124
|
* @param {*} [options] Override http request option.
|
|
19958
20125
|
* @throws {RequiredError}
|
|
19959
20126
|
*/
|
|
19960
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20127
|
+
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>;
|
|
19961
20128
|
/**
|
|
19962
20129
|
*
|
|
19963
20130
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20245,15 +20412,18 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20245
20412
|
* @param {string} [specialtyId]
|
|
20246
20413
|
* @param {string} [specialtyName]
|
|
20247
20414
|
* @param {string} [specialtyTypeId]
|
|
20415
|
+
* @param {string} [title]
|
|
20248
20416
|
* @param {MarketingType} [marketingType]
|
|
20249
|
-
* @param {
|
|
20417
|
+
* @param {string} [languageCode]
|
|
20418
|
+
* @param {boolean} [showHidden]
|
|
20419
|
+
* @param {boolean} [returnDefaultValue]
|
|
20250
20420
|
* @param {number} [page]
|
|
20251
20421
|
* @param {number} [limit]
|
|
20252
20422
|
* @param {Date} [lastRetrieved]
|
|
20253
20423
|
* @param {*} [options] Override http request option.
|
|
20254
20424
|
* @throws {RequiredError}
|
|
20255
20425
|
*/
|
|
20256
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
20426
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
20257
20427
|
/**
|
|
20258
20428
|
*
|
|
20259
20429
|
* @summary Create HospitalSpecialty.
|
|
@@ -20277,10 +20447,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20277
20447
|
* @summary Get HospitalSpecialty.
|
|
20278
20448
|
* @param {string} hospitalId
|
|
20279
20449
|
* @param {string} specialtyId
|
|
20450
|
+
* @param {string} [languageCode]
|
|
20451
|
+
* @param {boolean} [returnDefaultValue]
|
|
20280
20452
|
* @param {*} [options] Override http request option.
|
|
20281
20453
|
* @throws {RequiredError}
|
|
20282
20454
|
*/
|
|
20283
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
20455
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
20284
20456
|
/**
|
|
20285
20457
|
*
|
|
20286
20458
|
* @summary Update HospitalSpecialty.
|
|
@@ -20431,7 +20603,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20431
20603
|
* @summary Get all Hospitals.
|
|
20432
20604
|
* @param {string} [hospitalId]
|
|
20433
20605
|
* @param {string} [name]
|
|
20434
|
-
* @param {string} [description]
|
|
20435
20606
|
* @param {string} [countryId]
|
|
20436
20607
|
* @param {Date} [created]
|
|
20437
20608
|
* @param {MarketingType} [marketingType]
|
|
@@ -20449,7 +20620,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20449
20620
|
* @param {*} [options] Override http request option.
|
|
20450
20621
|
* @throws {RequiredError}
|
|
20451
20622
|
*/
|
|
20452
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20623
|
+
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>;
|
|
20453
20624
|
/**
|
|
20454
20625
|
*
|
|
20455
20626
|
* @param {string} slug
|
|
@@ -20472,7 +20643,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20472
20643
|
* @summary Get all Hospitals.
|
|
20473
20644
|
* @param {string} [hospitalId]
|
|
20474
20645
|
* @param {string} [name]
|
|
20475
|
-
* @param {string} [description]
|
|
20476
20646
|
* @param {string} [countryId]
|
|
20477
20647
|
* @param {Date} [created]
|
|
20478
20648
|
* @param {MarketingType} [marketingType]
|
|
@@ -20491,7 +20661,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20491
20661
|
* @throws {RequiredError}
|
|
20492
20662
|
* @memberof HospitalsApi
|
|
20493
20663
|
*/
|
|
20494
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string,
|
|
20664
|
+
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>>;
|
|
20495
20665
|
/**
|
|
20496
20666
|
*
|
|
20497
20667
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20806,8 +20976,11 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20806
20976
|
* @param {string} [specialtyId]
|
|
20807
20977
|
* @param {string} [specialtyName]
|
|
20808
20978
|
* @param {string} [specialtyTypeId]
|
|
20979
|
+
* @param {string} [title]
|
|
20809
20980
|
* @param {MarketingType} [marketingType]
|
|
20810
|
-
* @param {
|
|
20981
|
+
* @param {string} [languageCode]
|
|
20982
|
+
* @param {boolean} [showHidden]
|
|
20983
|
+
* @param {boolean} [returnDefaultValue]
|
|
20811
20984
|
* @param {number} [page]
|
|
20812
20985
|
* @param {number} [limit]
|
|
20813
20986
|
* @param {Date} [lastRetrieved]
|
|
@@ -20815,7 +20988,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20815
20988
|
* @throws {RequiredError}
|
|
20816
20989
|
* @memberof HospitalsApi
|
|
20817
20990
|
*/
|
|
20818
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType,
|
|
20991
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
20819
20992
|
/**
|
|
20820
20993
|
*
|
|
20821
20994
|
* @summary Create HospitalSpecialty.
|
|
@@ -20841,11 +21014,13 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20841
21014
|
* @summary Get HospitalSpecialty.
|
|
20842
21015
|
* @param {string} hospitalId
|
|
20843
21016
|
* @param {string} specialtyId
|
|
21017
|
+
* @param {string} [languageCode]
|
|
21018
|
+
* @param {boolean} [returnDefaultValue]
|
|
20844
21019
|
* @param {*} [options] Override http request option.
|
|
20845
21020
|
* @throws {RequiredError}
|
|
20846
21021
|
* @memberof HospitalsApi
|
|
20847
21022
|
*/
|
|
20848
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
21023
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
20849
21024
|
/**
|
|
20850
21025
|
*
|
|
20851
21026
|
* @summary Update HospitalSpecialty.
|
|
@@ -21008,7 +21183,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
21008
21183
|
* @summary Get all Hospitals.
|
|
21009
21184
|
* @param {string} [hospitalId]
|
|
21010
21185
|
* @param {string} [name]
|
|
21011
|
-
* @param {string} [description]
|
|
21012
21186
|
* @param {string} [countryId]
|
|
21013
21187
|
* @param {Date} [created]
|
|
21014
21188
|
* @param {MarketingType} [marketingType]
|
|
@@ -21027,7 +21201,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
21027
21201
|
* @throws {RequiredError}
|
|
21028
21202
|
* @memberof HospitalsApi
|
|
21029
21203
|
*/
|
|
21030
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string,
|
|
21204
|
+
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>>;
|
|
21031
21205
|
/**
|
|
21032
21206
|
*
|
|
21033
21207
|
* @param {string} slug
|
|
@@ -24070,14 +24244,13 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
24070
24244
|
* @summary Get all ServiceCategories.
|
|
24071
24245
|
* @param {string} [id]
|
|
24072
24246
|
* @param {string} [name]
|
|
24073
|
-
* @param {string} [description]
|
|
24074
24247
|
* @param {number} [page]
|
|
24075
24248
|
* @param {number} [limit]
|
|
24076
24249
|
* @param {Date} [lastRetrieved]
|
|
24077
24250
|
* @param {*} [options] Override http request option.
|
|
24078
24251
|
* @throws {RequiredError}
|
|
24079
24252
|
*/
|
|
24080
|
-
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined,
|
|
24253
|
+
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24081
24254
|
/**
|
|
24082
24255
|
*
|
|
24083
24256
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -24121,14 +24294,13 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
24121
24294
|
* @summary Get all ServiceCategories.
|
|
24122
24295
|
* @param {string} [id]
|
|
24123
24296
|
* @param {string} [name]
|
|
24124
|
-
* @param {string} [description]
|
|
24125
24297
|
* @param {number} [page]
|
|
24126
24298
|
* @param {number} [limit]
|
|
24127
24299
|
* @param {Date} [lastRetrieved]
|
|
24128
24300
|
* @param {*} [options] Override http request option.
|
|
24129
24301
|
* @throws {RequiredError}
|
|
24130
24302
|
*/
|
|
24131
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
24303
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
|
|
24132
24304
|
/**
|
|
24133
24305
|
*
|
|
24134
24306
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -24172,14 +24344,13 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
24172
24344
|
* @summary Get all ServiceCategories.
|
|
24173
24345
|
* @param {string} [id]
|
|
24174
24346
|
* @param {string} [name]
|
|
24175
|
-
* @param {string} [description]
|
|
24176
24347
|
* @param {number} [page]
|
|
24177
24348
|
* @param {number} [limit]
|
|
24178
24349
|
* @param {Date} [lastRetrieved]
|
|
24179
24350
|
* @param {*} [options] Override http request option.
|
|
24180
24351
|
* @throws {RequiredError}
|
|
24181
24352
|
*/
|
|
24182
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
24353
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
24183
24354
|
/**
|
|
24184
24355
|
*
|
|
24185
24356
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -24225,7 +24396,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
24225
24396
|
* @summary Get all ServiceCategories.
|
|
24226
24397
|
* @param {string} [id]
|
|
24227
24398
|
* @param {string} [name]
|
|
24228
|
-
* @param {string} [description]
|
|
24229
24399
|
* @param {number} [page]
|
|
24230
24400
|
* @param {number} [limit]
|
|
24231
24401
|
* @param {Date} [lastRetrieved]
|
|
@@ -24233,7 +24403,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
24233
24403
|
* @throws {RequiredError}
|
|
24234
24404
|
* @memberof ServicesCategoriesApi
|
|
24235
24405
|
*/
|
|
24236
|
-
apiV1ServicescategoriesGet(id?: string, name?: string,
|
|
24406
|
+
apiV1ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
24237
24407
|
/**
|
|
24238
24408
|
*
|
|
24239
24409
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|