ch-api-client-typescript2 5.2.1 → 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 (54) hide show
  1. package/lib/api/hospitals-api.d.ts +111 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +119 -0
  4. package/lib/api/secure-containers-api.d.ts +347 -0
  5. package/lib/api/secure-containers-api.d.ts.map +1 -0
  6. package/lib/api/secure-containers-api.js +611 -0
  7. package/lib/api.d.ts +1 -0
  8. package/lib/api.d.ts.map +1 -1
  9. package/lib/api.js +1 -0
  10. package/lib/models/hospital-contact-item-model.d.ts +80 -0
  11. package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
  12. package/lib/models/hospital-contact-item-model.js +15 -0
  13. package/lib/models/hospital-contacts-model.d.ts +33 -0
  14. package/lib/models/hospital-contacts-model.d.ts.map +1 -0
  15. package/lib/models/hospital-contacts-model.js +15 -0
  16. package/lib/models/index.d.ts +8 -0
  17. package/lib/models/index.d.ts.map +1 -1
  18. package/lib/models/index.js +8 -0
  19. package/lib/models/secure-container-item-model.d.ts +43 -0
  20. package/lib/models/secure-container-item-model.d.ts.map +1 -0
  21. package/lib/models/secure-container-item-model.js +15 -0
  22. package/lib/models/secure-container-model.d.ts +50 -0
  23. package/lib/models/secure-container-model.d.ts.map +1 -0
  24. package/lib/models/secure-container-model.js +15 -0
  25. package/lib/models/secure-containers-model.d.ts +33 -0
  26. package/lib/models/secure-containers-model.d.ts.map +1 -0
  27. package/lib/models/secure-containers-model.js +15 -0
  28. package/lib/models/secure-file-item-input-model.d.ts +43 -0
  29. package/lib/models/secure-file-item-input-model.d.ts.map +1 -0
  30. package/lib/models/secure-file-item-input-model.js +15 -0
  31. package/lib/models/secure-file-model.d.ts +86 -0
  32. package/lib/models/secure-file-model.d.ts.map +1 -0
  33. package/lib/models/secure-file-model.js +15 -0
  34. package/lib/models/survey-form-element-types.d.ts +1 -0
  35. package/lib/models/survey-form-element-types.d.ts.map +1 -1
  36. package/lib/models/survey-form-element-types.js +2 -1
  37. package/lib/models/update-secure-container-command.d.ts +38 -0
  38. package/lib/models/update-secure-container-command.d.ts.map +1 -0
  39. package/lib/models/update-secure-container-command.js +15 -0
  40. package/package.json +1 -1
  41. package/src/.openapi-generator/FILES +9 -0
  42. package/src/api/hospitals-api.ts +185 -0
  43. package/src/api/secure-containers-api.ts +610 -0
  44. package/src/api.ts +1 -0
  45. package/src/models/hospital-contact-item-model.ts +87 -0
  46. package/src/models/hospital-contacts-model.ts +42 -0
  47. package/src/models/index.ts +8 -0
  48. package/src/models/secure-container-item-model.ts +48 -0
  49. package/src/models/secure-container-model.ts +57 -0
  50. package/src/models/secure-containers-model.ts +42 -0
  51. package/src/models/secure-file-item-input-model.ts +48 -0
  52. package/src/models/secure-file-model.ts +93 -0
  53. package/src/models/survey-form-element-types.ts +2 -1
  54. package/src/models/update-secure-container-command.ts +45 -0
