ch-admin-api-client-typescript 5.2.4 → 5.2.7
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 +875 -28
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +1338 -72
- package/lib/api/survey-results-api.d.ts +12 -3
- package/lib/api/survey-results-api.d.ts.map +1 -1
- package/lib/api/survey-results-api.js +12 -6
- package/lib/models/create-policy-command.d.ts +74 -0
- package/lib/models/create-policy-command.d.ts.map +1 -0
- package/lib/models/create-policy-command.js +15 -0
- package/lib/models/footer-navigation-item-model.d.ts +61 -0
- package/lib/models/footer-navigation-item-model.d.ts.map +1 -0
- package/lib/models/footer-navigation-item-model.js +15 -0
- package/lib/models/index.d.ts +8 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +8 -0
- package/lib/models/policies-model.d.ts +33 -0
- package/lib/models/policies-model.d.ts.map +1 -0
- package/lib/models/policies-model.js +15 -0
- package/lib/models/policy-item-model.d.ts +68 -0
- package/lib/models/policy-item-model.d.ts.map +1 -0
- package/lib/models/policy-item-model.js +15 -0
- package/lib/models/policy-model.d.ts +124 -0
- package/lib/models/policy-model.d.ts.map +1 -0
- package/lib/models/policy-model.js +15 -0
- package/lib/models/save-footer-navigation-item-model.d.ts +49 -0
- package/lib/models/save-footer-navigation-item-model.d.ts.map +1 -0
- package/lib/models/save-footer-navigation-item-model.js +15 -0
- package/lib/models/save-footer-navigations-command.d.ts +26 -0
- package/lib/models/save-footer-navigations-command.d.ts.map +1 -0
- package/lib/models/save-footer-navigations-command.js +15 -0
- package/lib/models/update-policy-command.d.ts +80 -0
- package/lib/models/update-policy-command.d.ts.map +1 -0
- package/lib/models/update-policy-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +8 -0
- package/src/api/hospitals-api.ts +1592 -112
- package/src/api/survey-results-api.ts +20 -6
- package/src/models/create-policy-command.ts +81 -0
- package/src/models/footer-navigation-item-model.ts +66 -0
- package/src/models/index.ts +8 -0
- package/src/models/policies-model.ts +42 -0
- package/src/models/policy-item-model.ts +75 -0
- package/src/models/policy-model.ts +135 -0
- package/src/models/save-footer-navigation-item-model.ts +54 -0
- package/src/models/save-footer-navigations-command.ts +33 -0
- package/src/models/update-policy-command.ts +87 -0
package/src/api/hospitals-api.ts
CHANGED
|
@@ -59,8 +59,12 @@ import { CreateLandingCommand } from '../models';
|
|
|
59
59
|
// @ts-ignore
|
|
60
60
|
import { CreateMediaCommand } from '../models';
|
|
61
61
|
// @ts-ignore
|
|
62
|
+
import { CreatePolicyCommand } from '../models';
|
|
63
|
+
// @ts-ignore
|
|
62
64
|
import { DayOfWeek } from '../models';
|
|
63
65
|
// @ts-ignore
|
|
66
|
+
import { FooterNavigationItemModel } from '../models';
|
|
67
|
+
// @ts-ignore
|
|
64
68
|
import { HospitalAccreditationModel } from '../models';
|
|
65
69
|
// @ts-ignore
|
|
66
70
|
import { HospitalAccreditationsModel } from '../models';
|
|
@@ -109,12 +113,18 @@ import { MediaType } from '../models';
|
|
|
109
113
|
// @ts-ignore
|
|
110
114
|
import { MediasModel } from '../models';
|
|
111
115
|
// @ts-ignore
|
|
116
|
+
import { PoliciesModel } from '../models';
|
|
117
|
+
// @ts-ignore
|
|
118
|
+
import { PolicyModel } from '../models';
|
|
119
|
+
// @ts-ignore
|
|
112
120
|
import { ProblemDetails } from '../models';
|
|
113
121
|
// @ts-ignore
|
|
114
122
|
import { Procedure } from '../models';
|
|
115
123
|
// @ts-ignore
|
|
116
124
|
import { SaveAppointmentTimetableOverridesResultModel } from '../models';
|
|
117
125
|
// @ts-ignore
|
|
126
|
+
import { SaveFooterNavigationsCommand } from '../models';
|
|
127
|
+
// @ts-ignore
|
|
118
128
|
import { SaveHospitalAppointmentTimetableOverridesCommand } from '../models';
|
|
119
129
|
// @ts-ignore
|
|
120
130
|
import { SaveHospitalSpecialtyAppointmentTimetableOverridesCommand } from '../models';
|
|
@@ -151,6 +161,8 @@ import { UpdateLandingCommand } from '../models';
|
|
|
151
161
|
// @ts-ignore
|
|
152
162
|
import { UpdateMediaCommand } from '../models';
|
|
153
163
|
// @ts-ignore
|
|
164
|
+
import { UpdatePolicyCommand } from '../models';
|
|
165
|
+
// @ts-ignore
|
|
154
166
|
import { WorkingDayModel } from '../models';
|
|
155
167
|
// @ts-ignore
|
|
156
168
|
import { WorkingDaysModel } from '../models';
|
|
@@ -1746,6 +1758,232 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1746
1758
|
options: localVarRequestOptions,
|
|
1747
1759
|
};
|
|
1748
1760
|
},
|
|
1761
|
+
/**
|
|
1762
|
+
*
|
|
1763
|
+
* @summary Get footerNavigationItems
|
|
1764
|
+
* @param {string} hospitalId
|
|
1765
|
+
* @param {string} languageCode
|
|
1766
|
+
* @param {*} [options] Override http request option.
|
|
1767
|
+
* @throws {RequiredError}
|
|
1768
|
+
*/
|
|
1769
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet: async (hospitalId: string, languageCode: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1770
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
1771
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet', 'hospitalId', hospitalId)
|
|
1772
|
+
// verify required parameter 'languageCode' is not null or undefined
|
|
1773
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet', 'languageCode', languageCode)
|
|
1774
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/footernavigations/{languageCode}`
|
|
1775
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
1776
|
+
.replace(`{${"languageCode"}}`, encodeURIComponent(String(languageCode)));
|
|
1777
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1778
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1779
|
+
let baseOptions;
|
|
1780
|
+
if (configuration) {
|
|
1781
|
+
baseOptions = configuration.baseOptions;
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
1785
|
+
const localVarHeaderParameter = {} as any;
|
|
1786
|
+
const localVarQueryParameter = {} as any;
|
|
1787
|
+
|
|
1788
|
+
// authentication oauth2 required
|
|
1789
|
+
// oauth required
|
|
1790
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
1791
|
+
|
|
1792
|
+
|
|
1793
|
+
|
|
1794
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1795
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1796
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1797
|
+
|
|
1798
|
+
return {
|
|
1799
|
+
url: toPathString(localVarUrlObj),
|
|
1800
|
+
options: localVarRequestOptions,
|
|
1801
|
+
};
|
|
1802
|
+
},
|
|
1803
|
+
/**
|
|
1804
|
+
*
|
|
1805
|
+
* @summary Delete footerNavigationItem
|
|
1806
|
+
* @param {string} hospitalId
|
|
1807
|
+
* @param {string} languageCode
|
|
1808
|
+
* @param {string} id
|
|
1809
|
+
* @param {*} [options] Override http request option.
|
|
1810
|
+
* @throws {RequiredError}
|
|
1811
|
+
*/
|
|
1812
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete: async (hospitalId: string, languageCode: string, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1813
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
1814
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete', 'hospitalId', hospitalId)
|
|
1815
|
+
// verify required parameter 'languageCode' is not null or undefined
|
|
1816
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete', 'languageCode', languageCode)
|
|
1817
|
+
// verify required parameter 'id' is not null or undefined
|
|
1818
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete', 'id', id)
|
|
1819
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/footernavigations/{languageCode}/{id}`
|
|
1820
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
1821
|
+
.replace(`{${"languageCode"}}`, encodeURIComponent(String(languageCode)))
|
|
1822
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
1823
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1824
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1825
|
+
let baseOptions;
|
|
1826
|
+
if (configuration) {
|
|
1827
|
+
baseOptions = configuration.baseOptions;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
1831
|
+
const localVarHeaderParameter = {} as any;
|
|
1832
|
+
const localVarQueryParameter = {} as any;
|
|
1833
|
+
|
|
1834
|
+
// authentication oauth2 required
|
|
1835
|
+
// oauth required
|
|
1836
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1841
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1842
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1843
|
+
|
|
1844
|
+
return {
|
|
1845
|
+
url: toPathString(localVarUrlObj),
|
|
1846
|
+
options: localVarRequestOptions,
|
|
1847
|
+
};
|
|
1848
|
+
},
|
|
1849
|
+
/**
|
|
1850
|
+
*
|
|
1851
|
+
* @summary Get footerNavigationItem by Id
|
|
1852
|
+
* @param {string} hospitalId
|
|
1853
|
+
* @param {string} languageCode
|
|
1854
|
+
* @param {string} id
|
|
1855
|
+
* @param {*} [options] Override http request option.
|
|
1856
|
+
* @throws {RequiredError}
|
|
1857
|
+
*/
|
|
1858
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet: async (hospitalId: string, languageCode: string, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1859
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
1860
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet', 'hospitalId', hospitalId)
|
|
1861
|
+
// verify required parameter 'languageCode' is not null or undefined
|
|
1862
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet', 'languageCode', languageCode)
|
|
1863
|
+
// verify required parameter 'id' is not null or undefined
|
|
1864
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet', 'id', id)
|
|
1865
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/footernavigations/{languageCode}/{id}`
|
|
1866
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
1867
|
+
.replace(`{${"languageCode"}}`, encodeURIComponent(String(languageCode)))
|
|
1868
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
1869
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1870
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1871
|
+
let baseOptions;
|
|
1872
|
+
if (configuration) {
|
|
1873
|
+
baseOptions = configuration.baseOptions;
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
1877
|
+
const localVarHeaderParameter = {} as any;
|
|
1878
|
+
const localVarQueryParameter = {} as any;
|
|
1879
|
+
|
|
1880
|
+
// authentication oauth2 required
|
|
1881
|
+
// oauth required
|
|
1882
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
1883
|
+
|
|
1884
|
+
|
|
1885
|
+
|
|
1886
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1887
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1888
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1889
|
+
|
|
1890
|
+
return {
|
|
1891
|
+
url: toPathString(localVarUrlObj),
|
|
1892
|
+
options: localVarRequestOptions,
|
|
1893
|
+
};
|
|
1894
|
+
},
|
|
1895
|
+
/**
|
|
1896
|
+
*
|
|
1897
|
+
* @summary Get footerNavigationItems by ParentId
|
|
1898
|
+
* @param {string} hospitalId
|
|
1899
|
+
* @param {string} languageCode
|
|
1900
|
+
* @param {string} parentId
|
|
1901
|
+
* @param {*} [options] Override http request option.
|
|
1902
|
+
* @throws {RequiredError}
|
|
1903
|
+
*/
|
|
1904
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet: async (hospitalId: string, languageCode: string, parentId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1905
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
1906
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet', 'hospitalId', hospitalId)
|
|
1907
|
+
// verify required parameter 'languageCode' is not null or undefined
|
|
1908
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet', 'languageCode', languageCode)
|
|
1909
|
+
// verify required parameter 'parentId' is not null or undefined
|
|
1910
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet', 'parentId', parentId)
|
|
1911
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/footernavigations/{languageCode}/{parentId}/subitems`
|
|
1912
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
1913
|
+
.replace(`{${"languageCode"}}`, encodeURIComponent(String(languageCode)))
|
|
1914
|
+
.replace(`{${"parentId"}}`, encodeURIComponent(String(parentId)));
|
|
1915
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1916
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1917
|
+
let baseOptions;
|
|
1918
|
+
if (configuration) {
|
|
1919
|
+
baseOptions = configuration.baseOptions;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
1923
|
+
const localVarHeaderParameter = {} as any;
|
|
1924
|
+
const localVarQueryParameter = {} as any;
|
|
1925
|
+
|
|
1926
|
+
// authentication oauth2 required
|
|
1927
|
+
// oauth required
|
|
1928
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
1929
|
+
|
|
1930
|
+
|
|
1931
|
+
|
|
1932
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1933
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1934
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1935
|
+
|
|
1936
|
+
return {
|
|
1937
|
+
url: toPathString(localVarUrlObj),
|
|
1938
|
+
options: localVarRequestOptions,
|
|
1939
|
+
};
|
|
1940
|
+
},
|
|
1941
|
+
/**
|
|
1942
|
+
*
|
|
1943
|
+
* @summary Save footerNavigationItem
|
|
1944
|
+
* @param {string} hospitalId
|
|
1945
|
+
* @param {string} languageCode
|
|
1946
|
+
* @param {SaveFooterNavigationsCommand} [saveFooterNavigationsCommand]
|
|
1947
|
+
* @param {*} [options] Override http request option.
|
|
1948
|
+
* @throws {RequiredError}
|
|
1949
|
+
*/
|
|
1950
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost: async (hospitalId: string, languageCode: string, saveFooterNavigationsCommand?: SaveFooterNavigationsCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1951
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
1952
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost', 'hospitalId', hospitalId)
|
|
1953
|
+
// verify required parameter 'languageCode' is not null or undefined
|
|
1954
|
+
assertParamExists('apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost', 'languageCode', languageCode)
|
|
1955
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/footernavigations/{languageCode}`
|
|
1956
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
1957
|
+
.replace(`{${"languageCode"}}`, encodeURIComponent(String(languageCode)));
|
|
1958
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1959
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1960
|
+
let baseOptions;
|
|
1961
|
+
if (configuration) {
|
|
1962
|
+
baseOptions = configuration.baseOptions;
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
1966
|
+
const localVarHeaderParameter = {} as any;
|
|
1967
|
+
const localVarQueryParameter = {} as any;
|
|
1968
|
+
|
|
1969
|
+
// authentication oauth2 required
|
|
1970
|
+
// oauth required
|
|
1971
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
1972
|
+
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1976
|
+
|
|
1977
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1978
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1979
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1980
|
+
localVarRequestOptions.data = serializeDataIfNeeded(saveFooterNavigationsCommand, localVarRequestOptions, configuration)
|
|
1981
|
+
|
|
1982
|
+
return {
|
|
1983
|
+
url: toPathString(localVarUrlObj),
|
|
1984
|
+
options: localVarRequestOptions,
|
|
1985
|
+
};
|
|
1986
|
+
},
|
|
1749
1987
|
/**
|
|
1750
1988
|
*
|
|
1751
1989
|
* @summary Get Hospital.
|
|
@@ -2816,16 +3054,22 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2816
3054
|
},
|
|
2817
3055
|
/**
|
|
2818
3056
|
*
|
|
2819
|
-
* @summary
|
|
3057
|
+
* @summary Get all policies
|
|
2820
3058
|
* @param {string} hospitalId
|
|
2821
|
-
* @param {
|
|
3059
|
+
* @param {string} [name]
|
|
3060
|
+
* @param {string} [slug]
|
|
3061
|
+
* @param {string} [languageCode]
|
|
3062
|
+
* @param {boolean} [showHidden]
|
|
3063
|
+
* @param {number} [page]
|
|
3064
|
+
* @param {number} [limit]
|
|
3065
|
+
* @param {Date} [lastRetrieved]
|
|
2822
3066
|
* @param {*} [options] Override http request option.
|
|
2823
3067
|
* @throws {RequiredError}
|
|
2824
3068
|
*/
|
|
2825
|
-
|
|
3069
|
+
apiV1HospitalsHospitalIdPoliciesGet: async (hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2826
3070
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
2827
|
-
assertParamExists('
|
|
2828
|
-
const localVarPath = `/api/v1/hospitals/{hospitalId}`
|
|
3071
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesGet', 'hospitalId', hospitalId)
|
|
3072
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies`
|
|
2829
3073
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
2830
3074
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2831
3075
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -2834,7 +3078,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2834
3078
|
baseOptions = configuration.baseOptions;
|
|
2835
3079
|
}
|
|
2836
3080
|
|
|
2837
|
-
const localVarRequestOptions = { method: '
|
|
3081
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
2838
3082
|
const localVarHeaderParameter = {} as any;
|
|
2839
3083
|
const localVarQueryParameter = {} as any;
|
|
2840
3084
|
|
|
@@ -2842,14 +3086,41 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2842
3086
|
// oauth required
|
|
2843
3087
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
2844
3088
|
|
|
3089
|
+
if (name !== undefined) {
|
|
3090
|
+
localVarQueryParameter['Name'] = name;
|
|
3091
|
+
}
|
|
2845
3092
|
|
|
2846
|
-
|
|
2847
|
-
|
|
3093
|
+
if (slug !== undefined) {
|
|
3094
|
+
localVarQueryParameter['Slug'] = slug;
|
|
3095
|
+
}
|
|
3096
|
+
|
|
3097
|
+
if (languageCode !== undefined) {
|
|
3098
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
3099
|
+
}
|
|
3100
|
+
|
|
3101
|
+
if (showHidden !== undefined) {
|
|
3102
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3105
|
+
if (page !== undefined) {
|
|
3106
|
+
localVarQueryParameter['page'] = page;
|
|
3107
|
+
}
|
|
2848
3108
|
|
|
3109
|
+
if (limit !== undefined) {
|
|
3110
|
+
localVarQueryParameter['limit'] = limit;
|
|
3111
|
+
}
|
|
3112
|
+
|
|
3113
|
+
if (lastRetrieved !== undefined) {
|
|
3114
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
3115
|
+
(lastRetrieved as any).toISOString() :
|
|
3116
|
+
lastRetrieved;
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
|
|
3120
|
+
|
|
2849
3121
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2850
3122
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2851
3123
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2852
|
-
localVarRequestOptions.data = serializeDataIfNeeded(updateHospitalCommand, localVarRequestOptions, configuration)
|
|
2853
3124
|
|
|
2854
3125
|
return {
|
|
2855
3126
|
url: toPathString(localVarUrlObj),
|
|
@@ -2858,16 +3129,21 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2858
3129
|
},
|
|
2859
3130
|
/**
|
|
2860
3131
|
*
|
|
2861
|
-
* @summary Delete
|
|
3132
|
+
* @summary Delete policy
|
|
2862
3133
|
* @param {string} hospitalId
|
|
3134
|
+
* @param {string} policyId
|
|
3135
|
+
* @param {boolean} [isPermanent]
|
|
2863
3136
|
* @param {*} [options] Override http request option.
|
|
2864
3137
|
* @throws {RequiredError}
|
|
2865
3138
|
*/
|
|
2866
|
-
|
|
3139
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdDelete: async (hospitalId: string, policyId: string, isPermanent?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2867
3140
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
2868
|
-
assertParamExists('
|
|
2869
|
-
|
|
2870
|
-
|
|
3141
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdDelete', 'hospitalId', hospitalId)
|
|
3142
|
+
// verify required parameter 'policyId' is not null or undefined
|
|
3143
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdDelete', 'policyId', policyId)
|
|
3144
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies/{policyId}`
|
|
3145
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3146
|
+
.replace(`{${"policyId"}}`, encodeURIComponent(String(policyId)));
|
|
2871
3147
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2872
3148
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2873
3149
|
let baseOptions;
|
|
@@ -2875,7 +3151,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2875
3151
|
baseOptions = configuration.baseOptions;
|
|
2876
3152
|
}
|
|
2877
3153
|
|
|
2878
|
-
const localVarRequestOptions = { method: '
|
|
3154
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
2879
3155
|
const localVarHeaderParameter = {} as any;
|
|
2880
3156
|
const localVarQueryParameter = {} as any;
|
|
2881
3157
|
|
|
@@ -2883,6 +3159,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2883
3159
|
// oauth required
|
|
2884
3160
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
2885
3161
|
|
|
3162
|
+
if (isPermanent !== undefined) {
|
|
3163
|
+
localVarQueryParameter['isPermanent'] = isPermanent;
|
|
3164
|
+
}
|
|
3165
|
+
|
|
2886
3166
|
|
|
2887
3167
|
|
|
2888
3168
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2896,16 +3176,273 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2896
3176
|
},
|
|
2897
3177
|
/**
|
|
2898
3178
|
*
|
|
2899
|
-
* @summary
|
|
3179
|
+
* @summary Get policy
|
|
2900
3180
|
* @param {string} hospitalId
|
|
2901
|
-
* @param {
|
|
3181
|
+
* @param {string} policyId
|
|
3182
|
+
* @param {string} [languageCode]
|
|
2902
3183
|
* @param {*} [options] Override http request option.
|
|
2903
3184
|
* @throws {RequiredError}
|
|
2904
3185
|
*/
|
|
2905
|
-
|
|
3186
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdGet: async (hospitalId: string, policyId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2906
3187
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
2907
|
-
assertParamExists('
|
|
2908
|
-
|
|
3188
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdGet', 'hospitalId', hospitalId)
|
|
3189
|
+
// verify required parameter 'policyId' is not null or undefined
|
|
3190
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdGet', 'policyId', policyId)
|
|
3191
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies/{policyId}`
|
|
3192
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3193
|
+
.replace(`{${"policyId"}}`, encodeURIComponent(String(policyId)));
|
|
3194
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3195
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3196
|
+
let baseOptions;
|
|
3197
|
+
if (configuration) {
|
|
3198
|
+
baseOptions = configuration.baseOptions;
|
|
3199
|
+
}
|
|
3200
|
+
|
|
3201
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3202
|
+
const localVarHeaderParameter = {} as any;
|
|
3203
|
+
const localVarQueryParameter = {} as any;
|
|
3204
|
+
|
|
3205
|
+
// authentication oauth2 required
|
|
3206
|
+
// oauth required
|
|
3207
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3208
|
+
|
|
3209
|
+
if (languageCode !== undefined) {
|
|
3210
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3213
|
+
|
|
3214
|
+
|
|
3215
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3216
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3217
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3218
|
+
|
|
3219
|
+
return {
|
|
3220
|
+
url: toPathString(localVarUrlObj),
|
|
3221
|
+
options: localVarRequestOptions,
|
|
3222
|
+
};
|
|
3223
|
+
},
|
|
3224
|
+
/**
|
|
3225
|
+
*
|
|
3226
|
+
* @summary Update policy
|
|
3227
|
+
* @param {string} hospitalId
|
|
3228
|
+
* @param {string} policyId
|
|
3229
|
+
* @param {UpdatePolicyCommand} [updatePolicyCommand]
|
|
3230
|
+
* @param {*} [options] Override http request option.
|
|
3231
|
+
* @throws {RequiredError}
|
|
3232
|
+
*/
|
|
3233
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdPut: async (hospitalId: string, policyId: string, updatePolicyCommand?: UpdatePolicyCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3234
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3235
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdPut', 'hospitalId', hospitalId)
|
|
3236
|
+
// verify required parameter 'policyId' is not null or undefined
|
|
3237
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdPut', 'policyId', policyId)
|
|
3238
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies/{policyId}`
|
|
3239
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3240
|
+
.replace(`{${"policyId"}}`, encodeURIComponent(String(policyId)));
|
|
3241
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3242
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3243
|
+
let baseOptions;
|
|
3244
|
+
if (configuration) {
|
|
3245
|
+
baseOptions = configuration.baseOptions;
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
3249
|
+
const localVarHeaderParameter = {} as any;
|
|
3250
|
+
const localVarQueryParameter = {} as any;
|
|
3251
|
+
|
|
3252
|
+
// authentication oauth2 required
|
|
3253
|
+
// oauth required
|
|
3254
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3255
|
+
|
|
3256
|
+
|
|
3257
|
+
|
|
3258
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3259
|
+
|
|
3260
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3261
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3262
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3263
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updatePolicyCommand, localVarRequestOptions, configuration)
|
|
3264
|
+
|
|
3265
|
+
return {
|
|
3266
|
+
url: toPathString(localVarUrlObj),
|
|
3267
|
+
options: localVarRequestOptions,
|
|
3268
|
+
};
|
|
3269
|
+
},
|
|
3270
|
+
/**
|
|
3271
|
+
*
|
|
3272
|
+
* @summary Reactive policy
|
|
3273
|
+
* @param {string} hospitalId
|
|
3274
|
+
* @param {string} policyId
|
|
3275
|
+
* @param {*} [options] Override http request option.
|
|
3276
|
+
* @throws {RequiredError}
|
|
3277
|
+
*/
|
|
3278
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut: async (hospitalId: string, policyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3279
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3280
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut', 'hospitalId', hospitalId)
|
|
3281
|
+
// verify required parameter 'policyId' is not null or undefined
|
|
3282
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut', 'policyId', policyId)
|
|
3283
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies/{policyId}/reactive`
|
|
3284
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3285
|
+
.replace(`{${"policyId"}}`, encodeURIComponent(String(policyId)));
|
|
3286
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3287
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3288
|
+
let baseOptions;
|
|
3289
|
+
if (configuration) {
|
|
3290
|
+
baseOptions = configuration.baseOptions;
|
|
3291
|
+
}
|
|
3292
|
+
|
|
3293
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
3294
|
+
const localVarHeaderParameter = {} as any;
|
|
3295
|
+
const localVarQueryParameter = {} as any;
|
|
3296
|
+
|
|
3297
|
+
// authentication oauth2 required
|
|
3298
|
+
// oauth required
|
|
3299
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3300
|
+
|
|
3301
|
+
|
|
3302
|
+
|
|
3303
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3304
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3305
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3306
|
+
|
|
3307
|
+
return {
|
|
3308
|
+
url: toPathString(localVarUrlObj),
|
|
3309
|
+
options: localVarRequestOptions,
|
|
3310
|
+
};
|
|
3311
|
+
},
|
|
3312
|
+
/**
|
|
3313
|
+
*
|
|
3314
|
+
* @summary Create policy
|
|
3315
|
+
* @param {string} hospitalId
|
|
3316
|
+
* @param {CreatePolicyCommand} [createPolicyCommand]
|
|
3317
|
+
* @param {*} [options] Override http request option.
|
|
3318
|
+
* @throws {RequiredError}
|
|
3319
|
+
*/
|
|
3320
|
+
apiV1HospitalsHospitalIdPoliciesPost: async (hospitalId: string, createPolicyCommand?: CreatePolicyCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3321
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3322
|
+
assertParamExists('apiV1HospitalsHospitalIdPoliciesPost', 'hospitalId', hospitalId)
|
|
3323
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/policies`
|
|
3324
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
3325
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3326
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3327
|
+
let baseOptions;
|
|
3328
|
+
if (configuration) {
|
|
3329
|
+
baseOptions = configuration.baseOptions;
|
|
3330
|
+
}
|
|
3331
|
+
|
|
3332
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3333
|
+
const localVarHeaderParameter = {} as any;
|
|
3334
|
+
const localVarQueryParameter = {} as any;
|
|
3335
|
+
|
|
3336
|
+
// authentication oauth2 required
|
|
3337
|
+
// oauth required
|
|
3338
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3339
|
+
|
|
3340
|
+
|
|
3341
|
+
|
|
3342
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3343
|
+
|
|
3344
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3345
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3346
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3347
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createPolicyCommand, localVarRequestOptions, configuration)
|
|
3348
|
+
|
|
3349
|
+
return {
|
|
3350
|
+
url: toPathString(localVarUrlObj),
|
|
3351
|
+
options: localVarRequestOptions,
|
|
3352
|
+
};
|
|
3353
|
+
},
|
|
3354
|
+
/**
|
|
3355
|
+
*
|
|
3356
|
+
* @summary Update Hospital.
|
|
3357
|
+
* @param {string} hospitalId
|
|
3358
|
+
* @param {UpdateHospitalCommand} [updateHospitalCommand]
|
|
3359
|
+
* @param {*} [options] Override http request option.
|
|
3360
|
+
* @throws {RequiredError}
|
|
3361
|
+
*/
|
|
3362
|
+
apiV1HospitalsHospitalIdPut: async (hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3363
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3364
|
+
assertParamExists('apiV1HospitalsHospitalIdPut', 'hospitalId', hospitalId)
|
|
3365
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}`
|
|
3366
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
3367
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3368
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3369
|
+
let baseOptions;
|
|
3370
|
+
if (configuration) {
|
|
3371
|
+
baseOptions = configuration.baseOptions;
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3374
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
3375
|
+
const localVarHeaderParameter = {} as any;
|
|
3376
|
+
const localVarQueryParameter = {} as any;
|
|
3377
|
+
|
|
3378
|
+
// authentication oauth2 required
|
|
3379
|
+
// oauth required
|
|
3380
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3381
|
+
|
|
3382
|
+
|
|
3383
|
+
|
|
3384
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3385
|
+
|
|
3386
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3387
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3388
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3389
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateHospitalCommand, localVarRequestOptions, configuration)
|
|
3390
|
+
|
|
3391
|
+
return {
|
|
3392
|
+
url: toPathString(localVarUrlObj),
|
|
3393
|
+
options: localVarRequestOptions,
|
|
3394
|
+
};
|
|
3395
|
+
},
|
|
3396
|
+
/**
|
|
3397
|
+
*
|
|
3398
|
+
* @summary Delete HospitalSpecialty.
|
|
3399
|
+
* @param {string} hospitalId
|
|
3400
|
+
* @param {*} [options] Override http request option.
|
|
3401
|
+
* @throws {RequiredError}
|
|
3402
|
+
*/
|
|
3403
|
+
apiV1HospitalsHospitalIdReactivePut: async (hospitalId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3404
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3405
|
+
assertParamExists('apiV1HospitalsHospitalIdReactivePut', 'hospitalId', hospitalId)
|
|
3406
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/reactive`
|
|
3407
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
3408
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3409
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3410
|
+
let baseOptions;
|
|
3411
|
+
if (configuration) {
|
|
3412
|
+
baseOptions = configuration.baseOptions;
|
|
3413
|
+
}
|
|
3414
|
+
|
|
3415
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
3416
|
+
const localVarHeaderParameter = {} as any;
|
|
3417
|
+
const localVarQueryParameter = {} as any;
|
|
3418
|
+
|
|
3419
|
+
// authentication oauth2 required
|
|
3420
|
+
// oauth required
|
|
3421
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3422
|
+
|
|
3423
|
+
|
|
3424
|
+
|
|
3425
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3426
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3427
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3428
|
+
|
|
3429
|
+
return {
|
|
3430
|
+
url: toPathString(localVarUrlObj),
|
|
3431
|
+
options: localVarRequestOptions,
|
|
3432
|
+
};
|
|
3433
|
+
},
|
|
3434
|
+
/**
|
|
3435
|
+
*
|
|
3436
|
+
* @summary Revalidate hospital
|
|
3437
|
+
* @param {string} hospitalId
|
|
3438
|
+
* @param {boolean} [includeCurrent]
|
|
3439
|
+
* @param {*} [options] Override http request option.
|
|
3440
|
+
* @throws {RequiredError}
|
|
3441
|
+
*/
|
|
3442
|
+
apiV1HospitalsHospitalIdRevalidatePost: async (hospitalId: string, includeCurrent?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3443
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3444
|
+
assertParamExists('apiV1HospitalsHospitalIdRevalidatePost', 'hospitalId', hospitalId)
|
|
3445
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/revalidate`
|
|
2909
3446
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
2910
3447
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2911
3448
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -3035,14 +3572,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3035
3572
|
* @param {*} [options] Override http request option.
|
|
3036
3573
|
* @throws {RequiredError}
|
|
3037
3574
|
*/
|
|
3038
|
-
|
|
3575
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet: async (hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3039
3576
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
3040
|
-
assertParamExists('
|
|
3577
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet', 'hospitalId', hospitalId)
|
|
3041
3578
|
// verify required parameter 'containerId' is not null or undefined
|
|
3042
|
-
assertParamExists('
|
|
3579
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet', 'containerId', containerId)
|
|
3043
3580
|
// verify required parameter 'fileId' is not null or undefined
|
|
3044
|
-
assertParamExists('
|
|
3045
|
-
const localVarPath = `/api/v1/hospitals/{hospitalId}/securecontainers/{containerId}/files/{fileId}/
|
|
3581
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet', 'fileId', fileId)
|
|
3582
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securecontainers/{containerId}/files/{fileId}/read`
|
|
3046
3583
|
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3047
3584
|
.replace(`{${"containerId"}}`, encodeURIComponent(String(containerId)))
|
|
3048
3585
|
.replace(`{${"fileId"}}`, encodeURIComponent(String(fileId)));
|
|
@@ -3187,15 +3724,95 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3187
3724
|
localVarQueryParameter['page'] = page;
|
|
3188
3725
|
}
|
|
3189
3726
|
|
|
3190
|
-
if (limit !== undefined) {
|
|
3191
|
-
localVarQueryParameter['limit'] = limit;
|
|
3192
|
-
}
|
|
3727
|
+
if (limit !== undefined) {
|
|
3728
|
+
localVarQueryParameter['limit'] = limit;
|
|
3729
|
+
}
|
|
3730
|
+
|
|
3731
|
+
if (lastRetrieved !== undefined) {
|
|
3732
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
3733
|
+
(lastRetrieved as any).toISOString() :
|
|
3734
|
+
lastRetrieved;
|
|
3735
|
+
}
|
|
3736
|
+
|
|
3737
|
+
|
|
3738
|
+
|
|
3739
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3740
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3741
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3742
|
+
|
|
3743
|
+
return {
|
|
3744
|
+
url: toPathString(localVarUrlObj),
|
|
3745
|
+
options: localVarRequestOptions,
|
|
3746
|
+
};
|
|
3747
|
+
},
|
|
3748
|
+
/**
|
|
3749
|
+
*
|
|
3750
|
+
* @summary Create secure file container
|
|
3751
|
+
* @param {string} hospitalId
|
|
3752
|
+
* @param {*} [options] Override http request option.
|
|
3753
|
+
* @throws {RequiredError}
|
|
3754
|
+
*/
|
|
3755
|
+
apiV1HospitalsHospitalIdSecurecontainersPost: async (hospitalId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3756
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3757
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurecontainersPost', 'hospitalId', hospitalId)
|
|
3758
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securecontainers`
|
|
3759
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
3760
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3761
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3762
|
+
let baseOptions;
|
|
3763
|
+
if (configuration) {
|
|
3764
|
+
baseOptions = configuration.baseOptions;
|
|
3765
|
+
}
|
|
3766
|
+
|
|
3767
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3768
|
+
const localVarHeaderParameter = {} as any;
|
|
3769
|
+
const localVarQueryParameter = {} as any;
|
|
3770
|
+
|
|
3771
|
+
// authentication oauth2 required
|
|
3772
|
+
// oauth required
|
|
3773
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3774
|
+
|
|
3775
|
+
|
|
3776
|
+
|
|
3777
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3778
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3779
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3780
|
+
|
|
3781
|
+
return {
|
|
3782
|
+
url: toPathString(localVarUrlObj),
|
|
3783
|
+
options: localVarRequestOptions,
|
|
3784
|
+
};
|
|
3785
|
+
},
|
|
3786
|
+
/**
|
|
3787
|
+
*
|
|
3788
|
+
* @summary Get file content by uri
|
|
3789
|
+
* @param {string} hospitalId
|
|
3790
|
+
* @param {string} uri
|
|
3791
|
+
* @param {*} [options] Override http request option.
|
|
3792
|
+
* @throws {RequiredError}
|
|
3793
|
+
*/
|
|
3794
|
+
apiV1HospitalsHospitalIdSecurefilesUriGet: async (hospitalId: string, uri: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3795
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3796
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurefilesUriGet', 'hospitalId', hospitalId)
|
|
3797
|
+
// verify required parameter 'uri' is not null or undefined
|
|
3798
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurefilesUriGet', 'uri', uri)
|
|
3799
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securefiles/{uri}`
|
|
3800
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3801
|
+
.replace(`{${"uri"}}`, encodeURIComponent(String(uri)));
|
|
3802
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3803
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3804
|
+
let baseOptions;
|
|
3805
|
+
if (configuration) {
|
|
3806
|
+
baseOptions = configuration.baseOptions;
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3810
|
+
const localVarHeaderParameter = {} as any;
|
|
3811
|
+
const localVarQueryParameter = {} as any;
|
|
3193
3812
|
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
lastRetrieved;
|
|
3198
|
-
}
|
|
3813
|
+
// authentication oauth2 required
|
|
3814
|
+
// oauth required
|
|
3815
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3199
3816
|
|
|
3200
3817
|
|
|
3201
3818
|
|
|
@@ -3210,16 +3827,21 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3210
3827
|
},
|
|
3211
3828
|
/**
|
|
3212
3829
|
*
|
|
3213
|
-
* @summary
|
|
3830
|
+
* @summary Get secure file url with read access by uri
|
|
3214
3831
|
* @param {string} hospitalId
|
|
3832
|
+
* @param {string} uri
|
|
3833
|
+
* @param {number} [minutesAvailableUntil]
|
|
3215
3834
|
* @param {*} [options] Override http request option.
|
|
3216
3835
|
* @throws {RequiredError}
|
|
3217
3836
|
*/
|
|
3218
|
-
|
|
3837
|
+
apiV1HospitalsHospitalIdSecurefilesUriReadGet: async (hospitalId: string, uri: string, minutesAvailableUntil?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3219
3838
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
3220
|
-
assertParamExists('
|
|
3221
|
-
|
|
3222
|
-
|
|
3839
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurefilesUriReadGet', 'hospitalId', hospitalId)
|
|
3840
|
+
// verify required parameter 'uri' is not null or undefined
|
|
3841
|
+
assertParamExists('apiV1HospitalsHospitalIdSecurefilesUriReadGet', 'uri', uri)
|
|
3842
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/securefiles/{uri}/read`
|
|
3843
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3844
|
+
.replace(`{${"uri"}}`, encodeURIComponent(String(uri)));
|
|
3223
3845
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3224
3846
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3225
3847
|
let baseOptions;
|
|
@@ -3227,7 +3849,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3227
3849
|
baseOptions = configuration.baseOptions;
|
|
3228
3850
|
}
|
|
3229
3851
|
|
|
3230
|
-
const localVarRequestOptions = { method: '
|
|
3852
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3231
3853
|
const localVarHeaderParameter = {} as any;
|
|
3232
3854
|
const localVarQueryParameter = {} as any;
|
|
3233
3855
|
|
|
@@ -3235,6 +3857,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3235
3857
|
// oauth required
|
|
3236
3858
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3237
3859
|
|
|
3860
|
+
if (minutesAvailableUntil !== undefined) {
|
|
3861
|
+
localVarQueryParameter['minutesAvailableUntil'] = minutesAvailableUntil;
|
|
3862
|
+
}
|
|
3863
|
+
|
|
3238
3864
|
|
|
3239
3865
|
|
|
3240
3866
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -6141,6 +6767,70 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
6141
6767
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdEvaluationsPost(hospitalId, createHospitalEvaluationCommand, options);
|
|
6142
6768
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6143
6769
|
},
|
|
6770
|
+
/**
|
|
6771
|
+
*
|
|
6772
|
+
* @summary Get footerNavigationItems
|
|
6773
|
+
* @param {string} hospitalId
|
|
6774
|
+
* @param {string} languageCode
|
|
6775
|
+
* @param {*} [options] Override http request option.
|
|
6776
|
+
* @throws {RequiredError}
|
|
6777
|
+
*/
|
|
6778
|
+
async apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FooterNavigationItemModel>>> {
|
|
6779
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet(hospitalId, languageCode, options);
|
|
6780
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6781
|
+
},
|
|
6782
|
+
/**
|
|
6783
|
+
*
|
|
6784
|
+
* @summary Delete footerNavigationItem
|
|
6785
|
+
* @param {string} hospitalId
|
|
6786
|
+
* @param {string} languageCode
|
|
6787
|
+
* @param {string} id
|
|
6788
|
+
* @param {*} [options] Override http request option.
|
|
6789
|
+
* @throws {RequiredError}
|
|
6790
|
+
*/
|
|
6791
|
+
async apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete(hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
6792
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete(hospitalId, languageCode, id, options);
|
|
6793
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6794
|
+
},
|
|
6795
|
+
/**
|
|
6796
|
+
*
|
|
6797
|
+
* @summary Get footerNavigationItem by Id
|
|
6798
|
+
* @param {string} hospitalId
|
|
6799
|
+
* @param {string} languageCode
|
|
6800
|
+
* @param {string} id
|
|
6801
|
+
* @param {*} [options] Override http request option.
|
|
6802
|
+
* @throws {RequiredError}
|
|
6803
|
+
*/
|
|
6804
|
+
async apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet(hospitalId: string, languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FooterNavigationItemModel>> {
|
|
6805
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet(hospitalId, languageCode, id, options);
|
|
6806
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6807
|
+
},
|
|
6808
|
+
/**
|
|
6809
|
+
*
|
|
6810
|
+
* @summary Get footerNavigationItems by ParentId
|
|
6811
|
+
* @param {string} hospitalId
|
|
6812
|
+
* @param {string} languageCode
|
|
6813
|
+
* @param {string} parentId
|
|
6814
|
+
* @param {*} [options] Override http request option.
|
|
6815
|
+
* @throws {RequiredError}
|
|
6816
|
+
*/
|
|
6817
|
+
async apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet(hospitalId: string, languageCode: string, parentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FooterNavigationItemModel>>> {
|
|
6818
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet(hospitalId, languageCode, parentId, options);
|
|
6819
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6820
|
+
},
|
|
6821
|
+
/**
|
|
6822
|
+
*
|
|
6823
|
+
* @summary Save footerNavigationItem
|
|
6824
|
+
* @param {string} hospitalId
|
|
6825
|
+
* @param {string} languageCode
|
|
6826
|
+
* @param {SaveFooterNavigationsCommand} [saveFooterNavigationsCommand]
|
|
6827
|
+
* @param {*} [options] Override http request option.
|
|
6828
|
+
* @throws {RequiredError}
|
|
6829
|
+
*/
|
|
6830
|
+
async apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost(hospitalId: string, languageCode: string, saveFooterNavigationsCommand?: SaveFooterNavigationsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FooterNavigationItemModel>> {
|
|
6831
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost(hospitalId, languageCode, saveFooterNavigationsCommand, options);
|
|
6832
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6833
|
+
},
|
|
6144
6834
|
/**
|
|
6145
6835
|
*
|
|
6146
6836
|
* @summary Get Hospital.
|
|
@@ -6432,6 +7122,87 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
6432
7122
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdMediasPost(hospitalId, createMediaCommand, options);
|
|
6433
7123
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6434
7124
|
},
|
|
7125
|
+
/**
|
|
7126
|
+
*
|
|
7127
|
+
* @summary Get all policies
|
|
7128
|
+
* @param {string} hospitalId
|
|
7129
|
+
* @param {string} [name]
|
|
7130
|
+
* @param {string} [slug]
|
|
7131
|
+
* @param {string} [languageCode]
|
|
7132
|
+
* @param {boolean} [showHidden]
|
|
7133
|
+
* @param {number} [page]
|
|
7134
|
+
* @param {number} [limit]
|
|
7135
|
+
* @param {Date} [lastRetrieved]
|
|
7136
|
+
* @param {*} [options] Override http request option.
|
|
7137
|
+
* @throws {RequiredError}
|
|
7138
|
+
*/
|
|
7139
|
+
async apiV1HospitalsHospitalIdPoliciesGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoliciesModel>> {
|
|
7140
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPoliciesGet(hospitalId, name, slug, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
7141
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7142
|
+
},
|
|
7143
|
+
/**
|
|
7144
|
+
*
|
|
7145
|
+
* @summary Delete policy
|
|
7146
|
+
* @param {string} hospitalId
|
|
7147
|
+
* @param {string} policyId
|
|
7148
|
+
* @param {boolean} [isPermanent]
|
|
7149
|
+
* @param {*} [options] Override http request option.
|
|
7150
|
+
* @throws {RequiredError}
|
|
7151
|
+
*/
|
|
7152
|
+
async apiV1HospitalsHospitalIdPoliciesPolicyIdDelete(hospitalId: string, policyId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
7153
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPoliciesPolicyIdDelete(hospitalId, policyId, isPermanent, options);
|
|
7154
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7155
|
+
},
|
|
7156
|
+
/**
|
|
7157
|
+
*
|
|
7158
|
+
* @summary Get policy
|
|
7159
|
+
* @param {string} hospitalId
|
|
7160
|
+
* @param {string} policyId
|
|
7161
|
+
* @param {string} [languageCode]
|
|
7162
|
+
* @param {*} [options] Override http request option.
|
|
7163
|
+
* @throws {RequiredError}
|
|
7164
|
+
*/
|
|
7165
|
+
async apiV1HospitalsHospitalIdPoliciesPolicyIdGet(hospitalId: string, policyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyModel>> {
|
|
7166
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPoliciesPolicyIdGet(hospitalId, policyId, languageCode, options);
|
|
7167
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7168
|
+
},
|
|
7169
|
+
/**
|
|
7170
|
+
*
|
|
7171
|
+
* @summary Update policy
|
|
7172
|
+
* @param {string} hospitalId
|
|
7173
|
+
* @param {string} policyId
|
|
7174
|
+
* @param {UpdatePolicyCommand} [updatePolicyCommand]
|
|
7175
|
+
* @param {*} [options] Override http request option.
|
|
7176
|
+
* @throws {RequiredError}
|
|
7177
|
+
*/
|
|
7178
|
+
async apiV1HospitalsHospitalIdPoliciesPolicyIdPut(hospitalId: string, policyId: string, updatePolicyCommand?: UpdatePolicyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyModel>> {
|
|
7179
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPoliciesPolicyIdPut(hospitalId, policyId, updatePolicyCommand, options);
|
|
7180
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7181
|
+
},
|
|
7182
|
+
/**
|
|
7183
|
+
*
|
|
7184
|
+
* @summary Reactive policy
|
|
7185
|
+
* @param {string} hospitalId
|
|
7186
|
+
* @param {string} policyId
|
|
7187
|
+
* @param {*} [options] Override http request option.
|
|
7188
|
+
* @throws {RequiredError}
|
|
7189
|
+
*/
|
|
7190
|
+
async apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut(hospitalId: string, policyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
7191
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut(hospitalId, policyId, options);
|
|
7192
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7193
|
+
},
|
|
7194
|
+
/**
|
|
7195
|
+
*
|
|
7196
|
+
* @summary Create policy
|
|
7197
|
+
* @param {string} hospitalId
|
|
7198
|
+
* @param {CreatePolicyCommand} [createPolicyCommand]
|
|
7199
|
+
* @param {*} [options] Override http request option.
|
|
7200
|
+
* @throws {RequiredError}
|
|
7201
|
+
*/
|
|
7202
|
+
async apiV1HospitalsHospitalIdPoliciesPost(hospitalId: string, createPolicyCommand?: CreatePolicyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyModel>> {
|
|
7203
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPoliciesPost(hospitalId, createPolicyCommand, options);
|
|
7204
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7205
|
+
},
|
|
6435
7206
|
/**
|
|
6436
7207
|
*
|
|
6437
7208
|
* @summary Update Hospital.
|
|
@@ -6502,8 +7273,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
6502
7273
|
* @param {*} [options] Override http request option.
|
|
6503
7274
|
* @throws {RequiredError}
|
|
6504
7275
|
*/
|
|
6505
|
-
async
|
|
6506
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
7276
|
+
async apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet(hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
7277
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet(hospitalId, containerId, fileId, minutesAvailableUntil, options);
|
|
6507
7278
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6508
7279
|
},
|
|
6509
7280
|
/**
|
|
@@ -6550,6 +7321,31 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
6550
7321
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId, options);
|
|
6551
7322
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6552
7323
|
},
|
|
7324
|
+
/**
|
|
7325
|
+
*
|
|
7326
|
+
* @summary Get file content by uri
|
|
7327
|
+
* @param {string} hospitalId
|
|
7328
|
+
* @param {string} uri
|
|
7329
|
+
* @param {*} [options] Override http request option.
|
|
7330
|
+
* @throws {RequiredError}
|
|
7331
|
+
*/
|
|
7332
|
+
async apiV1HospitalsHospitalIdSecurefilesUriGet(hospitalId: string, uri: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
7333
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurefilesUriGet(hospitalId, uri, options);
|
|
7334
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7335
|
+
},
|
|
7336
|
+
/**
|
|
7337
|
+
*
|
|
7338
|
+
* @summary Get secure file url with read access by uri
|
|
7339
|
+
* @param {string} hospitalId
|
|
7340
|
+
* @param {string} uri
|
|
7341
|
+
* @param {number} [minutesAvailableUntil]
|
|
7342
|
+
* @param {*} [options] Override http request option.
|
|
7343
|
+
* @throws {RequiredError}
|
|
7344
|
+
*/
|
|
7345
|
+
async apiV1HospitalsHospitalIdSecurefilesUriReadGet(hospitalId: string, uri: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
7346
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSecurefilesUriReadGet(hospitalId, uri, minutesAvailableUntil, options);
|
|
7347
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
7348
|
+
},
|
|
6553
7349
|
/**
|
|
6554
7350
|
*
|
|
6555
7351
|
* @summary Get all HospitalSpecialties.
|
|
@@ -7595,6 +8391,65 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
7595
8391
|
apiV1HospitalsHospitalIdEvaluationsPost(hospitalId: string, createHospitalEvaluationCommand?: CreateHospitalEvaluationCommand, options?: any): AxiosPromise<HospitalEvaluationModel> {
|
|
7596
8392
|
return localVarFp.apiV1HospitalsHospitalIdEvaluationsPost(hospitalId, createHospitalEvaluationCommand, options).then((request) => request(axios, basePath));
|
|
7597
8393
|
},
|
|
8394
|
+
/**
|
|
8395
|
+
*
|
|
8396
|
+
* @summary Get footerNavigationItems
|
|
8397
|
+
* @param {string} hospitalId
|
|
8398
|
+
* @param {string} languageCode
|
|
8399
|
+
* @param {*} [options] Override http request option.
|
|
8400
|
+
* @throws {RequiredError}
|
|
8401
|
+
*/
|
|
8402
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet(hospitalId: string, languageCode: string, options?: any): AxiosPromise<Array<FooterNavigationItemModel>> {
|
|
8403
|
+
return localVarFp.apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet(hospitalId, languageCode, options).then((request) => request(axios, basePath));
|
|
8404
|
+
},
|
|
8405
|
+
/**
|
|
8406
|
+
*
|
|
8407
|
+
* @summary Delete footerNavigationItem
|
|
8408
|
+
* @param {string} hospitalId
|
|
8409
|
+
* @param {string} languageCode
|
|
8410
|
+
* @param {string} id
|
|
8411
|
+
* @param {*} [options] Override http request option.
|
|
8412
|
+
* @throws {RequiredError}
|
|
8413
|
+
*/
|
|
8414
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete(hospitalId: string, languageCode: string, id: string, options?: any): AxiosPromise<boolean> {
|
|
8415
|
+
return localVarFp.apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete(hospitalId, languageCode, id, options).then((request) => request(axios, basePath));
|
|
8416
|
+
},
|
|
8417
|
+
/**
|
|
8418
|
+
*
|
|
8419
|
+
* @summary Get footerNavigationItem by Id
|
|
8420
|
+
* @param {string} hospitalId
|
|
8421
|
+
* @param {string} languageCode
|
|
8422
|
+
* @param {string} id
|
|
8423
|
+
* @param {*} [options] Override http request option.
|
|
8424
|
+
* @throws {RequiredError}
|
|
8425
|
+
*/
|
|
8426
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet(hospitalId: string, languageCode: string, id: string, options?: any): AxiosPromise<FooterNavigationItemModel> {
|
|
8427
|
+
return localVarFp.apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet(hospitalId, languageCode, id, options).then((request) => request(axios, basePath));
|
|
8428
|
+
},
|
|
8429
|
+
/**
|
|
8430
|
+
*
|
|
8431
|
+
* @summary Get footerNavigationItems by ParentId
|
|
8432
|
+
* @param {string} hospitalId
|
|
8433
|
+
* @param {string} languageCode
|
|
8434
|
+
* @param {string} parentId
|
|
8435
|
+
* @param {*} [options] Override http request option.
|
|
8436
|
+
* @throws {RequiredError}
|
|
8437
|
+
*/
|
|
8438
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet(hospitalId: string, languageCode: string, parentId: string, options?: any): AxiosPromise<Array<FooterNavigationItemModel>> {
|
|
8439
|
+
return localVarFp.apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet(hospitalId, languageCode, parentId, options).then((request) => request(axios, basePath));
|
|
8440
|
+
},
|
|
8441
|
+
/**
|
|
8442
|
+
*
|
|
8443
|
+
* @summary Save footerNavigationItem
|
|
8444
|
+
* @param {string} hospitalId
|
|
8445
|
+
* @param {string} languageCode
|
|
8446
|
+
* @param {SaveFooterNavigationsCommand} [saveFooterNavigationsCommand]
|
|
8447
|
+
* @param {*} [options] Override http request option.
|
|
8448
|
+
* @throws {RequiredError}
|
|
8449
|
+
*/
|
|
8450
|
+
apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost(hospitalId: string, languageCode: string, saveFooterNavigationsCommand?: SaveFooterNavigationsCommand, options?: any): AxiosPromise<FooterNavigationItemModel> {
|
|
8451
|
+
return localVarFp.apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost(hospitalId, languageCode, saveFooterNavigationsCommand, options).then((request) => request(axios, basePath));
|
|
8452
|
+
},
|
|
7598
8453
|
/**
|
|
7599
8454
|
*
|
|
7600
8455
|
* @summary Get Hospital.
|
|
@@ -7861,8 +8716,83 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
7861
8716
|
* @param {*} [options] Override http request option.
|
|
7862
8717
|
* @throws {RequiredError}
|
|
7863
8718
|
*/
|
|
7864
|
-
apiV1HospitalsHospitalIdMediasPost(hospitalId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel> {
|
|
7865
|
-
return localVarFp.apiV1HospitalsHospitalIdMediasPost(hospitalId, createMediaCommand, options).then((request) => request(axios, basePath));
|
|
8719
|
+
apiV1HospitalsHospitalIdMediasPost(hospitalId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel> {
|
|
8720
|
+
return localVarFp.apiV1HospitalsHospitalIdMediasPost(hospitalId, createMediaCommand, options).then((request) => request(axios, basePath));
|
|
8721
|
+
},
|
|
8722
|
+
/**
|
|
8723
|
+
*
|
|
8724
|
+
* @summary Get all policies
|
|
8725
|
+
* @param {string} hospitalId
|
|
8726
|
+
* @param {string} [name]
|
|
8727
|
+
* @param {string} [slug]
|
|
8728
|
+
* @param {string} [languageCode]
|
|
8729
|
+
* @param {boolean} [showHidden]
|
|
8730
|
+
* @param {number} [page]
|
|
8731
|
+
* @param {number} [limit]
|
|
8732
|
+
* @param {Date} [lastRetrieved]
|
|
8733
|
+
* @param {*} [options] Override http request option.
|
|
8734
|
+
* @throws {RequiredError}
|
|
8735
|
+
*/
|
|
8736
|
+
apiV1HospitalsHospitalIdPoliciesGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<PoliciesModel> {
|
|
8737
|
+
return localVarFp.apiV1HospitalsHospitalIdPoliciesGet(hospitalId, name, slug, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
8738
|
+
},
|
|
8739
|
+
/**
|
|
8740
|
+
*
|
|
8741
|
+
* @summary Delete policy
|
|
8742
|
+
* @param {string} hospitalId
|
|
8743
|
+
* @param {string} policyId
|
|
8744
|
+
* @param {boolean} [isPermanent]
|
|
8745
|
+
* @param {*} [options] Override http request option.
|
|
8746
|
+
* @throws {RequiredError}
|
|
8747
|
+
*/
|
|
8748
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdDelete(hospitalId: string, policyId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean> {
|
|
8749
|
+
return localVarFp.apiV1HospitalsHospitalIdPoliciesPolicyIdDelete(hospitalId, policyId, isPermanent, options).then((request) => request(axios, basePath));
|
|
8750
|
+
},
|
|
8751
|
+
/**
|
|
8752
|
+
*
|
|
8753
|
+
* @summary Get policy
|
|
8754
|
+
* @param {string} hospitalId
|
|
8755
|
+
* @param {string} policyId
|
|
8756
|
+
* @param {string} [languageCode]
|
|
8757
|
+
* @param {*} [options] Override http request option.
|
|
8758
|
+
* @throws {RequiredError}
|
|
8759
|
+
*/
|
|
8760
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdGet(hospitalId: string, policyId: string, languageCode?: string, options?: any): AxiosPromise<PolicyModel> {
|
|
8761
|
+
return localVarFp.apiV1HospitalsHospitalIdPoliciesPolicyIdGet(hospitalId, policyId, languageCode, options).then((request) => request(axios, basePath));
|
|
8762
|
+
},
|
|
8763
|
+
/**
|
|
8764
|
+
*
|
|
8765
|
+
* @summary Update policy
|
|
8766
|
+
* @param {string} hospitalId
|
|
8767
|
+
* @param {string} policyId
|
|
8768
|
+
* @param {UpdatePolicyCommand} [updatePolicyCommand]
|
|
8769
|
+
* @param {*} [options] Override http request option.
|
|
8770
|
+
* @throws {RequiredError}
|
|
8771
|
+
*/
|
|
8772
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdPut(hospitalId: string, policyId: string, updatePolicyCommand?: UpdatePolicyCommand, options?: any): AxiosPromise<PolicyModel> {
|
|
8773
|
+
return localVarFp.apiV1HospitalsHospitalIdPoliciesPolicyIdPut(hospitalId, policyId, updatePolicyCommand, options).then((request) => request(axios, basePath));
|
|
8774
|
+
},
|
|
8775
|
+
/**
|
|
8776
|
+
*
|
|
8777
|
+
* @summary Reactive policy
|
|
8778
|
+
* @param {string} hospitalId
|
|
8779
|
+
* @param {string} policyId
|
|
8780
|
+
* @param {*} [options] Override http request option.
|
|
8781
|
+
* @throws {RequiredError}
|
|
8782
|
+
*/
|
|
8783
|
+
apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut(hospitalId: string, policyId: string, options?: any): AxiosPromise<boolean> {
|
|
8784
|
+
return localVarFp.apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut(hospitalId, policyId, options).then((request) => request(axios, basePath));
|
|
8785
|
+
},
|
|
8786
|
+
/**
|
|
8787
|
+
*
|
|
8788
|
+
* @summary Create policy
|
|
8789
|
+
* @param {string} hospitalId
|
|
8790
|
+
* @param {CreatePolicyCommand} [createPolicyCommand]
|
|
8791
|
+
* @param {*} [options] Override http request option.
|
|
8792
|
+
* @throws {RequiredError}
|
|
8793
|
+
*/
|
|
8794
|
+
apiV1HospitalsHospitalIdPoliciesPost(hospitalId: string, createPolicyCommand?: CreatePolicyCommand, options?: any): AxiosPromise<PolicyModel> {
|
|
8795
|
+
return localVarFp.apiV1HospitalsHospitalIdPoliciesPost(hospitalId, createPolicyCommand, options).then((request) => request(axios, basePath));
|
|
7866
8796
|
},
|
|
7867
8797
|
/**
|
|
7868
8798
|
*
|
|
@@ -7929,8 +8859,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
7929
8859
|
* @param {*} [options] Override http request option.
|
|
7930
8860
|
* @throws {RequiredError}
|
|
7931
8861
|
*/
|
|
7932
|
-
|
|
7933
|
-
return localVarFp.
|
|
8862
|
+
apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet(hospitalId: string, containerId: string, fileId: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string> {
|
|
8863
|
+
return localVarFp.apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet(hospitalId, containerId, fileId, minutesAvailableUntil, options).then((request) => request(axios, basePath));
|
|
7934
8864
|
},
|
|
7935
8865
|
/**
|
|
7936
8866
|
*
|
|
@@ -7973,6 +8903,29 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
7973
8903
|
apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId: string, options?: any): AxiosPromise<SecureContainerModel> {
|
|
7974
8904
|
return localVarFp.apiV1HospitalsHospitalIdSecurecontainersPost(hospitalId, options).then((request) => request(axios, basePath));
|
|
7975
8905
|
},
|
|
8906
|
+
/**
|
|
8907
|
+
*
|
|
8908
|
+
* @summary Get file content by uri
|
|
8909
|
+
* @param {string} hospitalId
|
|
8910
|
+
* @param {string} uri
|
|
8911
|
+
* @param {*} [options] Override http request option.
|
|
8912
|
+
* @throws {RequiredError}
|
|
8913
|
+
*/
|
|
8914
|
+
apiV1HospitalsHospitalIdSecurefilesUriGet(hospitalId: string, uri: string, options?: any): AxiosPromise<void> {
|
|
8915
|
+
return localVarFp.apiV1HospitalsHospitalIdSecurefilesUriGet(hospitalId, uri, options).then((request) => request(axios, basePath));
|
|
8916
|
+
},
|
|
8917
|
+
/**
|
|
8918
|
+
*
|
|
8919
|
+
* @summary Get secure file url with read access by uri
|
|
8920
|
+
* @param {string} hospitalId
|
|
8921
|
+
* @param {string} uri
|
|
8922
|
+
* @param {number} [minutesAvailableUntil]
|
|
8923
|
+
* @param {*} [options] Override http request option.
|
|
8924
|
+
* @throws {RequiredError}
|
|
8925
|
+
*/
|
|
8926
|
+
apiV1HospitalsHospitalIdSecurefilesUriReadGet(hospitalId: string, uri: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<string> {
|
|
8927
|
+
return localVarFp.apiV1HospitalsHospitalIdSecurefilesUriReadGet(hospitalId, uri, minutesAvailableUntil, options).then((request) => request(axios, basePath));
|
|
8928
|
+
},
|
|
7976
8929
|
/**
|
|
7977
8930
|
*
|
|
7978
8931
|
* @summary Get all HospitalSpecialties.
|
|
@@ -9628,6 +10581,139 @@ export interface HospitalsApiApiV1HospitalsHospitalIdEvaluationsPostRequest {
|
|
|
9628
10581
|
readonly createHospitalEvaluationCommand?: CreateHospitalEvaluationCommand
|
|
9629
10582
|
}
|
|
9630
10583
|
|
|
10584
|
+
/**
|
|
10585
|
+
* Request parameters for apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet operation in HospitalsApi.
|
|
10586
|
+
* @export
|
|
10587
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeGetRequest
|
|
10588
|
+
*/
|
|
10589
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeGetRequest {
|
|
10590
|
+
/**
|
|
10591
|
+
*
|
|
10592
|
+
* @type {string}
|
|
10593
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet
|
|
10594
|
+
*/
|
|
10595
|
+
readonly hospitalId: string
|
|
10596
|
+
|
|
10597
|
+
/**
|
|
10598
|
+
*
|
|
10599
|
+
* @type {string}
|
|
10600
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet
|
|
10601
|
+
*/
|
|
10602
|
+
readonly languageCode: string
|
|
10603
|
+
}
|
|
10604
|
+
|
|
10605
|
+
/**
|
|
10606
|
+
* Request parameters for apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete operation in HospitalsApi.
|
|
10607
|
+
* @export
|
|
10608
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDeleteRequest
|
|
10609
|
+
*/
|
|
10610
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDeleteRequest {
|
|
10611
|
+
/**
|
|
10612
|
+
*
|
|
10613
|
+
* @type {string}
|
|
10614
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete
|
|
10615
|
+
*/
|
|
10616
|
+
readonly hospitalId: string
|
|
10617
|
+
|
|
10618
|
+
/**
|
|
10619
|
+
*
|
|
10620
|
+
* @type {string}
|
|
10621
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete
|
|
10622
|
+
*/
|
|
10623
|
+
readonly languageCode: string
|
|
10624
|
+
|
|
10625
|
+
/**
|
|
10626
|
+
*
|
|
10627
|
+
* @type {string}
|
|
10628
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete
|
|
10629
|
+
*/
|
|
10630
|
+
readonly id: string
|
|
10631
|
+
}
|
|
10632
|
+
|
|
10633
|
+
/**
|
|
10634
|
+
* Request parameters for apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet operation in HospitalsApi.
|
|
10635
|
+
* @export
|
|
10636
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGetRequest
|
|
10637
|
+
*/
|
|
10638
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGetRequest {
|
|
10639
|
+
/**
|
|
10640
|
+
*
|
|
10641
|
+
* @type {string}
|
|
10642
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet
|
|
10643
|
+
*/
|
|
10644
|
+
readonly hospitalId: string
|
|
10645
|
+
|
|
10646
|
+
/**
|
|
10647
|
+
*
|
|
10648
|
+
* @type {string}
|
|
10649
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet
|
|
10650
|
+
*/
|
|
10651
|
+
readonly languageCode: string
|
|
10652
|
+
|
|
10653
|
+
/**
|
|
10654
|
+
*
|
|
10655
|
+
* @type {string}
|
|
10656
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet
|
|
10657
|
+
*/
|
|
10658
|
+
readonly id: string
|
|
10659
|
+
}
|
|
10660
|
+
|
|
10661
|
+
/**
|
|
10662
|
+
* Request parameters for apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet operation in HospitalsApi.
|
|
10663
|
+
* @export
|
|
10664
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGetRequest
|
|
10665
|
+
*/
|
|
10666
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGetRequest {
|
|
10667
|
+
/**
|
|
10668
|
+
*
|
|
10669
|
+
* @type {string}
|
|
10670
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet
|
|
10671
|
+
*/
|
|
10672
|
+
readonly hospitalId: string
|
|
10673
|
+
|
|
10674
|
+
/**
|
|
10675
|
+
*
|
|
10676
|
+
* @type {string}
|
|
10677
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet
|
|
10678
|
+
*/
|
|
10679
|
+
readonly languageCode: string
|
|
10680
|
+
|
|
10681
|
+
/**
|
|
10682
|
+
*
|
|
10683
|
+
* @type {string}
|
|
10684
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet
|
|
10685
|
+
*/
|
|
10686
|
+
readonly parentId: string
|
|
10687
|
+
}
|
|
10688
|
+
|
|
10689
|
+
/**
|
|
10690
|
+
* Request parameters for apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost operation in HospitalsApi.
|
|
10691
|
+
* @export
|
|
10692
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodePostRequest
|
|
10693
|
+
*/
|
|
10694
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodePostRequest {
|
|
10695
|
+
/**
|
|
10696
|
+
*
|
|
10697
|
+
* @type {string}
|
|
10698
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodePost
|
|
10699
|
+
*/
|
|
10700
|
+
readonly hospitalId: string
|
|
10701
|
+
|
|
10702
|
+
/**
|
|
10703
|
+
*
|
|
10704
|
+
* @type {string}
|
|
10705
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodePost
|
|
10706
|
+
*/
|
|
10707
|
+
readonly languageCode: string
|
|
10708
|
+
|
|
10709
|
+
/**
|
|
10710
|
+
*
|
|
10711
|
+
* @type {SaveFooterNavigationsCommand}
|
|
10712
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodePost
|
|
10713
|
+
*/
|
|
10714
|
+
readonly saveFooterNavigationsCommand?: SaveFooterNavigationsCommand
|
|
10715
|
+
}
|
|
10716
|
+
|
|
9631
10717
|
/**
|
|
9632
10718
|
* Request parameters for apiV1HospitalsHospitalIdGet operation in HospitalsApi.
|
|
9633
10719
|
* @export
|
|
@@ -10087,196 +11173,385 @@ export interface HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodeDelete
|
|
|
10087
11173
|
* @type {string}
|
|
10088
11174
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodeDelete
|
|
10089
11175
|
*/
|
|
10090
|
-
readonly languageCode: string
|
|
11176
|
+
readonly languageCode: string
|
|
11177
|
+
}
|
|
11178
|
+
|
|
11179
|
+
/**
|
|
11180
|
+
* Request parameters for apiV1HospitalsHospitalIdLanguagesLanguageCodePut operation in HospitalsApi.
|
|
11181
|
+
* @export
|
|
11182
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodePutRequest
|
|
11183
|
+
*/
|
|
11184
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodePutRequest {
|
|
11185
|
+
/**
|
|
11186
|
+
*
|
|
11187
|
+
* @type {string}
|
|
11188
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodePut
|
|
11189
|
+
*/
|
|
11190
|
+
readonly hospitalId: string
|
|
11191
|
+
|
|
11192
|
+
/**
|
|
11193
|
+
*
|
|
11194
|
+
* @type {string}
|
|
11195
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodePut
|
|
11196
|
+
*/
|
|
11197
|
+
readonly languageCode: string
|
|
11198
|
+
|
|
11199
|
+
/**
|
|
11200
|
+
*
|
|
11201
|
+
* @type {UpdateHospitalLanguageCommand}
|
|
11202
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdLanguagesLanguageCodePut
|
|
11203
|
+
*/
|
|
11204
|
+
readonly updateHospitalLanguageCommand?: UpdateHospitalLanguageCommand
|
|
11205
|
+
}
|
|
11206
|
+
|
|
11207
|
+
/**
|
|
11208
|
+
* Request parameters for apiV1HospitalsHospitalIdLanguagesPost operation in HospitalsApi.
|
|
11209
|
+
* @export
|
|
11210
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdLanguagesPostRequest
|
|
11211
|
+
*/
|
|
11212
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdLanguagesPostRequest {
|
|
11213
|
+
/**
|
|
11214
|
+
*
|
|
11215
|
+
* @type {string}
|
|
11216
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdLanguagesPost
|
|
11217
|
+
*/
|
|
11218
|
+
readonly hospitalId: string
|
|
11219
|
+
|
|
11220
|
+
/**
|
|
11221
|
+
*
|
|
11222
|
+
* @type {CreateHospitalLanguageCommand}
|
|
11223
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdLanguagesPost
|
|
11224
|
+
*/
|
|
11225
|
+
readonly createHospitalLanguageCommand?: CreateHospitalLanguageCommand
|
|
11226
|
+
}
|
|
11227
|
+
|
|
11228
|
+
/**
|
|
11229
|
+
* Request parameters for apiV1HospitalsHospitalIdMediasGet operation in HospitalsApi.
|
|
11230
|
+
* @export
|
|
11231
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdMediasGetRequest
|
|
11232
|
+
*/
|
|
11233
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdMediasGetRequest {
|
|
11234
|
+
/**
|
|
11235
|
+
*
|
|
11236
|
+
* @type {string}
|
|
11237
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasGet
|
|
11238
|
+
*/
|
|
11239
|
+
readonly hospitalId: string
|
|
11240
|
+
|
|
11241
|
+
/**
|
|
11242
|
+
*
|
|
11243
|
+
* @type {string}
|
|
11244
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasGet
|
|
11245
|
+
*/
|
|
11246
|
+
readonly id?: string
|
|
11247
|
+
|
|
11248
|
+
/**
|
|
11249
|
+
*
|
|
11250
|
+
* @type {MediaType}
|
|
11251
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasGet
|
|
11252
|
+
*/
|
|
11253
|
+
readonly mediaType?: MediaType
|
|
11254
|
+
|
|
11255
|
+
/**
|
|
11256
|
+
*
|
|
11257
|
+
* @type {number}
|
|
11258
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasGet
|
|
11259
|
+
*/
|
|
11260
|
+
readonly page?: number
|
|
11261
|
+
|
|
11262
|
+
/**
|
|
11263
|
+
*
|
|
11264
|
+
* @type {number}
|
|
11265
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasGet
|
|
11266
|
+
*/
|
|
11267
|
+
readonly limit?: number
|
|
11268
|
+
|
|
11269
|
+
/**
|
|
11270
|
+
*
|
|
11271
|
+
* @type {Date}
|
|
11272
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasGet
|
|
11273
|
+
*/
|
|
11274
|
+
readonly lastRetrieved?: Date
|
|
11275
|
+
}
|
|
11276
|
+
|
|
11277
|
+
/**
|
|
11278
|
+
* Request parameters for apiV1HospitalsHospitalIdMediasMediaIdDelete operation in HospitalsApi.
|
|
11279
|
+
* @export
|
|
11280
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdDeleteRequest
|
|
11281
|
+
*/
|
|
11282
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdDeleteRequest {
|
|
11283
|
+
/**
|
|
11284
|
+
*
|
|
11285
|
+
* @type {string}
|
|
11286
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdDelete
|
|
11287
|
+
*/
|
|
11288
|
+
readonly hospitalId: string
|
|
11289
|
+
|
|
11290
|
+
/**
|
|
11291
|
+
*
|
|
11292
|
+
* @type {string}
|
|
11293
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdDelete
|
|
11294
|
+
*/
|
|
11295
|
+
readonly mediaId: string
|
|
11296
|
+
}
|
|
11297
|
+
|
|
11298
|
+
/**
|
|
11299
|
+
* Request parameters for apiV1HospitalsHospitalIdMediasMediaIdGet operation in HospitalsApi.
|
|
11300
|
+
* @export
|
|
11301
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdGetRequest
|
|
11302
|
+
*/
|
|
11303
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdGetRequest {
|
|
11304
|
+
/**
|
|
11305
|
+
*
|
|
11306
|
+
* @type {string}
|
|
11307
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdGet
|
|
11308
|
+
*/
|
|
11309
|
+
readonly hospitalId: string
|
|
11310
|
+
|
|
11311
|
+
/**
|
|
11312
|
+
*
|
|
11313
|
+
* @type {string}
|
|
11314
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdGet
|
|
11315
|
+
*/
|
|
11316
|
+
readonly mediaId: string
|
|
10091
11317
|
}
|
|
10092
11318
|
|
|
10093
11319
|
/**
|
|
10094
|
-
* Request parameters for
|
|
11320
|
+
* Request parameters for apiV1HospitalsHospitalIdMediasMediaIdPut operation in HospitalsApi.
|
|
10095
11321
|
* @export
|
|
10096
|
-
* @interface
|
|
11322
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdPutRequest
|
|
10097
11323
|
*/
|
|
10098
|
-
export interface
|
|
11324
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdPutRequest {
|
|
10099
11325
|
/**
|
|
10100
11326
|
*
|
|
10101
11327
|
* @type {string}
|
|
10102
|
-
* @memberof
|
|
11328
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdPut
|
|
10103
11329
|
*/
|
|
10104
11330
|
readonly hospitalId: string
|
|
10105
11331
|
|
|
10106
11332
|
/**
|
|
10107
11333
|
*
|
|
10108
11334
|
* @type {string}
|
|
10109
|
-
* @memberof
|
|
11335
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdPut
|
|
10110
11336
|
*/
|
|
10111
|
-
readonly
|
|
11337
|
+
readonly mediaId: string
|
|
10112
11338
|
|
|
10113
11339
|
/**
|
|
10114
11340
|
*
|
|
10115
|
-
* @type {
|
|
10116
|
-
* @memberof
|
|
11341
|
+
* @type {UpdateMediaCommand}
|
|
11342
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasMediaIdPut
|
|
10117
11343
|
*/
|
|
10118
|
-
readonly
|
|
11344
|
+
readonly updateMediaCommand?: UpdateMediaCommand
|
|
10119
11345
|
}
|
|
10120
11346
|
|
|
10121
11347
|
/**
|
|
10122
|
-
* Request parameters for
|
|
11348
|
+
* Request parameters for apiV1HospitalsHospitalIdMediasPost operation in HospitalsApi.
|
|
10123
11349
|
* @export
|
|
10124
|
-
* @interface
|
|
11350
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdMediasPostRequest
|
|
10125
11351
|
*/
|
|
10126
|
-
export interface
|
|
11352
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdMediasPostRequest {
|
|
10127
11353
|
/**
|
|
10128
11354
|
*
|
|
10129
11355
|
* @type {string}
|
|
10130
|
-
* @memberof
|
|
11356
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasPost
|
|
10131
11357
|
*/
|
|
10132
11358
|
readonly hospitalId: string
|
|
10133
11359
|
|
|
10134
11360
|
/**
|
|
10135
11361
|
*
|
|
10136
|
-
* @type {
|
|
10137
|
-
* @memberof
|
|
11362
|
+
* @type {CreateMediaCommand}
|
|
11363
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdMediasPost
|
|
10138
11364
|
*/
|
|
10139
|
-
readonly
|
|
11365
|
+
readonly createMediaCommand?: CreateMediaCommand
|
|
10140
11366
|
}
|
|
10141
11367
|
|
|
10142
11368
|
/**
|
|
10143
|
-
* Request parameters for
|
|
11369
|
+
* Request parameters for apiV1HospitalsHospitalIdPoliciesGet operation in HospitalsApi.
|
|
10144
11370
|
* @export
|
|
10145
|
-
* @interface
|
|
11371
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPoliciesGetRequest
|
|
10146
11372
|
*/
|
|
10147
|
-
export interface
|
|
11373
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesGetRequest {
|
|
10148
11374
|
/**
|
|
10149
11375
|
*
|
|
10150
11376
|
* @type {string}
|
|
10151
|
-
* @memberof
|
|
11377
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesGet
|
|
10152
11378
|
*/
|
|
10153
11379
|
readonly hospitalId: string
|
|
10154
11380
|
|
|
10155
11381
|
/**
|
|
10156
11382
|
*
|
|
10157
11383
|
* @type {string}
|
|
10158
|
-
* @memberof
|
|
11384
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesGet
|
|
10159
11385
|
*/
|
|
10160
|
-
readonly
|
|
11386
|
+
readonly name?: string
|
|
10161
11387
|
|
|
10162
11388
|
/**
|
|
10163
11389
|
*
|
|
10164
|
-
* @type {
|
|
10165
|
-
* @memberof
|
|
11390
|
+
* @type {string}
|
|
11391
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesGet
|
|
10166
11392
|
*/
|
|
10167
|
-
readonly
|
|
11393
|
+
readonly slug?: string
|
|
11394
|
+
|
|
11395
|
+
/**
|
|
11396
|
+
*
|
|
11397
|
+
* @type {string}
|
|
11398
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesGet
|
|
11399
|
+
*/
|
|
11400
|
+
readonly languageCode?: string
|
|
11401
|
+
|
|
11402
|
+
/**
|
|
11403
|
+
*
|
|
11404
|
+
* @type {boolean}
|
|
11405
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesGet
|
|
11406
|
+
*/
|
|
11407
|
+
readonly showHidden?: boolean
|
|
10168
11408
|
|
|
10169
11409
|
/**
|
|
10170
11410
|
*
|
|
10171
11411
|
* @type {number}
|
|
10172
|
-
* @memberof
|
|
11412
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesGet
|
|
10173
11413
|
*/
|
|
10174
11414
|
readonly page?: number
|
|
10175
11415
|
|
|
10176
11416
|
/**
|
|
10177
11417
|
*
|
|
10178
11418
|
* @type {number}
|
|
10179
|
-
* @memberof
|
|
11419
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesGet
|
|
10180
11420
|
*/
|
|
10181
11421
|
readonly limit?: number
|
|
10182
11422
|
|
|
10183
11423
|
/**
|
|
10184
11424
|
*
|
|
10185
11425
|
* @type {Date}
|
|
10186
|
-
* @memberof
|
|
11426
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesGet
|
|
10187
11427
|
*/
|
|
10188
11428
|
readonly lastRetrieved?: Date
|
|
10189
11429
|
}
|
|
10190
11430
|
|
|
10191
11431
|
/**
|
|
10192
|
-
* Request parameters for
|
|
11432
|
+
* Request parameters for apiV1HospitalsHospitalIdPoliciesPolicyIdDelete operation in HospitalsApi.
|
|
10193
11433
|
* @export
|
|
10194
|
-
* @interface
|
|
11434
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdDeleteRequest
|
|
10195
11435
|
*/
|
|
10196
|
-
export interface
|
|
11436
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdDeleteRequest {
|
|
10197
11437
|
/**
|
|
10198
11438
|
*
|
|
10199
11439
|
* @type {string}
|
|
10200
|
-
* @memberof
|
|
11440
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdDelete
|
|
10201
11441
|
*/
|
|
10202
11442
|
readonly hospitalId: string
|
|
10203
11443
|
|
|
10204
11444
|
/**
|
|
10205
11445
|
*
|
|
10206
11446
|
* @type {string}
|
|
10207
|
-
* @memberof
|
|
11447
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdDelete
|
|
10208
11448
|
*/
|
|
10209
|
-
readonly
|
|
11449
|
+
readonly policyId: string
|
|
11450
|
+
|
|
11451
|
+
/**
|
|
11452
|
+
*
|
|
11453
|
+
* @type {boolean}
|
|
11454
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdDelete
|
|
11455
|
+
*/
|
|
11456
|
+
readonly isPermanent?: boolean
|
|
10210
11457
|
}
|
|
10211
11458
|
|
|
10212
11459
|
/**
|
|
10213
|
-
* Request parameters for
|
|
11460
|
+
* Request parameters for apiV1HospitalsHospitalIdPoliciesPolicyIdGet operation in HospitalsApi.
|
|
10214
11461
|
* @export
|
|
10215
|
-
* @interface
|
|
11462
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdGetRequest
|
|
10216
11463
|
*/
|
|
10217
|
-
export interface
|
|
11464
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdGetRequest {
|
|
10218
11465
|
/**
|
|
10219
11466
|
*
|
|
10220
11467
|
* @type {string}
|
|
10221
|
-
* @memberof
|
|
11468
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdGet
|
|
10222
11469
|
*/
|
|
10223
11470
|
readonly hospitalId: string
|
|
10224
11471
|
|
|
10225
11472
|
/**
|
|
10226
11473
|
*
|
|
10227
11474
|
* @type {string}
|
|
10228
|
-
* @memberof
|
|
11475
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdGet
|
|
10229
11476
|
*/
|
|
10230
|
-
readonly
|
|
11477
|
+
readonly policyId: string
|
|
11478
|
+
|
|
11479
|
+
/**
|
|
11480
|
+
*
|
|
11481
|
+
* @type {string}
|
|
11482
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdGet
|
|
11483
|
+
*/
|
|
11484
|
+
readonly languageCode?: string
|
|
10231
11485
|
}
|
|
10232
11486
|
|
|
10233
11487
|
/**
|
|
10234
|
-
* Request parameters for
|
|
11488
|
+
* Request parameters for apiV1HospitalsHospitalIdPoliciesPolicyIdPut operation in HospitalsApi.
|
|
10235
11489
|
* @export
|
|
10236
|
-
* @interface
|
|
11490
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPutRequest
|
|
10237
11491
|
*/
|
|
10238
|
-
export interface
|
|
11492
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPutRequest {
|
|
10239
11493
|
/**
|
|
10240
11494
|
*
|
|
10241
11495
|
* @type {string}
|
|
10242
|
-
* @memberof
|
|
11496
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPut
|
|
10243
11497
|
*/
|
|
10244
11498
|
readonly hospitalId: string
|
|
10245
11499
|
|
|
10246
11500
|
/**
|
|
10247
11501
|
*
|
|
10248
11502
|
* @type {string}
|
|
10249
|
-
* @memberof
|
|
11503
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPut
|
|
10250
11504
|
*/
|
|
10251
|
-
readonly
|
|
11505
|
+
readonly policyId: string
|
|
10252
11506
|
|
|
10253
11507
|
/**
|
|
10254
11508
|
*
|
|
10255
|
-
* @type {
|
|
10256
|
-
* @memberof
|
|
11509
|
+
* @type {UpdatePolicyCommand}
|
|
11510
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPut
|
|
10257
11511
|
*/
|
|
10258
|
-
readonly
|
|
11512
|
+
readonly updatePolicyCommand?: UpdatePolicyCommand
|
|
10259
11513
|
}
|
|
10260
11514
|
|
|
10261
11515
|
/**
|
|
10262
|
-
* Request parameters for
|
|
11516
|
+
* Request parameters for apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut operation in HospitalsApi.
|
|
10263
11517
|
* @export
|
|
10264
|
-
* @interface
|
|
11518
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivePutRequest
|
|
10265
11519
|
*/
|
|
10266
|
-
export interface
|
|
11520
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivePutRequest {
|
|
10267
11521
|
/**
|
|
10268
11522
|
*
|
|
10269
11523
|
* @type {string}
|
|
10270
|
-
* @memberof
|
|
11524
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut
|
|
10271
11525
|
*/
|
|
10272
11526
|
readonly hospitalId: string
|
|
10273
11527
|
|
|
10274
11528
|
/**
|
|
10275
11529
|
*
|
|
10276
|
-
* @type {
|
|
10277
|
-
* @memberof
|
|
11530
|
+
* @type {string}
|
|
11531
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut
|
|
10278
11532
|
*/
|
|
10279
|
-
readonly
|
|
11533
|
+
readonly policyId: string
|
|
11534
|
+
}
|
|
11535
|
+
|
|
11536
|
+
/**
|
|
11537
|
+
* Request parameters for apiV1HospitalsHospitalIdPoliciesPost operation in HospitalsApi.
|
|
11538
|
+
* @export
|
|
11539
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPostRequest
|
|
11540
|
+
*/
|
|
11541
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPoliciesPostRequest {
|
|
11542
|
+
/**
|
|
11543
|
+
*
|
|
11544
|
+
* @type {string}
|
|
11545
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPost
|
|
11546
|
+
*/
|
|
11547
|
+
readonly hospitalId: string
|
|
11548
|
+
|
|
11549
|
+
/**
|
|
11550
|
+
*
|
|
11551
|
+
* @type {CreatePolicyCommand}
|
|
11552
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPoliciesPost
|
|
11553
|
+
*/
|
|
11554
|
+
readonly createPolicyCommand?: CreatePolicyCommand
|
|
10280
11555
|
}
|
|
10281
11556
|
|
|
10282
11557
|
/**
|
|
@@ -10385,36 +11660,36 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerId
|
|
|
10385
11660
|
}
|
|
10386
11661
|
|
|
10387
11662
|
/**
|
|
10388
|
-
* Request parameters for
|
|
11663
|
+
* Request parameters for apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet operation in HospitalsApi.
|
|
10389
11664
|
* @export
|
|
10390
|
-
* @interface
|
|
11665
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGetRequest
|
|
10391
11666
|
*/
|
|
10392
|
-
export interface
|
|
11667
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGetRequest {
|
|
10393
11668
|
/**
|
|
10394
11669
|
*
|
|
10395
11670
|
* @type {string}
|
|
10396
|
-
* @memberof
|
|
11671
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet
|
|
10397
11672
|
*/
|
|
10398
11673
|
readonly hospitalId: string
|
|
10399
11674
|
|
|
10400
11675
|
/**
|
|
10401
11676
|
*
|
|
10402
11677
|
* @type {string}
|
|
10403
|
-
* @memberof
|
|
11678
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet
|
|
10404
11679
|
*/
|
|
10405
11680
|
readonly containerId: string
|
|
10406
11681
|
|
|
10407
11682
|
/**
|
|
10408
11683
|
*
|
|
10409
11684
|
* @type {string}
|
|
10410
|
-
* @memberof
|
|
11685
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet
|
|
10411
11686
|
*/
|
|
10412
11687
|
readonly fileId: string
|
|
10413
11688
|
|
|
10414
11689
|
/**
|
|
10415
11690
|
*
|
|
10416
11691
|
* @type {number}
|
|
10417
|
-
* @memberof
|
|
11692
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet
|
|
10418
11693
|
*/
|
|
10419
11694
|
readonly minutesAvailableUntil?: number
|
|
10420
11695
|
}
|
|
@@ -10538,6 +11813,55 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSecurecontainersPostRequest
|
|
|
10538
11813
|
readonly hospitalId: string
|
|
10539
11814
|
}
|
|
10540
11815
|
|
|
11816
|
+
/**
|
|
11817
|
+
* Request parameters for apiV1HospitalsHospitalIdSecurefilesUriGet operation in HospitalsApi.
|
|
11818
|
+
* @export
|
|
11819
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGetRequest
|
|
11820
|
+
*/
|
|
11821
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGetRequest {
|
|
11822
|
+
/**
|
|
11823
|
+
*
|
|
11824
|
+
* @type {string}
|
|
11825
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGet
|
|
11826
|
+
*/
|
|
11827
|
+
readonly hospitalId: string
|
|
11828
|
+
|
|
11829
|
+
/**
|
|
11830
|
+
*
|
|
11831
|
+
* @type {string}
|
|
11832
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGet
|
|
11833
|
+
*/
|
|
11834
|
+
readonly uri: string
|
|
11835
|
+
}
|
|
11836
|
+
|
|
11837
|
+
/**
|
|
11838
|
+
* Request parameters for apiV1HospitalsHospitalIdSecurefilesUriReadGet operation in HospitalsApi.
|
|
11839
|
+
* @export
|
|
11840
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGetRequest
|
|
11841
|
+
*/
|
|
11842
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGetRequest {
|
|
11843
|
+
/**
|
|
11844
|
+
*
|
|
11845
|
+
* @type {string}
|
|
11846
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGet
|
|
11847
|
+
*/
|
|
11848
|
+
readonly hospitalId: string
|
|
11849
|
+
|
|
11850
|
+
/**
|
|
11851
|
+
*
|
|
11852
|
+
* @type {string}
|
|
11853
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGet
|
|
11854
|
+
*/
|
|
11855
|
+
readonly uri: string
|
|
11856
|
+
|
|
11857
|
+
/**
|
|
11858
|
+
*
|
|
11859
|
+
* @type {number}
|
|
11860
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGet
|
|
11861
|
+
*/
|
|
11862
|
+
readonly minutesAvailableUntil?: number
|
|
11863
|
+
}
|
|
11864
|
+
|
|
10541
11865
|
/**
|
|
10542
11866
|
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesGet operation in HospitalsApi.
|
|
10543
11867
|
* @export
|
|
@@ -12711,6 +14035,66 @@ export class HospitalsApi extends BaseAPI {
|
|
|
12711
14035
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdEvaluationsPost(requestParameters.hospitalId, requestParameters.createHospitalEvaluationCommand, options).then((request) => request(this.axios, this.basePath));
|
|
12712
14036
|
}
|
|
12713
14037
|
|
|
14038
|
+
/**
|
|
14039
|
+
*
|
|
14040
|
+
* @summary Get footerNavigationItems
|
|
14041
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeGetRequest} requestParameters Request parameters.
|
|
14042
|
+
* @param {*} [options] Override http request option.
|
|
14043
|
+
* @throws {RequiredError}
|
|
14044
|
+
* @memberof HospitalsApi
|
|
14045
|
+
*/
|
|
14046
|
+
public apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeGetRequest, options?: AxiosRequestConfig) {
|
|
14047
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdFooternavigationsLanguageCodeGet(requestParameters.hospitalId, requestParameters.languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
14048
|
+
}
|
|
14049
|
+
|
|
14050
|
+
/**
|
|
14051
|
+
*
|
|
14052
|
+
* @summary Delete footerNavigationItem
|
|
14053
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDeleteRequest} requestParameters Request parameters.
|
|
14054
|
+
* @param {*} [options] Override http request option.
|
|
14055
|
+
* @throws {RequiredError}
|
|
14056
|
+
* @memberof HospitalsApi
|
|
14057
|
+
*/
|
|
14058
|
+
public apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDeleteRequest, options?: AxiosRequestConfig) {
|
|
14059
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdDelete(requestParameters.hospitalId, requestParameters.languageCode, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
14060
|
+
}
|
|
14061
|
+
|
|
14062
|
+
/**
|
|
14063
|
+
*
|
|
14064
|
+
* @summary Get footerNavigationItem by Id
|
|
14065
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGetRequest} requestParameters Request parameters.
|
|
14066
|
+
* @param {*} [options] Override http request option.
|
|
14067
|
+
* @throws {RequiredError}
|
|
14068
|
+
* @memberof HospitalsApi
|
|
14069
|
+
*/
|
|
14070
|
+
public apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGetRequest, options?: AxiosRequestConfig) {
|
|
14071
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdFooternavigationsLanguageCodeIdGet(requestParameters.hospitalId, requestParameters.languageCode, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
14072
|
+
}
|
|
14073
|
+
|
|
14074
|
+
/**
|
|
14075
|
+
*
|
|
14076
|
+
* @summary Get footerNavigationItems by ParentId
|
|
14077
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGetRequest} requestParameters Request parameters.
|
|
14078
|
+
* @param {*} [options] Override http request option.
|
|
14079
|
+
* @throws {RequiredError}
|
|
14080
|
+
* @memberof HospitalsApi
|
|
14081
|
+
*/
|
|
14082
|
+
public apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGetRequest, options?: AxiosRequestConfig) {
|
|
14083
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdFooternavigationsLanguageCodeParentIdSubitemsGet(requestParameters.hospitalId, requestParameters.languageCode, requestParameters.parentId, options).then((request) => request(this.axios, this.basePath));
|
|
14084
|
+
}
|
|
14085
|
+
|
|
14086
|
+
/**
|
|
14087
|
+
*
|
|
14088
|
+
* @summary Save footerNavigationItem
|
|
14089
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodePostRequest} requestParameters Request parameters.
|
|
14090
|
+
* @param {*} [options] Override http request option.
|
|
14091
|
+
* @throws {RequiredError}
|
|
14092
|
+
* @memberof HospitalsApi
|
|
14093
|
+
*/
|
|
14094
|
+
public apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdFooternavigationsLanguageCodePostRequest, options?: AxiosRequestConfig) {
|
|
14095
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdFooternavigationsLanguageCodePost(requestParameters.hospitalId, requestParameters.languageCode, requestParameters.saveFooterNavigationsCommand, options).then((request) => request(this.axios, this.basePath));
|
|
14096
|
+
}
|
|
14097
|
+
|
|
12714
14098
|
/**
|
|
12715
14099
|
*
|
|
12716
14100
|
* @summary Get Hospital.
|
|
@@ -12975,6 +14359,78 @@ export class HospitalsApi extends BaseAPI {
|
|
|
12975
14359
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdMediasPost(requestParameters.hospitalId, requestParameters.createMediaCommand, options).then((request) => request(this.axios, this.basePath));
|
|
12976
14360
|
}
|
|
12977
14361
|
|
|
14362
|
+
/**
|
|
14363
|
+
*
|
|
14364
|
+
* @summary Get all policies
|
|
14365
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesGetRequest} requestParameters Request parameters.
|
|
14366
|
+
* @param {*} [options] Override http request option.
|
|
14367
|
+
* @throws {RequiredError}
|
|
14368
|
+
* @memberof HospitalsApi
|
|
14369
|
+
*/
|
|
14370
|
+
public apiV1HospitalsHospitalIdPoliciesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesGetRequest, options?: AxiosRequestConfig) {
|
|
14371
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPoliciesGet(requestParameters.hospitalId, requestParameters.name, requestParameters.slug, requestParameters.languageCode, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
14372
|
+
}
|
|
14373
|
+
|
|
14374
|
+
/**
|
|
14375
|
+
*
|
|
14376
|
+
* @summary Delete policy
|
|
14377
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdDeleteRequest} requestParameters Request parameters.
|
|
14378
|
+
* @param {*} [options] Override http request option.
|
|
14379
|
+
* @throws {RequiredError}
|
|
14380
|
+
* @memberof HospitalsApi
|
|
14381
|
+
*/
|
|
14382
|
+
public apiV1HospitalsHospitalIdPoliciesPolicyIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdDeleteRequest, options?: AxiosRequestConfig) {
|
|
14383
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPoliciesPolicyIdDelete(requestParameters.hospitalId, requestParameters.policyId, requestParameters.isPermanent, options).then((request) => request(this.axios, this.basePath));
|
|
14384
|
+
}
|
|
14385
|
+
|
|
14386
|
+
/**
|
|
14387
|
+
*
|
|
14388
|
+
* @summary Get policy
|
|
14389
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdGetRequest} requestParameters Request parameters.
|
|
14390
|
+
* @param {*} [options] Override http request option.
|
|
14391
|
+
* @throws {RequiredError}
|
|
14392
|
+
* @memberof HospitalsApi
|
|
14393
|
+
*/
|
|
14394
|
+
public apiV1HospitalsHospitalIdPoliciesPolicyIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdGetRequest, options?: AxiosRequestConfig) {
|
|
14395
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPoliciesPolicyIdGet(requestParameters.hospitalId, requestParameters.policyId, requestParameters.languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
14396
|
+
}
|
|
14397
|
+
|
|
14398
|
+
/**
|
|
14399
|
+
*
|
|
14400
|
+
* @summary Update policy
|
|
14401
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPutRequest} requestParameters Request parameters.
|
|
14402
|
+
* @param {*} [options] Override http request option.
|
|
14403
|
+
* @throws {RequiredError}
|
|
14404
|
+
* @memberof HospitalsApi
|
|
14405
|
+
*/
|
|
14406
|
+
public apiV1HospitalsHospitalIdPoliciesPolicyIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdPutRequest, options?: AxiosRequestConfig) {
|
|
14407
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPoliciesPolicyIdPut(requestParameters.hospitalId, requestParameters.policyId, requestParameters.updatePolicyCommand, options).then((request) => request(this.axios, this.basePath));
|
|
14408
|
+
}
|
|
14409
|
+
|
|
14410
|
+
/**
|
|
14411
|
+
*
|
|
14412
|
+
* @summary Reactive policy
|
|
14413
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivePutRequest} requestParameters Request parameters.
|
|
14414
|
+
* @param {*} [options] Override http request option.
|
|
14415
|
+
* @throws {RequiredError}
|
|
14416
|
+
* @memberof HospitalsApi
|
|
14417
|
+
*/
|
|
14418
|
+
public apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPolicyIdReactivePutRequest, options?: AxiosRequestConfig) {
|
|
14419
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPoliciesPolicyIdReactivePut(requestParameters.hospitalId, requestParameters.policyId, options).then((request) => request(this.axios, this.basePath));
|
|
14420
|
+
}
|
|
14421
|
+
|
|
14422
|
+
/**
|
|
14423
|
+
*
|
|
14424
|
+
* @summary Create policy
|
|
14425
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPoliciesPostRequest} requestParameters Request parameters.
|
|
14426
|
+
* @param {*} [options] Override http request option.
|
|
14427
|
+
* @throws {RequiredError}
|
|
14428
|
+
* @memberof HospitalsApi
|
|
14429
|
+
*/
|
|
14430
|
+
public apiV1HospitalsHospitalIdPoliciesPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPoliciesPostRequest, options?: AxiosRequestConfig) {
|
|
14431
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPoliciesPost(requestParameters.hospitalId, requestParameters.createPolicyCommand, options).then((request) => request(this.axios, this.basePath));
|
|
14432
|
+
}
|
|
14433
|
+
|
|
12978
14434
|
/**
|
|
12979
14435
|
*
|
|
12980
14436
|
* @summary Update Hospital.
|
|
@@ -13038,13 +14494,13 @@ export class HospitalsApi extends BaseAPI {
|
|
|
13038
14494
|
/**
|
|
13039
14495
|
*
|
|
13040
14496
|
* @summary Get secure file url with read access
|
|
13041
|
-
* @param {
|
|
14497
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGetRequest} requestParameters Request parameters.
|
|
13042
14498
|
* @param {*} [options] Override http request option.
|
|
13043
14499
|
* @throws {RequiredError}
|
|
13044
14500
|
* @memberof HospitalsApi
|
|
13045
14501
|
*/
|
|
13046
|
-
public
|
|
13047
|
-
return HospitalsApiFp(this.configuration).
|
|
14502
|
+
public apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGetRequest, options?: AxiosRequestConfig) {
|
|
14503
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurecontainersContainerIdFilesFileIdReadGet(requestParameters.hospitalId, requestParameters.containerId, requestParameters.fileId, requestParameters.minutesAvailableUntil, options).then((request) => request(this.axios, this.basePath));
|
|
13048
14504
|
}
|
|
13049
14505
|
|
|
13050
14506
|
/**
|
|
@@ -13083,6 +14539,30 @@ export class HospitalsApi extends BaseAPI {
|
|
|
13083
14539
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurecontainersPost(requestParameters.hospitalId, options).then((request) => request(this.axios, this.basePath));
|
|
13084
14540
|
}
|
|
13085
14541
|
|
|
14542
|
+
/**
|
|
14543
|
+
*
|
|
14544
|
+
* @summary Get file content by uri
|
|
14545
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGetRequest} requestParameters Request parameters.
|
|
14546
|
+
* @param {*} [options] Override http request option.
|
|
14547
|
+
* @throws {RequiredError}
|
|
14548
|
+
* @memberof HospitalsApi
|
|
14549
|
+
*/
|
|
14550
|
+
public apiV1HospitalsHospitalIdSecurefilesUriGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriGetRequest, options?: AxiosRequestConfig) {
|
|
14551
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurefilesUriGet(requestParameters.hospitalId, requestParameters.uri, options).then((request) => request(this.axios, this.basePath));
|
|
14552
|
+
}
|
|
14553
|
+
|
|
14554
|
+
/**
|
|
14555
|
+
*
|
|
14556
|
+
* @summary Get secure file url with read access by uri
|
|
14557
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGetRequest} requestParameters Request parameters.
|
|
14558
|
+
* @param {*} [options] Override http request option.
|
|
14559
|
+
* @throws {RequiredError}
|
|
14560
|
+
* @memberof HospitalsApi
|
|
14561
|
+
*/
|
|
14562
|
+
public apiV1HospitalsHospitalIdSecurefilesUriReadGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSecurefilesUriReadGetRequest, options?: AxiosRequestConfig) {
|
|
14563
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSecurefilesUriReadGet(requestParameters.hospitalId, requestParameters.uri, requestParameters.minutesAvailableUntil, options).then((request) => request(this.axios, this.basePath));
|
|
14564
|
+
}
|
|
14565
|
+
|
|
13086
14566
|
/**
|
|
13087
14567
|
*
|
|
13088
14568
|
* @summary Get all HospitalSpecialties.
|