ch-admin-api-client-typescript 4.0.2 → 4.0.3
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 +37 -1
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -1
- package/package.json +1 -1
- package/src/api.ts +37 -1
package/lib/api.js
CHANGED
|
@@ -289,7 +289,7 @@ var ReviewType;
|
|
|
289
289
|
var SearchIndexType;
|
|
290
290
|
(function (SearchIndexType) {
|
|
291
291
|
SearchIndexType["Hospitals"] = "hospitals";
|
|
292
|
-
SearchIndexType["
|
|
292
|
+
SearchIndexType["Departments"] = "departments";
|
|
293
293
|
SearchIndexType["Specialties"] = "specialties";
|
|
294
294
|
SearchIndexType["Hospitalspecialies"] = "hospitalspecialies";
|
|
295
295
|
SearchIndexType["Doctors"] = "doctors";
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -3961,6 +3961,12 @@ export interface CreateFaqCategoryCommand {
|
|
|
3961
3961
|
* @memberof CreateFaqCategoryCommand
|
|
3962
3962
|
*/
|
|
3963
3963
|
'description'?: string | null;
|
|
3964
|
+
/**
|
|
3965
|
+
*
|
|
3966
|
+
* @type {string}
|
|
3967
|
+
* @memberof CreateFaqCategoryCommand
|
|
3968
|
+
*/
|
|
3969
|
+
'overview'?: string | null;
|
|
3964
3970
|
/**
|
|
3965
3971
|
*
|
|
3966
3972
|
* @type {number}
|
|
@@ -5728,6 +5734,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
5728
5734
|
* @memberof DoctorAffiliationItemModel
|
|
5729
5735
|
*/
|
|
5730
5736
|
'order'?: number;
|
|
5737
|
+
/**
|
|
5738
|
+
*
|
|
5739
|
+
* @type {AuditableEntity}
|
|
5740
|
+
* @memberof DoctorAffiliationItemModel
|
|
5741
|
+
*/
|
|
5742
|
+
'auditableEntity'?: AuditableEntity;
|
|
5731
5743
|
}
|
|
5732
5744
|
/**
|
|
5733
5745
|
*
|
|
@@ -5819,6 +5831,12 @@ export interface DoctorAffiliationModel {
|
|
|
5819
5831
|
* @memberof DoctorAffiliationModel
|
|
5820
5832
|
*/
|
|
5821
5833
|
'order'?: number;
|
|
5834
|
+
/**
|
|
5835
|
+
*
|
|
5836
|
+
* @type {AuditableEntity}
|
|
5837
|
+
* @memberof DoctorAffiliationModel
|
|
5838
|
+
*/
|
|
5839
|
+
'auditableEntity'?: AuditableEntity;
|
|
5822
5840
|
/**
|
|
5823
5841
|
*
|
|
5824
5842
|
* @type {string}
|
|
@@ -8303,6 +8321,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8303
8321
|
* @memberof HospitalSpecialtyItemModel
|
|
8304
8322
|
*/
|
|
8305
8323
|
'marketingType'?: MarketingType;
|
|
8324
|
+
/**
|
|
8325
|
+
*
|
|
8326
|
+
* @type {AuditableEntity}
|
|
8327
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8328
|
+
*/
|
|
8329
|
+
'auditableEntity'?: AuditableEntity;
|
|
8306
8330
|
}
|
|
8307
8331
|
/**
|
|
8308
8332
|
*
|
|
@@ -8406,6 +8430,12 @@ export interface HospitalSpecialtyModel {
|
|
|
8406
8430
|
* @memberof HospitalSpecialtyModel
|
|
8407
8431
|
*/
|
|
8408
8432
|
'marketingType'?: MarketingType;
|
|
8433
|
+
/**
|
|
8434
|
+
*
|
|
8435
|
+
* @type {AuditableEntity}
|
|
8436
|
+
* @memberof HospitalSpecialtyModel
|
|
8437
|
+
*/
|
|
8438
|
+
'auditableEntity'?: AuditableEntity;
|
|
8409
8439
|
/**
|
|
8410
8440
|
*
|
|
8411
8441
|
* @type {string}
|
|
@@ -10167,7 +10197,7 @@ export enum ReviewType {
|
|
|
10167
10197
|
|
|
10168
10198
|
export enum SearchIndexType {
|
|
10169
10199
|
Hospitals = 'hospitals',
|
|
10170
|
-
|
|
10200
|
+
Departments = 'departments',
|
|
10171
10201
|
Specialties = 'specialties',
|
|
10172
10202
|
Hospitalspecialies = 'hospitalspecialies',
|
|
10173
10203
|
Doctors = 'doctors',
|
|
@@ -12325,6 +12355,12 @@ export interface UpdateFaqCategoryCommand {
|
|
|
12325
12355
|
* @memberof UpdateFaqCategoryCommand
|
|
12326
12356
|
*/
|
|
12327
12357
|
'description'?: string | null;
|
|
12358
|
+
/**
|
|
12359
|
+
*
|
|
12360
|
+
* @type {string}
|
|
12361
|
+
* @memberof UpdateFaqCategoryCommand
|
|
12362
|
+
*/
|
|
12363
|
+
'overview'?: string | null;
|
|
12328
12364
|
/**
|
|
12329
12365
|
*
|
|
12330
12366
|
* @type {number}
|