ch-admin-api-client-typescript 2.4.7 → 2.4.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 CHANGED
@@ -5027,6 +5027,24 @@ export interface DoctorItemModel {
5027
5027
  * @memberof DoctorItemModel
5028
5028
  */
5029
5029
  'auditableEntity'?: AuditableEntity;
5030
+ /**
5031
+ *
5032
+ * @type {string}
5033
+ * @memberof DoctorItemModel
5034
+ */
5035
+ 'userType'?: string | null;
5036
+ /**
5037
+ *
5038
+ * @type {Array<UserLanguageModel>}
5039
+ * @memberof DoctorItemModel
5040
+ */
5041
+ 'languages'?: Array<UserLanguageModel> | null;
5042
+ /**
5043
+ *
5044
+ * @type {Array<UserLocationModel>}
5045
+ * @memberof DoctorItemModel
5046
+ */
5047
+ 'locations'?: Array<UserLocationModel> | null;
5030
5048
  /**
5031
5049
  *
5032
5050
  * @type {string}
@@ -5045,12 +5063,30 @@ export interface DoctorItemModel {
5045
5063
  * @memberof DoctorItemModel
5046
5064
  */
5047
5065
  'hospitalName'?: string | null;
5066
+ /**
5067
+ *
5068
+ * @type {Date}
5069
+ * @memberof DoctorItemModel
5070
+ */
5071
+ 'startPracticeDate'?: Date | null;
5048
5072
  /**
5049
5073
  *
5050
5074
  * @type {string}
5051
5075
  * @memberof DoctorItemModel
5052
5076
  */
5053
5077
  'overview'?: string | null;
5078
+ /**
5079
+ *
5080
+ * @type {boolean}
5081
+ * @memberof DoctorItemModel
5082
+ */
5083
+ 'consultationEnabled'?: boolean | null;
5084
+ /**
5085
+ *
5086
+ * @type {number}
5087
+ * @memberof DoctorItemModel
5088
+ */
5089
+ 'consultationFee'?: number | null;
5054
5090
  /**
5055
5091
  *
5056
5092
  * @type {boolean}
@@ -5174,16 +5210,40 @@ export interface DoctorModel {
5174
5210
  'slug'?: string | null;
5175
5211
  /**
5176
5212
  *
5177
- * @type {number}
5213
+ * @type {string}
5178
5214
  * @memberof DoctorModel
5179
5215
  */
5180
- 'affiliationsCount'?: number;
5216
+ 'hospitalId'?: string | null;
5217
+ /**
5218
+ *
5219
+ * @type {string}
5220
+ * @memberof DoctorModel
5221
+ */
5222
+ 'hospitalName'?: string | null;
5223
+ /**
5224
+ *
5225
+ * @type {Date}
5226
+ * @memberof DoctorModel
5227
+ */
5228
+ 'startPracticeDate'?: Date | null;
5181
5229
  /**
5182
5230
  *
5183
5231
  * @type {string}
5184
5232
  * @memberof DoctorModel
5185
5233
  */
5186
5234
  'overview'?: string | null;
5235
+ /**
5236
+ *
5237
+ * @type {boolean}
5238
+ * @memberof DoctorModel
5239
+ */
5240
+ 'consultationEnabled'?: boolean | null;
5241
+ /**
5242
+ *
5243
+ * @type {number}
5244
+ * @memberof DoctorModel
5245
+ */
5246
+ 'consultationFee'?: number | null;
5187
5247
  /**
5188
5248
  *
5189
5249
  * @type {boolean}
@@ -6989,6 +7049,24 @@ export interface ManagerItemModel {
6989
7049
  * @memberof ManagerItemModel
6990
7050
  */
6991
7051
  'auditableEntity'?: AuditableEntity;
7052
+ /**
7053
+ *
7054
+ * @type {string}
7055
+ * @memberof ManagerItemModel
7056
+ */
7057
+ 'userType'?: string | null;
7058
+ /**
7059
+ *
7060
+ * @type {Array<UserLanguageModel>}
7061
+ * @memberof ManagerItemModel
7062
+ */
7063
+ 'languages'?: Array<UserLanguageModel> | null;
7064
+ /**
7065
+ *
7066
+ * @type {Array<UserLocationModel>}
7067
+ * @memberof ManagerItemModel
7068
+ */
7069
+ 'locations'?: Array<UserLocationModel> | null;
6992
7070
  /**
6993
7071
  *
6994
7072
  * @type {string}
@@ -7001,6 +7079,12 @@ export interface ManagerItemModel {
7001
7079
  * @memberof ManagerItemModel
7002
7080
  */
7003
7081
  'hospitalName'?: string | null;
7082
+ /**
7083
+ *
7084
+ * @type {number}
7085
+ * @memberof ManagerItemModel
7086
+ */
7087
+ 'affiliationsCount'?: number;
7004
7088
  }
