ch-admin-api-client-typescript 5.19.66 → 5.19.70

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 (34) hide show
  1. package/lib/api/hospitals-api.d.ts +333 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +491 -0
  4. package/lib/models/create-hospital-rating-command.d.ts +61 -0
  5. package/lib/models/create-hospital-rating-command.d.ts.map +1 -0
  6. package/lib/models/create-hospital-rating-command.js +15 -0
  7. package/lib/models/deploy-status.d.ts +1 -0
  8. package/lib/models/deploy-status.d.ts.map +1 -1
  9. package/lib/models/deploy-status.js +1 -0
  10. package/lib/models/hospital-rating-item-model.d.ts +67 -0
  11. package/lib/models/hospital-rating-item-model.d.ts.map +1 -0
  12. package/lib/models/hospital-rating-item-model.js +15 -0
  13. package/lib/models/hospital-rating-model.d.ts +67 -0
  14. package/lib/models/hospital-rating-model.d.ts.map +1 -0
  15. package/lib/models/hospital-rating-model.js +15 -0
  16. package/lib/models/hospital-ratings-model.d.ts +33 -0
  17. package/lib/models/hospital-ratings-model.d.ts.map +1 -0
  18. package/lib/models/hospital-ratings-model.js +15 -0
  19. package/lib/models/index.d.ts +5 -0
  20. package/lib/models/index.d.ts.map +1 -1
  21. package/lib/models/index.js +5 -0
  22. package/lib/models/update-hospital-rating-command.d.ts +61 -0
  23. package/lib/models/update-hospital-rating-command.d.ts.map +1 -0
  24. package/lib/models/update-hospital-rating-command.js +15 -0
  25. package/package.json +1 -1
  26. package/src/.openapi-generator/FILES +5 -0
  27. package/src/api/hospitals-api.ts +584 -0
  28. package/src/models/create-hospital-rating-command.ts +66 -0
  29. package/src/models/deploy-status.ts +1 -0
  30. package/src/models/hospital-rating-item-model.ts +72 -0
  31. package/src/models/hospital-rating-model.ts +72 -0
  32. package/src/models/hospital-ratings-model.ts +42 -0
  33. package/src/models/index.ts +5 -0
  34. package/src/models/update-hospital-rating-command.ts +66 -0
@@ -0,0 +1,66 @@
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 CreateHospitalRatingCommand
21
+ */
22
+ export interface CreateHospitalRatingCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CreateHospitalRatingCommand
27
+ */
28
+ 'vender'?: string | null;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof CreateHospitalRatingCommand
33
+ */
34
+ 'rating'?: number;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof CreateHospitalRatingCommand
39
+ */
40
+ 'order'?: number;
41
+ /**
42
+ *
43
+ * @type {boolean}
44
+ * @memberof CreateHospitalRatingCommand
45
+ */
46
+ 'isConfirmed'?: boolean;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof CreateHospitalRatingCommand
51
+ */
52
+ 'placeId'?: string | null;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof CreateHospitalRatingCommand
57
+ */
58
+ 'numberOfPeople'?: number;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof CreateHospitalRatingCommand
63
+ */
64
+ 'url'?: string | null;
65
+ }
66
+
@@ -22,6 +22,7 @@
22
22
 
