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,125 @@
|
|
|
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
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { TranslationContentsModel } from '../models';
|
|
16
|
+
import { TranslationTargetEntities } from '../models';
|
|
17
|
+
/**
|
|
18
|
+
* DevSupportsApi - axios parameter creator
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
export declare const DevSupportsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @summary Find missing translated content, translate all found contents
|
|
25
|
+
* @param {TranslationTargetEntities} targetEntity
|
|
26
|
+
* @param {string} basisLanguageCode
|
|
27
|
+
* @param {Array<string>} [translateToFields]
|
|
28
|
+
* @param {string} [id]
|
|
29
|
+
* @param {boolean} [isDryRun]
|
|
30
|
+
* @param {*} [options] Override http request option.
|
|
31
|
+
* @throws {RequiredError}
|
|
32
|
+
*/
|
|
33
|
+
apiV1DevsupportsTranslatePost: (targetEntity: TranslationTargetEntities, basisLanguageCode: string, translateToFields?: Array<string>, id?: string, isDryRun?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* DevSupportsApi - functional programming interface
|
|
37
|
+
* @export
|
|
38
|
+
*/
|
|
39
|
+
export declare const DevSupportsApiFp: (configuration?: Configuration) => {
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @summary Find missing translated content, translate all found contents
|
|
43
|
+
* @param {TranslationTargetEntities} targetEntity
|
|
44
|
+
* @param {string} basisLanguageCode
|
|
45
|
+
* @param {Array<string>} [translateToFields]
|
|
46
|
+
* @param {string} [id]
|
|
47
|
+
* @param {boolean} [isDryRun]
|
|
48
|
+
* @param {*} [options] Override http request option.
|
|
49
|
+
* @throws {RequiredError}
|
|
50
|
+
*/
|
|
51
|
+
apiV1DevsupportsTranslatePost(targetEntity: TranslationTargetEntities, basisLanguageCode: string, translateToFields?: Array<string>, id?: string, isDryRun?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranslationContentsModel>>;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* DevSupportsApi - factory interface
|
|
55
|
+
* @export
|
|
56
|
+
*/
|
|
57
|
+
export declare const DevSupportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @summary Find missing translated content, translate all found contents
|
|
61
|
+
* @param {TranslationTargetEntities} targetEntity
|
|
62
|
+
* @param {string} basisLanguageCode
|
|
63
|
+
* @param {Array<string>} [translateToFields]
|
|
64
|
+
* @param {string} [id]
|
|
65
|
+
* @param {boolean} [isDryRun]
|
|
66
|
+
* @param {*} [options] Override http request option.
|
|
67
|
+
* @throws {RequiredError}
|
|
68
|
+
*/
|
|
69
|
+
apiV1DevsupportsTranslatePost(targetEntity: TranslationTargetEntities, basisLanguageCode: string, translateToFields?: Array<string>, id?: string, isDryRun?: boolean, options?: any): AxiosPromise<TranslationContentsModel>;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Request parameters for apiV1DevsupportsTranslatePost operation in DevSupportsApi.
|
|
73
|
+
* @export
|
|
74
|
+
* @interface DevSupportsApiApiV1DevsupportsTranslatePostRequest
|
|
75
|
+
*/
|
|
76
|
+
export interface DevSupportsApiApiV1DevsupportsTranslatePostRequest {
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {TranslationTargetEntities}
|
|
80
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
81
|
+
*/
|
|
82
|
+
readonly targetEntity: TranslationTargetEntities;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
87
|
+
*/
|
|
88
|
+
readonly basisLanguageCode: string;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {Array<string>}
|
|
92
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
93
|
+
*/
|
|
94
|
+
readonly translateToFields?: Array<string>;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
99
|
+
*/
|
|
100
|
+
readonly id?: string;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {boolean}
|
|
104
|
+
* @memberof DevSupportsApiApiV1DevsupportsTranslatePost
|
|
105
|
+
*/
|
|
106
|
+
readonly isDryRun?: boolean;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* DevSupportsApi - object-oriented interface
|
|
110
|
+
* @export
|
|
111
|
+
* @class DevSupportsApi
|
|
112
|
+
* @extends {BaseAPI}
|
|
113
|
+
*/
|
|
114
|
+
export declare class DevSupportsApi extends BaseAPI {
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @summary Find missing translated content, translate all found contents
|
|
118
|
+
* @param {DevSupportsApiApiV1DevsupportsTranslatePostRequest} requestParameters Request parameters.
|
|
119
|
+
* @param {*} [options] Override http request option.
|
|
120
|
+
* @throws {RequiredError}
|
|
121
|
+
* @memberof DevSupportsApi
|
|
122
|
+
*/
|
|
123
|
+
apiV1DevsupportsTranslatePost(requestParameters: DevSupportsApiApiV1DevsupportsTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationContentsModel, any>>;
|
|
124
|
+
}
|
|
125
|
+
//# sourceMappingURL=dev-supports-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dev-supports-api.d.ts","sourceRoot":"","sources":["../../src/api/dev-supports-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AACtD;;;GAGG;AACH,eAAO,MAAM,+BAA+B,mBAA6B,aAAa;IAE9E;;;;;;;;;;OAUG;kDACiD,yBAAyB,qBAAqB,MAAM,sBAAsB,MAAM,MAAM,CAAC,OAAO,MAAM,aAAa,OAAO,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;CAqD5O,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,mBAA4B,aAAa;IAG9D;;;;;;;;;;OAUG;gDAC+C,yBAAyB,qBAAqB,MAAM,sBAAsB,MAAM,MAAM,CAAC,OAAO,MAAM,aAAa,OAAO,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,wBAAwB,CAAC;CAK9S,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,qBAAqB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAG9G;;;;;;;;;;OAUG;gDACyC,yBAAyB,qBAAqB,MAAM,sBAAsB,MAAM,MAAM,CAAC,OAAO,MAAM,aAAa,OAAO,YAAY,GAAG,GAAG,aAAa,wBAAwB,CAAC;CAInO,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,kDAAkD;IAC/D;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,yBAAyB,CAAA;IAEhD;;;;OAIG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAA;IAElC;;;;OAIG;IACH,QAAQ,CAAC,iBAAiB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;IAE1C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAA;CAC9B;AAED;;;;;GAKG;AACH,qBAAa,cAAe,SAAQ,OAAO;IACvC;;;;;;;OAOG;IACI,6BAA6B,CAAC,iBAAiB,EAAE,kDAAkD,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAG3I"}
|
|
@@ -0,0 +1,244 @@
|
|
|
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
|
+
var __extends = (this && this.__extends) || (function () {
|
|
16
|
+
var extendStatics = function (d, b) {
|
|
17
|
+
extendStatics = Object.setPrototypeOf ||
|
|
18
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
19
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
20
|
+
return extendStatics(d, b);
|
|
21
|
+
};
|
|
22
|
+
return function (d, b) {
|
|
23
|
+
if (typeof b !== "function" && b !== null)
|
|
24
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
25
|
+
extendStatics(d, b);
|
|
26
|
+
function __() { this.constructor = d; }
|
|
27
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28
|
+
};
|
|
29
|
+
})();
|
|
30
|
+
var __assign = (this && this.__assign) || function () {
|
|
31
|
+
__assign = Object.assign || function(t) {
|
|
32
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
33
|
+
s = arguments[i];
|
|
34
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
35
|
+
t[p] = s[p];
|
|
36
|
+
}
|
|
37
|
+
return t;
|
|
38
|
+
};
|
|
39
|
+
return __assign.apply(this, arguments);
|
|
40
|
+
};
|
|
41
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
42
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
43
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
44
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
45
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
46
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
47
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
51
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
52
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
53
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
54
|
+
function step(op) {
|
|
55
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
56
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
57
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
58
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
59
|
+
switch (op[0]) {
|
|
60
|
+
case 0: case 1: t = op; break;
|
|
61
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
62
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
63
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
64
|
+
default:
|
|
65
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
66
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
67
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
68
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
69
|
+
if (t[2]) _.ops.pop();
|
|
70
|
+
_.trys.pop(); continue;
|
|
71
|
+
}
|
|
72
|
+
op = body.call(thisArg, _);
|
|
73
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
74
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
78
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
|
+
};
|
|
80
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
+
exports.DevSupportsApi = exports.DevSupportsApiFactory = exports.DevSupportsApiFp = exports.DevSupportsApiAxiosParamCreator = void 0;
|
|
82
|
+
var axios_1 = __importDefault(require("axios"));
|
|
83
|
+
// Some imports not used depending on template conditions
|
|
84
|
+
// @ts-ignore
|
|
85
|
+
var common_1 = require("../common");
|
|
86
|
+
// @ts-ignore
|
|
87
|
+
var base_1 = require("../base");
|
|
88
|
+
/**
|
|
89
|
+
* DevSupportsApi - axios parameter creator
|
|
90
|
+
* @export
|
|
91
|
+
*/
|
|
92
|
+
var DevSupportsApiAxiosParamCreator = function (configuration) {
|
|
93
|
+
var _this = this;
|
|
94
|
+
return {
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @summary Find missing translated content, translate all found contents
|
|
98
|
+
* @param {TranslationTargetEntities} targetEntity
|
|
99
|
+
* @param {string} basisLanguageCode
|
|
100
|
+
* @param {Array<string>} [translateToFields]
|
|
101
|
+
* @param {string} [id]
|
|
102
|
+
* @param {boolean} [isDryRun]
|
|
103
|
+
* @param {*} [options] Override http request option.
|
|
104
|
+
* @throws {RequiredError}
|
|
105
|
+
*/
|
|
106
|
+
apiV1DevsupportsTranslatePost: function (targetEntity, basisLanguageCode, translateToFields, id, isDryRun, options) {
|
|
107
|
+
if (options === void 0) { options = {}; }
|
|
108
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
109
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
110
|
+
return __generator(this, function (_a) {
|
|
111
|
+
switch (_a.label) {
|
|
112
|
+
case 0:
|
|
113
|
+
// verify required parameter 'targetEntity' is not null or undefined
|
|
114
|
+
(0, common_1.assertParamExists)('apiV1DevsupportsTranslatePost', 'targetEntity', targetEntity);
|
|
115
|
+
// verify required parameter 'basisLanguageCode' is not null or undefined
|
|
116
|
+
(0, common_1.assertParamExists)('apiV1DevsupportsTranslatePost', 'basisLanguageCode', basisLanguageCode);
|
|
117
|
+
localVarPath = "/api/v1/devsupports/translate";
|
|
118
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
119
|
+
if (configuration) {
|
|
120
|
+
baseOptions = configuration.baseOptions;
|
|
121
|
+
}
|
|
122
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
123
|
+
localVarHeaderParameter = {};
|
|
124
|
+
localVarQueryParameter = {};
|
|
125
|
+
// authentication oauth2 required
|
|
126
|
+
// oauth required
|
|
127
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
128
|
+
case 1:
|
|
129
|
+
// authentication oauth2 required
|
|
130
|
+
// oauth required
|
|
131
|
+
_a.sent();
|
|
132
|
+
if (targetEntity !== undefined) {
|
|
133
|
+
localVarQueryParameter['targetEntity'] = targetEntity;
|
|
134
|
+
}
|
|
135
|
+
if (basisLanguageCode !== undefined) {
|
|
136
|
+
localVarQueryParameter['basisLanguageCode'] = basisLanguageCode;
|
|
137
|
+
}
|
|
138
|
+
if (translateToFields) {
|
|
139
|
+
localVarQueryParameter['translateToFields'] = translateToFields;
|
|
140
|
+
}
|
|
141
|
+
if (id !== undefined) {
|
|
142
|
+
localVarQueryParameter['id'] = id;
|
|
143
|
+
}
|
|
144
|
+
if (isDryRun !== undefined) {
|
|
145
|
+
localVarQueryParameter['isDryRun'] = isDryRun;
|
|
146
|
+
}
|
|
147
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
148
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
149
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
150
|
+
return [2 /*return*/, {
|
|
151
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
152
|
+
options: localVarRequestOptions,
|
|
153
|
+
}];
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
});
|
|
157
|
+
},
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
exports.DevSupportsApiAxiosParamCreator = DevSupportsApiAxiosParamCreator;
|
|
161
|
+
/**
|
|
162
|
+
* DevSupportsApi - functional programming interface
|
|
163
|
+
* @export
|
|
164
|
+
*/
|
|
165
|
+
var DevSupportsApiFp = function (configuration) {
|
|
166
|
+
var localVarAxiosParamCreator = (0, exports.DevSupportsApiAxiosParamCreator)(configuration);
|
|
167
|
+
return {
|
|
168
|
+
/**
|
|
169
|
+
*
|
|
170
|
+
* @summary Find missing translated content, translate all found contents
|
|
171
|
+
* @param {TranslationTargetEntities} targetEntity
|
|
172
|
+
* @param {string} basisLanguageCode
|
|
173
|
+
* @param {Array<string>} [translateToFields]
|
|
174
|
+
* @param {string} [id]
|
|
175
|
+
* @param {boolean} [isDryRun]
|
|
176
|
+
* @param {*} [options] Override http request option.
|
|
177
|
+
* @throws {RequiredError}
|
|
178
|
+
*/
|
|
179
|
+
apiV1DevsupportsTranslatePost: function (targetEntity, basisLanguageCode, translateToFields, id, isDryRun, options) {
|
|
180
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
181
|
+
var localVarAxiosArgs;
|
|
182
|
+
return __generator(this, function (_a) {
|
|
183
|
+
switch (_a.label) {
|
|
184
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DevsupportsTranslatePost(targetEntity, basisLanguageCode, translateToFields, id, isDryRun, options)];
|
|
185
|
+
case 1:
|
|
186
|
+
localVarAxiosArgs = _a.sent();
|
|
187
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
188
|
+
}
|
|
189
|
+
});
|
|
190
|
+
});
|
|
191
|
+
},
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
exports.DevSupportsApiFp = DevSupportsApiFp;
|
|
195
|
+
/**
|
|
196
|
+
* DevSupportsApi - factory interface
|
|
197
|
+
* @export
|
|
198
|
+
*/
|
|
199
|
+
var DevSupportsApiFactory = function (configuration, basePath, axios) {
|
|
200
|
+
var localVarFp = (0, exports.DevSupportsApiFp)(configuration);
|
|
201
|
+
return {
|
|
202
|
+
/**
|
|
203
|
+
*
|
|
204
|
+
* @summary Find missing translated content, translate all found contents
|
|
205
|
+
* @param {TranslationTargetEntities} targetEntity
|
|
206
|
+
* @param {string} basisLanguageCode
|
|
207
|
+
* @param {Array<string>} [translateToFields]
|
|
208
|
+
* @param {string} [id]
|
|
209
|
+
* @param {boolean} [isDryRun]
|
|
210
|
+
* @param {*} [options] Override http request option.
|
|
211
|
+
* @throws {RequiredError}
|
|
212
|
+
*/
|
|
213
|
+
apiV1DevsupportsTranslatePost: function (targetEntity, basisLanguageCode, translateToFields, id, isDryRun, options) {
|
|
214
|
+
return localVarFp.apiV1DevsupportsTranslatePost(targetEntity, basisLanguageCode, translateToFields, id, isDryRun, options).then(function (request) { return request(axios, basePath); });
|
|
215
|
+
},
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
exports.DevSupportsApiFactory = DevSupportsApiFactory;
|
|
219
|
+
/**
|
|
220
|
+
* DevSupportsApi - object-oriented interface
|
|
221
|
+
* @export
|
|
222
|
+
* @class DevSupportsApi
|
|
223
|
+
* @extends {BaseAPI}
|
|
224
|
+
*/
|
|
225
|
+
var DevSupportsApi = /** @class */ (function (_super) {
|
|
226
|
+
__extends(DevSupportsApi, _super);
|
|
227
|
+
function DevSupportsApi() {
|
|
228
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
229
|
+
}
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @summary Find missing translated content, translate all found contents
|
|
233
|
+
* @param {DevSupportsApiApiV1DevsupportsTranslatePostRequest} requestParameters Request parameters.
|
|
234
|
+
* @param {*} [options] Override http request option.
|
|
235
|
+
* @throws {RequiredError}
|
|
236
|
+
* @memberof DevSupportsApi
|
|
237
|
+
*/
|
|
238
|
+
DevSupportsApi.prototype.apiV1DevsupportsTranslatePost = function (requestParameters, options) {
|
|
239
|
+
var _this = this;
|
|
240
|
+
return (0, exports.DevSupportsApiFp)(this.configuration).apiV1DevsupportsTranslatePost(requestParameters.targetEntity, requestParameters.basisLanguageCode, requestParameters.translateToFields, requestParameters.id, requestParameters.isDryRun, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
241
|
+
};
|
|
242
|
+
return DevSupportsApi;
|
|
243
|
+
}(base_1.BaseAPI));
|
|
244
|
+
exports.DevSupportsApi = DevSupportsApi;
|
|
@@ -73,6 +73,8 @@ import { SecureContainersModel } from '../models';
|
|
|
73
73
|
import { SnsHandleModel } from '../models';
|
|
74
74
|
import { SnsType } from '../models';
|
|
75
75
|
import { TranslateHospitalCommand } from '../models';
|
|
76
|
+
import { TranslateHospitalServiceCommand } from '../models';
|
|
77
|
+
import { TranslateHospitalSpecialtyCommand } from '../models';
|
|
76
78
|
import { UpdateHospitalCommand } from '../models';
|
|
77
79
|
import { UpdateHospitalContactCommand } from '../models';
|
|
78
80
|
import { UpdateHospitalEquipmentCommand } from '../models';
|
|
@@ -1070,6 +1072,16 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1070
1072
|
* @throws {RequiredError}
|
|
1071
1073
|
*/
|
|
1072
1074
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost: (hospitalId: string, hospitalSpecialtyId: string, includeCurrent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1075
|
+
/**
|
|
1076
|
+
*
|
|
1077
|
+
* @summary Translate hospitalSpecialty
|
|
1078
|
+
* @param {string} hospitalId
|
|
1079
|
+
* @param {string} hospitalSpecialtyId
|
|
1080
|
+
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
1081
|
+
* @param {*} [options] Override http request option.
|
|
1082
|
+
* @throws {RequiredError}
|
|
1083
|
+
*/
|
|
1084
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost: (hospitalId: string, hospitalSpecialtyId: string, translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1073
1085
|
/**
|
|
1074
1086
|
*
|
|
1075
1087
|
* @summary Create HospitalSpecialty.
|
|
@@ -1322,6 +1334,17 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1322
1334
|
* @throws {RequiredError}
|
|
1323
1335
|
*/
|
|
1324
1336
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost: (hospitalId: string, specialtyId: string, serviceId: string, includeCurrent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @summary Translate service
|
|
1340
|
+
* @param {string} hospitalId
|
|
1341
|
+
* @param {string} specialtyId
|
|
1342
|
+
* @param {string} serviceId
|
|
1343
|
+
* @param {TranslateHospitalServiceCommand} [translateHospitalServiceCommand]
|
|
1344
|
+
* @param {*} [options] Override http request option.
|
|
1345
|
+
* @throws {RequiredError}
|
|
1346
|
+
*/
|
|
1347
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost: (hospitalId: string, specialtyId: string, serviceId: string, translateHospitalServiceCommand?: TranslateHospitalServiceCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1325
1348
|
/**
|
|
1326
1349
|
*
|
|
1327
1350
|
* @summary Translate hospital at once
|
|
@@ -2417,6 +2440,16 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2417
2440
|
* @throws {RequiredError}
|
|
2418
2441
|
*/
|
|
2419
2442
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(hospitalId: string, hospitalSpecialtyId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2443
|
+
/**
|
|
2444
|
+
*
|
|
2445
|
+
* @summary Translate hospitalSpecialty
|
|
2446
|
+
* @param {string} hospitalId
|
|
2447
|
+
* @param {string} hospitalSpecialtyId
|
|
2448
|
+
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
2449
|
+
* @param {*} [options] Override http request option.
|
|
2450
|
+
* @throws {RequiredError}
|
|
2451
|
+
*/
|
|
2452
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId: string, hospitalSpecialtyId: string, translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2420
2453
|
/**
|
|
2421
2454
|
*
|
|
2422
2455
|
* @summary Create HospitalSpecialty.
|
|
@@ -2669,6 +2702,17 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2669
2702
|
* @throws {RequiredError}
|
|
2670
2703
|
*/
|
|
2671
2704
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(hospitalId: string, specialtyId: string, serviceId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2705
|
+
/**
|
|
2706
|
+
*
|
|
2707
|
+
* @summary Translate service
|
|
2708
|
+
* @param {string} hospitalId
|
|
2709
|
+
* @param {string} specialtyId
|
|
2710
|
+
* @param {string} serviceId
|
|
2711
|
+
* @param {TranslateHospitalServiceCommand} [translateHospitalServiceCommand]
|
|
2712
|
+
* @param {*} [options] Override http request option.
|
|
2713
|
+
* @throws {RequiredError}
|
|
2714
|
+
*/
|
|
2715
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(hospitalId: string, specialtyId: string, serviceId: string, translateHospitalServiceCommand?: TranslateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2672
2716
|
/**
|
|
2673
2717
|
*
|
|
2674
2718
|
* @summary Translate hospital at once
|
|
@@ -3764,6 +3808,16 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
3764
3808
|
* @throws {RequiredError}
|
|
3765
3809
|
*/
|
|
3766
3810
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(hospitalId: string, hospitalSpecialtyId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
3811
|
+
/**
|
|
3812
|
+
*
|
|
3813
|
+
* @summary Translate hospitalSpecialty
|
|
3814
|
+
* @param {string} hospitalId
|
|
3815
|
+
* @param {string} hospitalSpecialtyId
|
|
3816
|
+
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
3817
|
+
* @param {*} [options] Override http request option.
|
|
3818
|
+
* @throws {RequiredError}
|
|
3819
|
+
*/
|
|
3820
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId: string, hospitalSpecialtyId: string, translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand, options?: any): AxiosPromise<boolean>;
|
|
3767
3821
|
/**
|
|
3768
3822
|
*
|
|
3769
3823
|
* @summary Create HospitalSpecialty.
|
|
@@ -4016,6 +4070,17 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4016
4070
|
* @throws {RequiredError}
|
|
4017
4071
|
*/
|
|
4018
4072
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(hospitalId: string, specialtyId: string, serviceId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
4073
|
+
/**
|
|
4074
|
+
*
|
|
4075
|
+
* @summary Translate service
|
|
4076
|
+
* @param {string} hospitalId
|
|
4077
|
+
* @param {string} specialtyId
|
|
4078
|
+
* @param {string} serviceId
|
|
4079
|
+
* @param {TranslateHospitalServiceCommand} [translateHospitalServiceCommand]
|
|
4080
|
+
* @param {*} [options] Override http request option.
|
|
4081
|
+
* @throws {RequiredError}
|
|
4082
|
+
*/
|
|
4083
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(hospitalId: string, specialtyId: string, serviceId: string, translateHospitalServiceCommand?: TranslateHospitalServiceCommand, options?: any): AxiosPromise<boolean>;
|
|
4019
4084
|
/**
|
|
4020
4085
|
*
|
|
4021
4086
|
* @summary Translate hospital at once
|
|
@@ -6781,6 +6846,31 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialt
|
|
|
6781
6846
|
*/
|
|
6782
6847
|
readonly includeCurrent?: boolean;
|
|
6783
6848
|
}
|
|
6849
|
+
/**
|
|
6850
|
+
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost operation in HospitalsApi.
|
|
6851
|
+
* @export
|
|
6852
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest
|
|
6853
|
+
*/
|
|
6854
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest {
|
|
6855
|
+
/**
|
|
6856
|
+
*
|
|
6857
|
+
* @type {string}
|
|
6858
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost
|
|
6859
|
+
*/
|
|
6860
|
+
readonly hospitalId: string;
|
|
6861
|
+
/**
|
|
6862
|
+
*
|
|
6863
|
+
* @type {string}
|
|
6864
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost
|
|
6865
|
+
*/
|
|
6866
|
+
readonly hospitalSpecialtyId: string;
|
|
6867
|
+
/**
|
|
6868
|
+
*
|
|
6869
|
+
* @type {TranslateHospitalSpecialtyCommand}
|
|
6870
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost
|
|
6871
|
+
*/
|
|
6872
|
+
readonly translateHospitalSpecialtyCommand?: TranslateHospitalSpecialtyCommand;
|
|
6873
|
+
}
|
|
6784
6874
|
/**
|
|
6785
6875
|
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesPost operation in HospitalsApi.
|
|
6786
6876
|
* @export
|
|
@@ -7593,6 +7683,37 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
7593
7683
|
*/
|
|
7594
7684
|
readonly includeCurrent?: boolean;
|
|
7595
7685
|
}
|
|
7686
|
+
/**
|
|
7687
|
+
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost operation in HospitalsApi.
|
|
7688
|
+
* @export
|
|
7689
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest
|
|
7690
|
+
*/
|
|
7691
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest {
|
|
7692
|
+
/**
|
|
7693
|
+
*
|
|
7694
|
+
* @type {string}
|
|
7695
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost
|
|
7696
|
+
*/
|
|
7697
|
+
readonly hospitalId: string;
|
|
7698
|
+
/**
|
|
7699
|
+
*
|
|
7700
|
+
* @type {string}
|
|
7701
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost
|
|
7702
|
+
*/
|
|
7703
|
+
readonly specialtyId: string;
|
|
7704
|
+
/**
|
|
7705
|
+
*
|
|
7706
|
+
* @type {string}
|
|
7707
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost
|
|
7708
|
+
*/
|
|
7709
|
+
readonly serviceId: string;
|
|
7710
|
+
/**
|
|
7711
|
+
*
|
|
7712
|
+
* @type {TranslateHospitalServiceCommand}
|
|
7713
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost
|
|
7714
|
+
*/
|
|
7715
|
+
readonly translateHospitalServiceCommand?: TranslateHospitalServiceCommand;
|
|
7716
|
+
}
|
|
7596
7717
|
/**
|
|
7597
7718
|
* Request parameters for apiV1HospitalsHospitalIdTranslatePost operation in HospitalsApi.
|
|
7598
7719
|
* @export
|
|
@@ -8738,6 +8859,15 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
8738
8859
|
* @memberof HospitalsApi
|
|
8739
8860
|
*/
|
|
8740
8861
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
8862
|
+
/**
|
|
8863
|
+
*
|
|
8864
|
+
* @summary Translate hospitalSpecialty
|
|
8865
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest} requestParameters Request parameters.
|
|
8866
|
+
* @param {*} [options] Override http request option.
|
|
8867
|
+
* @throws {RequiredError}
|
|
8868
|
+
* @memberof HospitalsApi
|
|
8869
|
+
*/
|
|
8870
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
8741
8871
|
/**
|
|
8742
8872
|
*
|
|
8743
8873
|
* @summary Create HospitalSpecialty.
|
|
@@ -8918,6 +9048,15 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
8918
9048
|
* @memberof HospitalsApi
|
|
8919
9049
|
*/
|
|
8920
9050
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
9051
|
+
/**
|
|
9052
|
+
*
|
|
9053
|
+
* @summary Translate service
|
|
9054
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest} requestParameters Request parameters.
|
|
9055
|
+
* @param {*} [options] Override http request option.
|
|
9056
|
+
* @throws {RequiredError}
|
|
9057
|
+
* @memberof HospitalsApi
|
|
9058
|
+
*/
|
|
9059
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
8921
9060
|
/**
|
|
8922
9061
|
*
|
|
8923
9062
|
* @summary Translate hospital at once
|