ch-api-client-typescript2 4.1.1 → 4.1.4

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
@@ -8088,6 +8088,12 @@ export interface ServiceReviewItemModel {
8088
8088
  * @memberof ServiceReviewItemModel
8089
8089
  */
8090
8090
  'serviceSlug'?: string | null;
8091
+ /**
8092
+ *
8093
+ * @type {string}
8094
+ * @memberof ServiceReviewItemModel
8095
+ */
8096
+ 'hospitalId'?: string;
8091
8097
  /**
8092
8098
  *
8093
8099
  * @type {string}
@@ -8215,6 +8221,12 @@ export interface ServiceReviewModel {
8215
8221
  * @memberof ServiceReviewModel
8216
8222
  */
8217
8223
  'serviceSlug'?: string | null;
8224
+ /**
8225
+ *
8226
+ * @type {string}
8227
+ * @memberof ServiceReviewModel
8228
+ */
8229
+ 'hospitalId'?: string;
8218
8230
  /**
8219
8231
  *
8220
8232
  * @type {string}
@@ -14131,25 +14143,28 @@ export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configu
14131
14143
  *
14132
14144
  * @param {string} dealId
14133
14145
  * @param {string} [hospitalId]
14146
+ * @param {boolean} [isExternal]
14134
14147
  * @param {*} [options] Override http request option.
14135
14148
  * @throws {RequiredError}
14136
14149
  */
14137
- apiV2GroupchannelsDealDealIdGet: (dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14150
+ apiV2GroupchannelsDealDealIdGet: (dealId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14138
14151
  /**
14139
14152
  *
14140
14153
  * @param {string} doctorId
14141
14154
  * @param {string} [hospitalId]
14155
+ * @param {boolean} [isExternal]
14142
14156
  * @param {*} [options] Override http request option.
14143
14157
  * @throws {RequiredError}
14144
14158
  */
14145
- apiV2GroupchannelsDoctorDoctorIdGet: (doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14159
+ apiV2GroupchannelsDoctorDoctorIdGet: (doctorId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14146
14160
  /**
14147
14161
  *
14148
14162
  * @param {string} hospitalId
14163
+ * @param {boolean} [isExternal]
14149
14164
  * @param {*} [options] Override http request option.
14150
14165
  * @throws {RequiredError}
14151
14166
  */
14152
- apiV2GroupchannelsHospitalHospitalIdGet: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14167
+ apiV2GroupchannelsHospitalHospitalIdGet: (hospitalId: string, isExternal?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14153
14168
  };
14154
14169
  /**
14155
14170
  * GroupChannelsApi - functional programming interface
@@ -14168,25 +14183,28 @@ export declare const GroupChannelsApiFp: (configuration?: Configuration | undefi
14168
14183
  *
14169
14184
  * @param {string} dealId
14170
14185
  * @param {string} [hospitalId]
14186
+ * @param {boolean} [isExternal]
14171
14187
  * @param {*} [options] Override http request option.
14172
14188
  * @throws {RequiredError}
14173
14189
  */
14174
- apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
14190
+ apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
14175
14191
  /**
14176
14192
  *
14177
14193
  * @param {string} doctorId
14178
14194
  * @param {string} [hospitalId]
14195
+ * @param {boolean} [isExternal]
14179
14196
  * @param {*} [options] Override http request option.
14180
14197
  * @throws {RequiredError}
14181
14198
  */
14182
- apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
14199
+ apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
14183
14200
  /**
14184
14201
  *
14185
14202
  * @param {string} hospitalId
14203
+ * @param {boolean} [isExternal]
14186
14204
  * @param {*} [options] Override http request option.
14187
14205
  * @throws {RequiredError}
14188
14206
  */
14189
- apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SendBirdGroupChannelModel>>;
14207
+ apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, isExternal?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
14190
14208
  };
14191
14209
  /**
14192
14210
  * GroupChannelsApi - factory interface
@@ -14205,25 +14223,28 @@ export declare const GroupChannelsApiFactory: (configuration?: Configuration | u
14205
14223
  *
14206
14224
  * @param {string} dealId
14207
14225
  * @param {string} [hospitalId]
14226
+ * @param {boolean} [isExternal]
14208
14227
  * @param {*} [options] Override http request option.
14209
14228
  * @throws {RequiredError}
14210
14229
  */
14211
- apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
14230
+ apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: any): AxiosPromise<string>;
14212
14231
  /**
14213
14232
  *
14214
14233
  * @param {string} doctorId
14215
14234
  * @param {string} [hospitalId]
14235
+ * @param {boolean} [isExternal]
14216
14236
  * @param {*} [options] Override http request option.
14217
14237
  * @throws {RequiredError}
14218
14238
  */
14219
- apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
14239
+ apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string | undefined, isExternal?: boolean | undefined, options?: any): AxiosPromise<string>;
14220
14240
  /**
14221
14241
  *
14222
14242
  * @param {string} hospitalId
14243
+ * @param {boolean} [isExternal]
14223
14244
  * @param {*} [options] Override http request option.
14224
14245
  * @throws {RequiredError}
14225
14246
  */
14226
- apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: any): AxiosPromise<SendBirdGroupChannelModel>;
14247
+ apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, isExternal?: boolean | undefined, options?: any): AxiosPromise<string>;
14227
14248
  };
14228
14249
  /**
14229
14250
  * GroupChannelsApi - object-oriented interface
@@ -14245,28 +14266,31 @@ export declare class GroupChannelsApi extends BaseAPI {
14245
14266
  *
14246
14267
  * @param {string} dealId
14247
14268
  * @param {string} [hospitalId]
14269
+ * @param {boolean} [isExternal]
14248
14270
  * @param {*} [options] Override http request option.
14249
14271
  * @throws {RequiredError}
14250
14272
  * @memberof GroupChannelsApi
14251
14273
  */
14252
- apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
14274
+ apiV2GroupchannelsDealDealIdGet(dealId: string, hospitalId?: string, isExternal?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
14253
14275
  /**
14254
14276
  *
14255
14277
  * @param {string} doctorId
14256
14278
  * @param {string} [hospitalId]
14279
+ * @param {boolean} [isExternal]
14257
14280
  * @param {*} [options] Override http request option.
14258
14281
  * @throws {RequiredError}
14259
14282
  * @memberof GroupChannelsApi
14260
14283
  */
14261
- apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
14284
+ apiV2GroupchannelsDoctorDoctorIdGet(doctorId: string, hospitalId?: string, isExternal?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
14262
14285
  /**
14263
14286
  *
14264
14287
  * @param {string} hospitalId
14288
+ * @param {boolean} [isExternal]
14265
14289
  * @param {*} [options] Override http request option.
14266
14290
  * @throws {RequiredError}
14267
14291
  * @memberof GroupChannelsApi
14268
14292
  */
14269
- apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SendBirdGroupChannelModel, any>>;
14293
+ apiV2GroupchannelsHospitalHospitalIdGet(hospitalId: string, isExternal?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
14270
14294
  }
14271
14295
  /**
14272
14296
  * HospitalsApi - axios parameter creator