ch-api-client-typescript2 5.19.4 → 5.19.10
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/appointments-api.d.ts +13 -3
- package/lib/api/appointments-api.d.ts.map +1 -1
- package/lib/api/appointments-api.js +11 -6
- package/lib/api/deals-api.d.ts +12 -3
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +12 -6
- package/lib/api/doctor-affiliations-api.d.ts +16 -7
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +16 -10
- package/lib/api/hospitals-api.d.ts +178 -3
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +212 -6
- package/lib/models/hospital-branch-item-mapping-model.d.ts +75 -0
- package/lib/models/hospital-branch-item-mapping-model.d.ts.map +1 -0
- package/lib/models/hospital-branch-item-mapping-model.js +15 -0
- package/lib/models/hospital-branch-item-model.d.ts +3 -40
- package/lib/models/hospital-branch-item-model.d.ts.map +1 -1
- package/lib/models/hospital-branches-model.d.ts +8 -1
- package/lib/models/hospital-branches-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/pay-appointment-command.d.ts +32 -0
- package/lib/models/pay-appointment-command.d.ts.map +1 -0
- package/lib/models/pay-appointment-command.js +15 -0
- package/lib/models/survey-result-element-input-model.d.ts +7 -0
- package/lib/models/survey-result-element-input-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +2 -0
- package/src/api/appointments-api.ts +21 -6
- package/src/api/deals-api.ts +20 -6
- package/src/api/doctor-affiliations-api.ts +24 -10
- package/src/api/hospitals-api.ts +298 -6
- package/src/models/hospital-branch-item-mapping-model.ts +84 -0
- package/src/models/hospital-branch-item-model.ts +3 -42
- package/src/models/hospital-branches-model.ts +10 -1
- package/src/models/index.ts +2 -0
- package/src/models/pay-appointment-command.ts +39 -0
- package/src/models/survey-result-element-input-model.ts +9 -0
|
@@ -0,0 +1,84 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { HospitalContactItemModel } from './hospital-contact-item-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { LocationModel } from './location-model';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface HospitalBranchItemMappingModel
|
|
27
|
+
*/
|
|
28
|
+
export interface HospitalBranchItemMappingModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof HospitalBranchItemMappingModel
|
|
33
|
+
*/
|
|
34
|
+
'languageCode'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof HospitalBranchItemMappingModel
|
|
39
|
+
*/
|
|
40
|
+
'id'?: string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof HospitalBranchItemMappingModel
|
|
45
|
+
*/
|
|
46
|
+
'hospitalId'?: string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof HospitalBranchItemMappingModel
|
|
51
|
+
*/
|
|
52
|
+
'hospitalName'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof HospitalBranchItemMappingModel
|
|
57
|
+
*/
|
|
58
|
+
'hospitalWebsiteUrl'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {LocationModel}
|
|
62
|
+
* @memberof HospitalBranchItemMappingModel
|
|
63
|
+
*/
|
|
64
|
+
'hospitalLocation'?: LocationModel;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof HospitalBranchItemMappingModel
|
|
69
|
+
*/
|
|
70
|
+
'hospitalContactTel'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof HospitalBranchItemMappingModel
|
|
75
|
+
*/
|
|
76
|
+
'hospitalContactEmail'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {Array<HospitalContactItemModel>}
|
|
80
|
+
* @memberof HospitalBranchItemMappingModel
|
|
81
|
+
*/
|
|
82
|
+
'hospitalContacts'?: Array<HospitalContactItemModel> | null;
|
|
83
|
+
}
|
|
84
|
+
|
|
@@ -15,10 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
// May contain unused imports in some cases
|
|
17
17
|
// @ts-ignore
|
|
18
|
-
import {
|
|
19
|
-
// May contain unused imports in some cases
|
|
20
|
-
// @ts-ignore
|
|
21
|
-
import { LocationModel } from './location-model';
|
|
18
|
+
import { HospitalBranchItemMappingModel } from './hospital-branch-item-mapping-model';
|
|
22
19
|
|
|
23
20
|
/**
|
|
24
21
|
*
|
|
@@ -44,12 +41,6 @@ export interface HospitalBranchItemModel {
|
|
|
44
41
|
* @memberof HospitalBranchItemModel
|
|
45
42
|
*/
|
|
46
43
|
'hospitalGroupId'?: string;
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof HospitalBranchItemModel
|
|
51
|
-
*/
|
|
52
|
-
'hospitalId'?: string;
|
|
53
44
|
/**
|
|
54
45
|
*
|
|
55
46
|
* @type {number}
|
|
@@ -70,39 +61,9 @@ export interface HospitalBranchItemModel {
|
|
|
70
61
|
'isConfirmed'?: boolean;
|
|
71
62
|
/**
|
|
72
63
|
*
|
|
73
|
-
* @type {
|
|
74
|
-
* @memberof HospitalBranchItemModel
|
|
75
|
-
*/
|
|
76
|
-
'hospitalName'?: string | null;
|
|
77
|
-
/**
|
|
78
|
-
*
|
|
79
|
-
* @type {string}
|
|
80
|
-
* @memberof HospitalBranchItemModel
|
|
81
|
-
*/
|
|
82
|
-
'hospitalWebsiteUrl'?: string | null;
|
|
83
|
-
/**
|
|
84
|
-
*
|
|
85
|
-
* @type {LocationModel}
|
|
86
|
-
* @memberof HospitalBranchItemModel
|
|
87
|
-
*/
|
|
88
|
-
'hospitalLocation'?: LocationModel;
|
|
89
|
-
/**
|
|
90
|
-
*
|
|
91
|
-
* @type {string}
|
|
92
|
-
* @memberof HospitalBranchItemModel
|
|
93
|
-
*/
|
|
94
|
-
'hospitalContactTel'?: string | null;
|
|
95
|
-
/**
|
|
96
|
-
*
|
|
97
|
-
* @type {string}
|
|
98
|
-
* @memberof HospitalBranchItemModel
|
|
99
|
-
*/
|
|
100
|
-
'hospitalContactEmail'?: string | null;
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @type {Array<HospitalContactItemModel>}
|
|
64
|
+
* @type {Array<HospitalBranchItemMappingModel>}
|
|
104
65
|
* @memberof HospitalBranchItemModel
|
|
105
66
|
*/
|
|
106
|
-
'
|
|
67
|
+
'hospitals'?: Array<HospitalBranchItemMappingModel> | null;
|
|
107
68
|
}
|
|
108
69
|
|
|
@@ -19,6 +19,9 @@ import { HospitalBranchItemModel } from './hospital-branch-item-model';
|
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
21
|
import { HospitalGroupItemModel } from './hospital-group-item-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
22
25
|
|
|
23
26
|
/**
|
|
24
27
|
*
|
|
@@ -37,6 +40,12 @@ export interface HospitalBranchesModel {
|
|
|
37
40
|
* @type {Array<HospitalBranchItemModel>}
|
|
38
41
|
* @memberof HospitalBranchesModel
|
|
39
42
|
*/
|
|
40
|
-
'
|
|
43
|
+
'items'?: Array<HospitalBranchItemModel> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {PagedListMetaData}
|
|
47
|
+
* @memberof HospitalBranchesModel
|
|
48
|
+
*/
|
|
49
|
+
'metaData'?: PagedListMetaData;
|
|
41
50
|
}
|
|
42
51
|
|
package/src/models/index.ts
CHANGED
|
@@ -151,6 +151,7 @@ export * from './hospital-accreditation-item-model';
|
|
|
151
151
|
export * from './hospital-accreditation-model';
|
|
152
152
|
export * from './hospital-accreditations-model';
|
|
153
153
|
export * from './hospital-bank-account-info-document-model';
|
|
154
|
+
export * from './hospital-branch-item-mapping-model';
|
|
154
155
|
export * from './hospital-branch-item-model';
|
|
155
156
|
export * from './hospital-branches-model';
|
|
156
157
|
export * from './hospital-consultation-option-model';
|
|
@@ -218,6 +219,7 @@ export * from './notifications-model';
|
|
|
218
219
|
export * from './package-sub-document-model';
|
|
219
220
|
export * from './paged-list-meta-data';
|
|
220
221
|
export * from './patient-model';
|
|
222
|
+
export * from './pay-appointment-command';
|
|
221
223
|
export * from './payment-method';
|
|
222
224
|
export * from './plan-hospital-item-model';
|
|
223
225
|
export * from './plan-hospital-model';
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { PaymentMethod } from './payment-method';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PayAppointmentCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface PayAppointmentCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PaymentMethod}
|
|
29
|
+
* @memberof PayAppointmentCommand
|
|
30
|
+
*/
|
|
31
|
+
'paymentMethod'?: PaymentMethod;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof PayAppointmentCommand
|
|
36
|
+
*/
|
|
37
|
+
'paymentImage'?: string | null;
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { SurveyFormElementTypes } from './survey-form-element-types';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import { SurveyResultElementValueInputModel } from './survey-result-element-value-input-model';
|
|
@@ -23,6 +26,12 @@ import { SurveyResultElementValueInputModel } from './survey-result-element-valu
|
|
|
23
26
|
* @interface SurveyResultElementInputModel
|
|
24
27
|
*/
|
|
25
28
|
export interface SurveyResultElementInputModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {SurveyFormElementTypes}
|
|
32
|
+
* @memberof SurveyResultElementInputModel
|
|
33
|
+
*/
|
|
34
|
+
'elementType'?: SurveyFormElementTypes;
|
|
26
35
|
/**
|
|
27
36
|
*
|
|
28
37
|
* @type {string}
|