ch-api-client-typescript2 4.1.0 → 4.1.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 CHANGED
@@ -313,6 +313,37 @@ export interface AdminMessageModel {
313
313
  */
314
314
  'updated_at'?: number;
315
315
  }
316
+ /**
317
+ *
318
+ * @export
319
+ * @interface AppVersionModel
320
+ */
321
+ export interface AppVersionModel {
322
+ /**
323
+ *
324
+ * @type {Platform}
325
+ * @memberof AppVersionModel
326
+ */
327
+ 'platform'?: Platform;
328
+ /**
329
+ *
330
+ * @type {string}
331
+ * @memberof AppVersionModel
332
+ */
333
+ 'latestVersion'?: string | null;
334
+ /**
335
+ *
336
+ * @type {string}
337
+ * @memberof AppVersionModel
338
+ */
339
+ 'minimumVersion'?: string | null;
340
+ /**
341
+ *
342
+ * @type {Date}
343
+ * @memberof AppVersionModel
344
+ */
345
+ 'committedDate'?: Date;
346
+ }
316
347
  /**
317
348
  *
318
349
  * @export
@@ -775,16 +806,6 @@ export interface ArticleSourcesModel {
775
806
  */
776
807
  'metaData'?: PagedListMetaData;
777
808
  }
778
- /**
779
- *
780
- * @export
781
- * @enum {string}
782
- */
783
- export declare enum ArticleStatus {
784
- Draft = "Draft",
785
- Active = "Active",
786
- Archived = "Archived"
787
- }
788
809
  /**
789
810
  *
790
811
  * @export
@@ -5889,6 +5910,36 @@ export interface HospitalServiceItemModel {
5889
5910
  * @memberof HospitalServiceItemModel
5890
5911
  */
5891
5912
  'hospitalSpecialtySlug'?: string | null;
5913
+ /**
5914
+ *
5915
+ * @type {string}
5916
+ * @memberof HospitalServiceItemModel
5917
+ */
5918
+ 'hospitalSpecialtyId'?: string;
5919
+ /**
5920
+ *
5921
+ * @type {Procedure}
5922
+ * @memberof HospitalServiceItemModel
5923
+ */
5924
+ 'procedure'?: Procedure;
5925
+ /**
5926
+ *
5927
+ * @type {number}
5928
+ * @memberof HospitalServiceItemModel
5929
+ */
5930
+ 'minPrice'?: number | null;
5931
+ /**
5932
+ *
5933
+ * @type {number}
5934
+ * @memberof HospitalServiceItemModel
5935
+ */
5936
+ 'maxPrice'?: number | null;
5937
+ /**
5938
+ *
5939
+ * @type {boolean}
5940
+ * @memberof HospitalServiceItemModel
5941
+ */
5942
+ 'priceReuqest'?: boolean;
5892
5943
  /**
5893
5944
  *
5894
5945
  * @type {number}
@@ -5962,6 +6013,36 @@ export interface HospitalServiceModel {
5962
6013
  * @memberof HospitalServiceModel
5963
6014
  */
5964
6015
  'hospitalSpecialtySlug'?: string | null;
6016
+ /**
6017
+ *
6018
+ * @type {string}
6019
+ * @memberof HospitalServiceModel
6020
+ */
6021
+ 'hospitalSpecialtyId'?: string;
6022
+ /**
6023
+ *
6024
+ * @type {Procedure}
6025
+ * @memberof HospitalServiceModel
6026
+ */
6027
+ 'procedure'?: Procedure;
6028
+ /**
6029
+ *
6030
+ * @type {number}
6031
+ * @memberof HospitalServiceModel
6032
+ */
6033
+ 'minPrice'?: number | null;
6034
+ /**
6035
+ *
6036
+ * @type {number}
6037
+ * @memberof HospitalServiceModel
6038
+ */
6039
+ 'maxPrice'?: number | null;
6040
+ /**
6041
+ *
6042
+ * @type {boolean}
6043
+ * @memberof HospitalServiceModel
6044
+ */
6045
+ 'priceReuqest'?: boolean;
5965
6046
  /**
5966
6047
  *
5967
6048
  * @type {number}
@@ -6040,30 +6121,6 @@ export interface HospitalServiceModel {
6040
6121
  * @memberof HospitalServiceModel
6041
6122
  */
