ch-admin-api-client-typescript 5.14.3 → 5.14.5
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/hospitals-api.d.ts +325 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +485 -0
- package/lib/models/bank-transfer-payment-model.d.ts +43 -0
- package/lib/models/bank-transfer-payment-model.d.ts.map +1 -0
- package/lib/models/bank-transfer-payment-model.js +15 -0
- package/lib/models/create-hospital-payment-method-command.d.ts +58 -0
- package/lib/models/create-hospital-payment-method-command.d.ts.map +1 -0
- package/lib/models/create-hospital-payment-method-command.js +15 -0
- package/lib/models/hospital-payment-method-item-model.d.ts +56 -0
- package/lib/models/hospital-payment-method-item-model.d.ts.map +1 -0
- package/lib/models/hospital-payment-method-item-model.js +15 -0
- package/lib/models/hospital-payment-method-model.d.ts +70 -0
- package/lib/models/hospital-payment-method-model.d.ts.map +1 -0
- package/lib/models/hospital-payment-method-model.js +15 -0
- package/lib/models/hospital-payment-methods-model.d.ts +33 -0
- package/lib/models/hospital-payment-methods-model.d.ts.map +1 -0
- package/lib/models/hospital-payment-methods-model.js +15 -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/payment-method.d.ts +1 -0
- package/lib/models/payment-method.d.ts.map +1 -1
- package/lib/models/payment-method.js +2 -1
- package/lib/models/update-hospital-payment-method-command.d.ts +58 -0
- package/lib/models/update-hospital-payment-method-command.d.ts.map +1 -0
- package/lib/models/update-hospital-payment-method-command.js +15 -0
- package/lib/models/upi-payment-model.d.ts +31 -0
- package/lib/models/upi-payment-model.d.ts.map +1 -0
- package/lib/models/upi-payment-model.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +7 -0
- package/src/api/hospitals-api.ts +572 -0
- package/src/models/bank-transfer-payment-model.ts +48 -0
- package/src/models/create-hospital-payment-method-command.ts +69 -0
- package/src/models/hospital-payment-method-item-model.ts +63 -0
- package/src/models/hospital-payment-method-model.ts +81 -0
- package/src/models/hospital-payment-methods-model.ts +42 -0
- package/src/models/index.ts +7 -0
- package/src/models/payment-method.ts +2 -1
- package/src/models/update-hospital-payment-method-command.ts +69 -0
- package/src/models/upi-payment-model.ts +36 -0
|
@@ -0,0 +1,69 @@
|
|
|
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 { BankTransferPaymentModel } from './bank-transfer-payment-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PaymentMethod } from './payment-method';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { UpiPaymentModel } from './upi-payment-model';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface CreateHospitalPaymentMethodCommand
|
|
30
|
+
*/
|
|
31
|
+
export interface CreateHospitalPaymentMethodCommand {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {PaymentMethod}
|
|
35
|
+
* @memberof CreateHospitalPaymentMethodCommand
|
|
36
|
+
*/
|
|
37
|
+
'paymentMethod'?: PaymentMethod;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreateHospitalPaymentMethodCommand
|
|
42
|
+
*/
|
|
43
|
+
'additionalNote'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {boolean}
|
|
47
|
+
* @memberof CreateHospitalPaymentMethodCommand
|
|
48
|
+
*/
|
|
49
|
+
'isEnabled'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof CreateHospitalPaymentMethodCommand
|
|
54
|
+
*/
|
|
55
|
+
'order'?: number;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {BankTransferPaymentModel}
|
|
59
|
+
* @memberof CreateHospitalPaymentMethodCommand
|
|
60
|
+
*/
|
|
61
|
+
'bankTransfer'?: BankTransferPaymentModel;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {UpiPaymentModel}
|
|
65
|
+
* @memberof CreateHospitalPaymentMethodCommand
|
|
66
|
+
*/
|
|
67
|
+
'upi'?: UpiPaymentModel;
|
|
68
|
+
}
|
|
69
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
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 { PaymentMethod } from './payment-method';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalPaymentMethodItemModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalPaymentMethodItemModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalPaymentMethodItemModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalPaymentMethodItemModel
|
|
36
|
+
*/
|
|
37
|
+
'hospitalId'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {PaymentMethod}
|
|
41
|
+
* @memberof HospitalPaymentMethodItemModel
|
|
42
|
+
*/
|
|
43
|
+
'paymentMethod'?: PaymentMethod;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof HospitalPaymentMethodItemModel
|
|
48
|
+
*/
|
|
49
|
+
'additionalNote'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof HospitalPaymentMethodItemModel
|
|
54
|
+
*/
|
|
55
|
+
'isEnabled'?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {number}
|
|
59
|
+
* @memberof HospitalPaymentMethodItemModel
|
|
60
|
+
*/
|
|
61
|
+
'order'?: number;
|
|
62
|
+
}
|
|
63
|
+
|
|
@@ -0,0 +1,81 @@
|
|
|
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 { BankTransferPaymentModel } from './bank-transfer-payment-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PaymentMethod } from './payment-method';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { UpiPaymentModel } from './upi-payment-model';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface HospitalPaymentMethodModel
|
|
30
|
+
*/
|
|
31
|
+
export interface HospitalPaymentMethodModel {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalPaymentMethodModel
|
|
36
|
+
*/
|
|
37
|
+
'id'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof HospitalPaymentMethodModel
|
|
42
|
+
*/
|
|
43
|
+
'hospitalId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {PaymentMethod}
|
|
47
|
+
* @memberof HospitalPaymentMethodModel
|
|
48
|
+
*/
|
|
49
|
+
'paymentMethod'?: PaymentMethod;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof HospitalPaymentMethodModel
|
|
54
|
+
*/
|
|
55
|
+
'additionalNote'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {boolean}
|
|
59
|
+
* @memberof HospitalPaymentMethodModel
|
|
60
|
+
*/
|
|
61
|
+
'isEnabled'?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof HospitalPaymentMethodModel
|
|
66
|
+
*/
|
|
67
|
+
'order'?: number;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {BankTransferPaymentModel}
|
|
71
|
+
* @memberof HospitalPaymentMethodModel
|
|
72
|
+
*/
|
|
73
|
+
'bankTransfer'?: BankTransferPaymentModel;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {UpiPaymentModel}
|
|
77
|
+
* @memberof HospitalPaymentMethodModel
|
|
78
|
+
*/
|
|
79
|
+
'upi'?: UpiPaymentModel;
|
|
80
|
+
}
|
|
81
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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 { HospitalPaymentMethodItemModel } from './hospital-payment-method-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 HospitalPaymentMethodsModel
|
|
27
|
+
*/
|
|
28
|
+
export interface HospitalPaymentMethodsModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<HospitalPaymentMethodItemModel>}
|
|
32
|
+
* @memberof HospitalPaymentMethodsModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<HospitalPaymentMethodItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof HospitalPaymentMethodsModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -46,6 +46,7 @@ export * from './balance-transfers';
|
|
|
46
46
|
export * from './bank-account-info-item-model';
|
|
47
47
|
export * from './bank-account-info-model';
|
|
48
48
|
export * from './bank-account-infos-model';
|
|
49
|
+
export * from './bank-transfer-payment-model';
|
|
49
50
|
export * from './batch-add-appointment-timetable-model';
|
|
50
51
|
export * from './batch-add-hospital-consultation-timetable-model';
|
|
51
52
|
export * from './batch-appointment-timetables-result-model';
|
|
@@ -140,6 +141,7 @@ export * from './create-hospital-contact-command';
|
|
|
140
141
|
export * from './create-hospital-equipment-command';
|
|
141
142
|
export * from './create-hospital-evaluation-command';
|
|
142
143
|
export * from './create-hospital-language-command';
|
|
144
|
+
export * from './create-hospital-payment-method-command';
|
|
143
145
|
export * from './create-hospital-service-command';
|
|
144
146
|
export * from './create-hospital-sns-handle-command';
|
|
145
147
|
export * from './create-hospital-specialty-command';
|
|
@@ -260,6 +262,9 @@ export * from './hospital-item-model';
|
|
|
260
262
|
export * from './hospital-language-item-model';
|
|
261
263
|
export * from './hospital-languages-model';
|
|
262
264
|
export * from './hospital-model';
|
|
265
|
+
export * from './hospital-payment-method-item-model';
|
|
266
|
+
export * from './hospital-payment-method-model';
|
|
267
|
+
export * from './hospital-payment-methods-model';
|
|
263
268
|
export * from './hospital-service-item-model';
|
|
264
269
|
export * from './hospital-service-model';
|
|
265
270
|
export * from './hospital-services-model';
|
|
@@ -484,6 +489,7 @@ export * from './update-hospital-consultation-timetable-command';
|
|
|
484
489
|
export * from './update-hospital-contact-command';
|
|
485
490
|
export * from './update-hospital-equipment-command';
|
|
486
491
|
export * from './update-hospital-language-command';
|
|
492
|
+
export * from './update-hospital-payment-method-command';
|
|
487
493
|
export * from './update-hospital-service-command';
|
|
488
494
|
export * from './update-hospital-sns-handle-command';
|
|
489
495
|
export * from './update-hospital-specialty-command';
|
|
@@ -504,6 +510,7 @@ export * from './update-specialty-command';
|
|
|
504
510
|
export * from './update-specialty-type-command';
|
|
505
511
|
export * from './update-survey-form-command';
|
|
506
512
|
export * from './update-template-version-command';
|
|
513
|
+
export * from './upi-payment-model';
|
|
507
514
|
export * from './user';
|
|
508
515
|
export * from './user-language-model';
|
|
509
516
|
export * from './user-location-model';
|
|
@@ -0,0 +1,69 @@
|
|
|
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 { BankTransferPaymentModel } from './bank-transfer-payment-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PaymentMethod } from './payment-method';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { UpiPaymentModel } from './upi-payment-model';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface UpdateHospitalPaymentMethodCommand
|
|
30
|
+
*/
|
|
31
|
+
export interface UpdateHospitalPaymentMethodCommand {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {PaymentMethod}
|
|
35
|
+
* @memberof UpdateHospitalPaymentMethodCommand
|
|
36
|
+
*/
|
|
37
|
+
'paymentMethod'?: PaymentMethod;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof UpdateHospitalPaymentMethodCommand
|
|
42
|
+
*/
|
|
43
|
+
'additionalNote'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {boolean}
|
|
47
|
+
* @memberof UpdateHospitalPaymentMethodCommand
|
|
48
|
+
*/
|
|
49
|
+
'isEnabled'?: boolean | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof UpdateHospitalPaymentMethodCommand
|
|
54
|
+
*/
|
|
55
|
+
'order'?: number | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {BankTransferPaymentModel}
|
|
59
|
+
* @memberof UpdateHospitalPaymentMethodCommand
|
|
60
|
+
*/
|
|
61
|
+
'bankTransfer'?: BankTransferPaymentModel;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {UpiPaymentModel}
|
|
65
|
+
* @memberof UpdateHospitalPaymentMethodCommand
|
|
66
|
+
*/
|
|
67
|
+
'upi'?: UpiPaymentModel;
|
|
68
|
+
}
|
|
69
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpiPaymentModel
|
|
21
|
+
*/
|
|
22
|
+
export interface UpiPaymentModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpiPaymentModel
|
|
27
|
+
*/
|
|
28
|
+
'upiId'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpiPaymentModel
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string | null;
|
|
35
|
+
}
|
|
36
|
+
|