@@ -0,0 +1,87 @@
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 { ContactScope } from './contact-scope';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface HospitalContactItemModel
24
+ */
25
+ export interface HospitalContactItemModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof HospitalContactItemModel
30
+ */
31
+ 'id'?: string;
32
+ /**
33
+ *
34
+ * @type {ContactScope}
35
+ * @memberof HospitalContactItemModel
36
+ */
37
+ 'scope'?: ContactScope;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof HospitalContactItemModel
42
+ */
43
+ 'name'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof HospitalContactItemModel
48
+ */
49
+ 'tel'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof HospitalContactItemModel
54
+ */
55
+ 'targetTel'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof HospitalContactItemModel
60
+ */
61
+ 'email'?: string | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof HospitalContactItemModel
66
+ */
67
+ 'languageCode'?: string | null;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof HospitalContactItemModel
72
+ */
73
+ 'hospitalId'?: string;
74
+ /**
75
+ *
76
+ * @type {number}
77
+ * @memberof HospitalContactItemModel
78
+ */
79
+ 'order'?: number;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof HospitalContactItemModel
84
+ */
85
+ 'languageLocalizedName'?: string | null;
86
+ }
87
+
@@ -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 { HospitalContactItemModel } from './hospital-contact-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 HospitalContactsModel
27
+ */
28
+ export interface HospitalContactsModel {
29
+ /**
30
+ *
31
+ * @type {Array<HospitalContactItemModel>}
32
+ * @memberof HospitalContactsModel
33
+ */
34
+ 'items'?: Array<HospitalContactItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof HospitalContactsModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -149,7 +149,9 @@ export * from './hospital-accreditation-model';
149
149
  export * from './hospital-accreditations-model';
150
150
  export * from './hospital-consultation-option-model';
151
151
  export * from './hospital-contact-document-model';
152
+ export * from './hospital-contact-item-model';
152
153
  export * from './hospital-contact-model';
154
+ export * from './hospital-contacts-model';
153
155
  export * from './hospital-document-model';
154
156
  export * from './hospital-equipment-item-model';
155
157
  export * from './hospital-equipment-model';
@@ -216,6 +218,11 @@ export * from './recurring-interval';
216
218
  export * from './refund-policy';
217
219
  export * from './reject-reason';
218
220
  export * from './review-type';
221
+ export * from './secure-container-item-model';
222
+ export * from './secure-container-model';
223
+ export * from './secure-containers-model';
224
+ export * from './secure-file-item-input-model';
225
+ export * from './secure-file-model';
219
226
  export * from './send-bird-group-channel-member';
220
227
  export * from './send-bird-group-channel-model';
221
228
  export * from './send-bird-group-channelr-operator';
@@ -268,6 +275,7 @@ export * from './update-device-command';
268
275
  export * from './update-media-command';
269
276
  export * from './update-patient-command';
270
277
  export * from './update-profile-command';
278
+ export * from './update-secure-container-command';
271
279
  export * from './update-service-review-command';
272
280
  export * from './user-language-document-model';
273
281
  export * from './user-language-model';
@@ -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
+
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 {number}
44
+ * @memberof SecureContainerItemModel
45
+ */
46
+ 'filesCount'?: number;
47
+ }
48
+
@@ -0,0 +1,57 @@
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 { 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 {number}
47
+ * @memberof SecureContainerModel
48
+ */
49
+ 'filesCount'?: number;
50
+ /**
51
+ *
52
+ * @type {Array<SecureFileModel>}
53
+ * @memberof SecureContainerModel
54
+ */
55
+ 'files'?: Array<SecureFileModel> | null;
56
+ }
57
+
@@ -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 { 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,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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface SecureFileItemInputModel
21
+ */
22
+ export interface SecureFileItemInputModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof SecureFileItemInputModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SecureFileItemInputModel
33
+ */
34
+ 'description'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof SecureFileItemInputModel
39
+ */
40
+ 'order'?: number;
41
+ /**
42
+ *
43
+ * @type {Date}
44
+ * @memberof SecureFileItemInputModel
45
+ */
46
+ 'expireDate'?: Date | null;
47
+ }
48
+
@@ -0,0 +1,93 @@
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 { 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
+
@@ -34,7 +34,8 @@ export const SurveyFormElementTypes = {
34
34
  Radio: 'Radio',
35
35
  File: 'File',
36
36
  Countries: 'Countries',
37
- Phone: 'Phone'
37
+ Phone: 'Phone',
38
+ HospitalContacts: 'HospitalContacts'
38
39
  } as const;
39
40
 
40
41
  export type SurveyFormElementTypes = typeof SurveyFormElementTypes[keyof typeof SurveyFormElementTypes];
@@ -0,0 +1,45 @@
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 { SecureFileItemInputModel } from './secure-file-item-input-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface UpdateSecureContainerCommand
24
+ */
25
+ export interface UpdateSecureContainerCommand {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof UpdateSecureContainerCommand
30
+ */
31
+ 'languageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {Date}
35
+ * @memberof UpdateSecureContainerCommand
36
+ */
37
+ 'expireDate'?: Date | null;
38
+ /**
39
+ *
40
+ * @type {Array<SecureFileItemInputModel>}
41
+ * @memberof UpdateSecureContainerCommand
42
+ */
43
+ 'files'?: Array<SecureFileItemInputModel> | null;
44
+ }
45
+