6042
6123
  'serviceCategoryName'?: string | null;
6043
- /**
6044
- *
6045
- * @type {Procedure}
6046
- * @memberof HospitalServiceModel
6047
- */
6048
- 'procedure'?: Procedure;
6049
- /**
6050
- *
6051
- * @type {number}
6052
- * @memberof HospitalServiceModel
6053
- */
6054
- 'minPrice'?: number | null;
6055
- /**
6056
- *
6057
- * @type {number}
6058
- * @memberof HospitalServiceModel
6059
- */
6060
- 'maxPrice'?: number | null;
6061
- /**
6062
- *
6063
- * @type {boolean}
6064
- * @memberof HospitalServiceModel
6065
- */
6066
- 'priceReuqest'?: boolean;
6067
6124
  /**
6068
6125
  *
6069
6126
  * @type {string}
@@ -6274,6 +6331,30 @@ export interface HospitalSpecialtyItemModel {
6274
6331
  * @memberof HospitalSpecialtyItemModel
6275
6332
  */
6276
6333
  'specialtyId'?: string;
6334
+ /**
6335
+ *
6336
+ * @type {string}
6337
+ * @memberof HospitalSpecialtyItemModel
6338
+ */
6339
+ 'specialtyName'?: string | null;
6340
+ /**
6341
+ *
6342
+ * @type {string}
6343
+ * @memberof HospitalSpecialtyItemModel
6344
+ */
6345
+ 'specialtyTypeId'?: string;
6346
+ /**
6347
+ *
6348
+ * @type {string}
6349
+ * @memberof HospitalSpecialtyItemModel
6350
+ */
6351
+ 'specialtyTypeName'?: string | null;
6352
+ /**
6353
+ *
6354
+ * @type {MarketingType}
6355
+ * @memberof HospitalSpecialtyItemModel
6356
+ */
6357
+ 'marketingType'?: MarketingType;
6277
6358
  /**
6278
6359
  *
6279
6360
  * @type {AuditableEntity}
@@ -6361,58 +6442,70 @@ export interface HospitalSpecialtyModel {
6361
6442
  'specialtyId'?: string;
6362
6443
  /**
6363
6444
  *
6364
- * @type {AuditableEntity}
6445
+ * @type {string}
6365
6446
  * @memberof HospitalSpecialtyModel
6366
6447
  */
6367
- 'auditableEntity'?: AuditableEntity;
6448
+ 'specialtyName'?: string | null;
6368
6449
  /**
6369
6450
  *
6370
6451
  * @type {string}
6371
6452
  * @memberof HospitalSpecialtyModel
6372
6453
  */
6373
- 'description'?: string | null;
6454
+ 'specialtyTypeId'?: string;
6374
6455
  /**
6375
6456
  *
6376
6457
  * @type {string}
6377
6458
  * @memberof HospitalSpecialtyModel
6378
6459
  */
6379
- 'overview'?: string | null;
6460
+ 'specialtyTypeName'?: string | null;
6461
+ /**
6462
+ *
6463
+ * @type {MarketingType}
6464
+ * @memberof HospitalSpecialtyModel
6465
+ */
6466
+ 'marketingType'?: MarketingType;
6467
+ /**
6468
+ *
6469
+ * @type {AuditableEntity}
6470
+ * @memberof HospitalSpecialtyModel
6471
+ */
6472
+ 'auditableEntity'?: AuditableEntity;
6380
6473
  /**
6381
6474
  *
6382
6475
  * @type {string}
6383
6476
  * @memberof HospitalSpecialtyModel
6384
6477
  */