23
23
  export const DeployStatus = {
24
24
  New: 'New',
25
+ AwaitingPayment: 'AwaitingPayment',
25
26
  Paid: 'Paid',
26
27
  RefundRequested: 'RefundRequested',
27
28
  Refunded: 'Refunded',
@@ -0,0 +1,72 @@
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 HospitalRatingItemModel
21
+ */
22
+ export interface HospitalRatingItemModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof HospitalRatingItemModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof HospitalRatingItemModel
33
+ */
34
+ 'vender'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof HospitalRatingItemModel
39
+ */
40
+ 'rating'?: number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof HospitalRatingItemModel
45
+ */
46
+ 'order'?: number;
47
+ /**
48
+ *
49
+ * @type {boolean}
50
+ * @memberof HospitalRatingItemModel
51
+ */
52
+ 'isConfirmed'?: boolean;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof HospitalRatingItemModel
57
+ */
58
+ 'placeId'?: string | null;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof HospitalRatingItemModel
63
+ */
64
+ 'numberOfPeople'?: number;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof HospitalRatingItemModel
69
+ */
70
+ 'url'?: string | null;
71
+ }
72
+
@@ -0,0 +1,72 @@
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 HospitalRatingModel
21
+ */
22
+ export interface HospitalRatingModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof HospitalRatingModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof HospitalRatingModel
33
+ */
34
+ 'vender'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof HospitalRatingModel
39
+ */
40
+ 'rating'?: number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof HospitalRatingModel
45
+ */
46
+ 'order'?: number;
47
+ /**
48
+ *
49
+ * @type {boolean}
50
+ * @memberof HospitalRatingModel
51
+ */
52
+ 'isConfirmed'?: boolean;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof HospitalRatingModel
57
+ */
58
+ 'placeId'?: string | null;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof HospitalRatingModel
63
+ */
64
+ 'numberOfPeople'?: number;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof HospitalRatingModel
69
+ */
70
+ 'url'?: string | null;
71
+ }
72
+
@@ -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 { HospitalRatingItemModel } from './hospital-rating-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 HospitalRatingsModel
27
+ */
28
+ export interface HospitalRatingsModel {
29
+ /**
30
+ *
31
+ * @type {Array<HospitalRatingItemModel>}
32
+ * @memberof HospitalRatingsModel
33
+ */
34
+ 'items'?: Array<HospitalRatingItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof HospitalRatingsModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -132,6 +132,7 @@ export * from './create-hospital-evaluation-command';
132
132
  export * from './create-hospital-group-command';
133
133
  export * from './create-hospital-language-command';
134
134
  export * from './create-hospital-payment-method-command';
135
+ export * from './create-hospital-rating-command';
135
136
  export * from './create-hospital-service-command';
136
137
  export * from './create-hospital-sns-handle-command';
137
138
  export * from './create-hospital-specialty-command';
@@ -258,6 +259,9 @@ export * from './hospital-payment-gateway-model';
258
259
  export * from './hospital-payment-method-item-model';
259
260
  export * from './hospital-payment-method-model';
260
261
  export * from './hospital-payment-methods-model';
262
+ export * from './hospital-rating-item-model';
263
+ export * from './hospital-rating-model';
264
+ export * from './hospital-ratings-model';
261
265
  export * from './hospital-service-item-model';
262
266
  export * from './hospital-service-model';
263
267
  export * from './hospital-services-model';
@@ -494,6 +498,7 @@ export * from './update-hospital-equipment-command';
494
498
  export * from './update-hospital-group-command';
495
499
  export * from './update-hospital-language-command';
496
500
  export * from './update-hospital-payment-method-command';
501
+ export * from './update-hospital-rating-command';
497
502
  export * from './update-hospital-service-command';
498
503
  export * from './update-hospital-sns-handle-command';
499
504
  export * from './update-hospital-specialty-command';
@@ -0,0 +1,66 @@
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 UpdateHospitalRatingCommand
21
+ */
22
+ export interface UpdateHospitalRatingCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof UpdateHospitalRatingCommand
27
+ */
28
+ 'vender'?: string | null;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof UpdateHospitalRatingCommand
33
+ */
34
+ 'rating'?: number;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof UpdateHospitalRatingCommand
39
+ */
40
+ 'order'?: number;
41
+ /**
42
+ *
43
+ * @type {boolean}
44
+ * @memberof UpdateHospitalRatingCommand
45
+ */
46
+ 'isConfirmed'?: boolean;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof UpdateHospitalRatingCommand
51
+ */
52
+ 'placeId'?: string | null;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof UpdateHospitalRatingCommand
57
+ */
58
+ 'numberOfPeople'?: number;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof UpdateHospitalRatingCommand
63
+ */
64
+ 'url'?: string | null;
65
+ }
66
+