ch-admin-api-client-typescript 5.68.2 → 5.70.0
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/about-us-api.d.ts +28 -28
- package/lib/api/about-us-api.js +28 -28
- package/lib/api/appointments-api.d.ts +52 -52
- package/lib/api/appointments-api.js +52 -52
- package/lib/api/content-managers-api.d.ts +24 -24
- package/lib/api/content-managers-api.js +24 -24
- package/lib/api/countries-api.d.ts +28 -28
- package/lib/api/countries-api.js +28 -28
- package/lib/api/form-results-api.d.ts +20 -20
- package/lib/api/form-results-api.js +20 -20
- package/lib/api/hospitals-api.d.ts +520 -520
- package/lib/api/hospitals-api.js +520 -520
- package/lib/api/languages-api.d.ts +8 -8
- package/lib/api/languages-api.js +8 -8
- package/lib/api/notifications-api.d.ts +8 -8
- package/lib/api/notifications-api.js +8 -8
- package/lib/api/patient-affiliations-api.d.ts +8 -8
- package/lib/api/patient-affiliations-api.js +8 -8
- package/lib/api/patient-managers-api.d.ts +24 -24
- package/lib/api/patient-managers-api.js +24 -24
- package/lib/api/patients-api.d.ts +48 -48
- package/lib/api/patients-api.js +48 -48
- package/lib/api/profiles-api.d.ts +24 -24
- package/lib/api/profiles-api.js +24 -24
- package/lib/api/specialties-api.d.ts +60 -60
- package/lib/api/specialties-api.js +60 -60
- package/lib/api/specialty-types-api.d.ts +64 -64
- package/lib/api/specialty-types-api.js +64 -64
- package/lib/api/survey-results-api.d.ts +16 -16
- package/lib/api/survey-results-api.js +16 -16
- package/lib/api/tags-api.d.ts +16 -16
- package/lib/api/tags-api.js +16 -16
- package/lib/api/translation-api.d.ts +8 -8
- package/lib/api/translation-api.js +8 -8
- package/lib/api/users-api.d.ts +8 -8
- package/lib/api/users-api.js +8 -8
- package/lib/models/notification-code.d.ts +3 -1
- package/lib/models/notification-code.d.ts.map +1 -1
- package/lib/models/notification-code.js +3 -1
- package/package.json +1 -1
|
@@ -33,7 +33,7 @@ import { UpdateSpecialtyTypeCommand } from '../models';
|
|
|
33
33
|
export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @summary Get all Departments. (Auth
|
|
36
|
+
* @summary Get all Departments. (Auth policies: RequireDefaultAdminAppRole)
|
|
37
37
|
* @param {string} [id]
|
|
38
38
|
* @param {string} [name]
|
|
39
39
|
* @param {string} [description]
|
|
@@ -54,7 +54,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
54
54
|
apiV1SpecialtytypesGet: (id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, ids?: Array<string>, specialtyTypeCategoryId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
|
-
* @summary Create a Department. (Auth policies:
|
|
57
|
+
* @summary Create a Department. (Auth policies: RequireContentManagerRole)
|
|
58
58
|
* @param {CreateSpecialtyTypeCommand} [createSpecialtyTypeCommand]
|
|
59
59
|
* @param {*} [options] Override http request option.
|
|
60
60
|
* @throws {RequiredError}
|
|
@@ -62,7 +62,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
62
62
|
apiV1SpecialtytypesPost: (createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
|
-
* @summary Get all Departments with simplified model. (Auth
|
|
65
|
+
* @summary Get all Departments with simplified model. (Auth policies: RequireDefaultAdminAppRole)
|
|
66
66
|
* @param {string} [id]
|
|
67
67
|
* @param {string} [name]
|
|
68
68
|
* @param {string} [description]
|
|
@@ -83,7 +83,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
83
83
|
apiV1SpecialtytypesSimpleGet: (id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, ids?: Array<string>, specialtyTypeCategoryId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
84
84
|
/**
|
|
85
85
|
*
|
|
86
|
-
* @summary Get department by slug (Auth
|
|
86
|
+
* @summary Get department by slug (Auth policies: RequireDefaultAdminAppRole)
|
|
87
87
|
* @param {string} slug
|
|
88
88
|
* @param {string} [languageCode]
|
|
89
89
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -93,7 +93,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
93
93
|
apiV1SpecialtytypesSlugGet: (slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
94
94
|
/**
|
|
95
95
|
*
|
|
96
|
-
* @summary Batch for departments sorting (Auth policies:
|
|
96
|
+
* @summary Batch for departments sorting (Auth policies: RequireContentManagerRole)
|
|
97
97
|
* @param {SpecialtyTypeSortingCommand} [specialtyTypeSortingCommand]
|
|
98
98
|
* @param {*} [options] Override http request option.
|
|
99
99
|
* @throws {RequiredError}
|
|
@@ -101,7 +101,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
101
101
|
apiV1SpecialtytypesSortPut: (specialtyTypeSortingCommand?: SpecialtyTypeSortingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
102
102
|
/**
|
|
103
103
|
*
|
|
104
|
-
* @summary Delete Department. (Auth policies:
|
|
104
|
+
* @summary Delete Department. (Auth policies: RequireContentManagerRole)
|
|
105
105
|
* @param {string} specialtyTypeId
|
|
106
106
|
* @param {boolean} [isPermanent]
|
|
107
107
|
* @param {*} [options] Override http request option.
|
|
@@ -110,7 +110,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
110
110
|
apiV1SpecialtytypesSpecialtyTypeIdDelete: (specialtyTypeId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
111
111
|
/**
|
|
112
112
|
*
|
|
113
|
-
* @summary Get department (Auth
|
|
113
|
+
* @summary Get department (Auth policies: RequireDefaultAdminAppRole)
|
|
114
114
|
* @param {string} specialtyTypeId
|
|
115
115
|
* @param {string} [languageCode]
|
|
116
116
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -120,7 +120,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
120
120
|
apiV1SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
121
121
|
/**
|
|
122
122
|
*
|
|
123
|
-
* @summary Get all SpecialtyTypeMedias. (Auth
|
|
123
|
+
* @summary Get all SpecialtyTypeMedias. (Auth policies: RequireContentManagerRole)
|
|
124
124
|
* @param {string} specialtyTypeId
|
|
125
125
|
* @param {string} [id]
|
|
126
126
|
* @param {MediaType} [mediaType]
|
|
@@ -133,7 +133,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
133
133
|
apiV1SpecialtytypesSpecialtyTypeIdMediasGet: (specialtyTypeId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
134
134
|
/**
|
|
135
135
|
*
|
|
136
|
-
* @summary Delete SpecialtyTypeMedia (Auth policies:
|
|
136
|
+
* @summary Delete SpecialtyTypeMedia (Auth policies: RequireContentManagerRole)
|
|
137
137
|
* @param {string} specialtyTypeId
|
|
138
138
|
* @param {string} mediaId
|
|
139
139
|
* @param {*} [options] Override http request option.
|
|
@@ -142,7 +142,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
142
142
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdDelete: (specialtyTypeId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
143
143
|
/**
|
|
144
144
|
*
|
|
145
|
-
* @summary Get SpecialtyTypeMedia. (Auth
|
|
145
|
+
* @summary Get SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
146
146
|
* @param {string} specialtyTypeId
|
|
147
147
|
* @param {string} mediaId
|
|
148
148
|
* @param {*} [options] Override http request option.
|
|
@@ -151,7 +151,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
151
151
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdGet: (specialtyTypeId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
152
152
|
/**
|
|
153
153
|
*
|
|
154
|
-
* @summary Update SpecialtyTypeMedia. (Auth policies:
|
|
154
|
+
* @summary Update SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
155
155
|
* @param {string} specialtyTypeId
|
|
156
156
|
* @param {string} mediaId
|
|
157
157
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
@@ -161,7 +161,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
161
161
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdPut: (specialtyTypeId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
162
162
|
/**
|
|
163
163
|
*
|
|
164
|
-
* @summary Create SpecialtyTypeMedia. (Auth policies:
|
|
164
|
+
* @summary Create SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
165
165
|
* @param {string} specialtyTypeId
|
|
166
166
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
167
167
|
* @param {*} [options] Override http request option.
|
|
@@ -170,7 +170,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
170
170
|
apiV1SpecialtytypesSpecialtyTypeIdMediasPost: (specialtyTypeId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
171
171
|
/**
|
|
172
172
|
*
|
|
173
|
-
* @summary Update Department. (Auth policies:
|
|
173
|
+
* @summary Update Department. (Auth policies: RequireContentManagerRole)
|
|
174
174
|
* @param {string} specialtyTypeId
|
|
175
175
|
* @param {UpdateSpecialtyTypeCommand} [updateSpecialtyTypeCommand]
|
|
176
176
|
* @param {*} [options] Override http request option.
|
|
@@ -179,7 +179,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
179
179
|
apiV1SpecialtytypesSpecialtyTypeIdPut: (specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
180
180
|
/**
|
|
181
181
|
*
|
|
182
|
-
* @summary Reactivate Department (SpecialtyType). (Auth policies:
|
|
182
|
+
* @summary Reactivate Department (SpecialtyType). (Auth policies: RequireContentManagerRole)
|
|
183
183
|
* @param {string} specialtyTypeId
|
|
184
184
|
* @param {*} [options] Override http request option.
|
|
185
185
|
* @throws {RequiredError}
|
|
@@ -187,7 +187,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
187
187
|
apiV1SpecialtytypesSpecialtyTypeIdReactivatePut: (specialtyTypeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
188
188
|
/**
|
|
189
189
|
*
|
|
190
|
-
* @summary Revalidate specialtyType (Auth policies:
|
|
190
|
+
* @summary Revalidate specialtyType (Auth policies: RequireContentManagerRole)
|
|
191
191
|
* @param {string} specialtyTypeId
|
|
192
192
|
* @param {boolean} [includeCurrent]
|
|
193
193
|
* @param {*} [options] Override http request option.
|
|
@@ -196,7 +196,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
196
196
|
apiV1SpecialtytypesSpecialtyTypeIdRevalidatePost: (specialtyTypeId: string, includeCurrent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
197
197
|
/**
|
|
198
198
|
*
|
|
199
|
-
* @summary Translate speciatyType (Auth policies:
|
|
199
|
+
* @summary Translate speciatyType (Auth policies: RequireContentManagerRole)
|
|
200
200
|
* @param {string} specialtyTypeId
|
|
201
201
|
* @param {TranslateSpecialtyTypeCommand} [translateSpecialtyTypeCommand]
|
|
202
202
|
* @param {*} [options] Override http request option.
|
|
@@ -211,7 +211,7 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
211
211
|
export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
212
212
|
/**
|
|
213
213
|
*
|
|
214
|
-
* @summary Get all Departments. (Auth
|
|
214
|
+
* @summary Get all Departments. (Auth policies: RequireDefaultAdminAppRole)
|
|
215
215
|
* @param {string} [id]
|
|
216
216
|
* @param {string} [name]
|
|
217
217
|
* @param {string} [description]
|
|
@@ -232,7 +232,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
232
232
|
apiV1SpecialtytypesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, ids?: Array<string>, specialtyTypeCategoryId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypesModel>>;
|
|
233
233
|
/**
|
|
234
234
|
*
|
|
235
|
-
* @summary Create a Department. (Auth policies:
|
|
235
|
+
* @summary Create a Department. (Auth policies: RequireContentManagerRole)
|
|
236
236
|
* @param {CreateSpecialtyTypeCommand} [createSpecialtyTypeCommand]
|
|
237
237
|
* @param {*} [options] Override http request option.
|
|
238
238
|
* @throws {RequiredError}
|
|
@@ -240,7 +240,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
240
240
|
apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypeModel>>;
|
|
241
241
|
/**
|
|
242
242
|
*
|
|
243
|
-
* @summary Get all Departments with simplified model. (Auth
|
|
243
|
+
* @summary Get all Departments with simplified model. (Auth policies: RequireDefaultAdminAppRole)
|
|
244
244
|
* @param {string} [id]
|
|
245
245
|
* @param {string} [name]
|
|
246
246
|
* @param {string} [description]
|
|
@@ -261,7 +261,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
261
261
|
apiV1SpecialtytypesSimpleGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, ids?: Array<string>, specialtyTypeCategoryId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypesSimpleModel>>;
|
|
262
262
|
/**
|
|
263
263
|
*
|
|
264
|
-
* @summary Get department by slug (Auth
|
|
264
|
+
* @summary Get department by slug (Auth policies: RequireDefaultAdminAppRole)
|
|
265
265
|
* @param {string} slug
|
|
266
266
|
* @param {string} [languageCode]
|
|
267
267
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -271,7 +271,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
271
271
|
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypeModel>>;
|
|
272
272
|
/**
|
|
273
273
|
*
|
|
274
|
-
* @summary Batch for departments sorting (Auth policies:
|
|
274
|
+
* @summary Batch for departments sorting (Auth policies: RequireContentManagerRole)
|
|
275
275
|
* @param {SpecialtyTypeSortingCommand} [specialtyTypeSortingCommand]
|
|
276
276
|
* @param {*} [options] Override http request option.
|
|
277
277
|
* @throws {RequiredError}
|
|
@@ -279,7 +279,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
279
279
|
apiV1SpecialtytypesSortPut(specialtyTypeSortingCommand?: SpecialtyTypeSortingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SortingResultModel>>;
|
|
280
280
|
/**
|
|
281
281
|
*
|
|
282
|
-
* @summary Delete Department. (Auth policies:
|
|
282
|
+
* @summary Delete Department. (Auth policies: RequireContentManagerRole)
|
|
283
283
|
* @param {string} specialtyTypeId
|
|
284
284
|
* @param {boolean} [isPermanent]
|
|
285
285
|
* @param {*} [options] Override http request option.
|
|
@@ -288,7 +288,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
288
288
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
289
289
|
/**
|
|
290
290
|
*
|
|
291
|
-
* @summary Get department (Auth
|
|
291
|
+
* @summary Get department (Auth policies: RequireDefaultAdminAppRole)
|
|
292
292
|
* @param {string} specialtyTypeId
|
|
293
293
|
* @param {string} [languageCode]
|
|
294
294
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -298,7 +298,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
298
298
|
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypeModel>>;
|
|
299
299
|
/**
|
|
300
300
|
*
|
|
301
|
-
* @summary Get all SpecialtyTypeMedias. (Auth
|
|
301
|
+
* @summary Get all SpecialtyTypeMedias. (Auth policies: RequireContentManagerRole)
|
|
302
302
|
* @param {string} specialtyTypeId
|
|
303
303
|
* @param {string} [id]
|
|
304
304
|
* @param {MediaType} [mediaType]
|
|
@@ -311,7 +311,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
311
311
|
apiV1SpecialtytypesSpecialtyTypeIdMediasGet(specialtyTypeId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediasModel>>;
|
|
312
312
|
/**
|
|
313
313
|
*
|
|
314
|
-
* @summary Delete SpecialtyTypeMedia (Auth policies:
|
|
314
|
+
* @summary Delete SpecialtyTypeMedia (Auth policies: RequireContentManagerRole)
|
|
315
315
|
* @param {string} specialtyTypeId
|
|
316
316
|
* @param {string} mediaId
|
|
317
317
|
* @param {*} [options] Override http request option.
|
|
@@ -320,7 +320,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
320
320
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdDelete(specialtyTypeId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
321
321
|
/**
|
|
322
322
|
*
|
|
323
|
-
* @summary Get SpecialtyTypeMedia. (Auth
|
|
323
|
+
* @summary Get SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
324
324
|
* @param {string} specialtyTypeId
|
|
325
325
|
* @param {string} mediaId
|
|
326
326
|
* @param {*} [options] Override http request option.
|
|
@@ -329,7 +329,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
329
329
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdGet(specialtyTypeId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
330
330
|
/**
|
|
331
331
|
*
|
|
332
|
-
* @summary Update SpecialtyTypeMedia. (Auth policies:
|
|
332
|
+
* @summary Update SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
333
333
|
* @param {string} specialtyTypeId
|
|
334
334
|
* @param {string} mediaId
|
|
335
335
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
@@ -339,7 +339,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
339
339
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdPut(specialtyTypeId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
340
340
|
/**
|
|
341
341
|
*
|
|
342
|
-
* @summary Create SpecialtyTypeMedia. (Auth policies:
|
|
342
|
+
* @summary Create SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
343
343
|
* @param {string} specialtyTypeId
|
|
344
344
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
345
345
|
* @param {*} [options] Override http request option.
|
|
@@ -348,7 +348,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
348
348
|
apiV1SpecialtytypesSpecialtyTypeIdMediasPost(specialtyTypeId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
349
349
|
/**
|
|
350
350
|
*
|
|
351
|
-
* @summary Update Department. (Auth policies:
|
|
351
|
+
* @summary Update Department. (Auth policies: RequireContentManagerRole)
|
|
352
352
|
* @param {string} specialtyTypeId
|
|
353
353
|
* @param {UpdateSpecialtyTypeCommand} [updateSpecialtyTypeCommand]
|
|
354
354
|
* @param {*} [options] Override http request option.
|
|
@@ -357,7 +357,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
357
357
|
apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypeModel>>;
|
|
358
358
|
/**
|
|
359
359
|
*
|
|
360
|
-
* @summary Reactivate Department (SpecialtyType). (Auth policies:
|
|
360
|
+
* @summary Reactivate Department (SpecialtyType). (Auth policies: RequireContentManagerRole)
|
|
361
361
|
* @param {string} specialtyTypeId
|
|
362
362
|
* @param {*} [options] Override http request option.
|
|
363
363
|
* @throws {RequiredError}
|
|
@@ -365,7 +365,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
365
365
|
apiV1SpecialtytypesSpecialtyTypeIdReactivatePut(specialtyTypeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
366
366
|
/**
|
|
367
367
|
*
|
|
368
|
-
* @summary Revalidate specialtyType (Auth policies:
|
|
368
|
+
* @summary Revalidate specialtyType (Auth policies: RequireContentManagerRole)
|
|
369
369
|
* @param {string} specialtyTypeId
|
|
370
370
|
* @param {boolean} [includeCurrent]
|
|
371
371
|
* @param {*} [options] Override http request option.
|
|
@@ -374,7 +374,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
374
374
|
apiV1SpecialtytypesSpecialtyTypeIdRevalidatePost(specialtyTypeId: string, includeCurrent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
375
375
|
/**
|
|
376
376
|
*
|
|
377
|
-
* @summary Translate speciatyType (Auth policies:
|
|
377
|
+
* @summary Translate speciatyType (Auth policies: RequireContentManagerRole)
|
|
378
378
|
* @param {string} specialtyTypeId
|
|
379
379
|
* @param {TranslateSpecialtyTypeCommand} [translateSpecialtyTypeCommand]
|
|
380
380
|
* @param {*} [options] Override http request option.
|
|
@@ -389,7 +389,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
389
389
|
export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
390
390
|
/**
|
|
391
391
|
*
|
|
392
|
-
* @summary Get all Departments. (Auth
|
|
392
|
+
* @summary Get all Departments. (Auth policies: RequireDefaultAdminAppRole)
|
|
393
393
|
* @param {string} [id]
|
|
394
394
|
* @param {string} [name]
|
|
395
395
|
* @param {string} [description]
|
|
@@ -410,7 +410,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
410
410
|
apiV1SpecialtytypesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, ids?: Array<string>, specialtyTypeCategoryId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SpecialtyTypesModel>;
|
|
411
411
|
/**
|
|
412
412
|
*
|
|
413
|
-
* @summary Create a Department. (Auth policies:
|
|
413
|
+
* @summary Create a Department. (Auth policies: RequireContentManagerRole)
|
|
414
414
|
* @param {CreateSpecialtyTypeCommand} [createSpecialtyTypeCommand]
|
|
415
415
|
* @param {*} [options] Override http request option.
|
|
416
416
|
* @throws {RequiredError}
|
|
@@ -418,7 +418,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
418
418
|
apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
419
419
|
/**
|
|
420
420
|
*
|
|
421
|
-
* @summary Get all Departments with simplified model. (Auth
|
|
421
|
+
* @summary Get all Departments with simplified model. (Auth policies: RequireDefaultAdminAppRole)
|
|
422
422
|
* @param {string} [id]
|
|
423
423
|
* @param {string} [name]
|
|
424
424
|
* @param {string} [description]
|
|
@@ -439,7 +439,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
439
439
|
apiV1SpecialtytypesSimpleGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, ids?: Array<string>, specialtyTypeCategoryId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SpecialtyTypesSimpleModel>;
|
|
440
440
|
/**
|
|
441
441
|
*
|
|
442
|
-
* @summary Get department by slug (Auth
|
|
442
|
+
* @summary Get department by slug (Auth policies: RequireDefaultAdminAppRole)
|
|
443
443
|
* @param {string} slug
|
|
444
444
|
* @param {string} [languageCode]
|
|
445
445
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -449,7 +449,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
449
449
|
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
450
450
|
/**
|
|
451
451
|
*
|
|
452
|
-
* @summary Batch for departments sorting (Auth policies:
|
|
452
|
+
* @summary Batch for departments sorting (Auth policies: RequireContentManagerRole)
|
|
453
453
|
* @param {SpecialtyTypeSortingCommand} [specialtyTypeSortingCommand]
|
|
454
454
|
* @param {*} [options] Override http request option.
|
|
455
455
|
* @throws {RequiredError}
|
|
@@ -457,7 +457,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
457
457
|
apiV1SpecialtytypesSortPut(specialtyTypeSortingCommand?: SpecialtyTypeSortingCommand, options?: any): AxiosPromise<SortingResultModel>;
|
|
458
458
|
/**
|
|
459
459
|
*
|
|
460
|
-
* @summary Delete Department. (Auth policies:
|
|
460
|
+
* @summary Delete Department. (Auth policies: RequireContentManagerRole)
|
|
461
461
|
* @param {string} specialtyTypeId
|
|
462
462
|
* @param {boolean} [isPermanent]
|
|
463
463
|
* @param {*} [options] Override http request option.
|
|
@@ -466,7 +466,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
466
466
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(specialtyTypeId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
467
467
|
/**
|
|
468
468
|
*
|
|
469
|
-
* @summary Get department (Auth
|
|
469
|
+
* @summary Get department (Auth policies: RequireDefaultAdminAppRole)
|
|
470
470
|
* @param {string} specialtyTypeId
|
|
471
471
|
* @param {string} [languageCode]
|
|
472
472
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -476,7 +476,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
476
476
|
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
477
477
|
/**
|
|
478
478
|
*
|
|
479
|
-
* @summary Get all SpecialtyTypeMedias. (Auth
|
|
479
|
+
* @summary Get all SpecialtyTypeMedias. (Auth policies: RequireContentManagerRole)
|
|
480
480
|
* @param {string} specialtyTypeId
|
|
481
481
|
* @param {string} [id]
|
|
482
482
|
* @param {MediaType} [mediaType]
|
|
@@ -489,7 +489,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
489
489
|
apiV1SpecialtytypesSpecialtyTypeIdMediasGet(specialtyTypeId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<MediasModel>;
|
|
490
490
|
/**
|
|
491
491
|
*
|
|
492
|
-
* @summary Delete SpecialtyTypeMedia (Auth policies:
|
|
492
|
+
* @summary Delete SpecialtyTypeMedia (Auth policies: RequireContentManagerRole)
|
|
493
493
|
* @param {string} specialtyTypeId
|
|
494
494
|
* @param {string} mediaId
|
|
495
495
|
* @param {*} [options] Override http request option.
|
|
@@ -498,7 +498,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
498
498
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdDelete(specialtyTypeId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
499
499
|
/**
|
|
500
500
|
*
|
|
501
|
-
* @summary Get SpecialtyTypeMedia. (Auth
|
|
501
|
+
* @summary Get SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
502
502
|
* @param {string} specialtyTypeId
|
|
503
503
|
* @param {string} mediaId
|
|
504
504
|
* @param {*} [options] Override http request option.
|
|
@@ -507,7 +507,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
507
507
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdGet(specialtyTypeId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
508
508
|
/**
|
|
509
509
|
*
|
|
510
|
-
* @summary Update SpecialtyTypeMedia. (Auth policies:
|
|
510
|
+
* @summary Update SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
511
511
|
* @param {string} specialtyTypeId
|
|
512
512
|
* @param {string} mediaId
|
|
513
513
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
@@ -517,7 +517,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
517
517
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdPut(specialtyTypeId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
518
518
|
/**
|
|
519
519
|
*
|
|
520
|
-
* @summary Create SpecialtyTypeMedia. (Auth policies:
|
|
520
|
+
* @summary Create SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
521
521
|
* @param {string} specialtyTypeId
|
|
522
522
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
523
523
|
* @param {*} [options] Override http request option.
|
|
@@ -526,7 +526,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
526
526
|
apiV1SpecialtytypesSpecialtyTypeIdMediasPost(specialtyTypeId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
527
527
|
/**
|
|
528
528
|
*
|
|
529
|
-
* @summary Update Department. (Auth policies:
|
|
529
|
+
* @summary Update Department. (Auth policies: RequireContentManagerRole)
|
|
530
530
|
* @param {string} specialtyTypeId
|
|
531
531
|
* @param {UpdateSpecialtyTypeCommand} [updateSpecialtyTypeCommand]
|
|
532
532
|
* @param {*} [options] Override http request option.
|
|
@@ -535,7 +535,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
535
535
|
apiV1SpecialtytypesSpecialtyTypeIdPut(specialtyTypeId: string, updateSpecialtyTypeCommand?: UpdateSpecialtyTypeCommand, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
536
536
|
/**
|
|
537
537
|
*
|
|
538
|
-
* @summary Reactivate Department (SpecialtyType). (Auth policies:
|
|
538
|
+
* @summary Reactivate Department (SpecialtyType). (Auth policies: RequireContentManagerRole)
|
|
539
539
|
* @param {string} specialtyTypeId
|
|
540
540
|
* @param {*} [options] Override http request option.
|
|
541
541
|
* @throws {RequiredError}
|
|
@@ -543,7 +543,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
543
543
|
apiV1SpecialtytypesSpecialtyTypeIdReactivatePut(specialtyTypeId: string, options?: any): AxiosPromise<boolean>;
|
|
544
544
|
/**
|
|
545
545
|
*
|
|
546
|
-
* @summary Revalidate specialtyType (Auth policies:
|
|
546
|
+
* @summary Revalidate specialtyType (Auth policies: RequireContentManagerRole)
|
|
547
547
|
* @param {string} specialtyTypeId
|
|
548
548
|
* @param {boolean} [includeCurrent]
|
|
549
549
|
* @param {*} [options] Override http request option.
|
|
@@ -552,7 +552,7 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
552
552
|
apiV1SpecialtytypesSpecialtyTypeIdRevalidatePost(specialtyTypeId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
553
553
|
/**
|
|
554
554
|
*
|
|
555
|
-
* @summary Translate speciatyType (Auth policies:
|
|
555
|
+
* @summary Translate speciatyType (Auth policies: RequireContentManagerRole)
|
|
556
556
|
* @param {string} specialtyTypeId
|
|
557
557
|
* @param {TranslateSpecialtyTypeCommand} [translateSpecialtyTypeCommand]
|
|
558
558
|
* @param {*} [options] Override http request option.
|
|
@@ -1041,7 +1041,7 @@ export interface SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdTranslatePos
|
|
|
1041
1041
|
export declare class SpecialtyTypesApi extends BaseAPI {
|
|
1042
1042
|
/**
|
|
1043
1043
|
*
|
|
1044
|
-
* @summary Get all Departments. (Auth
|
|
1044
|
+
* @summary Get all Departments. (Auth policies: RequireDefaultAdminAppRole)
|
|
1045
1045
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesGetRequest} requestParameters Request parameters.
|
|
1046
1046
|
* @param {*} [options] Override http request option.
|
|
1047
1047
|
* @throws {RequiredError}
|
|
@@ -1050,7 +1050,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1050
1050
|
apiV1SpecialtytypesGet(requestParameters?: SpecialtyTypesApiApiV1SpecialtytypesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel, any>>;
|
|
1051
1051
|
/**
|
|
1052
1052
|
*
|
|
1053
|
-
* @summary Create a Department. (Auth policies:
|
|
1053
|
+
* @summary Create a Department. (Auth policies: RequireContentManagerRole)
|
|
1054
1054
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesPostRequest} requestParameters Request parameters.
|
|
1055
1055
|
* @param {*} [options] Override http request option.
|
|
1056
1056
|
* @throws {RequiredError}
|
|
@@ -1059,7 +1059,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1059
1059
|
apiV1SpecialtytypesPost(requestParameters?: SpecialtyTypesApiApiV1SpecialtytypesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel, any>>;
|
|
1060
1060
|
/**
|
|
1061
1061
|
*
|
|
1062
|
-
* @summary Get all Departments with simplified model. (Auth
|
|
1062
|
+
* @summary Get all Departments with simplified model. (Auth policies: RequireDefaultAdminAppRole)
|
|
1063
1063
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSimpleGetRequest} requestParameters Request parameters.
|
|
1064
1064
|
* @param {*} [options] Override http request option.
|
|
1065
1065
|
* @throws {RequiredError}
|
|
@@ -1068,7 +1068,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1068
1068
|
apiV1SpecialtytypesSimpleGet(requestParameters?: SpecialtyTypesApiApiV1SpecialtytypesSimpleGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesSimpleModel, any>>;
|
|
1069
1069
|
/**
|
|
1070
1070
|
*
|
|
1071
|
-
* @summary Get department by slug (Auth
|
|
1071
|
+
* @summary Get department by slug (Auth policies: RequireDefaultAdminAppRole)
|
|
1072
1072
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSlugGetRequest} requestParameters Request parameters.
|
|
1073
1073
|
* @param {*} [options] Override http request option.
|
|
1074
1074
|
* @throws {RequiredError}
|
|
@@ -1077,7 +1077,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1077
1077
|
apiV1SpecialtytypesSlugGet(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSlugGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel, any>>;
|
|
1078
1078
|
/**
|
|
1079
1079
|
*
|
|
1080
|
-
* @summary Batch for departments sorting (Auth policies:
|
|
1080
|
+
* @summary Batch for departments sorting (Auth policies: RequireContentManagerRole)
|
|
1081
1081
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSortPutRequest} requestParameters Request parameters.
|
|
1082
1082
|
* @param {*} [options] Override http request option.
|
|
1083
1083
|
* @throws {RequiredError}
|
|
@@ -1086,7 +1086,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1086
1086
|
apiV1SpecialtytypesSortPut(requestParameters?: SpecialtyTypesApiApiV1SpecialtytypesSortPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SortingResultModel, any>>;
|
|
1087
1087
|
/**
|
|
1088
1088
|
*
|
|
1089
|
-
* @summary Delete Department. (Auth policies:
|
|
1089
|
+
* @summary Delete Department. (Auth policies: RequireContentManagerRole)
|
|
1090
1090
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdDeleteRequest} requestParameters Request parameters.
|
|
1091
1091
|
* @param {*} [options] Override http request option.
|
|
1092
1092
|
* @throws {RequiredError}
|
|
@@ -1095,7 +1095,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1095
1095
|
apiV1SpecialtytypesSpecialtyTypeIdDelete(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
1096
1096
|
/**
|
|
1097
1097
|
*
|
|
1098
|
-
* @summary Get department (Auth
|
|
1098
|
+
* @summary Get department (Auth policies: RequireDefaultAdminAppRole)
|
|
1099
1099
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdGetRequest} requestParameters Request parameters.
|
|
1100
1100
|
* @param {*} [options] Override http request option.
|
|
1101
1101
|
* @throws {RequiredError}
|
|
@@ -1104,7 +1104,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1104
1104
|
apiV1SpecialtytypesSpecialtyTypeIdGet(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel, any>>;
|
|
1105
1105
|
/**
|
|
1106
1106
|
*
|
|
1107
|
-
* @summary Get all SpecialtyTypeMedias. (Auth
|
|
1107
|
+
* @summary Get all SpecialtyTypeMedias. (Auth policies: RequireContentManagerRole)
|
|
1108
1108
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasGetRequest} requestParameters Request parameters.
|
|
1109
1109
|
* @param {*} [options] Override http request option.
|
|
1110
1110
|
* @throws {RequiredError}
|
|
@@ -1113,7 +1113,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1113
1113
|
apiV1SpecialtytypesSpecialtyTypeIdMediasGet(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
1114
1114
|
/**
|
|
1115
1115
|
*
|
|
1116
|
-
* @summary Delete SpecialtyTypeMedia (Auth policies:
|
|
1116
|
+
* @summary Delete SpecialtyTypeMedia (Auth policies: RequireContentManagerRole)
|
|
1117
1117
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdDeleteRequest} requestParameters Request parameters.
|
|
1118
1118
|
* @param {*} [options] Override http request option.
|
|
1119
1119
|
* @throws {RequiredError}
|
|
@@ -1122,7 +1122,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1122
1122
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdDelete(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
1123
1123
|
/**
|
|
1124
1124
|
*
|
|
1125
|
-
* @summary Get SpecialtyTypeMedia. (Auth
|
|
1125
|
+
* @summary Get SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
1126
1126
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdGetRequest} requestParameters Request parameters.
|
|
1127
1127
|
* @param {*} [options] Override http request option.
|
|
1128
1128
|
* @throws {RequiredError}
|
|
@@ -1131,7 +1131,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1131
1131
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdGet(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
1132
1132
|
/**
|
|
1133
1133
|
*
|
|
1134
|
-
* @summary Update SpecialtyTypeMedia. (Auth policies:
|
|
1134
|
+
* @summary Update SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
1135
1135
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdPutRequest} requestParameters Request parameters.
|
|
1136
1136
|
* @param {*} [options] Override http request option.
|
|
1137
1137
|
* @throws {RequiredError}
|
|
@@ -1140,7 +1140,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1140
1140
|
apiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdPut(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasMediaIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
1141
1141
|
/**
|
|
1142
1142
|
*
|
|
1143
|
-
* @summary Create SpecialtyTypeMedia. (Auth policies:
|
|
1143
|
+
* @summary Create SpecialtyTypeMedia. (Auth policies: RequireContentManagerRole)
|
|
1144
1144
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasPostRequest} requestParameters Request parameters.
|
|
1145
1145
|
* @param {*} [options] Override http request option.
|
|
1146
1146
|
* @throws {RequiredError}
|
|
@@ -1149,7 +1149,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1149
1149
|
apiV1SpecialtytypesSpecialtyTypeIdMediasPost(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdMediasPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
1150
1150
|
/**
|
|
1151
1151
|
*
|
|
1152
|
-
* @summary Update Department. (Auth policies:
|
|
1152
|
+
* @summary Update Department. (Auth policies: RequireContentManagerRole)
|
|
1153
1153
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdPutRequest} requestParameters Request parameters.
|
|
1154
1154
|
* @param {*} [options] Override http request option.
|
|
1155
1155
|
* @throws {RequiredError}
|
|
@@ -1158,7 +1158,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1158
1158
|
apiV1SpecialtytypesSpecialtyTypeIdPut(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel, any>>;
|
|
1159
1159
|
/**
|
|
1160
1160
|
*
|
|
1161
|
-
* @summary Reactivate Department (SpecialtyType). (Auth policies:
|
|
1161
|
+
* @summary Reactivate Department (SpecialtyType). (Auth policies: RequireContentManagerRole)
|
|
1162
1162
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdReactivatePutRequest} requestParameters Request parameters.
|
|
1163
1163
|
* @param {*} [options] Override http request option.
|
|
1164
1164
|
* @throws {RequiredError}
|
|
@@ -1167,7 +1167,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1167
1167
|
apiV1SpecialtytypesSpecialtyTypeIdReactivatePut(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
1168
1168
|
/**
|
|
1169
1169
|
*
|
|
1170
|
-
* @summary Revalidate specialtyType (Auth policies:
|
|
1170
|
+
* @summary Revalidate specialtyType (Auth policies: RequireContentManagerRole)
|
|
1171
1171
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdRevalidatePostRequest} requestParameters Request parameters.
|
|
1172
1172
|
* @param {*} [options] Override http request option.
|
|
1173
1173
|
* @throws {RequiredError}
|
|
@@ -1176,7 +1176,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
1176
1176
|
apiV1SpecialtytypesSpecialtyTypeIdRevalidatePost(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
1177
1177
|
/**
|
|
1178
1178
|
*
|
|
1179
|
-
* @summary Translate speciatyType (Auth policies:
|
|
1179
|
+
* @summary Translate speciatyType (Auth policies: RequireContentManagerRole)
|
|
1180
1180
|
* @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdTranslatePostRequest} requestParameters Request parameters.
|
|
1181
1181
|
* @param {*} [options] Override http request option.
|
|
1182
1182
|
* @throws {RequiredError}
|