6385
- 'content'?: string | null;
6478
+ 'description'?: string | null;
6386
6479
  /**
6387
6480
  *
6388
6481
  * @type {string}
6389
6482
  * @memberof HospitalSpecialtyModel
6390
6483
  */
6391
- 'hospitalId'?: string;
6484
+ 'overview'?: string | null;
6392
6485
  /**
6393
6486
  *
6394
6487
  * @type {string}
6395
6488
  * @memberof HospitalSpecialtyModel
6396
6489
  */
6397
- 'hospitalName'?: string | null;
6490
+ 'content'?: string | null;
6398
6491
  /**
6399
6492
  *
6400
6493
  * @type {string}
6401
6494
  * @memberof HospitalSpecialtyModel
6402
6495
  */
6403
- 'hospitalSlug'?: string | null;
6496
+ 'hospitalId'?: string;
6404
6497
  /**
6405
6498
  *
6406
6499
  * @type {string}
6407
6500
  * @memberof HospitalSpecialtyModel
6408
6501
  */
6409
- 'specialtyName'?: string | null;
6502
+ 'hospitalName'?: string | null;
6410
6503
  /**
6411
6504
  *
6412
6505
  * @type {string}
6413
6506
  * @memberof HospitalSpecialtyModel
6414
6507
  */
6415
- 'specialtyTypeId'?: string;
6508
+ 'hospitalSlug'?: string | null;
6416
6509
  /**
6417
6510
  *
6418
6511
  * @type {string}
@@ -7541,6 +7634,16 @@ export interface PlansModel {
7541
7634
  */
7542
7635
  'metaData'?: PagedListMetaData;
7543
7636
  }
7637
+ /**
7638
+ *
7639
+ * @export
7640
+ * @enum {string}
7641
+ */
7642
+ export declare enum Platform {
7643
+ Web = "Web",
7644
+ IOs = "iOS",
7645
+ Android = "Android"
7646
+ }
7544
7647
  /**
7545
7648
  *
7546
7649
  * @export
@@ -8026,6 +8129,12 @@ export interface ServiceReviewItemModel {
8026
8129
  * @memberof ServiceReviewItemModel
8027
8130
  */
8028
8131
  'serviceSlug'?: string | null;
8132
+ /**
8133
+ *
8134
+ * @type {string}
8135
+ * @memberof ServiceReviewItemModel
8136
+ */
8137
+ 'hospitalId'?: string;
8029
8138
  /**
8030
8139
  *
8031
8140
  * @type {string}
@@ -8153,6 +8262,12 @@ export interface ServiceReviewModel {
8153
8262
  * @memberof ServiceReviewModel
8154
8263
  */
8155
8264
  'serviceSlug'?: string | null;
8265
+ /**
8266
+ *
8267
+ * @type {string}
8268
+ * @memberof ServiceReviewModel
8269
+ */
8270
+ 'hospitalId'?: string;
8156
8271
  /**
8157
8272
  *
8158
8273
  * @type {string}
@@ -9918,6 +10033,61 @@ export declare class AccreditationsApi extends BaseAPI {
9918
10033
  */
9919
10034
  apiV2AccreditationsGet(name?: string, logo?: string, country?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccreditationsModel, any>>;
9920
10035
  }
