ch-admin-api-client-typescript 5.23.14 → 5.23.17
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 +12 -3
- package/lib/api/appointments-api.d.ts.map +1 -1
- package/lib/api/appointments-api.js +12 -6
- package/lib/api/doctors-api.d.ts +57 -0
- package/lib/api/doctors-api.d.ts.map +1 -1
- package/lib/api/doctors-api.js +90 -0
- package/lib/models/appointment-item-model.d.ts +6 -0
- package/lib/models/appointment-item-model.d.ts.map +1 -1
- package/lib/models/appointment-model.d.ts +6 -0
- package/lib/models/appointment-model.d.ts.map +1 -1
- package/lib/models/create-doctor-certificate-command.d.ts +6 -0
- package/lib/models/create-doctor-certificate-command.d.ts.map +1 -1
- package/lib/models/create-prescription-command.d.ts +6 -0
- package/lib/models/create-prescription-command.d.ts.map +1 -1
- package/lib/models/doctor-certificate-item-model.d.ts +6 -0
- package/lib/models/doctor-certificate-item-model.d.ts.map +1 -1
- package/lib/models/doctor-certificate-model.d.ts +6 -0
- package/lib/models/doctor-certificate-model.d.ts.map +1 -1
- package/lib/models/doctor-certificate-sorting-command.d.ts +26 -0
- package/lib/models/doctor-certificate-sorting-command.d.ts.map +1 -0
- package/lib/models/doctor-certificate-sorting-command.js +15 -0
- package/lib/models/index.d.ts +1 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +1 -0
- package/lib/models/prescription-item-model.d.ts +6 -0
- package/lib/models/prescription-item-model.d.ts.map +1 -1
- package/lib/models/prescription-model.d.ts +6 -0
- package/lib/models/prescription-model.d.ts.map +1 -1
- package/lib/models/update-doctor-certificate-command.d.ts +6 -0
- package/lib/models/update-doctor-certificate-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +1 -0
- package/src/api/appointments-api.ts +20 -6
- package/src/api/doctors-api.ts +102 -0
- package/src/models/appointment-item-model.ts +6 -0
- package/src/models/appointment-model.ts +6 -0
- package/src/models/create-doctor-certificate-command.ts +6 -0
- package/src/models/create-prescription-command.ts +6 -0
- package/src/models/doctor-certificate-item-model.ts +6 -0
- package/src/models/doctor-certificate-model.ts +6 -0
- package/src/models/doctor-certificate-sorting-command.ts +33 -0
- package/src/models/index.ts +1 -0
- package/src/models/prescription-item-model.ts +6 -0
- package/src/models/prescription-model.ts +6 -0
- package/src/models/update-doctor-certificate-command.ts +6 -0
|
@@ -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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { SortingItemModel } from './sorting-item-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface DoctorCertificateSortingCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface DoctorCertificateSortingCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<SortingItemModel>}
|
|
29
|
+
* @memberof DoctorCertificateSortingCommand
|
|
30
|
+
*/
|
|
31
|
+
'items'?: Array<SortingItemModel> | null;
|
|
32
|
+
}
|
|
33
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -194,6 +194,7 @@ export * from './doctor-affiliation-simple-model';
|
|
|
194
194
|
export * from './doctor-affiliations-model';
|
|
195
195
|
export * from './doctor-certificate-item-model';
|
|
196
196
|
export * from './doctor-certificate-model';
|
|
197
|
+
export * from './doctor-certificate-sorting-command';
|
|
197
198
|
export * from './doctor-certificates-model';
|
|
198
199
|
export * from './doctor-education-item-model';
|
|
199
200
|
export * from './doctor-education-model';
|
|
@@ -47,6 +47,12 @@ export interface PrescriptionItemModel {
|
|
|
47
47
|
* @memberof PrescriptionItemModel
|
|
48
48
|
*/
|
|
49
49
|
'doctorName'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof PrescriptionItemModel
|
|
54
|
+
*/
|
|
55
|
+
'appointmentId'?: string | null;
|
|
50
56
|
/**
|
|
51
57
|
*
|
|
52
58
|
* @type {number}
|