ch-admin-api-client-typescript 5.20.20 → 5.20.25
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/dev-supports-api.d.ts +55 -0
- package/lib/api/dev-supports-api.d.ts.map +1 -1
- package/lib/api/dev-supports-api.js +92 -0
- package/lib/api/hospital-branches-api.d.ts +12 -3
- package/lib/api/hospital-branches-api.d.ts.map +1 -1
- package/lib/api/hospital-branches-api.js +12 -6
- package/lib/api/hospital-groups-api.d.ts +12 -3
- package/lib/api/hospital-groups-api.d.ts.map +1 -1
- package/lib/api/hospital-groups-api.js +12 -6
- package/lib/api/hospitals-api.d.ts +140 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +198 -0
- package/lib/models/create-web-app-command.d.ts +6 -0
- package/lib/models/create-web-app-command.d.ts.map +1 -1
- package/lib/models/index.d.ts +4 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +4 -0
- package/lib/models/translate-page-command.d.ts +44 -0
- package/lib/models/translate-page-command.d.ts.map +1 -0
- package/lib/models/translate-page-command.js +15 -0
- package/lib/models/translate-page-section-command.d.ts +50 -0
- package/lib/models/translate-page-section-command.d.ts.map +1 -0
- package/lib/models/translate-page-section-command.js +15 -0
- package/lib/models/translation-batch-result-model.d.ts +54 -0
- package/lib/models/translation-batch-result-model.d.ts.map +1 -0
- package/lib/models/translation-batch-result-model.js +15 -0
- package/lib/models/translation-charaters-model.d.ts +37 -0
- package/lib/models/translation-charaters-model.d.ts.map +1 -0
- package/lib/models/translation-charaters-model.js +15 -0
- package/lib/models/update-web-app-command.d.ts +6 -0
- package/lib/models/update-web-app-command.d.ts.map +1 -1
- package/lib/models/web-app-item-model.d.ts +6 -0
- package/lib/models/web-app-item-model.d.ts.map +1 -1
- package/lib/models/web-app-model.d.ts +6 -0
- package/lib/models/web-app-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +4 -0
- package/src/api/dev-supports-api.ts +102 -0
- package/src/api/hospital-branches-api.ts +20 -6
- package/src/api/hospital-groups-api.ts +20 -6
- package/src/api/hospitals-api.ts +241 -0
- package/src/models/create-web-app-command.ts +6 -0
- package/src/models/index.ts +4 -0
- package/src/models/translate-page-command.ts +51 -0
- package/src/models/translate-page-section-command.ts +57 -0
- package/src/models/translation-batch-result-model.ts +57 -0
- package/src/models/translation-charaters-model.ts +42 -0
- package/src/models/update-web-app-command.ts +6 -0
- package/src/models/web-app-item-model.ts +6 -0
- package/src/models/web-app-model.ts +6 -0
|
@@ -47,6 +47,12 @@ export interface CreateWebAppCommand {
|
|
|
47
47
|
* @memberof CreateWebAppCommand
|
|
48
48
|
*/
|
|
49
49
|
'region'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof CreateWebAppCommand
|
|
54
|
+
*/
|
|
55
|
+
'useCustomDomainRedirectionFromWww'?: boolean | null;
|
|
50
56
|
/**
|
|
51
57
|
*
|
|
52
58
|
* @type {Array<WebAppEnvironmentModel>}
|
package/src/models/index.ts
CHANGED
|
@@ -473,8 +473,12 @@ export * from './translate-hospital-command';
|
|
|
473
473
|
export * from './translate-hospital-service-command';
|
|
474
474
|
export * from './translate-hospital-specialty-command';
|
|
475
475
|
export * from './translate-landing-command';
|
|
476
|
+
export * from './translate-page-command';
|
|
477
|
+
export * from './translate-page-section-command';
|
|
476
478
|
export * from './translate-specialty-command';
|
|
477
479
|
export * from './translate-specialty-type-command';
|
|
480
|
+
export * from './translation-batch-result-model';
|
|
481
|
+
export * from './translation-charaters-model';
|
|
478
482
|
export * from './translation-contents-model';
|
|
479
483
|
export * from './translation-contents-target-model';
|
|
480
484
|
export * from './translation-target-entities';
|
|
@@ -0,0 +1,51 @@
|
|
|
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 { TranslateAllOptions } from './translate-all-options';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface TranslatePageCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface TranslatePageCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof TranslatePageCommand
|
|
30
|
+
*/
|
|
31
|
+
'basisLanguageCode'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {TranslateAllOptions}
|
|
35
|
+
* @memberof TranslatePageCommand
|
|
36
|
+
*/
|
|
37
|
+
'translationOption'?: TranslateAllOptions;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Array<string>}
|
|
41
|
+
* @memberof TranslatePageCommand
|
|
42
|
+
*/
|
|
43
|
+
'translateToLanguageCodes'?: Array<string> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Array<string>}
|
|
47
|
+
* @memberof TranslatePageCommand
|
|
48
|
+
*/
|
|
49
|
+
'translateToFields'?: Array<string> | null;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -0,0 +1,57 @@
|
|
|
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 { TranslateAllOptions } from './translate-all-options';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface TranslatePageSectionCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface TranslatePageSectionCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof TranslatePageSectionCommand
|
|
30
|
+
*/
|
|
31
|
+
'basisLanguageCode'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {TranslateAllOptions}
|
|
35
|
+
* @memberof TranslatePageSectionCommand
|
|
36
|
+
*/
|
|
37
|
+
'translationOption'?: TranslateAllOptions;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Array<string>}
|
|
41
|
+
* @memberof TranslatePageSectionCommand
|
|
42
|
+
*/
|
|
43
|
+
'translateToLanguageCodes'?: Array<string> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Array<string>}
|
|
47
|
+
* @memberof TranslatePageSectionCommand
|
|
48
|
+
*/
|
|
49
|
+
'translateToFields'?: Array<string> | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {Array<string>}
|
|
53
|
+
* @memberof TranslatePageSectionCommand
|
|
54
|
+
*/
|
|
55
|
+
'blockIds'?: Array<string> | null;
|
|
56
|
+
}
|
|
57
|
+
|
|
@@ -0,0 +1,57 @@
|
|
|
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 { TranslationCharatersModel } from './translation-charaters-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface TranslationBatchResultModel
|
|
24
|
+
*/
|
|
25
|
+
export interface TranslationBatchResultModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof TranslationBatchResultModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof TranslationBatchResultModel
|
|
36
|
+
*/
|
|
37
|
+
'effectedRows'?: number;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {{ [key: string]: { [key: string]: TranslationCharatersModel; }; }}
|
|
41
|
+
* @memberof TranslationBatchResultModel
|
|
42
|
+
*/
|
|
43
|
+
'translatedCharacters'?: { [key: string]: { [key: string]: TranslationCharatersModel; }; } | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof TranslationBatchResultModel
|
|
48
|
+
*/
|
|
49
|
+
'characters'?: number;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof TranslationBatchResultModel
|
|
54
|
+
*/
|
|
55
|
+
'isSuccess'?: boolean;
|
|
56
|
+
}
|
|
57
|
+
|
|
@@ -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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface TranslationCharatersModel
|
|
21
|
+
*/
|
|
22
|
+
export interface TranslationCharatersModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof TranslationCharatersModel
|
|
27
|
+
*/
|
|
28
|
+
'source'?: number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof TranslationCharatersModel
|
|
33
|
+
*/
|
|
34
|
+
'destination'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof TranslationCharatersModel
|
|
39
|
+
*/
|
|
40
|
+
'total'?: number;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -98,6 +98,12 @@ export interface WebAppItemModel {
|
|
|
98
98
|
* @memberof WebAppItemModel
|
|
99
99
|
*/
|
|
100
100
|
'region'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {boolean}
|
|
104
|
+
* @memberof WebAppItemModel
|
|
105
|
+
*/
|
|
106
|
+
'useCustomDomainRedirectionFromWww'?: boolean;
|
|
101
107
|
/**
|
|
102
108
|
*
|
|
103
109
|
* @type {AuditableEntityModel}
|
|
@@ -101,6 +101,12 @@ export interface WebAppModel {
|
|
|
101
101
|
* @memberof WebAppModel
|
|
102
102
|
*/
|
|
103
103
|
'region'?: string | null;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {boolean}
|
|
107
|
+
* @memberof WebAppModel
|
|
108
|
+
*/
|
|
109
|
+
'useCustomDomainRedirectionFromWww'?: boolean;
|
|
104
110
|
/**
|
|
105
111
|
*
|
|
106
112
|
* @type {AuditableEntityModel}
|