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.
Files changed (45) hide show
  1. package/lib/api/appointments-api.d.ts +12 -3
  2. package/lib/api/appointments-api.d.ts.map +1 -1
  3. package/lib/api/appointments-api.js +12 -6
  4. package/lib/api/doctors-api.d.ts +57 -0
  5. package/lib/api/doctors-api.d.ts.map +1 -1
  6. package/lib/api/doctors-api.js +90 -0
  7. package/lib/models/appointment-item-model.d.ts +6 -0
  8. package/lib/models/appointment-item-model.d.ts.map +1 -1
  9. package/lib/models/appointment-model.d.ts +6 -0
  10. package/lib/models/appointment-model.d.ts.map +1 -1
  11. package/lib/models/create-doctor-certificate-command.d.ts +6 -0
  12. package/lib/models/create-doctor-certificate-command.d.ts.map +1 -1
  13. package/lib/models/create-prescription-command.d.ts +6 -0
  14. package/lib/models/create-prescription-command.d.ts.map +1 -1
  15. package/lib/models/doctor-certificate-item-model.d.ts +6 -0
  16. package/lib/models/doctor-certificate-item-model.d.ts.map +1 -1
  17. package/lib/models/doctor-certificate-model.d.ts +6 -0
  18. package/lib/models/doctor-certificate-model.d.ts.map +1 -1
  19. package/lib/models/doctor-certificate-sorting-command.d.ts +26 -0
  20. package/lib/models/doctor-certificate-sorting-command.d.ts.map +1 -0
  21. package/lib/models/doctor-certificate-sorting-command.js +15 -0
  22. package/lib/models/index.d.ts +1 -0
  23. package/lib/models/index.d.ts.map +1 -1
  24. package/lib/models/index.js +1 -0
  25. package/lib/models/prescription-item-model.d.ts +6 -0
  26. package/lib/models/prescription-item-model.d.ts.map +1 -1
  27. package/lib/models/prescription-model.d.ts +6 -0
  28. package/lib/models/prescription-model.d.ts.map +1 -1
  29. package/lib/models/update-doctor-certificate-command.d.ts +6 -0
  30. package/lib/models/update-doctor-certificate-command.d.ts.map +1 -1
  31. package/package.json +1 -1
  32. package/src/.openapi-generator/FILES +1 -0
  33. package/src/api/appointments-api.ts +20 -6
  34. package/src/api/doctors-api.ts +102 -0
  35. package/src/models/appointment-item-model.ts +6 -0
  36. package/src/models/appointment-model.ts +6 -0
  37. package/src/models/create-doctor-certificate-command.ts +6 -0
  38. package/src/models/create-prescription-command.ts +6 -0
  39. package/src/models/doctor-certificate-item-model.ts +6 -0
  40. package/src/models/doctor-certificate-model.ts +6 -0
  41. package/src/models/doctor-certificate-sorting-command.ts +33 -0
  42. package/src/models/index.ts +1 -0
  43. package/src/models/prescription-item-model.ts +6 -0
  44. package/src/models/prescription-model.ts +6 -0
  45. 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
+
@@ -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}
@@ -56,6 +56,12 @@ export interface PrescriptionModel {
56
56
  * @memberof PrescriptionModel
57
57
  */
58
58
  'doctorName'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof PrescriptionModel
63
+ */
64
+ 'appointmentId'?: string | null;
59
65
  /**
60
66
  *
61
67
  * @type {number}
@@ -38,5 +38,11 @@ export interface UpdateDoctorCertificateCommand {
38
38
  * @memberof UpdateDoctorCertificateCommand
39
39
  */
40
40
  'activeTo'?: Date | null;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof UpdateDoctorCertificateCommand
45
+ */
46
+ 'order'?: number;
41
47
  }
42
48