10036
+ /**
10037
+ * AppVersionApi - axios parameter creator
10038
+ * @export
10039
+ */
10040
+ export declare const AppVersionApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
10041
+ /**
10042
+ *
10043
+ * @param {Platform} platform
10044
+ * @param {*} [options] Override http request option.
10045
+ * @throws {RequiredError}
10046
+ */
10047
+ apiV2AppversionPlatformGet: (platform: Platform, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10048
+ };
10049
+ /**
10050
+ * AppVersionApi - functional programming interface
10051
+ * @export
10052
+ */
10053
+ export declare const AppVersionApiFp: (configuration?: Configuration | undefined) => {
10054
+ /**
10055
+ *
10056
+ * @param {Platform} platform
10057
+ * @param {*} [options] Override http request option.
10058
+ * @throws {RequiredError}
10059
+ */
10060
+ apiV2AppversionPlatformGet(platform: Platform, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AppVersionModel>>;
10061
+ };
10062
+ /**
10063
+ * AppVersionApi - factory interface
10064
+ * @export
10065
+ */
10066
+ export declare const AppVersionApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
10067
+ /**
10068
+ *
10069
+ * @param {Platform} platform
10070
+ * @param {*} [options] Override http request option.
10071
+ * @throws {RequiredError}
10072
+ */
10073
+ apiV2AppversionPlatformGet(platform: Platform, options?: any): AxiosPromise<AppVersionModel>;
10074
+ };
10075
+ /**
10076
+ * AppVersionApi - object-oriented interface
10077
+ * @export
10078
+ * @class AppVersionApi
10079
+ * @extends {BaseAPI}
10080
+ */
10081
+ export declare class AppVersionApi extends BaseAPI {
10082
+ /**
10083
+ *
10084
+ * @param {Platform} platform
10085
+ * @param {*} [options] Override http request option.
10086
+ * @throws {RequiredError}
10087
+ * @memberof AppVersionApi
10088
+ */
10089
+ apiV2AppversionPlatformGet(platform: Platform, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppVersionModel, any>>;
10090
+ }
9921
10091
  /**
9922
10092
  * ArticlesApi - axios parameter creator
9923
10093
  * @export
@@ -10029,7 +10199,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
10029
10199
  * @param {string} [id]
10030
10200
  * @param {string} [name]
10031
10201
  * @param {string} [description]
10032
- * @param {ArticleStatus} [status]
10033
10202
  * @param {MarketingType} [marketingType]
10034
10203
  * @param {string} [userId]
10035
10204
  * @param {string} [userName]
@@ -10049,7 +10218,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
10049
10218
  * @param {*} [options] Override http request option.
10050
10219
  * @throws {RequiredError}
10051
10220
  */
10052
- apiV2ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10221
+ apiV2ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10053
10222
  /**
10054
10223
  *
10055
10224
  * @param {string} slug
@@ -10171,7 +10340,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10171
10340
  * @param {string} [id]
10172
10341
  * @param {string} [name]
10173
10342
  * @param {string} [description]
10174
- * @param {ArticleStatus} [status]
10175
10343
  * @param {MarketingType} [marketingType]
10176
10344
  * @param {string} [userId]
10177
10345
  * @param {string} [userName]
@@ -10191,7 +10359,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
10191
10359
  * @param {*} [options] Override http request option.
10192
10360
  * @throws {RequiredError}
10193
10361
  */
10194
- apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
10362
+ apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
10195
10363
  /**
10196
10364
  *
10197
10365
  * @param {string} slug
@@ -10313,7 +10481,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10313
10481
  * @param {string} [id]
10314
10482
  * @param {string} [name]
10315
10483
  * @param {string} [description]
10316
- * @param {ArticleStatus} [status]
10317
10484
  * @param {MarketingType} [marketingType]
10318
10485
  * @param {string} [userId]
10319
10486
  * @param {string} [userName]
@@ -10333,7 +10500,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
10333
10500
  * @param {*} [options] Override http request option.
10334
10501
  * @throws {RequiredError}
10335
10502
  */
10336
- apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
10503
+ apiV2ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
10337
10504
  /**
10338
10505
  *
10339
10506
  * @param {string} slug
@@ -10466,7 +10633,6 @@ export declare class ArticlesApi extends BaseAPI {
10466
10633
  * @param {string} [id]
10467
10634
  * @param {string} [name]
10468
10635
  * @param {string} [description]
10469
- * @param {ArticleStatus} [status]
10470
10636
  * @param {MarketingType} [marketingType]
10471
10637
  * @param {string} [userId]
10472
10638
  * @param {string} [userName]
@@ -10487,7 +10653,7 @@ export declare class ArticlesApi extends BaseAPI {
10487
10653
  * @throws {RequiredError}
10488
10654
  * @memberof ArticlesApi
10489
10655
  */
10490
- apiV2ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel, any>>;
10656
+ apiV2ArticlesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel, any>>;
10491
10657
  /**
10492
10658
  *
10493
10659
  * @param {string} slug
@@ -14073,25 +14239,28 @@ export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configu
14073
14239
  *
14074
14240
  * @param {string} dealId
14075
14241
  * @param {string} [hospitalId]
14242
+ * @param {boolean} [isExternal]
14076
14243
  * @param {*} [options] Override http request option.
14077
14244
  * @throws {RequiredError}
14078
14245
  */
14079
- apiV2GroupchannelsDealDealIdGet: (dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14246
+ apiV2GroupchannelsDealDealIdGet: (dealId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14080
14247
  /**
14081
14248
  *
14082
14249
  * @param {string} doctorId
14083
14250
  * @param {string} [hospitalId]
14251
+ * @param {boolean} [isExternal]
14084
14252
  * @param {*} [options] Override http request option.
14085
14253
  * @throws {RequiredError}
14086
14254
  */
14087
- apiV2GroupchannelsDoctorDoctorIdGet: (doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14255
+ apiV2GroupchannelsDoctorDoctorIdGet: (doctorId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14088
14256
  /**
14089
14257
  *
14090
14258
  * @param {string} hospitalId
14259
+ * @param {boolean} [isExternal]
14091
14260
  * @param {*} [options] Override http request option.
14092
14261
  * @throws {RequiredError}
14093
14262
  */
14094
- apiV2GroupchannelsHospitalHospitalIdGet: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14263
+ apiV2GroupchannelsHospitalHospitalIdGet: (hospitalId: string, isExternal?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14095
14264
  };
14096
14265
  /**
14097
14266
  * GroupChannelsApi - functional programming interface
@@ -14110,25 +14279,28 @@ export declare const GroupChannelsApiFp: (configuration?: Configuration | undefi
14110
14279
  *
14111
14280
  * @param {string} dealId
14112
14281
  * @param {string} [hospitalId]
14282
+ * @param {boolean} [isExternal]
14113
14283
  * @param {*} [options] Override http request option.
14114
14284
  * @throws {RequiredError}
14115
14285
  */
14116
- apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
14286
+ apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
14117
14287
  /**
14118
14288
  *
14119
14289
  * @param {string} doctorId
14120
14290
  * @param {string} [hospitalId]
14291
+ * @param {boolean} [isExternal]
14121
14292
  * @param {*} [options] Override http request option.
14122
14293
  * @throws {RequiredError}
14123
14294
  */
14124
- apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
14295
+ apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
14125
14296
  /**
14126
14297
  *
14127
14298
  * @param {string} hospitalId
14299
+ * @param {boolean} [isExternal]
14128
14300
  * @param {*} [options] Override http request option.
14129
14301
  * @throws {RequiredError}
14130
14302
  */
14131
- apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
14303
+ apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, isExternal?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
14132
14304
  };
14133
14305
  /**
14134
14306
  * GroupChannelsApi - factory interface
@@ -14147,25 +14319,28 @@ export declare const GroupChannelsApiFactory: (configuration?: Configuration | u
14147
14319
  *
14148
14320
  * @param {string} dealId
14149
14321
  * @param {string} [hospitalId]
14322
+ * @param {boolean} [isExternal]
14150
14323
  * @param {*} [options] Override http request option.
14151
14324
  * @throws {RequiredError}
14152
14325
  */
14153
- apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
14326
+ apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: any): AxiosPromise<string>;
14154
14327
  /**
14155
14328
  *
14156
14329
  * @param {string} doctorId
14157
14330
  * @param {string} [hospitalId]
14331
+ * @param {boolean} [isExternal]
14158
14332
  * @param {*} [options] Override http request option.
14159
14333
  * @throws {RequiredError}
14160
14334
  */
14161
- apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
14335
+ apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: any): AxiosPromise<string>;
14162
14336
  /**
14163
14337
  *
14164
14338
  * @param {string} hospitalId
14339
+ * @param {boolean} [isExternal]
14165
14340
  * @param {*} [options] Override http request option.
14166
14341
  * @throws {RequiredError}
14167
14342
  */
14168
- apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
14343
+ apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, isExternal?: boolean | undefined, options?: any): AxiosPromise<string>;
14169
14344
  };
