ch-api-client-typescript2 5.4.6 → 5.4.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/deals-api.d.ts +34 -116
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +41 -150
- package/lib/api/doctor-affiliations-api.d.ts +12 -3
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +12 -6
- package/lib/api/hospitals-api.d.ts +36 -9
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +36 -18
- package/lib/models/appointment-type.d.ts +0 -1
- package/lib/models/appointment-type.d.ts.map +1 -1
- package/lib/models/appointment-type.js +0 -1
- package/lib/models/auditable-entity-model.d.ts +67 -0
- package/lib/models/auditable-entity-model.d.ts.map +1 -0
- package/lib/models/create-appointment-command.d.ts +0 -6
- package/lib/models/create-appointment-command.d.ts.map +1 -1
- package/lib/models/deal-document-model.d.ts +3 -16
- package/lib/models/deal-document-model.d.ts.map +1 -1
- package/lib/models/deal-item-model.d.ts +26 -8
- package/lib/models/deal-item-model.d.ts.map +1 -1
- package/lib/models/deal-model.d.ts +26 -8
- package/lib/models/deal-model.d.ts.map +1 -1
- package/lib/models/deal-package-item-model.d.ts +34 -3
- package/lib/models/deal-package-item-model.d.ts.map +1 -1
- package/lib/models/deal-package-model.d.ts +34 -3
- package/lib/models/deal-package-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-item-model.d.ts +26 -8
- package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +26 -8
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/doctor-document-model.d.ts +3 -9
- package/lib/models/doctor-document-model.d.ts.map +1 -1
- package/lib/models/doctor-item-model.d.ts +0 -7
- package/lib/models/doctor-item-model.d.ts.map +1 -1
- package/lib/models/doctor-model.d.ts +0 -7
- package/lib/models/doctor-model.d.ts.map +1 -1
- package/lib/models/hospital-document-model.d.ts +3 -9
- package/lib/models/hospital-document-model.d.ts.map +1 -1
- package/lib/models/hospital-feature-detail-document-model.d.ts +56 -0
- package/lib/models/hospital-feature-detail-document-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-detail-model.d.ts +56 -0
- package/lib/models/hospital-feature-detail-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-detail-model.js +15 -0
- package/lib/models/hospital-feature-document-model.d.ts +32 -0
- package/lib/models/hospital-feature-document-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-document-model.js +15 -0
- package/lib/models/hospital-feature-domain-document-model.d.ts +50 -0
- package/lib/models/hospital-feature-domain-document-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-domain-document-model.js +15 -0
- package/lib/models/hospital-feature-domain-model.d.ts +50 -0
- package/lib/models/hospital-feature-domain-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-domain-model.js +15 -0
- package/lib/models/{feature-document-model.d.ts → hospital-feature-model.d.ts} +10 -15
- package/lib/models/hospital-feature-model.d.ts.map +1 -0
- package/lib/models/hospital-feature-model.js +15 -0
- package/lib/models/hospital-item-model.d.ts +22 -4
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +22 -4
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/hospital-service-item-model.d.ts +34 -3
- package/lib/models/hospital-service-item-model.d.ts.map +1 -1
- package/lib/models/hospital-service-model.d.ts +34 -3
- package/lib/models/hospital-service-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-item-model.d.ts +34 -3
- package/lib/models/hospital-specialty-item-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-model.d.ts +34 -3
- package/lib/models/hospital-specialty-model.d.ts.map +1 -1
- package/lib/models/hospital-sub-document-model.d.ts +7 -0
- package/lib/models/hospital-sub-document-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +9 -2
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +9 -2
- package/lib/models/survey-form-simple-mapping-model.d.ts +39 -0
- package/lib/models/survey-form-simple-mapping-model.d.ts.map +1 -0
- package/lib/models/survey-form-simple-mapping-model.js +15 -0
- package/lib/models/{feature-model.d.ts → survey-form-sub-document-model.d.ts} +9 -15
- package/lib/models/survey-form-sub-document-model.d.ts.map +1 -0
- package/lib/models/survey-form-sub-document-model.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +9 -2
- package/src/api/deals-api.ts +58 -199
- package/src/api/doctor-affiliations-api.ts +20 -6
- package/src/api/hospitals-api.ts +60 -18
- package/src/models/appointment-type.ts +0 -1
- package/src/models/auditable-entity-model.ts +72 -0
- package/src/models/create-appointment-command.ts +0 -6
- package/src/models/deal-document-model.ts +3 -18
- package/src/models/deal-item-model.ts +26 -8
- package/src/models/deal-model.ts +26 -8
- package/src/models/deal-package-item-model.ts +36 -3
- package/src/models/deal-package-model.ts +36 -3
- package/src/models/doctor-affiliation-item-model.ts +26 -8
- package/src/models/doctor-affiliation-model.ts +26 -8
- package/src/models/doctor-document-model.ts +3 -9
- package/src/models/doctor-item-model.ts +0 -9
- package/src/models/doctor-model.ts +0 -9
- package/src/models/hospital-document-model.ts +5 -11
- package/src/models/hospital-feature-detail-document-model.ts +63 -0
- package/src/models/hospital-feature-detail-model.ts +63 -0
- package/src/models/hospital-feature-document-model.ts +39 -0
- package/src/models/hospital-feature-domain-document-model.ts +57 -0
- package/src/models/hospital-feature-domain-model.ts +57 -0
- package/src/models/{feature-document-model.ts → hospital-feature-model.ts} +11 -14
- package/src/models/hospital-item-model.ts +24 -6
- package/src/models/hospital-model.ts +24 -6
- package/src/models/hospital-service-item-model.ts +36 -3
- package/src/models/hospital-service-model.ts +36 -3
- package/src/models/hospital-specialty-item-model.ts +36 -3
- package/src/models/hospital-specialty-model.ts +36 -3
- package/src/models/hospital-sub-document-model.ts +9 -0
- package/src/models/index.ts +9 -2
- package/src/models/survey-form-simple-mapping-model.ts +48 -0
- package/src/models/{feature-model.ts → survey-form-sub-document-model.ts} +8 -14
- package/lib/models/feature-document-model.d.ts.map +0 -1
- package/lib/models/feature-model.d.ts.map +0 -1
- /package/lib/models/{feature-document-model.js → auditable-entity-model.js} +0 -0
- /package/lib/models/{feature-model.js → hospital-feature-detail-document-model.js} +0 -0
package/src/api/hospitals-api.ts
CHANGED
|
@@ -329,11 +329,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
329
329
|
* @param {number} [year]
|
|
330
330
|
* @param {number} [month]
|
|
331
331
|
* @param {string} [timeZone]
|
|
332
|
+
* @param {boolean} [isExternal]
|
|
332
333
|
* @param {string} [appointmentIdExcluded]
|
|
333
334
|
* @param {*} [options] Override http request option.
|
|
334
335
|
* @throws {RequiredError}
|
|
335
336
|
*/
|
|
336
|
-
apiV2HospitalsHospitalIdAppointmenttimetablesGet: async (hospitalId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
337
|
+
apiV2HospitalsHospitalIdAppointmenttimetablesGet: async (hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
337
338
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
338
339
|
assertParamExists('apiV2HospitalsHospitalIdAppointmenttimetablesGet', 'hospitalId', hospitalId)
|
|
339
340
|
const localVarPath = `/api/v2/hospitals/{hospitalId}/appointmenttimetables`
|
|
@@ -365,6 +366,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
365
366
|
localVarQueryParameter['TimeZone'] = timeZone;
|
|
366
367
|
}
|
|
367
368
|
|
|
369
|
+
if (isExternal !== undefined) {
|
|
370
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
371
|
+
}
|
|
372
|
+
|
|
368
373
|
if (appointmentIdExcluded !== undefined) {
|
|
369
374
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
370
375
|
}
|
|
@@ -1643,11 +1648,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1643
1648
|
* @param {number} [year]
|
|
1644
1649
|
* @param {number} [month]
|
|
1645
1650
|
* @param {string} [timeZone]
|
|
1651
|
+
* @param {boolean} [isExternal]
|
|
1646
1652
|
* @param {string} [appointmentIdExcluded]
|
|
1647
1653
|
* @param {*} [options] Override http request option.
|
|
1648
1654
|
* @throws {RequiredError}
|
|
1649
1655
|
*/
|
|
1650
|
-
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet: async (hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1656
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet: async (hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1651
1657
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
1652
1658
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet', 'hospitalId', hospitalId)
|
|
1653
1659
|
// verify required parameter 'hospitalSpecialtyId' is not null or undefined
|
|
@@ -1682,6 +1688,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1682
1688
|
localVarQueryParameter['TimeZone'] = timeZone;
|
|
1683
1689
|
}
|
|
1684
1690
|
|
|
1691
|
+
if (isExternal !== undefined) {
|
|
1692
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1685
1695
|
if (appointmentIdExcluded !== undefined) {
|
|
1686
1696
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
1687
1697
|
}
|
|
@@ -2117,11 +2127,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2117
2127
|
* @param {number} [year]
|
|
2118
2128
|
* @param {number} [month]
|
|
2119
2129
|
* @param {string} [timeZone]
|
|
2130
|
+
* @param {boolean} [isExternal]
|
|
2120
2131
|
* @param {string} [appointmentIdExcluded]
|
|
2121
2132
|
* @param {*} [options] Override http request option.
|
|
2122
2133
|
* @throws {RequiredError}
|
|
2123
2134
|
*/
|
|
2124
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet: async (hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2135
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet: async (hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2125
2136
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
2126
2137
|
assertParamExists('apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet', 'hospitalId', hospitalId)
|
|
2127
2138
|
// verify required parameter 'specialtyId' is not null or undefined
|
|
@@ -2159,6 +2170,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2159
2170
|
localVarQueryParameter['TimeZone'] = timeZone;
|
|
2160
2171
|
}
|
|
2161
2172
|
|
|
2173
|
+
if (isExternal !== undefined) {
|
|
2174
|
+
localVarQueryParameter['IsExternal'] = isExternal;
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2162
2177
|
if (appointmentIdExcluded !== undefined) {
|
|
2163
2178
|
localVarQueryParameter['AppointmentIdExcluded'] = appointmentIdExcluded;
|
|
2164
2179
|
}
|
|
@@ -2706,12 +2721,13 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
2706
2721
|
* @param {number} [year]
|
|
2707
2722
|
* @param {number} [month]
|
|
2708
2723
|
* @param {string} [timeZone]
|
|
2724
|
+
* @param {boolean} [isExternal]
|
|
2709
2725
|
* @param {string} [appointmentIdExcluded]
|
|
2710
2726
|
* @param {*} [options] Override http request option.
|
|
2711
2727
|
* @throws {RequiredError}
|
|
2712
2728
|
*/
|
|
2713
|
-
async apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
2714
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, appointmentIdExcluded, options);
|
|
2729
|
+
async apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
2730
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, isExternal, appointmentIdExcluded, options);
|
|
2715
2731
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2716
2732
|
},
|
|
2717
2733
|
/**
|
|
@@ -3066,12 +3082,13 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
3066
3082
|
* @param {number} [year]
|
|
3067
3083
|
* @param {number} [month]
|
|
3068
3084
|
* @param {string} [timeZone]
|
|
3085
|
+
* @param {boolean} [isExternal]
|
|
3069
3086
|
* @param {string} [appointmentIdExcluded]
|
|
3070
3087
|
* @param {*} [options] Override http request option.
|
|
3071
3088
|
* @throws {RequiredError}
|
|
3072
3089
|
*/
|
|
3073
|
-
async apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
3074
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, appointmentIdExcluded, options);
|
|
3090
|
+
async apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
3091
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, appointmentIdExcluded, options);
|
|
3075
3092
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3076
3093
|
},
|
|
3077
3094
|
/**
|
|
@@ -3190,12 +3207,13 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
3190
3207
|
* @param {number} [year]
|
|
3191
3208
|
* @param {number} [month]
|
|
3192
3209
|
* @param {string} [timeZone]
|
|
3210
|
+
* @param {boolean} [isExternal]
|
|
3193
3211
|
* @param {string} [appointmentIdExcluded]
|
|
3194
3212
|
* @param {*} [options] Override http request option.
|
|
3195
3213
|
* @throws {RequiredError}
|
|
3196
3214
|
*/
|
|
3197
|
-
async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
3198
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, appointmentIdExcluded, options);
|
|
3215
|
+
async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>> {
|
|
3216
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, appointmentIdExcluded, options);
|
|
3199
3217
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3200
3218
|
},
|
|
3201
3219
|
/**
|
|
@@ -3389,12 +3407,13 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
3389
3407
|
* @param {number} [year]
|
|
3390
3408
|
* @param {number} [month]
|
|
3391
3409
|
* @param {string} [timeZone]
|
|
3410
|
+
* @param {boolean} [isExternal]
|
|
3392
3411
|
* @param {string} [appointmentIdExcluded]
|
|
3393
3412
|
* @param {*} [options] Override http request option.
|
|
3394
3413
|
* @throws {RequiredError}
|
|
3395
3414
|
*/
|
|
3396
|
-
apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
3397
|
-
return localVarFp.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
3415
|
+
apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
3416
|
+
return localVarFp.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, isExternal, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
3398
3417
|
},
|
|
3399
3418
|
/**
|
|
3400
3419
|
*
|
|
@@ -3725,12 +3744,13 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
3725
3744
|
* @param {number} [year]
|
|
3726
3745
|
* @param {number} [month]
|
|
3727
3746
|
* @param {string} [timeZone]
|
|
3747
|
+
* @param {boolean} [isExternal]
|
|
3728
3748
|
* @param {string} [appointmentIdExcluded]
|
|
3729
3749
|
* @param {*} [options] Override http request option.
|
|
3730
3750
|
* @throws {RequiredError}
|
|
3731
3751
|
*/
|
|
3732
|
-
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
3733
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
3752
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
3753
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
3734
3754
|
},
|
|
3735
3755
|
/**
|
|
3736
3756
|
*
|
|
@@ -3842,12 +3862,13 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
3842
3862
|
* @param {number} [year]
|
|
3843
3863
|
* @param {number} [month]
|
|
3844
3864
|
* @param {string} [timeZone]
|
|
3865
|
+
* @param {boolean} [isExternal]
|
|
3845
3866
|
* @param {string} [appointmentIdExcluded]
|
|
3846
3867
|
* @param {*} [options] Override http request option.
|
|
3847
3868
|
* @throws {RequiredError}
|
|
3848
3869
|
*/
|
|
3849
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
3850
|
-
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
3870
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
3871
|
+
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
3851
3872
|
},
|
|
3852
3873
|
/**
|
|
3853
3874
|
*
|
|
@@ -4209,6 +4230,13 @@ export interface HospitalsApiApiV2HospitalsHospitalIdAppointmenttimetablesGetReq
|
|
|
4209
4230
|
*/
|
|
4210
4231
|
readonly timeZone?: string
|
|
4211
4232
|
|
|
4233
|
+
/**
|
|
4234
|
+
*
|
|
4235
|
+
* @type {boolean}
|
|
4236
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdAppointmenttimetablesGet
|
|
4237
|
+
*/
|
|
4238
|
+
readonly isExternal?: boolean
|
|
4239
|
+
|
|
4212
4240
|
/**
|
|
4213
4241
|
*
|
|
4214
4242
|
* @type {string}
|
|
@@ -5217,6 +5245,13 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSpecialtiesHospitalSpecialt
|
|
|
5217
5245
|
*/
|
|
5218
5246
|
readonly timeZone?: string
|
|
5219
5247
|
|
|
5248
|
+
/**
|
|
5249
|
+
*
|
|
5250
|
+
* @type {boolean}
|
|
5251
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet
|
|
5252
|
+
*/
|
|
5253
|
+
readonly isExternal?: boolean
|
|
5254
|
+
|
|
5220
5255
|
/**
|
|
5221
5256
|
*
|
|
5222
5257
|
* @type {string}
|
|
@@ -5644,6 +5679,13 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
5644
5679
|
*/
|
|
5645
5680
|
readonly timeZone?: string
|
|
5646
5681
|
|
|
5682
|
+
/**
|
|
5683
|
+
*
|
|
5684
|
+
* @type {boolean}
|
|
5685
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet
|
|
5686
|
+
*/
|
|
5687
|
+
readonly isExternal?: boolean
|
|
5688
|
+
|
|
5647
5689
|
/**
|
|
5648
5690
|
*
|
|
5649
5691
|
* @type {string}
|
|
@@ -6103,7 +6145,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
6103
6145
|
* @memberof HospitalsApi
|
|
6104
6146
|
*/
|
|
6105
6147
|
public apiV2HospitalsHospitalIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig) {
|
|
6106
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
6148
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
6107
6149
|
}
|
|
6108
6150
|
|
|
6109
6151
|
/**
|
|
@@ -6391,7 +6433,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
6391
6433
|
* @memberof HospitalsApi
|
|
6392
6434
|
*/
|
|
6393
6435
|
public apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig) {
|
|
6394
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
6436
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
6395
6437
|
}
|
|
6396
6438
|
|
|
6397
6439
|
/**
|
|
@@ -6475,7 +6517,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
6475
6517
|
* @memberof HospitalsApi
|
|
6476
6518
|
*/
|
|
6477
6519
|
public apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig) {
|
|
6478
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
6520
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
6479
6521
|
}
|
|
6480
6522
|
|
|
6481
6523
|
/**
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2
|
|
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 AuditableEntityModel
|
|
21
|
+
*/
|
|
22
|
+
export interface AuditableEntityModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof AuditableEntityModel
|
|
27
|
+
*/
|
|
28
|
+
'createdBy'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof AuditableEntityModel
|
|
33
|
+
*/
|
|
34
|
+
'updatedBy'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof AuditableEntityModel
|
|
39
|
+
*/
|
|
40
|
+
'deletedBy'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {Date}
|
|
44
|
+
* @memberof AuditableEntityModel
|
|
45
|
+
*/
|
|
46
|
+
'createdDate'?: Date;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {Date}
|
|
50
|
+
* @memberof AuditableEntityModel
|
|
51
|
+
*/
|
|
52
|
+
'updatedDate'?: Date | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {Date}
|
|
56
|
+
* @memberof AuditableEntityModel
|
|
57
|
+
*/
|
|
58
|
+
'deletedDate'?: Date | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof AuditableEntityModel
|
|
63
|
+
*/
|
|
64
|
+
'isHidden'?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {boolean}
|
|
68
|
+
* @memberof AuditableEntityModel
|
|
69
|
+
*/
|
|
70
|
+
'isDeleted'?: boolean;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -56,12 +56,6 @@ export interface CreateAppointmentCommand {
|
|
|
56
56
|
* @memberof CreateAppointmentCommand
|
|
57
57
|
*/
|
|
58
58
|
'doctorAffiliationId'?: string | null;
|
|
59
|
-
/**
|
|
60
|
-
*
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof CreateAppointmentCommand
|
|
63
|
-
*/
|
|
64
|
-
'dealId'?: string | null;
|
|
65
59
|
/**
|
|
66
60
|
*
|
|
67
61
|
* @type {string}
|
|
@@ -13,15 +13,12 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import { AppointmentOptionDocumentModel } from './appointment-option-document-model';
|
|
19
16
|
// May contain unused imports in some cases
|
|
20
17
|
// @ts-ignore
|
|
21
18
|
import { DealServiceSubDocumentModel } from './deal-service-sub-document-model';
|
|
22
19
|
// May contain unused imports in some cases
|
|
23
20
|
// @ts-ignore
|
|
24
|
-
import {
|
|
21
|
+
import { HospitalFeatureDocumentModel } from './hospital-feature-document-model';
|
|
25
22
|
// May contain unused imports in some cases
|
|
26
23
|
// @ts-ignore
|
|
27
24
|
import { HospitalSubDocumentModel } from './hospital-sub-document-model';
|
|
@@ -347,18 +344,6 @@ export interface DealDocumentModel {
|
|
|
347
344
|
* @memberof DealDocumentModel
|
|
348
345
|
*/
|
|
349
346
|
'ServiceDuration'?: number;
|
|
350
|
-
/**
|
|
351
|
-
*
|
|
352
|
-
* @type {string}
|
|
353
|
-
* @memberof DealDocumentModel
|
|
354
|
-
*/
|
|
355
|
-
'FormUrl'?: string | null;
|
|
356
|
-
/**
|
|
357
|
-
*
|
|
358
|
-
* @type {AppointmentOptionDocumentModel}
|
|
359
|
-
* @memberof DealDocumentModel
|
|
360
|
-
*/
|
|
361
|
-
'AppointmentOption'?: AppointmentOptionDocumentModel;
|
|
362
347
|
/**
|
|
363
348
|
*
|
|
364
349
|
* @type {Array<PackageSubDocumentModel>}
|
|
@@ -373,9 +358,9 @@ export interface DealDocumentModel {
|
|
|
373
358
|
'Services'?: Array<DealServiceSubDocumentModel> | null;
|
|
374
359
|
/**
|
|
375
360
|
*
|
|
376
|
-
* @type {
|
|
361
|
+
* @type {HospitalFeatureDocumentModel}
|
|
377
362
|
* @memberof DealDocumentModel
|
|
378
363
|
*/
|
|
379
|
-
'Feature'?:
|
|
364
|
+
'Feature'?: HospitalFeatureDocumentModel;
|
|
380
365
|
}
|
|
381
366
|
|
|
@@ -27,7 +27,7 @@ import { DealPackageMappingModel } from './deal-package-mapping-model';
|
|
|
27
27
|
import { DealServiceMappingModel } from './deal-service-mapping-model';
|
|
28
28
|
// May contain unused imports in some cases
|
|
29
29
|
// @ts-ignore
|
|
30
|
-
import {
|
|
30
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
31
31
|
// May contain unused imports in some cases
|
|
32
32
|
// @ts-ignore
|
|
33
33
|
import { LocationModel } from './location-model';
|
|
@@ -191,30 +191,48 @@ export interface DealItemModel {
|
|
|
191
191
|
* @memberof DealItemModel
|
|
192
192
|
*/
|
|
193
193
|
'dealServicesCount'?: number;
|
|
194
|
+
/**
|
|
195
|
+
*
|
|
196
|
+
* @type {HospitalFeatureModel}
|
|
197
|
+
* @memberof DealItemModel
|
|
198
|
+
*/
|
|
199
|
+
'feature'?: HospitalFeatureModel;
|
|
194
200
|
/**
|
|
195
201
|
*
|
|
196
202
|
* @type {string}
|
|
197
203
|
* @memberof DealItemModel
|
|
198
204
|
*/
|
|
199
|
-
'
|
|
205
|
+
'chSurveyFormId'?: string | null;
|
|
200
206
|
/**
|
|
201
207
|
*
|
|
202
|
-
* @type {
|
|
208
|
+
* @type {string}
|
|
203
209
|
* @memberof DealItemModel
|
|
204
210
|
*/
|
|
205
|
-
'
|
|
211
|
+
'saasSurveyFormId'?: string | null;
|
|
206
212
|
/**
|
|
207
213
|
*
|
|
208
|
-
* @type {
|
|
214
|
+
* @type {string}
|
|
209
215
|
* @memberof DealItemModel
|
|
210
216
|
*/
|
|
211
|
-
'
|
|
217
|
+
'formUrlForChLink'?: string | null;
|
|
212
218
|
/**
|
|
213
219
|
*
|
|
214
|
-
* @type {
|
|
220
|
+
* @type {string}
|
|
215
221
|
* @memberof DealItemModel
|
|
216
222
|
*/
|
|
217
|
-
'
|
|
223
|
+
'formUrlForSaasLink'?: string | null;
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @type {number}
|
|
227
|
+
* @memberof DealItemModel
|
|
228
|
+
*/
|
|
229
|
+
'order'?: number;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @type {AppointmentOptionModel}
|
|
233
|
+
* @memberof DealItemModel
|
|
234
|
+
*/
|
|
235
|
+
'appointmentOption'?: AppointmentOptionModel;
|
|
218
236
|
/**
|
|
219
237
|
*
|
|
220
238
|
* @type {AuditableEntity}
|
package/src/models/deal-model.ts
CHANGED
|
@@ -27,7 +27,7 @@ import { DealPackageMappingModel } from './deal-package-mapping-model';
|
|
|
27
27
|
import { DealServiceMappingModel } from './deal-service-mapping-model';
|
|
28
28
|
// May contain unused imports in some cases
|
|
29
29
|
// @ts-ignore
|
|
30
|
-
import {
|
|
30
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
31
31
|
// May contain unused imports in some cases
|
|
32
32
|
// @ts-ignore
|
|
33
33
|
import { LocalizedUrlModel } from './localized-url-model';
|
|
@@ -194,30 +194,48 @@ export interface DealModel {
|
|
|
194
194
|
* @memberof DealModel
|
|
195
195
|
*/
|
|
196
196
|
'dealServicesCount'?: number;
|
|
197
|
+
/**
|
|
198
|
+
*
|
|
199
|
+
* @type {HospitalFeatureModel}
|
|
200
|
+
* @memberof DealModel
|
|
201
|
+
*/
|
|
202
|
+
'feature'?: HospitalFeatureModel;
|
|
197
203
|
/**
|
|
198
204
|
*
|
|
199
205
|
* @type {string}
|
|
200
206
|
* @memberof DealModel
|
|
201
207
|
*/
|
|
202
|
-
'
|
|
208
|
+
'chSurveyFormId'?: string | null;
|
|
203
209
|
/**
|
|
204
210
|
*
|
|
205
|
-
* @type {
|
|
211
|
+
* @type {string}
|
|
206
212
|
* @memberof DealModel
|
|
207
213
|
*/
|
|
208
|
-
'
|
|
214
|
+
'saasSurveyFormId'?: string | null;
|
|
209
215
|
/**
|
|
210
216
|
*
|
|
211
|
-
* @type {
|
|
217
|
+
* @type {string}
|
|
212
218
|
* @memberof DealModel
|
|
213
219
|
*/
|
|
214
|
-
'
|
|
220
|
+
'formUrlForChLink'?: string | null;
|
|
215
221
|
/**
|
|
216
222
|
*
|
|
217
|
-
* @type {
|
|
223
|
+
* @type {string}
|
|
218
224
|
* @memberof DealModel
|
|
219
225
|
*/
|
|
220
|
-
'
|
|
226
|
+
'formUrlForSaasLink'?: string | null;
|
|
227
|
+
/**
|
|
228
|
+
*
|
|
229
|
+
* @type {number}
|
|
230
|
+
* @memberof DealModel
|
|
231
|
+
*/
|
|
232
|
+
'order'?: number;
|
|
233
|
+
/**
|
|
234
|
+
*
|
|
235
|
+
* @type {AppointmentOptionModel}
|
|
236
|
+
* @memberof DealModel
|
|
237
|
+
*/
|
|
238
|
+
'appointmentOption'?: AppointmentOptionModel;
|
|
221
239
|
/**
|
|
222
240
|
*
|
|
223
241
|
* @type {AuditableEntity}
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
24
27
|
import { RefundPolicy } from './refund-policy';
|
|
@@ -109,9 +112,39 @@ export interface DealPackageItemModel {
|
|
|
109
112
|
'appointmentOption'?: AppointmentOptionModel;
|
|
110
113
|
/**
|
|
111
114
|
*
|
|
112
|
-
* @type {
|
|
115
|
+
* @type {HospitalFeatureModel}
|
|
116
|
+
* @memberof DealPackageItemModel
|
|
117
|
+
*/
|
|
118
|
+
'feature'?: HospitalFeatureModel;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof DealPackageItemModel
|
|
123
|
+
*/
|
|
124
|
+
'chSurveyFormId'?: string | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof DealPackageItemModel
|
|
129
|
+
*/
|
|
130
|
+
'saasSurveyFormId'?: string | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof DealPackageItemModel
|
|
135
|
+
*/
|
|
136
|
+
'formUrlForChLink'?: string | null;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof DealPackageItemModel
|
|
141
|
+
*/
|
|
142
|
+
'formUrlForSaasLink'?: string | null;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {AuditableEntityModel}
|
|
113
146
|
* @memberof DealPackageItemModel
|
|
114
147
|
*/
|
|
115
|
-
'auditableEntity'?:
|
|
148
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
116
149
|
}
|
|
117
150
|
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
import { AppointmentOptionModel } from './appointment-option-model';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { HospitalFeatureModel } from './hospital-feature-model';
|
|
22
25
|
// May contain unused imports in some cases
|
|
23
26
|
// @ts-ignore
|
|
24
27
|
import { RefundPolicy } from './refund-policy';
|
|
@@ -109,10 +112,40 @@ export interface DealPackageModel {
|
|
|
109
112
|
'appointmentOption'?: AppointmentOptionModel;
|
|
110
113
|
/**
|
|
111
114
|
*
|
|
112
|
-
* @type {
|
|
115
|
+
* @type {HospitalFeatureModel}
|
|
116
|
+
* @memberof DealPackageModel
|
|
117
|
+
*/
|
|
118
|
+
'feature'?: HospitalFeatureModel;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof DealPackageModel
|
|
123
|
+
*/
|
|
124
|
+
'chSurveyFormId'?: string | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof DealPackageModel
|
|
129
|
+
*/
|
|
130
|
+
'saasSurveyFormId'?: string | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof DealPackageModel
|
|
135
|
+
*/
|
|
136
|
+
'formUrlForChLink'?: string | null;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof DealPackageModel
|
|
141
|
+
*/
|
|
142
|
+
'formUrlForSaasLink'?: string | null;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {AuditableEntityModel}
|
|
113
146
|
* @memberof DealPackageModel
|
|
114
147
|
*/
|
|
115
|
-
'auditableEntity'?:
|
|
148
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
116
149
|
/**
|
|
117
150
|
*
|
|
118
151
|
* @type {string}
|