ch-admin-api-client-typescript 5.5.2 → 5.5.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.
- package/lib/api/dev-supports-api.d.ts +125 -0
- package/lib/api/dev-supports-api.d.ts.map +1 -0
- package/lib/api/dev-supports-api.js +244 -0
- package/lib/api/hospitals-api.d.ts +139 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +198 -0
- package/lib/api/search-curations-api.d.ts +309 -0
- package/lib/api/search-curations-api.d.ts.map +1 -0
- package/lib/api/search-curations-api.js +579 -0
- package/lib/api/specialties-api.d.ts +56 -0
- package/lib/api/specialties-api.d.ts.map +1 -1
- package/lib/api/specialties-api.js +90 -0
- package/lib/api/specialty-types-api.d.ts +56 -0
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +90 -0
- package/lib/api.d.ts +2 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +2 -0
- package/lib/models/call-statistics-model.d.ts +1 -1
- package/lib/models/call-statistics-model.d.ts.map +1 -1
- 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/save-search-curations-command.d.ts +26 -0
- package/lib/models/save-search-curations-command.d.ts.map +1 -0
- package/lib/models/save-search-curations-command.js +15 -0
- package/lib/models/search-curation-item-input-model.d.ts +73 -0
- package/lib/models/search-curation-item-input-model.d.ts.map +1 -0
- package/lib/models/search-curation-item-input-model.js +15 -0
- package/lib/models/search-curation-item-model.d.ts +79 -0
- package/lib/models/search-curation-item-model.d.ts.map +1 -0
- package/lib/models/search-curation-item-model.js +15 -0
- package/lib/models/translate-doctor-affiliation-command.d.ts +6 -0
- package/lib/models/translate-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/translate-hospital-command.d.ts +6 -0
- package/lib/models/translate-hospital-command.d.ts.map +1 -1
- package/lib/models/translate-hospital-service-command.d.ts +44 -0
- package/lib/models/translate-hospital-service-command.d.ts.map +1 -0
- package/lib/models/translate-hospital-service-command.js +15 -0
- package/lib/models/translate-hospital-specialty-command.d.ts +44 -0
- package/lib/models/translate-hospital-specialty-command.d.ts.map +1 -0
- package/lib/models/translate-hospital-specialty-command.js +15 -0
- package/lib/models/translate-specialty-command.d.ts +44 -0
- package/lib/models/translate-specialty-command.d.ts.map +1 -0
- package/lib/models/translate-specialty-command.js +15 -0
- package/lib/models/translate-specialty-type-command.d.ts +44 -0
- package/lib/models/translate-specialty-type-command.d.ts.map +1 -0
- package/lib/models/translate-specialty-type-command.js +15 -0
- package/lib/models/translation-contents-model.d.ts +56 -0
- package/lib/models/translation-contents-model.d.ts.map +1 -0
- package/lib/models/translation-contents-model.js +15 -0
- package/lib/models/translation-contents-target-model.d.ts +43 -0
- package/lib/models/translation-contents-target-model.d.ts.map +1 -0
- package/lib/models/translation-contents-target-model.js +15 -0
- package/lib/models/translation-target-entities.d.ts +24 -0
- package/lib/models/translation-target-entities.d.ts.map +1 -0
- package/lib/models/translation-target-entities.js +27 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +12 -0
- package/src/api/dev-supports-api.ts +208 -0
- package/src/api/hospitals-api.ts +239 -0
- package/src/api/search-curations-api.ts +539 -0
- package/src/api/specialties-api.ts +100 -0
- package/src/api/specialty-types-api.ts +100 -0
- package/src/api.ts +2 -0
- package/src/models/call-statistics-model.ts +1 -1
- package/src/models/index.ts +10 -0
- package/src/models/save-search-curations-command.ts +33 -0
- package/src/models/search-curation-item-input-model.ts +78 -0
- package/src/models/search-curation-item-model.ts +84 -0
- package/src/models/translate-doctor-affiliation-command.ts +6 -0
- package/src/models/translate-hospital-command.ts +6 -0
- package/src/models/translate-hospital-service-command.ts +51 -0
- package/src/models/translate-hospital-specialty-command.ts +51 -0
- package/src/models/translate-specialty-command.ts +51 -0
- package/src/models/translate-specialty-type-command.ts +51 -0
- package/src/models/translation-contents-model.ts +63 -0
- package/src/models/translation-contents-target-model.ts +48 -0
- package/src/models/translation-target-entities.ts +33 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
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
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const TranslationTargetEntities: {
|
|
18
|
+
readonly SpecialtyType: "SpecialtyType";
|
|
19
|
+
readonly Specialty: "Specialty";
|
|
20
|
+
readonly HospitalSpecialty: "HospitalSpecialty";
|
|
21
|
+
readonly HospitalService: "HospitalService";
|
|
22
|
+
};
|
|
23
|
+
export type TranslationTargetEntities = typeof TranslationTargetEntities[keyof typeof TranslationTargetEntities];
|
|
24
|
+
//# sourceMappingURL=translation-target-entities.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"translation-target-entities.d.ts","sourceRoot":"","sources":["../../src/models/translation-target-entities.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,yBAAyB;;;;;CAK5B,CAAC;AAEX,MAAM,MAAM,yBAAyB,GAAG,OAAO,yBAAyB,CAAC,MAAM,OAAO,yBAAyB,CAAC,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
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 });
|
|
16
|
+
exports.TranslationTargetEntities = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.TranslationTargetEntities = {
|
|
23
|
+
SpecialtyType: 'SpecialtyType',
|
|
24
|
+
Specialty: 'Specialty',
|
|
25
|
+
HospitalSpecialty: 'HospitalSpecialty',
|
|
26
|
+
HospitalService: 'HospitalService'
|
|
27
|
+
};
|
package/package.json
CHANGED
|
@@ -18,6 +18,7 @@ api/contributors-api.ts
|
|
|
18
18
|
api/countries-api.ts
|
|
19
19
|
api/dash-board-api.ts
|
|
20
20
|
api/deals-api.ts
|
|
21
|
+
api/dev-supports-api.ts
|
|
21
22
|
api/doctor-affiliations-api.ts
|
|
22
23
|
api/doctors-api.ts
|
|
23
24
|
api/email-marketings-api.ts
|
|
@@ -39,6 +40,7 @@ api/payments-api.ts
|
|
|
39
40
|
api/plans-api.ts
|
|
40
41
|
api/profiles-api.ts
|
|
41
42
|
api/search-api.ts
|
|
43
|
+
api/search-curations-api.ts
|
|
42
44
|
api/service-reviews-api.ts
|
|
43
45
|
api/services-api.ts
|
|
44
46
|
api/services-categories-api.ts
|
|
@@ -404,7 +406,10 @@ models/save-hospital-appointment-timetable-overrides-command.ts
|
|
|
404
406
|
models/save-hospital-consultation-timetable-override-model.ts
|
|
405
407
|
models/save-hospital-consultation-timetable-overrides-command.ts
|
|
406
408
|
models/save-hospital-specialty-appointment-timetable-overrides-command.ts
|
|
409
|
+
models/save-search-curations-command.ts
|
|
407
410
|
models/save-service-appointment-timetable-overrides-command.ts
|
|
411
|
+
models/search-curation-item-input-model.ts
|
|
412
|
+
models/search-curation-item-model.ts
|
|
408
413
|
models/search-index-type.ts
|
|
409
414
|
models/search-pattern.ts
|
|
410
415
|
models/secret-list.ts
|
|
@@ -477,6 +482,13 @@ models/translate-all-options.ts
|
|
|
477
482
|
models/translate-command.ts
|
|
478
483
|
models/translate-doctor-affiliation-command.ts
|
|
479
484
|
models/translate-hospital-command.ts
|
|
485
|
+
models/translate-hospital-service-command.ts
|
|
486
|
+
models/translate-hospital-specialty-command.ts
|
|
487
|
+
models/translate-specialty-command.ts
|
|
488
|
+
models/translate-specialty-type-command.ts
|
|
489
|
+
models/translation-contents-model.ts
|
|
490
|
+
models/translation-contents-target-model.ts
|
|
491
|
+
models/translation-target-entities.ts
|
|
480
492
|
models/update-about-us-page-command.ts
|
|
481
493
|
models/update-account-command.ts
|
|
482
494
|
models/update-accreditation-command.ts
|
|
@@ -0,0 +1,208 @@
|
|
|
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
|
+
import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
17
|
+
import { Configuration } from '../configuration';
|
|
18
|
+
// Some imports not used depending on template conditions
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { TranslationContentsModel } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
import { TranslationTargetEntities } from '../models';
|
|
27
|
+
/**
|
|
28
|
+
* DevSupportsApi - axios parameter creator
|
|
29
|
+
* @export
|
|
30
|
+
*/
|
|
31
|
+
export const DevSupportsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
|
+
return {
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @summary Find missing translated content, translate all found contents
|
|
36
|
+
* @param {TranslationTargetEntities} targetEntity
|
|
37
|
+
* @param {string} basisLanguageCode
|
|
38
|
+
* @param {Array<string>} [translateToFields]
|
|
39
|
+
* @param {string} [id]
|
|
40
|
+
* @param {boolean} [isDryRun]
|
|
41
|
+
* @param {*} [options] Override http request option.
|
|
42
|
+
* @throws {RequiredError}
|
|
43
|
+
*/
|
|
44
|
+
apiV1DevsupportsTranslatePost: async (targetEntity: TranslationTargetEntities, basisLanguageCode: string, translateToFields?: Array<string>, id?: string, isDryRun?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
45
|
+
// verify required parameter 'targetEntity' is not null or undefined
|
|
46
|
+
assertParamExists('apiV1DevsupportsTranslatePost', 'targetEntity', targetEntity)
|
|
47
|
+
// verify required parameter 'basisLanguageCode' is not null or undefined
|
|
48
|
+
assertParamExists('apiV1DevsupportsTranslatePost', 'basisLanguageCode', basisLanguageCode)
|
|
49
|
+
const localVarPath = `/api/v1/devsupports/translate`;
|
|
50
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
51
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
52
|
+
let baseOptions;
|
|
53
|
+
if (configuration) {
|
|
54
|
+
baseOptions = configuration.baseOptions;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
58
|
+
const localVarHeaderParameter = {} as any;
|
|
59
|
+
const localVarQueryParameter = {} as any;
|
|
60
|
+
|
|
61
|
+
// authentication oauth2 required
|
|
62
|
+
// oauth required
|
|
63
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
64
|
+
|
|
65
|
+
if (targetEntity !== undefined) {
|
|
66
|
+
localVarQueryParameter['targetEntity'] = targetEntity;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
if (basisLanguageCode !== undefined) {
|
|
70
|
+
localVarQueryParameter['basisLanguageCode'] = basisLanguageCode;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if (translateToFields) {
|
|
74
|
+
localVarQueryParameter['translateToFields'] = translateToFields;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if (id !== undefined) {
|
|
78
|
+
localVarQueryParameter['id'] = id;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
if (isDryRun !== undefined) {
|
|
82
|
+
localVarQueryParameter['isDryRun'] = isDryRun;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
88
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
89
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
90
|
+
|
|
91
|
+
return {
|
|
92
|
+
url: toPathString(localVarUrlObj),
|
|
93
|
+
options: localVarRequestOptions,
|
|
94
|
+
};
|
|
95
|
+
},
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* DevSupportsApi - functional programming interface
|
|
101
|
+
* @export
|
|
102
|
+
*/
|
|
103
|
+
export const DevSupportsApiFp = function(configuration?: Configuration) {
|
|
104
|
+
const localVarAxiosParamCreator = DevSupportsApiAxiosParamCreator(configuration)
|
|
105
|
+
return {
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @summary Find missing translated content, translate all found contents
|
|
109
|
+
* @param {TranslationTargetEntities} targetEntity
|
|
110
|
+
* @param {string} basisLanguageCode
|
|
111
|
+
* @param {Array<string>} [translateToFields]
|
|
112
|
+
* @param {string} [id]
|
|
113
|
+
* @param {boolean} [isDryRun]
|
|
114
|
+
* @param {*} [options] Override http request option.
|
|
115
|
+
* @throws {RequiredError}
|
|
116
|
+
*/
|
|
117
|
+
async apiV1DevsupportsTranslatePost(targetEntity: TranslationTargetEntities, basisLanguageCode: string, translateToFields?: Array<string>, id?: string, isDryRun?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranslationContentsModel>> {
|
|
118
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DevsupportsTranslatePost(targetEntity, basisLanguageCode, translateToFields, id, isDryRun, options);
|
|
119
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
120
|
+
},
|
|
121
|
+
}
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* DevSupportsApi - factory interface
|
|
126
|
+
* @export
|
|
127
|
+
*/
|
|
128
|
+
export const DevSupportsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
129
|
+
const localVarFp = DevSupportsApiFp(configuration)
|
|
130
|
+
return {
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @summary Find missing translated content, translate all found contents
|
|
134
|
+
* @param {TranslationTargetEntities} targetEntity
|
|
135
|
+
* @param {string} basisLanguageCode
|
|
136
|
+
* @param {Array<string>} [translateToFields]
|
|
137
|
+
* @param {string} [id]
|
|
138
|
+
* @param {boolean} [isDryRun]
|
|
139
|
+
* @param {*} [options] Override http request option.
|
|
140
|
+
* @throws {RequiredError}
|
|
141
|
+
*/
|
|
142
|
+
apiV1DevsupportsTranslatePost(targetEntity: TranslationTargetEntities, basisLanguageCode: string, translateToFields?: Array<string>, id?: string, isDryRun?: boolean, options?: any): AxiosPromise<TranslationContentsModel> {
|
|
143
|
+
return localVarFp.apiV1DevsupportsTranslatePost(targetEntity, basisLanguageCode, translateToFields, id, isDryRun, options).then((request) => request(axios, basePath));
|
|
144
|
+
},
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Request parameters for apiV1DevsupportsTranslatePost operation in DevSupportsApi.
|
|
150
|
+
* @export
|
|
151
|
+
* @interface DevSupportsApiApiV1DevsupportsTranslatePostRequest
|
|
152
|
+
*/
|
|
153
|
+
export interface DevSupportsApiApiV1DevsupportsTranslatePostRequest {
|
|
154
|
+
/**
|
|
155
|
+
*
|
|
156
|
+
* @type {TranslationTargetEntities}
|
|
157
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
158
|
+
*/
|
|
159
|
+
readonly targetEntity: TranslationTargetEntities
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
165
|
+
*/
|
|
166
|
+
readonly basisLanguageCode: string
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
*
|
|
170
|
+
* @type {Array<string>}
|
|
171
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
172
|
+
*/
|
|
173
|
+
readonly translateToFields?: Array<string>
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
*
|
|
177
|
+
* @type {string}
|
|
178
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
179
|
+
*/
|
|
180
|
+
readonly id?: string
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
*
|
|
184
|
+
* @type {boolean}
|
|
185
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
186
|
+
*/
|
|
187
|
+
readonly isDryRun?: boolean
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* DevSupportsApi - object-oriented interface
|
|
192
|
+
* @export
|
|
193
|
+
* @class DevSupportsApi
|
|
194
|
+
* @extends {BaseAPI}
|
|
195
|
+
*/
|
|
196
|
+
export class DevSupportsApi extends BaseAPI {
|
|
197
|
+
/**
|
|
198
|
+
*
|
|
199
|
+
* @summary Find missing translated content, translate all found contents
|
|
200
|
+
* @param {DevSupportsApiApiV1DevsupportsTranslatePostRequest} requestParameters Request parameters.
|
|
201
|
+
* @param {*} [options] Override http request option.
|
|
202
|
+
* @throws {RequiredError}
|
|
203
|
+
* @memberof DevSupportsApi
|
|
204
|
+
*/
|
|
205
|
+
public apiV1DevsupportsTranslatePost(requestParameters: DevSupportsApiApiV1DevsupportsTranslatePostRequest, options?: AxiosRequestConfig) {
|
|
206
|
+
return DevSupportsApiFp(this.configuration).apiV1DevsupportsTranslatePost(requestParameters.targetEntity, requestParameters.basisLanguageCode, requestParameters.translateToFields, requestParameters.id, requestParameters.isDryRun, options).then((request) => request(this.axios, this.basePath));
|
|
207
|
+
}
|
|
208
|
+
}
|
package/src/api/hospitals-api.ts
CHANGED
|
@@ -145,6 +145,10 @@ import { SnsType } from '../models';
|
|
|
145
145
|
// @ts-ignore
|
|
146
146
|
import { TranslateHospitalCommand } from '../models';
|
|
147
147
|
// @ts-ignore
|
|
148
|
+
import { TranslateHospitalServiceCommand } from '../models';
|
|
149
|
+
// @ts-ignore
|
|
150
|
+
import { TranslateHospitalSpecialtyCommand } from '../models';
|
|
151
|
+
// @ts-ignore
|
|
148
152
|
import { UpdateHospitalCommand } from '../models';
|
|
149
153
|
// @ts-ignore
|
|
150
154
|
import { UpdateHospitalContactCommand } from '../models';
|
|
@@ -4838,6 +4842,52 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
4838
4842
|
options: localVarRequestOptions,
|
|
4839
4843
|
};
|
|
4840
4844
|
},
|
|
4845
|
+
/**
|
|
4846
|
+
*
|
|
4847
|
+
* @summary Translate hospitalSpecialty
|
|
4848
|
+
* @param {string} hospitalId
|
|
4849
|
+
* @param {string} hospitalSpecialtyId
|
|
4850
|
+
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
4851
|
+
* @param {*} [options] Override http request option.
|
|
4852
|
+
* @throws {RequiredError}
|
|
4853
|
+
*/
|
|
4854
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost: async (hospitalId: string, hospitalSpecialtyId: string, translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4855
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
4856
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost', 'hospitalId', hospitalId)
|
|
4857
|
+
// verify required parameter 'hospitalSpecialtyId' is not null or undefined
|
|
4858
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost', 'hospitalSpecialtyId', hospitalSpecialtyId)
|
|
4859
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/{hospitalSpecialtyId}/translate`
|
|
4860
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
4861
|
+
.replace(`{${"hospitalSpecialtyId"}}`, encodeURIComponent(String(hospitalSpecialtyId)));
|
|
4862
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4863
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4864
|
+
let baseOptions;
|
|
4865
|
+
if (configuration) {
|
|
4866
|
+
baseOptions = configuration.baseOptions;
|
|
4867
|
+
}
|
|
4868
|
+
|
|
4869
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
4870
|
+
const localVarHeaderParameter = {} as any;
|
|
4871
|
+
const localVarQueryParameter = {} as any;
|
|
4872
|
+
|
|
4873
|
+
// authentication oauth2 required
|
|
4874
|
+
// oauth required
|
|
4875
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
4876
|
+
|
|
4877
|
+
|
|
4878
|
+
|
|
4879
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4880
|
+
|
|
4881
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4882
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4883
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
4884
|
+
localVarRequestOptions.data = serializeDataIfNeeded(translateHospitalSpecialtyCommand, localVarRequestOptions, configuration)
|
|
4885
|
+
|
|
4886
|
+
return {
|
|
4887
|
+
url: toPathString(localVarUrlObj),
|
|
4888
|
+
options: localVarRequestOptions,
|
|
4889
|
+
};
|
|
4890
|
+
},
|
|
4841
4891
|
/**
|
|
4842
4892
|
*
|
|
4843
4893
|
* @summary Create HospitalSpecialty.
|
|
@@ -6030,6 +6080,56 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
6030
6080
|
options: localVarRequestOptions,
|
|
6031
6081
|
};
|
|
6032
6082
|
},
|
|
6083
|
+
/**
|
|
6084
|
+
*
|
|
6085
|
+
* @summary Translate service
|
|
6086
|
+
* @param {string} hospitalId
|
|
6087
|
+
* @param {string} specialtyId
|
|
6088
|
+
* @param {string} serviceId
|
|
6089
|
+
* @param {TranslateHospitalServiceCommand} [translateHospitalServiceCommand]
|
|
6090
|
+
* @param {*} [options] Override http request option.
|
|
6091
|
+
* @throws {RequiredError}
|
|
6092
|
+
*/
|
|
6093
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost: async (hospitalId: string, specialtyId: string, serviceId: string, translateHospitalServiceCommand?: TranslateHospitalServiceCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6094
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
6095
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost', 'hospitalId', hospitalId)
|
|
6096
|
+
// verify required parameter 'specialtyId' is not null or undefined
|
|
6097
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost', 'specialtyId', specialtyId)
|
|
6098
|
+
// verify required parameter 'serviceId' is not null or undefined
|
|
6099
|
+
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost', 'serviceId', serviceId)
|
|
6100
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/{specialtyId}/services/{serviceId}/translate`
|
|
6101
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
6102
|
+
.replace(`{${"specialtyId"}}`, encodeURIComponent(String(specialtyId)))
|
|
6103
|
+
.replace(`{${"serviceId"}}`, encodeURIComponent(String(serviceId)));
|
|
6104
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6105
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6106
|
+
let baseOptions;
|
|
6107
|
+
if (configuration) {
|
|
6108
|
+
baseOptions = configuration.baseOptions;
|
|
6109
|
+
}
|
|
6110
|
+
|
|
6111
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
6112
|
+
const localVarHeaderParameter = {} as any;
|
|
6113
|
+
const localVarQueryParameter = {} as any;
|
|
6114
|
+
|
|
6115
|
+
// authentication oauth2 required
|
|
6116
|
+
// oauth required
|
|
6117
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
6118
|
+
|
|
6119
|
+
|
|
6120
|
+
|
|
6121
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6122
|
+
|
|
6123
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6124
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6125
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
6126
|
+
localVarRequestOptions.data = serializeDataIfNeeded(translateHospitalServiceCommand, localVarRequestOptions, configuration)
|
|
6127
|
+
|
|
6128
|
+
return {
|
|
6129
|
+
url: toPathString(localVarUrlObj),
|
|
6130
|
+
options: localVarRequestOptions,
|
|
6131
|
+
};
|
|
6132
|
+
},
|
|
6033
6133
|
/**
|
|
6034
6134
|
*
|
|
6035
6135
|
* @summary Translate hospital at once
|
|
@@ -7830,6 +7930,19 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
7830
7930
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(hospitalId, hospitalSpecialtyId, includeCurrent, options);
|
|
7831
7931
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7832
7932
|
},
|
|
7933
|
+
/**
|
|
7934
|
+
*
|
|
7935
|
+
* @summary Translate hospitalSpecialty
|
|
7936
|
+
* @param {string} hospitalId
|
|
7937
|
+
* @param {string} hospitalSpecialtyId
|
|
7938
|
+
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
7939
|
+
* @param {*} [options] Override http request option.
|
|
7940
|
+
* @throws {RequiredError}
|
|
7941
|
+
*/
|
|
7942
|
+
async apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId: string, hospitalSpecialtyId: string, translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
7943
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId, hospitalSpecialtyId, translateHospitalSpecialtyCommand, options);
|
|
7944
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7945
|
+
},
|
|
7833
7946
|
/**
|
|
7834
7947
|
*
|
|
7835
7948
|
* @summary Create HospitalSpecialty.
|
|
@@ -8142,6 +8255,20 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8142
8255
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(hospitalId, specialtyId, serviceId, includeCurrent, options);
|
|
8143
8256
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8144
8257
|
},
|
|
8258
|
+
/**
|
|
8259
|
+
*
|
|
8260
|
+
* @summary Translate service
|
|
8261
|
+
* @param {string} hospitalId
|
|
8262
|
+
* @param {string} specialtyId
|
|
8263
|
+
* @param {string} serviceId
|
|
8264
|
+
* @param {TranslateHospitalServiceCommand} [translateHospitalServiceCommand]
|
|
8265
|
+
* @param {*} [options] Override http request option.
|
|
8266
|
+
* @throws {RequiredError}
|
|
8267
|
+
*/
|
|
8268
|
+
async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(hospitalId: string, specialtyId: string, serviceId: string, translateHospitalServiceCommand?: TranslateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
8269
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(hospitalId, specialtyId, serviceId, translateHospitalServiceCommand, options);
|
|
8270
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8271
|
+
},
|
|
8145
8272
|
/**
|
|
8146
8273
|
*
|
|
8147
8274
|
* @summary Translate hospital at once
|
|
@@ -9455,6 +9582,18 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
9455
9582
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(hospitalId: string, hospitalSpecialtyId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean> {
|
|
9456
9583
|
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(hospitalId, hospitalSpecialtyId, includeCurrent, options).then((request) => request(axios, basePath));
|
|
9457
9584
|
},
|
|
9585
|
+
/**
|
|
9586
|
+
*
|
|
9587
|
+
* @summary Translate hospitalSpecialty
|
|
9588
|
+
* @param {string} hospitalId
|
|
9589
|
+
* @param {string} hospitalSpecialtyId
|
|
9590
|
+
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
9591
|
+
* @param {*} [options] Override http request option.
|
|
9592
|
+
* @throws {RequiredError}
|
|
9593
|
+
*/
|
|
9594
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId: string, hospitalSpecialtyId: string, translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand, options?: any): AxiosPromise<boolean> {
|
|
9595
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId, hospitalSpecialtyId, translateHospitalSpecialtyCommand, options).then((request) => request(axios, basePath));
|
|
9596
|
+
},
|
|
9458
9597
|
/**
|
|
9459
9598
|
*
|
|
9460
9599
|
* @summary Create HospitalSpecialty.
|
|
@@ -9747,6 +9886,19 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
9747
9886
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(hospitalId: string, specialtyId: string, serviceId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean> {
|
|
9748
9887
|
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(hospitalId, specialtyId, serviceId, includeCurrent, options).then((request) => request(axios, basePath));
|
|
9749
9888
|
},
|
|
9889
|
+
/**
|
|
9890
|
+
*
|
|
9891
|
+
* @summary Translate service
|
|
9892
|
+
* @param {string} hospitalId
|
|
9893
|
+
* @param {string} specialtyId
|
|
9894
|
+
* @param {string} serviceId
|
|
9895
|
+
* @param {TranslateHospitalServiceCommand} [translateHospitalServiceCommand]
|
|
9896
|
+
* @param {*} [options] Override http request option.
|
|
9897
|
+
* @throws {RequiredError}
|
|
9898
|
+
*/
|
|
9899
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(hospitalId: string, specialtyId: string, serviceId: string, translateHospitalServiceCommand?: TranslateHospitalServiceCommand, options?: any): AxiosPromise<boolean> {
|
|
9900
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(hospitalId, specialtyId, serviceId, translateHospitalServiceCommand, options).then((request) => request(axios, basePath));
|
|
9901
|
+
},
|
|
9750
9902
|
/**
|
|
9751
9903
|
*
|
|
9752
9904
|
* @summary Translate hospital at once
|
|
@@ -12869,6 +13021,34 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialt
|
|
|
12869
13021
|
readonly includeCurrent?: boolean
|
|
12870
13022
|
}
|
|
12871
13023
|
|
|
13024
|
+
/**
|
|
13025
|
+
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost operation in HospitalsApi.
|
|
13026
|
+
* @export
|
|
13027
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest
|
|
13028
|
+
*/
|
|
13029
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest {
|
|
13030
|
+
/**
|
|
13031
|
+
*
|
|
13032
|
+
* @type {string}
|
|
13033
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost
|
|
13034
|
+
*/
|
|
13035
|
+
readonly hospitalId: string
|
|
13036
|
+
|
|
13037
|
+
/**
|
|
13038
|
+
*
|
|
13039
|
+
* @type {string}
|
|
13040
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost
|
|
13041
|
+
*/
|
|
13042
|
+
readonly hospitalSpecialtyId: string
|
|
13043
|
+
|
|
13044
|
+
/**
|
|
13045
|
+
*
|
|
13046
|
+
* @type {TranslateHospitalSpecialtyCommand}
|
|
13047
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost
|
|
13048
|
+
*/
|
|
13049
|
+
readonly translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand
|
|
13050
|
+
}
|
|
13051
|
+
|
|
12872
13052
|
/**
|
|
12873
13053
|
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesPost operation in HospitalsApi.
|
|
12874
13054
|
* @export
|
|
@@ -13793,6 +13973,41 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
13793
13973
|
readonly includeCurrent?: boolean
|
|
13794
13974
|
}
|
|
13795
13975
|
|
|
13976
|
+
/**
|
|
13977
|
+
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost operation in HospitalsApi.
|
|
13978
|
+
* @export
|
|
13979
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest
|
|
13980
|
+
*/
|
|
13981
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest {
|
|
13982
|
+
/**
|
|
13983
|
+
*
|
|
13984
|
+
* @type {string}
|
|
13985
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost
|
|
13986
|
+
*/
|
|
13987
|
+
readonly hospitalId: string
|
|
13988
|
+
|
|
13989
|
+
/**
|
|
13990
|
+
*
|
|
13991
|
+
* @type {string}
|
|
13992
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost
|
|
13993
|
+
*/
|
|
13994
|
+
readonly specialtyId: string
|
|
13995
|
+
|
|
13996
|
+
/**
|
|
13997
|
+
*
|
|
13998
|
+
* @type {string}
|
|
13999
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost
|
|
14000
|
+
*/
|
|
14001
|
+
readonly serviceId: string
|
|
14002
|
+
|
|
14003
|
+
/**
|
|
14004
|
+
*
|
|
14005
|
+
* @type {TranslateHospitalServiceCommand}
|
|
14006
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost
|
|
14007
|
+
*/
|
|
14008
|
+
readonly translateHospitalServiceCommand?: TranslateHospitalServiceCommand
|
|
14009
|
+
}
|
|
14010
|
+
|
|
13796
14011
|
/**
|
|
13797
14012
|
* Request parameters for apiV1HospitalsHospitalIdTranslatePost operation in HospitalsApi.
|
|
13798
14013
|
* @export
|
|
@@ -15254,6 +15469,18 @@ export class HospitalsApi extends BaseAPI {
|
|
|
15254
15469
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.includeCurrent, options).then((request) => request(this.axios, this.basePath));
|
|
15255
15470
|
}
|
|
15256
15471
|
|
|
15472
|
+
/**
|
|
15473
|
+
*
|
|
15474
|
+
* @summary Translate hospitalSpecialty
|
|
15475
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest} requestParameters Request parameters.
|
|
15476
|
+
* @param {*} [options] Override http request option.
|
|
15477
|
+
* @throws {RequiredError}
|
|
15478
|
+
* @memberof HospitalsApi
|
|
15479
|
+
*/
|
|
15480
|
+
public apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest, options?: AxiosRequestConfig) {
|
|
15481
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.translateHospitalSpecialtyCommand, options).then((request) => request(this.axios, this.basePath));
|
|
15482
|
+
}
|
|
15483
|
+
|
|
15257
15484
|
/**
|
|
15258
15485
|
*
|
|
15259
15486
|
* @summary Create HospitalSpecialty.
|
|
@@ -15494,6 +15721,18 @@ export class HospitalsApi extends BaseAPI {
|
|
|
15494
15721
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.includeCurrent, options).then((request) => request(this.axios, this.basePath));
|
|
15495
15722
|
}
|
|
15496
15723
|
|
|
15724
|
+
/**
|
|
15725
|
+
*
|
|
15726
|
+
* @summary Translate service
|
|
15727
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest} requestParameters Request parameters.
|
|
15728
|
+
* @param {*} [options] Override http request option.
|
|
15729
|
+
* @throws {RequiredError}
|
|
15730
|
+
* @memberof HospitalsApi
|
|
15731
|
+
*/
|
|
15732
|
+
public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest, options?: AxiosRequestConfig) {
|
|
15733
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.translateHospitalServiceCommand, options).then((request) => request(this.axios, this.basePath));
|
|
15734
|
+
}
|
|
15735
|
+
|
|
15497
15736
|
/**
|
|
15498
15737
|
*
|
|
15499
15738
|
* @summary Translate hospital at once
|