ch-admin-api-client-typescript 5.2.3 → 5.2.4

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 (36) hide show
  1. package/lib/api/hospitals-api.d.ts +431 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +614 -0
  4. package/lib/models/index.d.ts +5 -0
  5. package/lib/models/index.d.ts.map +1 -1
  6. package/lib/models/index.js +5 -0
  7. package/lib/models/secure-container-item-model.d.ts +67 -0
  8. package/lib/models/secure-container-item-model.d.ts.map +1 -0
  9. package/lib/models/secure-container-item-model.js +15 -0
  10. package/lib/models/secure-container-model.d.ts +74 -0
  11. package/lib/models/secure-container-model.d.ts.map +1 -0
  12. package/lib/models/secure-container-model.js +15 -0
  13. package/lib/models/secure-containers-model.d.ts +33 -0
  14. package/lib/models/secure-containers-model.d.ts.map +1 -0
  15. package/lib/models/secure-containers-model.js +15 -0
  16. package/lib/models/secure-file-model.d.ts +86 -0
  17. package/lib/models/secure-file-model.d.ts.map +1 -0
  18. package/lib/models/secure-file-model.js +15 -0
  19. package/lib/models/survey-result-item-model.d.ts +81 -0
  20. package/lib/models/survey-result-item-model.d.ts.map +1 -0
  21. package/lib/models/survey-result-item-model.js +15 -0
  22. package/lib/models/survey-result-model.d.ts +6 -6
  23. package/lib/models/survey-result-model.d.ts.map +1 -1
  24. package/lib/models/survey-results-model.d.ts +3 -3
  25. package/lib/models/survey-results-model.d.ts.map +1 -1
  26. package/package.json +1 -1
  27. package/src/.openapi-generator/FILES +5 -0
  28. package/src/api/hospitals-api.ts +754 -6
  29. package/src/models/index.ts +5 -0
  30. package/src/models/secure-container-item-model.ts +72 -0
  31. package/src/models/secure-container-model.ts +81 -0
  32. package/src/models/secure-containers-model.ts +42 -0
  33. package/src/models/secure-file-model.ts +93 -0
  34. package/src/models/survey-result-item-model.ts +90 -0
  35. package/src/models/survey-result-model.ts +6 -6
  36. package/src/models/survey-results-model.ts +3 -3
@@ -290,6 +290,10 @@ export * from './save-hospital-consultation-timetable-overrides-command';
290
290
  export * from './save-hospital-specialty-appointment-timetable-overrides-command';
291
291
  export * from './save-service-appointment-timetable-overrides-command';
292
292
  export * from './search-index-type';
293
+ export * from './secure-container-item-model';
294
+ export * from './secure-container-model';
295
+ export * from './secure-containers-model';
296
+ export * from './secure-file-model';
293
297
  export * from './send-bird-group-channel-member';
294
298
  export * from './send-bird-group-channel-model';
295
299
  export * from './send-bird-group-channelr-operator';
@@ -330,6 +334,7 @@ export * from './survey-form-status';
330
334
  export * from './survey-forms-model';
331
335
  export * from './survey-result-element-model';
332
336
  export * from './survey-result-element-value-model';
337
+ export * from './survey-result-item-model';
333
338
  export * from './survey-result-model';
334
339
  export * from './survey-result-user-model';
335
340
  export * from './survey-results-model';
