ch-api-client-typescript2 5.2.3 → 5.2.6
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 +295 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +374 -0
- package/lib/api/secure-containers-api.d.ts +347 -0
- package/lib/api/secure-containers-api.d.ts.map +1 -0
- package/lib/api/secure-containers-api.js +611 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/footer-navigation-item-model.d.ts +61 -0
- package/lib/models/footer-navigation-item-model.d.ts.map +1 -0
- package/lib/models/footer-navigation-item-model.js +15 -0
- package/lib/models/index.d.ts +10 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +10 -0
- package/lib/models/policies-model.d.ts +33 -0
- package/lib/models/policies-model.d.ts.map +1 -0
- package/lib/models/policies-model.js +15 -0
- package/lib/models/policy-item-model.d.ts +61 -0
- package/lib/models/policy-item-model.d.ts.map +1 -0
- package/lib/models/policy-item-model.js +15 -0
- package/lib/models/policy-model.d.ts +117 -0
- package/lib/models/policy-model.d.ts.map +1 -0
- package/lib/models/policy-model.js +15 -0
- package/lib/models/secure-container-item-model.d.ts +43 -0
- package/lib/models/secure-container-item-model.d.ts.map +1 -0
- package/lib/models/secure-container-item-model.js +15 -0
- package/lib/models/secure-container-model.d.ts +50 -0
- package/lib/models/secure-container-model.d.ts.map +1 -0
- package/lib/models/secure-container-model.js +15 -0
- package/lib/models/secure-containers-model.d.ts +33 -0
- package/lib/models/secure-containers-model.d.ts.map +1 -0
- package/lib/models/secure-containers-model.js +15 -0
- package/lib/models/secure-file-item-input-model.d.ts +43 -0
- package/lib/models/secure-file-item-input-model.d.ts.map +1 -0
- package/lib/models/secure-file-item-input-model.js +15 -0
- package/lib/models/secure-file-model.d.ts +86 -0
- package/lib/models/secure-file-model.d.ts.map +1 -0
- package/lib/models/secure-file-model.js +15 -0
- package/lib/models/update-secure-container-command.d.ts +38 -0
- package/lib/models/update-secure-container-command.d.ts.map +1 -0
- package/lib/models/update-secure-container-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +11 -0
- package/src/api/hospitals-api.ts +497 -0
- package/src/api/secure-containers-api.ts +610 -0
- package/src/api.ts +1 -0
- package/src/models/footer-navigation-item-model.ts +66 -0
- package/src/models/index.ts +10 -0
- package/src/models/policies-model.ts +42 -0
- package/src/models/policy-item-model.ts +66 -0
- package/src/models/policy-model.ts +126 -0
- package/src/models/secure-container-item-model.ts +48 -0
- package/src/models/secure-container-model.ts +57 -0
- package/src/models/secure-containers-model.ts +42 -0
- package/src/models/secure-file-item-input-model.ts +48 -0
- package/src/models/secure-file-model.ts +93 -0
- package/src/models/update-secure-container-command.ts +45 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SecureFileItemInputModel
|
|
16
|
+
*/
|
|
17
|
+
export interface SecureFileItemInputModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SecureFileItemInputModel
|
|
22
|
+
*/
|
|
23
|
+
'id'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SecureFileItemInputModel
|
|
28
|
+
*/
|
|
29
|
+
'description'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof SecureFileItemInputModel
|
|
34
|
+
*/
|
|
35
|
+
'order'?: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Date}
|
|
39
|
+
* @memberof SecureFileItemInputModel
|
|
40
|
+
*/
|
|
41
|
+
'expireDate'?: Date | null;
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=secure-file-item-input-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"secure-file-item-input-model.d.ts","sourceRoot":"","sources":["../../src/models/secure-file-item-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CAC9B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { MediaType } from './media-type';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SecureFileModel
|
|
17
|
+
*/
|
|
18
|
+
export interface SecureFileModel {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof SecureFileModel
|
|
23
|
+
*/
|
|
24
|
+
'id'?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {MediaType}
|
|
28
|
+
* @memberof SecureFileModel
|
|
29
|
+
*/
|
|
30
|
+
'mediaType'?: MediaType;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof SecureFileModel
|
|
35
|
+
*/
|
|
36
|
+
'url'?: string | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof SecureFileModel
|
|
41
|
+
*/
|
|
42
|
+
'thumbnailUrl'?: string | null;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof SecureFileModel
|
|
47
|
+
*/
|
|
48
|
+
'description'?: string | null;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof SecureFileModel
|
|
53
|
+
*/
|
|
54
|
+
'height'?: number;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {number}
|
|
58
|
+
* @memberof SecureFileModel
|
|
59
|
+
*/
|
|
60
|
+
'width'?: number;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof SecureFileModel
|
|
65
|
+
*/
|
|
66
|
+
'order'?: number;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof SecureFileModel
|
|
71
|
+
*/
|
|
72
|
+
'name'?: string | null;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof SecureFileModel
|
|
77
|
+
*/
|
|
78
|
+
'contentType'?: string | null;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {Date}
|
|
82
|
+
* @memberof SecureFileModel
|
|
83
|
+
*/
|
|
84
|
+
'expireDate'?: Date | null;
|
|
85
|
+
}
|
|
86
|
+
//# sourceMappingURL=secure-file-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"secure-file-model.d.ts","sourceRoot":"","sources":["../../src/models/secure-file-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC5B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CAC9B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { SecureFileItemInputModel } from './secure-file-item-input-model';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateSecureContainerCommand
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateSecureContainerCommand {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof UpdateSecureContainerCommand
|
|
23
|
+
*/
|
|
24
|
+
'languageCode'?: string | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Date}
|
|
28
|
+
* @memberof UpdateSecureContainerCommand
|
|
29
|
+
*/
|
|
30
|
+
'expireDate'?: Date | null;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<SecureFileItemInputModel>}
|
|
34
|
+
* @memberof UpdateSecureContainerCommand
|
|
35
|
+
*/
|
|
36
|
+
'files'?: Array<SecureFileItemInputModel> | null;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=update-secure-container-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-secure-container-command.d.ts","sourceRoot":"","sources":["../../src/models/update-secure-container-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAE1E;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC;CACpD"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/package.json
CHANGED
|
@@ -32,6 +32,7 @@ api/origins-api.ts
|
|
|
32
32
|
api/patients-api.ts
|
|
33
33
|
api/plans-api.ts
|
|
34
34
|
api/profiles-api.ts
|
|
35
|
+
api/secure-containers-api.ts
|
|
35
36
|
api/service-reviews-api.ts
|
|
36
37
|
api/services-api.ts
|
|
37
38
|
api/services-categories-api.ts
|
|
@@ -188,6 +189,7 @@ models/faq-tag-item-model.ts
|
|
|
188
189
|
models/faq-tag-model.ts
|
|
189
190
|
models/faq-tags-model.ts
|
|
190
191
|
models/faqs-model.ts
|
|
192
|
+
models/footer-navigation-item-model.ts
|
|
191
193
|
models/gender.ts
|
|
192
194
|
models/geography-point.ts
|
|
193
195
|
models/header-navigation-item-model.ts
|
|
@@ -260,12 +262,20 @@ models/plan-item-model.ts
|
|
|
260
262
|
models/plan-model.ts
|
|
261
263
|
models/plans-model.ts
|
|
262
264
|
models/platform.ts
|
|
265
|
+
models/policies-model.ts
|
|
266
|
+
models/policy-item-model.ts
|
|
267
|
+
models/policy-model.ts
|
|
263
268
|
models/problem-details.ts
|
|
264
269
|
models/procedure.ts
|
|
265
270
|
models/recurring-interval.ts
|
|
266
271
|
models/refund-policy.ts
|
|
267
272
|
models/reject-reason.ts
|
|
268
273
|
models/review-type.ts
|
|
274
|
+
models/secure-container-item-model.ts
|
|
275
|
+
models/secure-container-model.ts
|
|
276
|
+
models/secure-containers-model.ts
|
|
277
|
+
models/secure-file-item-input-model.ts
|
|
278
|
+
models/secure-file-model.ts
|
|
269
279
|
models/send-bird-group-channel-member.ts
|
|
270
280
|
models/send-bird-group-channel-model.ts
|
|
271
281
|
models/send-bird-group-channelr-operator.ts
|
|
@@ -318,6 +328,7 @@ models/update-device-command.ts
|
|
|
318
328
|
models/update-media-command.ts
|
|
319
329
|
models/update-patient-command.ts
|
|
320
330
|
models/update-profile-command.ts
|
|
331
|
+
models/update-secure-container-command.ts
|
|
321
332
|
models/update-service-review-command.ts
|
|
322
333
|
models/user-language-document-model.ts
|
|
323
334
|
models/user-language-model.ts
|