ch-api-client-typescript2 5.19.10 → 5.19.15
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 +167 -0
- package/lib/api/appointments-api.d.ts.map +1 -1
- package/lib/api/appointments-api.js +271 -0
- package/lib/api/hospitals-api.d.ts +125 -6
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +137 -12
- package/lib/models/appointment-model.d.ts +14 -0
- package/lib/models/appointment-model.d.ts.map +1 -1
- package/lib/models/appointment-refund-bank-transfer-model.d.ts +43 -0
- package/lib/models/appointment-refund-bank-transfer-model.d.ts.map +1 -0
- package/lib/models/appointment-refund-bank-transfer-model.js +15 -0
- package/lib/models/appointment-refund-upi-model.d.ts +31 -0
- package/lib/models/appointment-refund-upi-model.d.ts.map +1 -0
- package/lib/models/appointment-refund-upi-model.js +15 -0
- package/lib/models/appointment-status.d.ts +1 -0
- package/lib/models/appointment-status.d.ts.map +1 -1
- package/lib/models/appointment-status.js +1 -0
- package/lib/models/index.d.ts +7 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +7 -0
- package/lib/models/notice-item-model.d.ts +80 -0
- package/lib/models/notice-item-model.d.ts.map +1 -0
- package/lib/models/notice-item-model.js +15 -0
- package/lib/models/notice-status.d.ts +23 -0
- package/lib/models/notice-status.d.ts.map +1 -0
- package/lib/models/notice-status.js +26 -0
- package/lib/models/notices-model.d.ts +33 -0
- package/lib/models/notices-model.d.ts.map +1 -0
- package/lib/models/notices-model.js +15 -0
- package/lib/models/refund-appointment-command.d.ts +39 -0
- package/lib/models/refund-appointment-command.d.ts.map +1 -0
- package/lib/models/refund-appointment-command.js +15 -0
- package/lib/models/reschedule-appointment-command.d.ts +37 -0
- package/lib/models/reschedule-appointment-command.d.ts.map +1 -0
- package/lib/models/reschedule-appointment-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +7 -0
- package/src/api/appointments-api.ts +301 -0
- package/src/api/hospitals-api.ts +211 -12
- package/src/models/appointment-model.ts +18 -0
- package/src/models/appointment-refund-bank-transfer-model.ts +48 -0
- package/src/models/appointment-refund-upi-model.ts +36 -0
- package/src/models/appointment-status.ts +1 -0
- package/src/models/index.ts +7 -0
- package/src/models/notice-item-model.ts +87 -0
- package/src/models/notice-status.ts +32 -0
- package/src/models/notices-model.ts +42 -0
- package/src/models/refund-appointment-command.ts +48 -0
- package/src/models/reschedule-appointment-command.ts +42 -0
|
@@ -0,0 +1,42 @@
|
|
|
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 { NoticeItemModel } from './notice-item-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface NoticesModel
|
|
27
|
+
*/
|
|
28
|
+
export interface NoticesModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<NoticeItemModel>}
|
|
32
|
+
* @memberof NoticesModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<NoticeItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof NoticesModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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 { AppointmentRefundBankTransferModel } from './appointment-refund-bank-transfer-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { AppointmentRefundUpiModel } from './appointment-refund-upi-model';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface RefundAppointmentCommand
|
|
27
|
+
*/
|
|
28
|
+
export interface RefundAppointmentCommand {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof RefundAppointmentCommand
|
|
33
|
+
*/
|
|
34
|
+
'languageCode'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {AppointmentRefundBankTransferModel}
|
|
38
|
+
* @memberof RefundAppointmentCommand
|
|
39
|
+
*/
|
|
40
|
+
'refundBankTransfer'?: AppointmentRefundBankTransferModel;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {AppointmentRefundUpiModel}
|
|
44
|
+
* @memberof RefundAppointmentCommand
|
|
45
|
+
*/
|
|
46
|
+
'refundUpi'?: AppointmentRefundUpiModel;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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 RescheduleAppointmentCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface RescheduleAppointmentCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {Date}
|
|
26
|
+
* @memberof RescheduleAppointmentCommand
|
|
27
|
+
*/
|
|
28
|
+
'approximateDateStart'?: Date;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Date}
|
|
32
|
+
* @memberof RescheduleAppointmentCommand
|
|
33
|
+
*/
|
|
34
|
+
'approximateDateEnd'?: Date;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof RescheduleAppointmentCommand
|
|
39
|
+
*/
|
|
40
|
+
'languageCode'?: string | null;
|
|
41
|
+
}
|
|
42
|
+
|