ch-admin-api-client-typescript 5.2.8 → 5.2.9
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/tags-api.d.ts +13 -3
- package/lib/api/tags-api.d.ts.map +1 -1
- package/lib/api/tags-api.js +12 -6
- package/lib/models/create-deal-command.d.ts +7 -0
- package/lib/models/create-deal-command.d.ts.map +1 -1
- package/lib/models/create-doctor-affiliation-command.d.ts +7 -0
- package/lib/models/create-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/create-hospital-command.d.ts +7 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/deal-item-model.d.ts +7 -0
- package/lib/models/deal-item-model.d.ts.map +1 -1
- package/lib/models/deal-model.d.ts +7 -0
- package/lib/models/deal-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-item-model.d.ts +7 -0
- package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +7 -0
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/feature-model.d.ts +37 -0
- package/lib/models/feature-model.d.ts.map +1 -0
- package/lib/models/feature-model.js +15 -0
- package/lib/models/hospital-item-model.d.ts +7 -0
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +7 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +2 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +2 -0
- package/lib/models/string-filter-types.d.ts +24 -0
- package/lib/models/string-filter-types.d.ts.map +1 -0
- package/lib/models/string-filter-types.js +27 -0
- package/lib/models/update-deal-command.d.ts +7 -0
- package/lib/models/update-deal-command.d.ts.map +1 -1
- package/lib/models/update-doctor-affiliation-command.d.ts +7 -0
- package/lib/models/update-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/update-hospital-command.d.ts +7 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +2 -0
- package/src/api/tags-api.ts +22 -6
- package/src/models/create-deal-command.ts +9 -0
- package/src/models/create-doctor-affiliation-command.ts +9 -0
- package/src/models/create-hospital-command.ts +9 -0
- package/src/models/deal-item-model.ts +9 -0
- package/src/models/deal-model.ts +9 -0
- package/src/models/doctor-affiliation-item-model.ts +9 -0
- package/src/models/doctor-affiliation-model.ts +9 -0
- package/src/models/feature-model.ts +42 -0
- package/src/models/hospital-item-model.ts +9 -0
- package/src/models/hospital-model.ts +9 -0
- package/src/models/index.ts +2 -0
- package/src/models/string-filter-types.ts +33 -0
- package/src/models/update-deal-command.ts +9 -0
- package/src/models/update-doctor-affiliation-command.ts +9 -0
- package/src/models/update-hospital-command.ts +9 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.StringFilterTypes = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.StringFilterTypes = {
|
|
23
|
+
MatchesExactly: 'MatchesExactly',
|
|
24
|
+
StartsWith: 'StartsWith',
|
|
25
|
+
EndsWith: 'EndsWith',
|
|
26
|
+
Contains: 'Contains'
|
|
27
|
+
};
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
13
|
+
import { FeatureModel } from './feature-model';
|
|
13
14
|
import { MarketingType } from './marketing-type';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
@@ -83,5 +84,11 @@ export interface UpdateDealCommand {
|
|
|
83
84
|
* @memberof UpdateDealCommand
|
|
84
85
|
*/
|
|
85
86
|
'appointmentOption'?: AppointmentOptionModel;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @type {FeatureModel}
|
|
90
|
+
* @memberof UpdateDealCommand
|
|
91
|
+
*/
|
|
92
|
+
'feature'?: FeatureModel;
|
|
86
93
|
}
|
|
87
94
|
//# sourceMappingURL=update-deal-command.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-deal-command.d.ts","sourceRoot":"","sources":["../../src/models/update-deal-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"update-deal-command.d.ts","sourceRoot":"","sources":["../../src/models/update-deal-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,sBAAsB,CAAC;IAC7C;;;;OAIG;IACH,SAAS,CAAC,EAAE,YAAY,CAAC;CAC5B"}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
13
|
+
import { FeatureModel } from './feature-model';
|
|
13
14
|
import { MediaModel } from './media-model';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
@@ -119,5 +120,11 @@ export interface UpdateDoctorAffiliationCommand {
|
|
|
119
120
|
* @memberof UpdateDoctorAffiliationCommand
|
|
120
121
|
*/
|
|
121
122
|
'appointmentOption'?: AppointmentOptionModel;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {FeatureModel}
|
|
126
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
127
|
+
*/
|
|
128
|
+
'feature'?: FeatureModel;
|
|
122
129
|
}
|
|
123
130
|
//# sourceMappingURL=update-doctor-affiliation-command.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-doctor-affiliation-command.d.ts","sourceRoot":"","sources":["../../src/models/update-doctor-affiliation-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"update-doctor-affiliation-command.d.ts","sourceRoot":"","sources":["../../src/models/update-doctor-affiliation-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,sBAAsB,CAAC;IAC7C;;;;OAIG;IACH,SAAS,CAAC,EAAE,YAAY,CAAC;CAC5B"}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
13
|
+
import { FeatureModel } from './feature-model';
|
|
13
14
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
14
15
|
import { LocationModel } from './location-model';
|
|
15
16
|
import { MarketingType } from './marketing-type';
|
|
@@ -181,5 +182,11 @@ export interface UpdateHospitalCommand {
|
|
|
181
182
|
* @memberof UpdateHospitalCommand
|
|
182
183
|
*/
|
|
183
184
|
'consultationOption'?: HospitalConsultationOptionModel;
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @type {FeatureModel}
|
|
188
|
+
* @memberof UpdateHospitalCommand
|
|
189
|
+
*/
|
|
190
|
+
'feature'?: FeatureModel;
|
|
184
191
|
}
|
|
185
192
|
//# sourceMappingURL=update-hospital-command.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-hospital-command.d.ts","sourceRoot":"","sources":["../../src/models/update-hospital-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AAGvF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,sBAAsB,CAAC;IAC7C;;;;OAIG;IACH,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"update-hospital-command.d.ts","sourceRoot":"","sources":["../../src/models/update-hospital-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AAGvF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,sBAAsB,CAAC;IAC7C;;;;OAIG;IACH,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,+BAA+B,CAAC;IACvD;;;;OAIG;IACH,SAAS,CAAC,EAAE,YAAY,CAAC;CAC5B"}
|
package/package.json
CHANGED
|
@@ -235,6 +235,7 @@ models/faq-tag-item-model.ts
|
|
|
235
235
|
models/faq-tag-model.ts
|
|
236
236
|
models/faq-tags-model.ts
|
|
237
237
|
models/faqs-model.ts
|
|
238
|
+
models/feature-model.ts
|
|
238
239
|
models/footer-navigation-item-model.ts
|
|
239
240
|
models/gender.ts
|
|
240
241
|
models/grade-item-model.ts
|
|
@@ -383,6 +384,7 @@ models/specialty-type-model.ts
|
|
|
383
384
|
models/specialty-type-simple-item-model.ts
|
|
384
385
|
models/specialty-types-model.ts
|
|
385
386
|
models/specialty-types-simple-model.ts
|
|
387
|
+
models/string-filter-types.ts
|
|
386
388
|
models/string-string-ienumerable-key-value-pair.ts
|
|
387
389
|
models/subscription-model.ts
|
|
388
390
|
models/survey-form-element-input-model.ts
|
package/src/api/tags-api.ts
CHANGED
|
@@ -25,6 +25,8 @@ import { CreateTagCommand } from '../models';
|
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { ProblemDetails } from '../models';
|
|
27
27
|
// @ts-ignore
|
|
28
|
+
import { StringFilterTypes } from '../models';
|
|
29
|
+
// @ts-ignore
|
|
28
30
|
import { TagModel } from '../models';
|
|
29
31
|
// @ts-ignore
|
|
30
32
|
import { TagsModel } from '../models';
|
|
@@ -38,13 +40,14 @@ export const TagsApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
38
40
|
*
|
|
39
41
|
* @summary Get all Tags.
|
|
40
42
|
* @param {string} [tagId]
|
|
43
|
+
* @param {StringFilterTypes} [filterType]
|
|
41
44
|
* @param {number} [page]
|
|
42
45
|
* @param {number} [limit]
|
|
43
46
|
* @param {Date} [lastRetrieved]
|
|
44
47
|
* @param {*} [options] Override http request option.
|
|
45
48
|
* @throws {RequiredError}
|
|
46
49
|
*/
|
|
47
|
-
apiV1TagsGet: async (tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
50
|
+
apiV1TagsGet: async (tagId?: string, filterType?: StringFilterTypes, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48
51
|
const localVarPath = `/api/v1/tags`;
|
|
49
52
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
50
53
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -65,6 +68,10 @@ export const TagsApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
65
68
|
localVarQueryParameter['TagId'] = tagId;
|
|
66
69
|
}
|
|
67
70
|
|
|
71
|
+
if (filterType !== undefined) {
|
|
72
|
+
localVarQueryParameter['FilterType'] = filterType;
|
|
73
|
+
}
|
|
74
|
+
|
|
68
75
|
if (page !== undefined) {
|
|
69
76
|
localVarQueryParameter['page'] = page;
|
|
70
77
|
}
|
|
@@ -223,14 +230,15 @@ export const TagsApiFp = function(configuration?: Configuration) {
|
|
|
223
230
|
*
|
|
224
231
|
* @summary Get all Tags.
|
|
225
232
|
* @param {string} [tagId]
|
|
233
|
+
* @param {StringFilterTypes} [filterType]
|
|
226
234
|
* @param {number} [page]
|
|
227
235
|
* @param {number} [limit]
|
|
228
236
|
* @param {Date} [lastRetrieved]
|
|
229
237
|
* @param {*} [options] Override http request option.
|
|
230
238
|
* @throws {RequiredError}
|
|
231
239
|
*/
|
|
232
|
-
async apiV1TagsGet(tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagsModel>> {
|
|
233
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1TagsGet(tagId, page, limit, lastRetrieved, options);
|
|
240
|
+
async apiV1TagsGet(tagId?: string, filterType?: StringFilterTypes, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagsModel>> {
|
|
241
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1TagsGet(tagId, filterType, page, limit, lastRetrieved, options);
|
|
234
242
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
235
243
|
},
|
|
236
244
|
/**
|
|
@@ -281,14 +289,15 @@ export const TagsApiFactory = function (configuration?: Configuration, basePath?
|
|
|
281
289
|
*
|
|
282
290
|
* @summary Get all Tags.
|
|
283
291
|
* @param {string} [tagId]
|
|
292
|
+
* @param {StringFilterTypes} [filterType]
|
|
284
293
|
* @param {number} [page]
|
|
285
294
|
* @param {number} [limit]
|
|
286
295
|
* @param {Date} [lastRetrieved]
|
|
287
296
|
* @param {*} [options] Override http request option.
|
|
288
297
|
* @throws {RequiredError}
|
|
289
298
|
*/
|
|
290
|
-
apiV1TagsGet(tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<TagsModel> {
|
|
291
|
-
return localVarFp.apiV1TagsGet(tagId, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
299
|
+
apiV1TagsGet(tagId?: string, filterType?: StringFilterTypes, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<TagsModel> {
|
|
300
|
+
return localVarFp.apiV1TagsGet(tagId, filterType, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
292
301
|
},
|
|
293
302
|
/**
|
|
294
303
|
*
|
|
@@ -337,6 +346,13 @@ export interface TagsApiApiV1TagsGetRequest {
|
|
|
337
346
|
*/
|
|
338
347
|
readonly tagId?: string
|
|
339
348
|
|
|
349
|
+
/**
|
|
350
|
+
*
|
|
351
|
+
* @type {StringFilterTypes}
|
|
352
|
+
* @memberof TagsApiApiV1TagsGet
|
|
353
|
+
*/
|
|
354
|
+
readonly filterType?: StringFilterTypes
|
|
355
|
+
|
|
340
356
|
/**
|
|
341
357
|
*
|
|
342
358
|
* @type {number}
|
|
@@ -424,7 +440,7 @@ export class TagsApi extends BaseAPI {
|
|
|
424
440
|
* @memberof TagsApi
|
|
425
441
|
*/
|
|
426
442
|
public apiV1TagsGet(requestParameters: TagsApiApiV1TagsGetRequest = {}, options?: AxiosRequestConfig) {
|
|
427
|
-
return TagsApiFp(this.configuration).apiV1TagsGet(requestParameters.tagId, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
443
|
+
return TagsApiFp(this.configuration).apiV1TagsGet(requestParameters.tagId, requestParameters.filterType, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
428
444
|
}
|
|
429
445
|
|
|
430
446
|
/**
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { FeatureModel } from './feature-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { MarketingType } from './marketing-type';
|
|
22
25
|
|
|
23
26
|
/**
|
|
@@ -86,5 +89,11 @@ export interface CreateDealCommand {
|
|
|
86
89
|
* @memberof CreateDealCommand
|
|
87
90
|
*/
|
|
88
91
|
'appointmentOption'?: AppointmentOptionModel;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {FeatureModel}
|
|
95
|
+
* @memberof CreateDealCommand
|
|
96
|
+
*/
|
|
97
|
+
'feature'?: FeatureModel;
|
|
89
98
|
}
|
|
90
99
|
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { FeatureModel } from './feature-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { MediaModel } from './media-model';
|
|
22
25
|
|
|
23
26
|
/**
|
|
@@ -128,5 +131,11 @@ export interface CreateDoctorAffiliationCommand {
|
|
|
128
131
|
* @memberof CreateDoctorAffiliationCommand
|
|
129
132
|
*/
|
|
130
133
|
'appointmentOption'?: AppointmentOptionModel;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {FeatureModel}
|
|
137
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
138
|
+
*/
|
|
139
|
+
'feature'?: FeatureModel;
|
|
131
140
|
}
|
|
132
141
|
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { FeatureModel } from './feature-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
@@ -182,5 +185,11 @@ export interface CreateHospitalCommand {
|
|
|
182
185
|
* @memberof CreateHospitalCommand
|
|
183
186
|
*/
|
|
184
187
|
'appointmentOption'?: AppointmentOptionModel;
|
|
188
|
+
/**
|
|
189
|
+
*
|
|
190
|
+
* @type {FeatureModel}
|
|
191
|
+
* @memberof CreateHospitalCommand
|
|
192
|
+
*/
|
|
193
|
+
'feature'?: FeatureModel;
|
|
185
194
|
}
|
|
186
195
|
|
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntity } from './auditable-entity';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { FeatureModel } from './feature-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { MarketingType } from './marketing-type';
|
|
25
28
|
|
|
26
29
|
/**
|
|
@@ -119,6 +122,12 @@ export interface DealItemModel {
|
|
|
119
122
|
* @memberof DealItemModel
|
|
120
123
|
*/
|
|
121
124
|
'appointmentOption'?: AppointmentOptionModel;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {FeatureModel}
|
|
128
|
+
* @memberof DealItemModel
|
|
129
|
+
*/
|
|
130
|
+
'feature'?: FeatureModel;
|
|
122
131
|
/**
|
|
123
132
|
*
|
|
124
133
|
* @type {AuditableEntity}
|
package/src/models/deal-model.ts
CHANGED
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntity } from './auditable-entity';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { FeatureModel } from './feature-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { MarketingType } from './marketing-type';
|
|
25
28
|
|
|
26
29
|
/**
|
|
@@ -119,6 +122,12 @@ export interface DealModel {
|
|
|
119
122
|
* @memberof DealModel
|
|
120
123
|
*/
|
|
121
124
|
'appointmentOption'?: AppointmentOptionModel;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {FeatureModel}
|
|
128
|
+
* @memberof DealModel
|
|
129
|
+
*/
|
|
130
|
+
'feature'?: FeatureModel;
|
|
122
131
|
/**
|
|
123
132
|
*
|
|
124
133
|
* @type {AuditableEntity}
|
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntity } from './auditable-entity';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { FeatureModel } from './feature-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { MarketingType } from './marketing-type';
|
|
25
28
|
|
|
26
29
|
/**
|
|
@@ -131,6 +134,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
131
134
|
* @memberof DoctorAffiliationItemModel
|
|
132
135
|
*/
|
|
133
136
|
'appointmentOption'?: AppointmentOptionModel;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {FeatureModel}
|
|
140
|
+
* @memberof DoctorAffiliationItemModel
|
|
141
|
+
*/
|
|
142
|
+
'feature'?: FeatureModel;
|
|
134
143
|
/**
|
|
135
144
|
*
|
|
136
145
|
* @type {AuditableEntity}
|
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntity } from './auditable-entity';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { FeatureModel } from './feature-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { MarketingType } from './marketing-type';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -134,6 +137,12 @@ export interface DoctorAffiliationModel {
|
|
|
134
137
|
* @memberof DoctorAffiliationModel
|
|
135
138
|
*/
|
|
136
139
|
'appointmentOption'?: AppointmentOptionModel;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {FeatureModel}
|
|
143
|
+
* @memberof DoctorAffiliationModel
|
|
144
|
+
*/
|
|
145
|
+
'feature'?: FeatureModel;
|
|
137
146
|
/**
|
|
138
147
|
*
|
|
139
148
|
* @type {AuditableEntity}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface FeatureModel
|
|
21
|
+
*/
|
|
22
|
+
export interface FeatureModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof FeatureModel
|
|
27
|
+
*/
|
|
28
|
+
'chatEnabled'?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {boolean}
|
|
32
|
+
* @memberof FeatureModel
|
|
33
|
+
*/
|
|
34
|
+
'callEnabled'?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {boolean}
|
|
38
|
+
* @memberof FeatureModel
|
|
39
|
+
*/
|
|
40
|
+
'enquiryFormEnabled'?: boolean;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntity } from './auditable-entity';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { FeatureModel } from './feature-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { GradeModel } from './grade-model';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -161,6 +164,12 @@ export interface HospitalItemModel {
|
|
|
161
164
|
* @memberof HospitalItemModel
|
|
162
165
|
*/
|
|
163
166
|
'grade'?: GradeModel;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {FeatureModel}
|
|
170
|
+
* @memberof HospitalItemModel
|
|
171
|
+
*/
|
|
172
|
+
'feature'?: FeatureModel;
|
|
164
173
|
/**
|
|
165
174
|
*
|
|
166
175
|
* @type {AuditableEntity}
|
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntity } from './auditable-entity';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { FeatureModel } from './feature-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { GradeModel } from './grade-model';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -164,6 +167,12 @@ export interface HospitalModel {
|
|
|
164
167
|
* @memberof HospitalModel
|
|
165
168
|
*/
|
|
166
169
|
'grade'?: GradeModel;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {FeatureModel}
|
|
173
|
+
* @memberof HospitalModel
|
|
174
|
+
*/
|
|
175
|
+
'feature'?: FeatureModel;
|
|
167
176
|
/**
|
|
168
177
|
*
|
|
169
178
|
* @type {AuditableEntity}
|
package/src/models/index.ts
CHANGED
|
@@ -181,6 +181,7 @@ export * from './faq-tag-item-model';
|
|
|
181
181
|
export * from './faq-tag-model';
|
|
182
182
|
export * from './faq-tags-model';
|
|
183
183
|
export * from './faqs-model';
|
|
184
|
+
export * from './feature-model';
|
|
184
185
|
export * from './footer-navigation-item-model';
|
|
185
186
|
export * from './gender';
|
|
186
187
|
export * from './grade-item-model';
|
|
@@ -328,6 +329,7 @@ export * from './specialty-type-model';
|
|
|
328
329
|
export * from './specialty-type-simple-item-model';
|
|
329
330
|
export * from './specialty-types-model';
|
|
330
331
|
export * from './specialty-types-simple-model';
|
|
332
|
+
export * from './string-filter-types';
|
|
331
333
|
export * from './string-string-ienumerable-key-value-pair';
|
|
332
334
|
export * from './subscription-model';
|
|
333
335
|
export * from './survey-form-element-input-model';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const StringFilterTypes = {
|
|
24
|
+
MatchesExactly: 'MatchesExactly',
|
|
25
|
+
StartsWith: 'StartsWith',
|
|
26
|
+
EndsWith: 'EndsWith',
|
|
27
|
+
Contains: 'Contains'
|
|
28
|
+
} as const;
|
|
29
|
+
|
|
30
|
+
export type StringFilterTypes = typeof StringFilterTypes[keyof typeof StringFilterTypes];
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { FeatureModel } from './feature-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { MarketingType } from './marketing-type';
|
|
22
25
|
|
|
23
26
|
/**
|
|
@@ -92,5 +95,11 @@ export interface UpdateDealCommand {
|
|
|
92
95
|
* @memberof UpdateDealCommand
|
|
93
96
|
*/
|
|
94
97
|
'appointmentOption'?: AppointmentOptionModel;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {FeatureModel}
|
|
101
|
+
* @memberof UpdateDealCommand
|
|
102
|
+
*/
|
|
103
|
+
'feature'?: FeatureModel;
|
|
95
104
|
}
|
|
96
105
|
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { FeatureModel } from './feature-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { MediaModel } from './media-model';
|
|
22
25
|
|
|
23
26
|
/**
|
|
@@ -128,5 +131,11 @@ export interface UpdateDoctorAffiliationCommand {
|
|
|
128
131
|
* @memberof UpdateDoctorAffiliationCommand
|
|
129
132
|
*/
|
|
130
133
|
'appointmentOption'?: AppointmentOptionModel;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {FeatureModel}
|
|
137
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
138
|
+
*/
|
|
139
|
+
'feature'?: FeatureModel;
|
|
131
140
|
}
|
|
132
141
|
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import { FeatureModel } from './feature-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
@@ -194,5 +197,11 @@ export interface UpdateHospitalCommand {
|
|
|
194
197
|
* @memberof UpdateHospitalCommand
|
|
195
198
|
*/
|
|
196
199
|
'consultationOption'?: HospitalConsultationOptionModel;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @type {FeatureModel}
|
|
203
|
+
* @memberof UpdateHospitalCommand
|
|
204
|
+
*/
|
|
205
|
+
'feature'?: FeatureModel;
|
|
197
206
|
}
|
|
198
207
|
|