ch-admin-api-client-typescript 5.20.20 → 5.20.21
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 +140 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +198 -0
- 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/package.json +1 -1
- package/src/.openapi-generator/FILES +4 -0
- package/src/api/hospitals-api.ts +241 -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
|
@@ -109,6 +109,9 @@ import { TranslateHospitalCommand } from '../models';
|
|
|
109
109
|
import { TranslateHospitalServiceCommand } from '../models';
|
|
110
110
|
import { TranslateHospitalSpecialtyCommand } from '../models';
|
|
111
111
|
import { TranslateLandingCommand } from '../models';
|
|
112
|
+
import { TranslatePageCommand } from '../models';
|
|
113
|
+
import { TranslatePageSectionCommand } from '../models';
|
|
114
|
+
import { TranslationBatchResultModel } from '../models';
|
|
112
115
|
import { UpdateHospitalBankAccountInfoCommand } from '../models';
|
|
113
116
|
import { UpdateHospitalCommand } from '../models';
|
|
114
117
|
import { UpdateHospitalContactCommand } from '../models';
|
|
@@ -1022,6 +1025,27 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1022
1025
|
* @throws {RequiredError}
|
|
1023
1026
|
*/
|
|
1024
1027
|
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut: (hospitalId: string, pageItemId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1028
|
+
/**
|
|
1029
|
+
*
|
|
1030
|
+
* @summary Translate pageBlocks in section
|
|
1031
|
+
* @param {string} hospitalId
|
|
1032
|
+
* @param {string} pageItemId
|
|
1033
|
+
* @param {string} pageSectionId
|
|
1034
|
+
* @param {TranslatePageSectionCommand} [translatePageSectionCommand]
|
|
1035
|
+
* @param {*} [options] Override http request option.
|
|
1036
|
+
* @throws {RequiredError}
|
|
1037
|
+
*/
|
|
1038
|
+
apiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost: (hospitalId: string, pageItemId: string, pageSectionId: string, translatePageSectionCommand?: TranslatePageSectionCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1039
|
+
/**
|
|
1040
|
+
*
|
|
1041
|
+
* @summary Translate page
|
|
1042
|
+
* @param {string} hospitalId
|
|
1043
|
+
* @param {string} pageItemId
|
|
1044
|
+
* @param {TranslatePageCommand} [translatePageCommand]
|
|
1045
|
+
* @param {*} [options] Override http request option.
|
|
1046
|
+
* @throws {RequiredError}
|
|
1047
|
+
*/
|
|
1048
|
+
apiV1HospitalsHospitalIdPagesPageItemIdTranslatePost: (hospitalId: string, pageItemId: string, translatePageCommand?: TranslatePageCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1025
1049
|
/**
|
|
1026
1050
|
*
|
|
1027
1051
|
* @summary Create page
|
|
@@ -2835,6 +2859,27 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2835
2859
|
* @throws {RequiredError}
|
|
2836
2860
|
*/
|
|
2837
2861
|
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut(hospitalId: string, pageItemId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2862
|
+
/**
|
|
2863
|
+
*
|
|
2864
|
+
* @summary Translate pageBlocks in section
|
|
2865
|
+
* @param {string} hospitalId
|
|
2866
|
+
* @param {string} pageItemId
|
|
2867
|
+
* @param {string} pageSectionId
|
|
2868
|
+
* @param {TranslatePageSectionCommand} [translatePageSectionCommand]
|
|
2869
|
+
* @param {*} [options] Override http request option.
|
|
2870
|
+
* @throws {RequiredError}
|
|
2871
|
+
*/
|
|
2872
|
+
apiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost(hospitalId: string, pageItemId: string, pageSectionId: string, translatePageSectionCommand?: TranslatePageSectionCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranslationBatchResultModel>>;
|
|
2873
|
+
/**
|
|
2874
|
+
*
|
|
2875
|
+
* @summary Translate page
|
|
2876
|
+
* @param {string} hospitalId
|
|
2877
|
+
* @param {string} pageItemId
|
|
2878
|
+
* @param {TranslatePageCommand} [translatePageCommand]
|
|
2879
|
+
* @param {*} [options] Override http request option.
|
|
2880
|
+
* @throws {RequiredError}
|
|
2881
|
+
*/
|
|
2882
|
+
apiV1HospitalsHospitalIdPagesPageItemIdTranslatePost(hospitalId: string, pageItemId: string, translatePageCommand?: TranslatePageCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranslationBatchResultModel>>;
|
|
2838
2883
|
/**
|
|
2839
2884
|
*
|
|
2840
2885
|
* @summary Create page
|
|
@@ -4648,6 +4693,27 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4648
4693
|
* @throws {RequiredError}
|
|
4649
4694
|
*/
|
|
4650
4695
|
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut(hospitalId: string, pageItemId: string, options?: any): AxiosPromise<boolean>;
|
|
4696
|
+
/**
|
|
4697
|
+
*
|
|
4698
|
+
* @summary Translate pageBlocks in section
|
|
4699
|
+
* @param {string} hospitalId
|
|
4700
|
+
* @param {string} pageItemId
|
|
4701
|
+
* @param {string} pageSectionId
|
|
4702
|
+
* @param {TranslatePageSectionCommand} [translatePageSectionCommand]
|
|
4703
|
+
* @param {*} [options] Override http request option.
|
|
4704
|
+
* @throws {RequiredError}
|
|
4705
|
+
*/
|
|
4706
|
+
apiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost(hospitalId: string, pageItemId: string, pageSectionId: string, translatePageSectionCommand?: TranslatePageSectionCommand, options?: any): AxiosPromise<TranslationBatchResultModel>;
|
|
4707
|
+
/**
|
|
4708
|
+
*
|
|
4709
|
+
* @summary Translate page
|
|
4710
|
+
* @param {string} hospitalId
|
|
4711
|
+
* @param {string} pageItemId
|
|
4712
|
+
* @param {TranslatePageCommand} [translatePageCommand]
|
|
4713
|
+
* @param {*} [options] Override http request option.
|
|
4714
|
+
* @throws {RequiredError}
|
|
4715
|
+
*/
|
|
4716
|
+
apiV1HospitalsHospitalIdPagesPageItemIdTranslatePost(hospitalId: string, pageItemId: string, translatePageCommand?: TranslatePageCommand, options?: any): AxiosPromise<TranslationBatchResultModel>;
|
|
4651
4717
|
/**
|
|
4652
4718
|
*
|
|
4653
4719
|
* @summary Create page
|
|
@@ -7961,6 +8027,62 @@ export interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePu
|
|
|
7961
8027
|
*/
|
|
7962
8028
|
readonly pageItemId: string;
|
|
7963
8029
|
}
|
|
8030
|
+
/**
|
|
8031
|
+
* Request parameters for apiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost operation in HospitalsApi.
|
|
8032
|
+
* @export
|
|
8033
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePostRequest
|
|
8034
|
+
*/
|
|
8035
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePostRequest {
|
|
8036
|
+
/**
|
|
8037
|
+
*
|
|
8038
|
+
* @type {string}
|
|
8039
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost
|
|
8040
|
+
*/
|
|
8041
|
+
readonly hospitalId: string;
|
|
8042
|
+
/**
|
|
8043
|
+
*
|
|
8044
|
+
* @type {string}
|
|
8045
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost
|
|
8046
|
+
*/
|
|
8047
|
+
readonly pageItemId: string;
|
|
8048
|
+
/**
|
|
8049
|
+
*
|
|
8050
|
+
* @type {string}
|
|
8051
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost
|
|
8052
|
+
*/
|
|
8053
|
+
readonly pageSectionId: string;
|
|
8054
|
+
/**
|
|
8055
|
+
*
|
|
8056
|
+
* @type {TranslatePageSectionCommand}
|
|
8057
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost
|
|
8058
|
+
*/
|
|
8059
|
+
readonly translatePageSectionCommand?: TranslatePageSectionCommand;
|
|
8060
|
+
}
|
|
8061
|
+
/**
|
|
8062
|
+
* Request parameters for apiV1HospitalsHospitalIdPagesPageItemIdTranslatePost operation in HospitalsApi.
|
|
8063
|
+
* @export
|
|
8064
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdTranslatePostRequest
|
|
8065
|
+
*/
|
|
8066
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdTranslatePostRequest {
|
|
8067
|
+
/**
|
|
8068
|
+
*
|
|
8069
|
+
* @type {string}
|
|
8070
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdTranslatePost
|
|
8071
|
+
*/
|
|
8072
|
+
readonly hospitalId: string;
|
|
8073
|
+
/**
|
|
8074
|
+
*
|
|
8075
|
+
* @type {string}
|
|
8076
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdTranslatePost
|
|
8077
|
+
*/
|
|
8078
|
+
readonly pageItemId: string;
|
|
8079
|
+
/**
|
|
8080
|
+
*
|
|
8081
|
+
* @type {TranslatePageCommand}
|
|
8082
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdTranslatePost
|
|
8083
|
+
*/
|
|
8084
|
+
readonly translatePageCommand?: TranslatePageCommand;
|
|
8085
|
+
}
|
|
7964
8086
|
/**
|
|
7965
8087
|
* Request parameters for apiV1HospitalsHospitalIdPagesPost operation in HospitalsApi.
|
|
7966
8088
|
* @export
|
|
@@ -11327,6 +11449,24 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11327
11449
|
* @memberof HospitalsApi
|
|
11328
11450
|
*/
|
|
11329
11451
|
apiV1HospitalsHospitalIdPagesPageItemIdReactivatePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11452
|
+
/**
|
|
11453
|
+
*
|
|
11454
|
+
* @summary Translate pageBlocks in section
|
|
11455
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePostRequest} requestParameters Request parameters.
|
|
11456
|
+
* @param {*} [options] Override http request option.
|
|
11457
|
+
* @throws {RequiredError}
|
|
11458
|
+
* @memberof HospitalsApi
|
|
11459
|
+
*/
|
|
11460
|
+
apiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdSectionsPageSectionIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationBatchResultModel, any>>;
|
|
11461
|
+
/**
|
|
11462
|
+
*
|
|
11463
|
+
* @summary Translate page
|
|
11464
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdTranslatePostRequest} requestParameters Request parameters.
|
|
11465
|
+
* @param {*} [options] Override http request option.
|
|
11466
|
+
* @throws {RequiredError}
|
|
11467
|
+
* @memberof HospitalsApi
|
|
11468
|
+
*/
|
|
11469
|
+
apiV1HospitalsHospitalIdPagesPageItemIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPagesPageItemIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationBatchResultModel, any>>;
|
|
11330
11470
|
/**
|
|
11331
11471
|
*
|
|
11332
11472
|
* @summary Create page
|