@@ -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 SecureContainerItemModel
21
+ */
22
+ export interface SecureContainerItemModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof SecureContainerItemModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SecureContainerItemModel
33
+ */
34
+ 'hospitalId'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof SecureContainerItemModel
39
+ */
40
+ 'hospitalName'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof SecureContainerItemModel
45
+ */
46
+ 'uploadLink'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof SecureContainerItemModel
51
+ */
52
+ 'userId'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof SecureContainerItemModel
57
+ */
58
+ 'userName'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof SecureContainerItemModel
63
+ */
64
+ 'userEmail'?: string | null;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof SecureContainerItemModel
69
+ */
70
+ 'filesCount'?: number;
71
+ }
72
+
@@ -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 { SecureFileModel } from './secure-file-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface SecureContainerModel
24
+ */
25
+ export interface SecureContainerModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof SecureContainerModel
30
+ */
31
+ 'id'?: string;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof SecureContainerModel
36
+ */
37
+ 'hospitalId'?: string;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof SecureContainerModel
42
+ */
43
+ 'hospitalName'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof SecureContainerModel
48
+ */
49
+ 'uploadLink'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof SecureContainerModel
54
+ */
55
+ 'userId'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof SecureContainerModel
60
+ */
61
+ 'userName'?: string | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof SecureContainerModel
66
+ */
67
+ 'userEmail'?: string | null;
68
+ /**
69
+ *
70
+ * @type {number}
71
+ * @memberof SecureContainerModel
72
+ */
73
+ 'filesCount'?: number;
74
+ /**
75
+ *
76
+ * @type {Array<SecureFileModel>}
77
+ * @memberof SecureContainerModel
78
+ */
79
+ 'files'?: Array<SecureFileModel> | null;
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 { PagedListMetaData } from './paged-list-meta-data';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { SecureContainerItemModel } from './secure-container-item-model';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface SecureContainersModel
27
+ */
28
+ export interface SecureContainersModel {
29
+ /**
30
+ *
31
+ * @type {Array<SecureContainerItemModel>}
32
+ * @memberof SecureContainersModel
33
+ */
34
+ 'items'?: Array<SecureContainerItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof SecureContainersModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -0,0 +1,93 @@
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 { MediaType } from './media-type';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface SecureFileModel
24
+ */
25
+ export interface SecureFileModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof SecureFileModel
30
+ */
31
+ 'id'?: string;
32
+ /**
33
+ *
34
+ * @type {MediaType}
35
+ * @memberof SecureFileModel
36
+ */
37
+ 'mediaType'?: MediaType;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof SecureFileModel
42
+ */
43
+ 'url'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof SecureFileModel
48
+ */
49
+ 'thumbnailUrl'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof SecureFileModel
54
+ */
55
+ 'description'?: string | null;
56
+ /**
57
+ *
58
+ * @type {number}
59
+ * @memberof SecureFileModel
60
+ */
61
+ 'height'?: number;
62
+ /**
63
+ *
64
+ * @type {number}
65
+ * @memberof SecureFileModel
66
+ */
67
+ 'width'?: number;
68
+ /**
69
+ *
70
+ * @type {number}
71
+ * @memberof SecureFileModel
72
+ */
73
+ 'order'?: number;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof SecureFileModel
78
+ */
79
+ 'name'?: string | null;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof SecureFileModel
84
+ */
85
+ 'contentType'?: string | null;
86
+ /**
87
+ *
88
+ * @type {Date}
89
+ * @memberof SecureFileModel
90
+ */
91
+ 'expireDate'?: Date | null;
92
+ }
93
+
@@ -0,0 +1,90 @@
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 { SurveyResultElementModel } from './survey-result-element-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { SurveyResultUserModel } from './survey-result-user-model';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface SurveyResultItemModel
27
+ */
28
+ export interface SurveyResultItemModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SurveyResultItemModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof SurveyResultItemModel
39
+ */
40
+ 'surveyFormId'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof SurveyResultItemModel
45
+ */
46
+ 'surveyFormName'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof SurveyResultItemModel
51
+ */
52
+ 'hospitalId'?: string;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof SurveyResultItemModel
57
+ */
58
+ 'hospitalName'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof SurveyResultItemModel
63
+ */
64
+ 'languageCode'?: string | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof SurveyResultItemModel
69
+ */
70
+ 'userId'?: string | null;
71
+ /**
72
+ *
73
+ * @type {SurveyResultUserModel}
74
+ * @memberof SurveyResultItemModel
75
+ */
76
+ 'user'?: SurveyResultUserModel;
77
+ /**
78
+ *
79
+ * @type {Date}
80
+ * @memberof SurveyResultItemModel
81
+ */
82
+ 'createdDate'?: Date;
83
+ /**
84
+ *
85
+ * @type {Array<SurveyResultElementModel>}
86
+ * @memberof SurveyResultItemModel
87
+ */
88
+ 'elements'?: Array<SurveyResultElementModel> | null;
89
+ }
90
+
@@ -82,27 +82,27 @@ export interface SurveyResultModel {
82
82
  'createdDate'?: Date;
83
83
  /**
84
84
  *
85
- * @type {string}
85
+ * @type {Array<SurveyResultElementModel>}
86
86
  * @memberof SurveyResultModel
87
87
  */
88
- 'surveyFormContent'?: string | null;
88
+ 'elements'?: Array<SurveyResultElementModel> | null;
89
89
  /**
90
90
  *
91
91
  * @type {string}
92
92
  * @memberof SurveyResultModel
93
93
  */
94
- 'surveyFormOverview'?: string | null;
94
+ 'surveyFormContent'?: string | null;
95
95
  /**
96
96
  *
97
97
  * @type {string}
98
98
  * @memberof SurveyResultModel
99
99
  */
100
- 'surveyFormDescription'?: string | null;
100
+ 'surveyFormOverview'?: string | null;
101
101
  /**
102
102
  *
103
- * @type {Array<SurveyResultElementModel>}
103
+ * @type {string}
104
104
  * @memberof SurveyResultModel
105
105
  */
106
- 'elements'?: Array<SurveyResultElementModel> | null;
106
+ 'surveyFormDescription'?: string | null;
107
107
  }
108
108
 
@@ -18,7 +18,7 @@
18
18
  import { PagedListMetaData } from './paged-list-meta-data';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
- import { SurveyResultModel } from './survey-result-model';
21
+ import { SurveyResultItemModel } from './survey-result-item-model';
22
22
 
23
23
  /**
24
24
  *
@@ -28,10 +28,10 @@ import { SurveyResultModel } from './survey-result-model';
28
28
  export interface SurveyResultsModel {
29
29
  /**
30
30
  *
31
- * @type {Array<SurveyResultModel>}
31
+ * @type {Array<SurveyResultItemModel>}
32
32
  * @memberof SurveyResultsModel
33
33
  */
34
- 'items'?: Array<SurveyResultModel> | null;
34
+ 'items'?: Array<SurveyResultItemModel> | null;
35
35
  /**
36
36
  *
37
37
  * @type {PagedListMetaData}