14170
14345
  /**
14171
14346
  * GroupChannelsApi - object-oriented interface
@@ -14187,28 +14362,31 @@ export declare class GroupChannelsApi extends BaseAPI {
14187
14362
  *
14188
14363
  * @param {string} dealId
14189
14364
  * @param {string} [hospitalId]
14365
+ * @param {boolean} [isExternal]
14190
14366
  * @param {*} [options] Override http request option.
14191
14367
  * @throws {RequiredError}
14192
14368
  * @memberof GroupChannelsApi
14193
14369
  */
14194
- apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
14370
+ apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string, isExternal?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
14195
14371
  /**
14196
14372
  *
14197
14373
  * @param {string} doctorId
14198
14374
  * @param {string} [hospitalId]
14375
+ * @param {boolean} [isExternal]
14199
14376
  * @param {*} [options] Override http request option.
14200
14377
  * @throws {RequiredError}
14201
14378
  * @memberof GroupChannelsApi
14202
14379
  */
14203
- apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
14380
+ apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string, isExternal?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
14204
14381
  /**
14205
14382
  *
14206
14383
  * @param {string} hospitalId
14384
+ * @param {boolean} [isExternal]
14207
14385
  * @param {*} [options] Override http request option.
14208
14386
  * @throws {RequiredError}
14209
14387
  * @memberof GroupChannelsApi
14210
14388
  */