7005
7089
  /**
7006
7090
  *
@@ -7110,6 +7194,18 @@ export interface ManagerModel {
7110
7194
  * @memberof ManagerModel
7111
7195
  */
7112
7196
  'locations'?: Array<UserLocationModel> | null;
7197
+ /**
7198
+ *
7199
+ * @type {string}
7200
+ * @memberof ManagerModel
7201
+ */
7202
+ 'hospitalId'?: string | null;
7203
+ /**
7204
+ *
7205
+ * @type {string}
7206
+ * @memberof ManagerModel
7207
+ */
7208
+ 'hospitalName'?: string | null;
7113
7209
  /**
7114
7210
  *
7115
7211
  * @type {number}
@@ -15141,6 +15237,15 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15141
15237
  * @throws {RequiredError}
15142
15238
  */
15143
15239
  apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15240
+ /**
15241
+ *
15242
+ * @summary Get Doctor by slug.
15243
+ * @param {string} slug
15244
+ * @param {string} [languageCode]
15245
+ * @param {*} [options] Override http request option.
15246
+ * @throws {RequiredError}
15247
+ */
15248
+ apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15144
15249
  };
15145
15250
  /**
15146
15251
  * DoctorsApi - functional programming interface
@@ -15495,6 +15600,15 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
15495
15600
  * @throws {RequiredError}
15496
15601
  */
15497
15602
  apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
15603
+ /**
15604
+ *
15605
+ * @summary Get Doctor by slug.
15606
+ * @param {string} slug
15607
+ * @param {string} [languageCode]
15608
+ * @param {*} [options] Override http request option.
15609
+ * @throws {RequiredError}
15610
+ */
15611
+ apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
15498
15612
  };
15499
15613
  /**
15500
15614
  * DoctorsApi - factory interface
@@ -15849,6 +15963,15 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
15849
15963
  * @throws {RequiredError}
15850
15964
  */
15851
15965
  apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
15966
+ /**
15967
+ *
15968
+ * @summary Get Doctor by slug.
15969
+ * @param {string} slug
15970
+ * @param {string} [languageCode]
15971
+ * @param {*} [options] Override http request option.
15972
+ * @throws {RequiredError}
15973
+ */
15974
+ apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
15852
15975
  };
15853
15976
  /**
15854
15977
  * DoctorsApi - object-oriented interface
@@ -16239,6 +16362,16 @@ export declare class DoctorsApi extends BaseAPI {
16239
16362
  * @memberof DoctorsApi
16240
16363
  */
16241
16364
  apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
16365
+ /**
16366
+ *
16367
+ * @summary Get Doctor by slug.
16368
+ * @param {string} slug
16369
+ * @param {string} [languageCode]
16370
+ * @param {*} [options] Override http request option.
16371
+ * @throws {RequiredError}
16372
+ * @memberof DoctorsApi
16373
+ */
16374
+ apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
16242
16375
  }
16243
16376
  /**
16244
16377
  * HospitalsApi - axios parameter creator