ch-api-client-typescript2 5.22.1 → 5.23.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/deals-api.d.ts +4 -4
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.d.ts +4 -4
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.d.ts +10 -10
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/prescriptions-api.d.ts +198 -0
- package/lib/api/prescriptions-api.d.ts.map +1 -0
- package/lib/api/prescriptions-api.js +346 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/article-document-model.d.ts +13 -0
- package/lib/models/article-document-model.d.ts.map +1 -1
- package/lib/models/article-item-model.d.ts +24 -0
- package/lib/models/article-item-model.d.ts.map +1 -1
- package/lib/models/article-model.d.ts +24 -6
- package/lib/models/article-model.d.ts.map +1 -1
- package/lib/models/{appointment-timetables-model.d.ts → get-appointment-timetables-response-model.d.ts} +7 -7
- package/lib/models/get-appointment-timetables-response-model.d.ts.map +1 -0
- package/lib/models/index.d.ts +7 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +7 -1
- package/lib/models/prescription-diagnosis-model.d.ts +37 -0
- package/lib/models/prescription-diagnosis-model.d.ts.map +1 -0
- package/lib/models/prescription-diagnosis-model.js +15 -0
- package/lib/models/prescription-item-model.d.ts +151 -0
- package/lib/models/prescription-item-model.d.ts.map +1 -0
- package/lib/models/prescription-item-model.js +15 -0
- package/lib/models/prescription-medication-model.d.ts +79 -0
- package/lib/models/prescription-medication-model.d.ts.map +1 -0
- package/lib/models/prescription-medication-model.js +15 -0
- package/lib/models/prescription-model.d.ts +172 -0
- package/lib/models/prescription-model.d.ts.map +1 -0
- package/lib/models/prescription-model.js +15 -0
- package/lib/models/prescription-symptom-model.d.ts +49 -0
- package/lib/models/prescription-symptom-model.d.ts.map +1 -0
- package/lib/models/prescription-symptom-model.js +15 -0
- package/lib/models/prescriptions-model.d.ts +33 -0
- package/lib/models/prescriptions-model.d.ts.map +1 -0
- package/lib/models/prescriptions-model.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +8 -1
- package/src/api/deals-api.ts +4 -4
- package/src/api/doctor-affiliations-api.ts +4 -4
- package/src/api/hospitals-api.ts +8 -8
- package/src/api/prescriptions-api.ts +333 -0
- package/src/api.ts +1 -0
- package/src/models/article-document-model.ts +15 -0
- package/src/models/article-item-model.ts +24 -0
- package/src/models/article-model.ts +24 -6
- package/src/models/{appointment-timetables-model.ts → get-appointment-timetables-response-model.ts} +6 -6
- package/src/models/index.ts +7 -1
- package/src/models/prescription-diagnosis-model.ts +42 -0
- package/src/models/prescription-item-model.ts +156 -0
- package/src/models/prescription-medication-model.ts +84 -0
- package/src/models/prescription-model.ts +183 -0
- package/src/models/prescription-symptom-model.ts +54 -0
- package/src/models/prescriptions-model.ts +42 -0
- package/lib/models/appointment-timetables-model.d.ts.map +0 -1
- /package/lib/models/{appointment-timetables-model.js → get-appointment-timetables-response-model.js} +0 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { PrescriptionDiagnosisModel } from './prescription-diagnosis-model';
|
|
13
|
+
import { PrescriptionMedicationModel } from './prescription-medication-model';
|
|
14
|
+
import { PrescriptionSymptomModel } from './prescription-symptom-model';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface PrescriptionModel
|
|
19
|
+
*/
|
|
20
|
+
export interface PrescriptionModel {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof PrescriptionModel
|
|
25
|
+
*/
|
|
26
|
+
'languageCode'?: string | null;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof PrescriptionModel
|
|
31
|
+
*/
|
|
32
|
+
'hospitalId'?: string;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof PrescriptionModel
|
|
37
|
+
*/
|
|
38
|
+
'hospitalName'?: string | null;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof PrescriptionModel
|
|
43
|
+
*/
|
|
44
|
+
'doctorName'?: string | null;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {number}
|
|
48
|
+
* @memberof PrescriptionModel
|
|
49
|
+
*/
|
|
50
|
+
'height'?: number | null;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof PrescriptionModel
|
|
55
|
+
*/
|
|
56
|
+
'heightUnit'?: string | null;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {number}
|
|
60
|
+
* @memberof PrescriptionModel
|
|
61
|
+
*/
|
|
62
|
+
'weight'?: number | null;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof PrescriptionModel
|
|
67
|
+
*/
|
|
68
|
+
'weightUnit'?: string | null;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {number}
|
|
72
|
+
* @memberof PrescriptionModel
|
|
73
|
+
*/
|
|
74
|
+
'bodyMassIndex'?: number | null;
|
|
75
|
+
/**
|
|
76
|
+
*
|
|
77
|
+
* @type {string}
|
|
78
|
+
* @memberof PrescriptionModel
|
|
79
|
+
*/
|
|
80
|
+
'bodyMassIndexUnit'?: string | null;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
* @type {number}
|
|
84
|
+
* @memberof PrescriptionModel
|
|
85
|
+
*/
|
|
86
|
+
'pulseRate'?: number | null;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof PrescriptionModel
|
|
91
|
+
*/
|
|
92
|
+
'pulseRateUnit'?: string | null;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @type {number}
|
|
96
|
+
* @memberof PrescriptionModel
|
|
97
|
+
*/
|
|
98
|
+
'systolicBloodPressure'?: number | null;
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @type {number}
|
|
102
|
+
* @memberof PrescriptionModel
|
|
103
|
+
*/
|
|
104
|
+
'diastolicBloodPressure'?: number | null;
|
|
105
|
+
/**
|
|
106
|
+
*
|
|
107
|
+
* @type {string}
|
|
108
|
+
* @memberof PrescriptionModel
|
|
109
|
+
*/
|
|
110
|
+
'bloodPressureUnit'?: string | null;
|
|
111
|
+
/**
|
|
112
|
+
*
|
|
113
|
+
* @type {number}
|
|
114
|
+
* @memberof PrescriptionModel
|
|
115
|
+
*/
|
|
116
|
+
'bodyTemperature'?: number | null;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @type {string}
|
|
120
|
+
* @memberof PrescriptionModel
|
|
121
|
+
*/
|
|
122
|
+
'bodyTemperatureUnit'?: string | null;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {string}
|
|
126
|
+
* @memberof PrescriptionModel
|
|
127
|
+
*/
|
|
128
|
+
'advice'?: string | null;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {string}
|
|
132
|
+
* @memberof PrescriptionModel
|
|
133
|
+
*/
|
|
134
|
+
'summary'?: string | null;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {boolean}
|
|
138
|
+
* @memberof PrescriptionModel
|
|
139
|
+
*/
|
|
140
|
+
'followUpNeeded'?: boolean;
|
|
141
|
+
/**
|
|
142
|
+
*
|
|
143
|
+
* @type {number}
|
|
144
|
+
* @memberof PrescriptionModel
|
|
145
|
+
*/
|
|
146
|
+
'followUpDays'?: number | null;
|
|
147
|
+
/**
|
|
148
|
+
*
|
|
149
|
+
* @type {string}
|
|
150
|
+
* @memberof PrescriptionModel
|
|
151
|
+
*/
|
|
152
|
+
'followUpNotes'?: string | null;
|
|
153
|
+
/**
|
|
154
|
+
*
|
|
155
|
+
* @type {Array<PrescriptionSymptomModel>}
|
|
156
|
+
* @memberof PrescriptionModel
|
|
157
|
+
*/
|
|
158
|
+
'prescriptionSymptoms'?: Array<PrescriptionSymptomModel> | null;
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* @type {Array<PrescriptionDiagnosisModel>}
|
|
162
|
+
* @memberof PrescriptionModel
|
|
163
|
+
*/
|
|
164
|
+
'prescriptionDiagnoses'?: Array<PrescriptionDiagnosisModel> | null;
|
|
165
|
+
/**
|
|
166
|
+
*
|
|
167
|
+
* @type {Array<PrescriptionMedicationModel>}
|
|
168
|
+
* @memberof PrescriptionModel
|
|
169
|
+
*/
|
|
170
|
+
'prescriptionMedications'?: Array<PrescriptionMedicationModel> | null;
|
|
171
|
+
}
|
|
172
|
+
//# sourceMappingURL=prescription-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prescription-model.d.ts","sourceRoot":"","sources":["../../src/models/prescription-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAG5E,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAG9E,OAAO,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AAExE;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC;IAChE;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,KAAK,CAAC,0BAA0B,CAAC,GAAG,IAAI,CAAC;IACnE;;;;OAIG;IACH,yBAAyB,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC;CACzE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
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 });
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PrescriptionSymptomModel
|
|
16
|
+
*/
|
|
17
|
+
export interface PrescriptionSymptomModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PrescriptionSymptomModel
|
|
22
|
+
*/
|
|
23
|
+
'id'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PrescriptionSymptomModel
|
|
28
|
+
*/
|
|
29
|
+
'description'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PrescriptionSymptomModel
|
|
34
|
+
*/
|
|
35
|
+
'since'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PrescriptionSymptomModel
|
|
40
|
+
*/
|
|
41
|
+
'severity'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof PrescriptionSymptomModel
|
|
46
|
+
*/
|
|
47
|
+
'order'?: number;
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=prescription-symptom-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prescription-symptom-model.d.ts","sourceRoot":"","sources":["../../src/models/prescription-symptom-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
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 });
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
13
|
+
import { PrescriptionItemModel } from './prescription-item-model';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface PrescriptionsModel
|
|
18
|
+
*/
|
|
19
|
+
export interface PrescriptionsModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<PrescriptionItemModel>}
|
|
23
|
+
* @memberof PrescriptionsModel
|
|
24
|
+
*/
|
|
25
|
+
'items'?: Array<PrescriptionItemModel> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PagedListMetaData}
|
|
29
|
+
* @memberof PrescriptionsModel
|
|
30
|
+
*/
|
|
31
|
+
'metaData'?: PagedListMetaData;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=prescriptions-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prescriptions-model.d.ts","sourceRoot":"","sources":["../../src/models/prescriptions-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAG3D,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAElE;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC;IAC9C;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
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 });
|
package/package.json
CHANGED
|
@@ -30,6 +30,7 @@ api/notifications-api.ts
|
|
|
30
30
|
api/origins-api.ts
|
|
31
31
|
api/patients-api.ts
|
|
32
32
|
api/plans-api.ts
|
|
33
|
+
api/prescriptions-api.ts
|
|
33
34
|
api/profiles-api.ts
|
|
34
35
|
api/search-curations-api.ts
|
|
35
36
|
api/secure-containers-api.ts
|
|
@@ -67,7 +68,6 @@ models/appointment-status.ts
|
|
|
67
68
|
models/appointment-timetable-date-model.ts
|
|
68
69
|
models/appointment-timetable-status.ts
|
|
69
70
|
models/appointment-timetable-time-slot-model.ts
|
|
70
|
-
models/appointment-timetables-model.ts
|
|
71
71
|
models/appointment-type.ts
|
|
72
72
|
models/appointments-model.ts
|
|
73
73
|
models/article-contributor-document-model.ts
|
|
@@ -199,6 +199,7 @@ models/feature-model.ts
|
|
|
199
199
|
models/footer-navigation-item-model.ts
|
|
200
200
|
models/gender.ts
|
|
201
201
|
models/geography-point.ts
|
|
202
|
+
models/get-appointment-timetables-response-model.ts
|
|
202
203
|
models/grade-document-model.ts
|
|
203
204
|
models/grade-model.ts
|
|
204
205
|
models/header-navigation-item-model.ts
|
|
@@ -308,6 +309,12 @@ models/platform.ts
|
|
|
308
309
|
models/policies-model.ts
|
|
309
310
|
models/policy-item-model.ts
|
|
310
311
|
models/policy-model.ts
|
|
312
|
+
models/prescription-diagnosis-model.ts
|
|
313
|
+
models/prescription-item-model.ts
|
|
314
|
+
models/prescription-medication-model.ts
|
|
315
|
+
models/prescription-model.ts
|
|
316
|
+
models/prescription-symptom-model.ts
|
|
317
|
+
models/prescriptions-model.ts
|
|
311
318
|
models/problem-details.ts
|
|
312
319
|
models/procedure.ts
|
|
313
320
|
models/recurring-interval.ts
|
package/src/api/deals-api.ts
CHANGED
|
@@ -21,8 +21,6 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import { AppointmentTimetablesModel } from '../models';
|
|
25
|
-
// @ts-ignore
|
|
26
24
|
import { DealModel } from '../models';
|
|
27
25
|
// @ts-ignore
|
|
28
26
|
import { DealPackageModel } from '../models';
|
|
@@ -37,6 +35,8 @@ import { DealsModel } from '../models';
|
|
|
37
35
|
// @ts-ignore
|
|
38
36
|
import { DealsSimpleModel } from '../models';
|
|
39
37
|
// @ts-ignore
|
|
38
|
+
import { GetAppointmentTimetablesResponseModel } from '../models';
|
|
39
|
+
// @ts-ignore
|
|
40
40
|
import { MarketingType } from '../models';
|
|
41
41
|
/**
|
|
42
42
|
* DealsApi - axios parameter creator
|
|
@@ -802,7 +802,7 @@ export const DealsApiFp = function(configuration?: Configuration) {
|
|
|
802
802
|
* @param {*} [options] Override http request option.
|
|
803
803
|
* @throws {RequiredError}
|
|
804
804
|
*/
|
|
805
|
-
async apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
805
|
+
async apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
806
806
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId, packageId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
807
807
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
808
808
|
},
|
|
@@ -985,7 +985,7 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
|
|
|
985
985
|
* @param {*} [options] Override http request option.
|
|
986
986
|
* @throws {RequiredError}
|
|
987
987
|
*/
|
|
988
|
-
apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<
|
|
988
|
+
apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId: string, packageId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
989
989
|
return localVarFp.apiV2DealsDealIdPackagesPackageIdAppointmenttimetablesGet(dealId, packageId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
990
990
|
},
|
|
991
991
|
/**
|
|
@@ -21,12 +21,12 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import { AppointmentTimetablesModel } from '../models';
|
|
25
|
-
// @ts-ignore
|
|
26
24
|
import { DoctorAffiliationModel } from '../models';
|
|
27
25
|
// @ts-ignore
|
|
28
26
|
import { DoctorAffiliationsModel } from '../models';
|
|
29
27
|
// @ts-ignore
|
|
28
|
+
import { GetAppointmentTimetablesResponseModel } from '../models';
|
|
29
|
+
// @ts-ignore
|
|
30
30
|
import { MarketingType } from '../models';
|
|
31
31
|
// @ts-ignore
|
|
32
32
|
import { MediaModel } from '../models';
|
|
@@ -415,7 +415,7 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
415
415
|
* @param {*} [options] Override http request option.
|
|
416
416
|
* @throws {RequiredError}
|
|
417
417
|
*/
|
|
418
|
-
async apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
418
|
+
async apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
419
419
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
420
420
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
421
421
|
},
|
|
@@ -519,7 +519,7 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
519
519
|
* @param {*} [options] Override http request option.
|
|
520
520
|
* @throws {RequiredError}
|
|
521
521
|
*/
|
|
522
|
-
apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<
|
|
522
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
523
523
|
return localVarFp.apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
524
524
|
},
|
|
525
525
|
/**
|
package/src/api/hospitals-api.ts
CHANGED
|
@@ -21,8 +21,6 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import { AppointmentTimetablesModel } from '../models';
|
|
25
|
-
// @ts-ignore
|
|
26
24
|
import { ArticleModel } from '../models';
|
|
27
25
|
// @ts-ignore
|
|
28
26
|
import { BankAccountInfoModel } from '../models';
|
|
@@ -39,6 +37,8 @@ import { DoctorAffiliationModel } from '../models';
|
|
|
39
37
|
// @ts-ignore
|
|
40
38
|
import { FooterNavigationItemModel } from '../models';
|
|
41
39
|
// @ts-ignore
|
|
40
|
+
import { GetAppointmentTimetablesResponseModel } from '../models';
|
|
41
|
+
// @ts-ignore
|
|
42
42
|
import { HospitalAccreditationModel } from '../models';
|
|
43
43
|
// @ts-ignore
|
|
44
44
|
import { HospitalAccreditationsModel } from '../models';
|
|
@@ -3591,7 +3591,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
3591
3591
|
* @param {*} [options] Override http request option.
|
|
3592
3592
|
* @throws {RequiredError}
|
|
3593
3593
|
*/
|
|
3594
|
-
async apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3594
|
+
async apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
3595
3595
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
3596
3596
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3597
3597
|
},
|
|
@@ -4135,7 +4135,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
4135
4135
|
* @param {*} [options] Override http request option.
|
|
4136
4136
|
* @throws {RequiredError}
|
|
4137
4137
|
*/
|
|
4138
|
-
async apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4138
|
+
async apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
4139
4139
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
4140
4140
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4141
4141
|
},
|
|
@@ -4262,7 +4262,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
4262
4262
|
* @param {*} [options] Override http request option.
|
|
4263
4263
|
* @throws {RequiredError}
|
|
4264
4264
|
*/
|
|
4265
|
-
async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4265
|
+
async apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAppointmentTimetablesResponseModel>> {
|
|
4266
4266
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options);
|
|
4267
4267
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4268
4268
|
},
|
|
@@ -4501,7 +4501,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
4501
4501
|
* @param {*} [options] Override http request option.
|
|
4502
4502
|
* @throws {RequiredError}
|
|
4503
4503
|
*/
|
|
4504
|
-
apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<
|
|
4504
|
+
apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
4505
4505
|
return localVarFp.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
4506
4506
|
},
|
|
4507
4507
|
/**
|
|
@@ -5009,7 +5009,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
5009
5009
|
* @param {*} [options] Override http request option.
|
|
5010
5010
|
* @throws {RequiredError}
|
|
5011
5011
|
*/
|
|
5012
|
-
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<
|
|
5012
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId: string, hospitalSpecialtyId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
5013
5013
|
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdAppointmenttimetablesGet(hospitalId, hospitalSpecialtyId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
5014
5014
|
},
|
|
5015
5015
|
/**
|
|
@@ -5129,7 +5129,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
5129
5129
|
* @param {*} [options] Override http request option.
|
|
5130
5130
|
* @throws {RequiredError}
|
|
5131
5131
|
*/
|
|
5132
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<
|
|
5132
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId: string, specialtyId: string, serviceId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<GetAppointmentTimetablesResponseModel> {
|
|
5133
5133
|
return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdAppointmenttimetablesGet(hospitalId, specialtyId, serviceId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
5134
5134
|
},
|
|
5135
5135
|
/**
|