14211
- apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
14389
+ apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, isExternal?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
14212
14390
  }
14213
14391
  /**
14214
14392
  * HospitalsApi - axios parameter creator
@@ -14401,13 +14579,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14401
14579
  * @param {string} [slug]
14402
14580
  * @param {MarketingType} [marketingType]
14403
14581
  * @param {string} [languageCode]
14582
+ * @param {boolean} [showHidden]
14404
14583
  * @param {number} [page]
14405
14584
  * @param {number} [limit]
14406
14585
  * @param {Date} [lastRetrieved]
14407
14586
  * @param {*} [options] Override http request option.
14408
14587
  * @throws {RequiredError}
14409
14588
  */
14410
- apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14589
+ apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14411
14590
  /**
14412
14591
  *
14413
14592
  * @summary Get all HospitalServiceMedias.
@@ -14445,13 +14624,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
14445
14624
  * @param {string} [slug]
14446
14625
  * @param {MarketingType} [marketingType]
14447
14626
  * @param {string} [languageCode]
14627
+ * @param {boolean} [showHidden]
14448
14628
  * @param {number} [page]
14449
14629
  * @param {number} [limit]
14450
14630
  * @param {Date} [lastRetrieved]
14451
14631
  * @param {*} [options] Override http request option.
14452
14632
  * @throws {RequiredError}
14453
14633
  */
14454
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14634
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14455
14635
  /**
14456
14636
  *
14457
14637
  * @summary Get HospitalSpecialty by slug.
@@ -14780,13 +14960,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14780
14960
  * @param {string} [slug]
14781
14961
  * @param {MarketingType} [marketingType]
14782
14962
  * @param {string} [languageCode]
14963
+ * @param {boolean} [showHidden]
14783
14964
  * @param {number} [page]
14784
14965
  * @param {number} [limit]
14785
14966
  * @param {Date} [lastRetrieved]
14786
14967
  * @param {*} [options] Override http request option.
14787
14968
  * @throws {RequiredError}
14788
14969
  */
14789
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
14970
+ apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
14790
14971
  /**
14791
14972
  *
14792
14973
  * @summary Get all HospitalServiceMedias.
@@ -14824,13 +15005,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
14824
15005
  * @param {string} [slug]
14825
15006
  * @param {MarketingType} [marketingType]
14826
15007
  * @param {string} [languageCode]
15008
+ * @param {boolean} [showHidden]
14827
15009
  * @param {number} [page]
14828
15010
  * @param {number} [limit]
14829
15011
  * @param {Date} [lastRetrieved]
14830
15012
  * @param {*} [options] Override http request option.
14831
15013
  * @throws {RequiredError}
14832
15014
  */
14833
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
15015
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
14834
15016
  /**
14835
15017
  *
14836
15018
  * @summary Get HospitalSpecialty by slug.
@@ -15159,13 +15341,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15159
15341
  * @param {string} [slug]
15160
15342
  * @param {MarketingType} [marketingType]
15161
15343
  * @param {string} [languageCode]
15344
+ * @param {boolean} [showHidden]
15162
15345
  * @param {number} [page]
15163
15346
  * @param {number} [limit]
15164
15347
  * @param {Date} [lastRetrieved]
15165
15348
  * @param {*} [options] Override http request option.
15166
15349
  * @throws {RequiredError}
15167
15350
  */
15168
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
15351
+ apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
15169
15352
  /**
15170
15353
  *
15171
15354
  * @summary Get all HospitalServiceMedias.
@@ -15203,13 +15386,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
15203
15386
  * @param {string} [slug]
15204
15387
  * @param {MarketingType} [marketingType]
15205
15388
  * @param {string} [languageCode]
15389
+ * @param {boolean} [showHidden]
15206
15390
  * @param {number} [page]
15207
15391
  * @param {number} [limit]
15208
15392
  * @param {Date} [lastRetrieved]
15209
15393
  * @param {*} [options] Override http request option.
15210
15394
  * @throws {RequiredError}
15211
15395
  */
15212
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
15396
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
15213
15397
  /**
15214
15398
  *
15215
15399
  * @summary Get HospitalSpecialty by slug.
@@ -15554,6 +15738,7 @@ export declare class HospitalsApi extends BaseAPI {
15554
15738
  * @param {string} [slug]
15555
15739
  * @param {MarketingType} [marketingType]
15556
15740
  * @param {string} [languageCode]
15741
+ * @param {boolean} [showHidden]
15557
15742
  * @param {number} [page]
15558
15743
  * @param {number} [limit]
15559
15744
  * @param {Date} [lastRetrieved]
@@ -15561,7 +15746,7 @@ export declare class HospitalsApi extends BaseAPI {
15561
15746
  * @throws {RequiredError}
15562
15747
  * @memberof HospitalsApi
15563
15748
  */
15564
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
15749
+ apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
15565
15750
  /**
15566
15751
  *
15567
15752
  * @summary Get all HospitalServiceMedias.
@@ -15601,6 +15786,7 @@ export declare class HospitalsApi extends BaseAPI {
15601
15786
  * @param {string} [slug]
15602
15787
  * @param {MarketingType} [marketingType]
15603
15788
  * @param {string} [languageCode]
15789
+ * @param {boolean} [showHidden]
15604
15790
  * @param {number} [page]
15605
15791
  * @param {number} [limit]
15606
15792
  * @param {Date} [lastRetrieved]
@@ -15608,7 +15794,7 @@ export declare class HospitalsApi extends BaseAPI {
15608
15794
  * @throws {RequiredError}
15609
15795
  * @memberof HospitalsApi
15610
15796
  */
15611
- apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
15797
+ apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
15612
15798
  /**
15613
15799
  *
15614
15800
  * @summary Get HospitalSpecialty by slug.