ch-admin-api-client-typescript 5.79.1 → 5.79.13
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/frequently-asked-questions-api.d.ts +524 -0
- package/lib/api/frequently-asked-questions-api.d.ts.map +1 -0
- package/lib/api/frequently-asked-questions-api.js +866 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/ai-prompt-authorized-hospital-model.d.ts +6 -0
- package/lib/models/ai-prompt-authorized-hospital-model.d.ts.map +1 -1
- package/lib/models/create-frequently-asked-question-command.d.ts +112 -0
- package/lib/models/create-frequently-asked-question-command.d.ts.map +1 -0
- package/lib/models/create-frequently-asked-question-command.js +15 -0
- package/lib/models/frequently-asked-question-categories.d.ts +22 -0
- package/lib/models/frequently-asked-question-categories.d.ts.map +1 -0
- package/lib/models/frequently-asked-question-categories.js +25 -0
- package/lib/models/frequently-asked-question-item-model.d.ts +125 -0
- package/lib/models/frequently-asked-question-item-model.d.ts.map +1 -0
- package/lib/models/frequently-asked-question-item-model.js +15 -0
- package/lib/models/frequently-asked-question-model.d.ts +137 -0
- package/lib/models/frequently-asked-question-model.d.ts.map +1 -0
- package/lib/models/frequently-asked-question-model.js +15 -0
- package/lib/models/frequently-asked-question-status.d.ts +23 -0
- package/lib/models/frequently-asked-question-status.d.ts.map +1 -0
- package/lib/models/frequently-asked-question-status.js +26 -0
- package/lib/models/frequently-asked-question-subcategories.d.ts +24 -0
- package/lib/models/frequently-asked-question-subcategories.d.ts.map +1 -0
- package/lib/models/frequently-asked-question-subcategories.js +27 -0
- package/lib/models/frequently-asked-questions-model.d.ts +33 -0
- package/lib/models/frequently-asked-questions-model.d.ts.map +1 -0
- package/lib/models/frequently-asked-questions-model.js +15 -0
- package/lib/models/index.d.ts +9 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +9 -0
- package/lib/models/translate-frequently-asked-question-command.d.ts +43 -0
- package/lib/models/translate-frequently-asked-question-command.d.ts.map +1 -0
- package/lib/models/translate-frequently-asked-question-command.js +15 -0
- package/lib/models/update-ai-prompt-command.d.ts +6 -0
- package/lib/models/update-ai-prompt-command.d.ts.map +1 -1
- package/lib/models/update-frequently-asked-question-command.d.ts +74 -0
- package/lib/models/update-frequently-asked-question-command.d.ts.map +1 -0
- package/lib/models/update-frequently-asked-question-command.js +15 -0
- package/package.json +1 -1
|
@@ -0,0 +1,524 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { CreateFrequentlyAskedQuestionCommand } from '../models';
|
|
16
|
+
import { FrequentlyAskedQuestionCategories } from '../models';
|
|
17
|
+
import { FrequentlyAskedQuestionModel } from '../models';
|
|
18
|
+
import { FrequentlyAskedQuestionStatus } from '../models';
|
|
19
|
+
import { FrequentlyAskedQuestionSubcategories } from '../models';
|
|
20
|
+
import { FrequentlyAskedQuestionsModel } from '../models';
|
|
21
|
+
import { TranslateFrequentlyAskedQuestionCommand } from '../models';
|
|
22
|
+
import { UpdateFrequentlyAskedQuestionCommand } from '../models';
|
|
23
|
+
/**
|
|
24
|
+
* FrequentlyAskedQuestionsApi - axios parameter creator
|
|
25
|
+
* @export
|
|
26
|
+
*/
|
|
27
|
+
export declare const FrequentlyAskedQuestionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @summary Delete FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
31
|
+
* @param {string} frequentlyAskedQuestionId
|
|
32
|
+
* @param {boolean} [isPermanent]
|
|
33
|
+
* @param {*} [options] Override http request option.
|
|
34
|
+
* @throws {RequiredError}
|
|
35
|
+
*/
|
|
36
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDelete: (frequentlyAskedQuestionId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @summary Get FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
40
|
+
* @param {string} frequentlyAskedQuestionId
|
|
41
|
+
* @param {string} [languageCode]
|
|
42
|
+
* @param {*} [options] Override http request option.
|
|
43
|
+
* @throws {RequiredError}
|
|
44
|
+
*/
|
|
45
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGet: (frequentlyAskedQuestionId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @summary Update FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
49
|
+
* @param {string} frequentlyAskedQuestionId
|
|
50
|
+
* @param {UpdateFrequentlyAskedQuestionCommand} [updateFrequentlyAskedQuestionCommand]
|
|
51
|
+
* @param {*} [options] Override http request option.
|
|
52
|
+
* @throws {RequiredError}
|
|
53
|
+
*/
|
|
54
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPut: (frequentlyAskedQuestionId: string, updateFrequentlyAskedQuestionCommand?: UpdateFrequentlyAskedQuestionCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @summary Reactivate FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
58
|
+
* @param {string} frequentlyAskedQuestionId
|
|
59
|
+
* @param {*} [options] Override http request option.
|
|
60
|
+
* @throws {RequiredError}
|
|
61
|
+
*/
|
|
62
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePut: (frequentlyAskedQuestionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @summary Translate FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
66
|
+
* @param {string} frequentlyAskedQuestionId
|
|
67
|
+
* @param {TranslateFrequentlyAskedQuestionCommand} [translateFrequentlyAskedQuestionCommand]
|
|
68
|
+
* @param {*} [options] Override http request option.
|
|
69
|
+
* @throws {RequiredError}
|
|
70
|
+
*/
|
|
71
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePost: (frequentlyAskedQuestionId: string, translateFrequentlyAskedQuestionCommand?: TranslateFrequentlyAskedQuestionCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @summary Get FrequentlyAskedQuestions (Auth policies: RequireContentManagerRole)
|
|
75
|
+
* @param {string} [languageCode]
|
|
76
|
+
* @param {string} [name]
|
|
77
|
+
* @param {FrequentlyAskedQuestionCategories} [category]
|
|
78
|
+
* @param {FrequentlyAskedQuestionSubcategories} [subcategory]
|
|
79
|
+
* @param {string} [id]
|
|
80
|
+
* @param {string} [hospitalId]
|
|
81
|
+
* @param {string} [doctorAffiliationId]
|
|
82
|
+
* @param {string} [dealId]
|
|
83
|
+
* @param {string} [articleId]
|
|
84
|
+
* @param {FrequentlyAskedQuestionStatus} [status]
|
|
85
|
+
* @param {boolean} [showHidden]
|
|
86
|
+
* @param {number} [page]
|
|
87
|
+
* @param {number} [limit]
|
|
88
|
+
* @param {Date} [lastRetrieved]
|
|
89
|
+
* @param {*} [options] Override http request option.
|
|
90
|
+
* @throws {RequiredError}
|
|
91
|
+
*/
|
|
92
|
+
apiV1FrequentlyaskedquestionsGet: (languageCode?: string, name?: string, category?: FrequentlyAskedQuestionCategories, subcategory?: FrequentlyAskedQuestionSubcategories, id?: string, hospitalId?: string, doctorAffiliationId?: string, dealId?: string, articleId?: string, status?: FrequentlyAskedQuestionStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @summary Create FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
96
|
+
* @param {CreateFrequentlyAskedQuestionCommand} [createFrequentlyAskedQuestionCommand]
|
|
97
|
+
* @param {*} [options] Override http request option.
|
|
98
|
+
* @throws {RequiredError}
|
|
99
|
+
*/
|
|
100
|
+
apiV1FrequentlyaskedquestionsPost: (createFrequentlyAskedQuestionCommand?: CreateFrequentlyAskedQuestionCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* FrequentlyAskedQuestionsApi - functional programming interface
|
|
104
|
+
* @export
|
|
105
|
+
*/
|
|
106
|
+
export declare const FrequentlyAskedQuestionsApiFp: (configuration?: Configuration) => {
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @summary Delete FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
110
|
+
* @param {string} frequentlyAskedQuestionId
|
|
111
|
+
* @param {boolean} [isPermanent]
|
|
112
|
+
* @param {*} [options] Override http request option.
|
|
113
|
+
* @throws {RequiredError}
|
|
114
|
+
*/
|
|
115
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDelete(frequentlyAskedQuestionId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @summary Get FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
119
|
+
* @param {string} frequentlyAskedQuestionId
|
|
120
|
+
* @param {string} [languageCode]
|
|
121
|
+
* @param {*} [options] Override http request option.
|
|
122
|
+
* @throws {RequiredError}
|
|
123
|
+
*/
|
|
124
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGet(frequentlyAskedQuestionId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FrequentlyAskedQuestionModel>>;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @summary Update FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
128
|
+
* @param {string} frequentlyAskedQuestionId
|
|
129
|
+
* @param {UpdateFrequentlyAskedQuestionCommand} [updateFrequentlyAskedQuestionCommand]
|
|
130
|
+
* @param {*} [options] Override http request option.
|
|
131
|
+
* @throws {RequiredError}
|
|
132
|
+
*/
|
|
133
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPut(frequentlyAskedQuestionId: string, updateFrequentlyAskedQuestionCommand?: UpdateFrequentlyAskedQuestionCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FrequentlyAskedQuestionModel>>;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @summary Reactivate FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
137
|
+
* @param {string} frequentlyAskedQuestionId
|
|
138
|
+
* @param {*} [options] Override http request option.
|
|
139
|
+
* @throws {RequiredError}
|
|
140
|
+
*/
|
|
141
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePut(frequentlyAskedQuestionId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
142
|
+
/**
|
|
143
|
+
*
|
|
144
|
+
* @summary Translate FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
145
|
+
* @param {string} frequentlyAskedQuestionId
|
|
146
|
+
* @param {TranslateFrequentlyAskedQuestionCommand} [translateFrequentlyAskedQuestionCommand]
|
|
147
|
+
* @param {*} [options] Override http request option.
|
|
148
|
+
* @throws {RequiredError}
|
|
149
|
+
*/
|
|
150
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePost(frequentlyAskedQuestionId: string, translateFrequentlyAskedQuestionCommand?: TranslateFrequentlyAskedQuestionCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @summary Get FrequentlyAskedQuestions (Auth policies: RequireContentManagerRole)
|
|
154
|
+
* @param {string} [languageCode]
|
|
155
|
+
* @param {string} [name]
|
|
156
|
+
* @param {FrequentlyAskedQuestionCategories} [category]
|
|
157
|
+
* @param {FrequentlyAskedQuestionSubcategories} [subcategory]
|
|
158
|
+
* @param {string} [id]
|
|
159
|
+
* @param {string} [hospitalId]
|
|
160
|
+
* @param {string} [doctorAffiliationId]
|
|
161
|
+
* @param {string} [dealId]
|
|
162
|
+
* @param {string} [articleId]
|
|
163
|
+
* @param {FrequentlyAskedQuestionStatus} [status]
|
|
164
|
+
* @param {boolean} [showHidden]
|
|
165
|
+
* @param {number} [page]
|
|
166
|
+
* @param {number} [limit]
|
|
167
|
+
* @param {Date} [lastRetrieved]
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
apiV1FrequentlyaskedquestionsGet(languageCode?: string, name?: string, category?: FrequentlyAskedQuestionCategories, subcategory?: FrequentlyAskedQuestionSubcategories, id?: string, hospitalId?: string, doctorAffiliationId?: string, dealId?: string, articleId?: string, status?: FrequentlyAskedQuestionStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FrequentlyAskedQuestionsModel>>;
|
|
172
|
+
/**
|
|
173
|
+
*
|
|
174
|
+
* @summary Create FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
175
|
+
* @param {CreateFrequentlyAskedQuestionCommand} [createFrequentlyAskedQuestionCommand]
|
|
176
|
+
* @param {*} [options] Override http request option.
|
|
177
|
+
* @throws {RequiredError}
|
|
178
|
+
*/
|
|
179
|
+
apiV1FrequentlyaskedquestionsPost(createFrequentlyAskedQuestionCommand?: CreateFrequentlyAskedQuestionCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FrequentlyAskedQuestionModel>>;
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* FrequentlyAskedQuestionsApi - factory interface
|
|
183
|
+
* @export
|
|
184
|
+
*/
|
|
185
|
+
export declare const FrequentlyAskedQuestionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @summary Delete FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
189
|
+
* @param {string} frequentlyAskedQuestionId
|
|
190
|
+
* @param {boolean} [isPermanent]
|
|
191
|
+
* @param {*} [options] Override http request option.
|
|
192
|
+
* @throws {RequiredError}
|
|
193
|
+
*/
|
|
194
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDelete(frequentlyAskedQuestionId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
195
|
+
/**
|
|
196
|
+
*
|
|
197
|
+
* @summary Get FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
198
|
+
* @param {string} frequentlyAskedQuestionId
|
|
199
|
+
* @param {string} [languageCode]
|
|
200
|
+
* @param {*} [options] Override http request option.
|
|
201
|
+
* @throws {RequiredError}
|
|
202
|
+
*/
|
|
203
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGet(frequentlyAskedQuestionId: string, languageCode?: string, options?: any): AxiosPromise<FrequentlyAskedQuestionModel>;
|
|
204
|
+
/**
|
|
205
|
+
*
|
|
206
|
+
* @summary Update FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
207
|
+
* @param {string} frequentlyAskedQuestionId
|
|
208
|
+
* @param {UpdateFrequentlyAskedQuestionCommand} [updateFrequentlyAskedQuestionCommand]
|
|
209
|
+
* @param {*} [options] Override http request option.
|
|
210
|
+
* @throws {RequiredError}
|
|
211
|
+
*/
|
|
212
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPut(frequentlyAskedQuestionId: string, updateFrequentlyAskedQuestionCommand?: UpdateFrequentlyAskedQuestionCommand, options?: any): AxiosPromise<FrequentlyAskedQuestionModel>;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @summary Reactivate FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
216
|
+
* @param {string} frequentlyAskedQuestionId
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePut(frequentlyAskedQuestionId: string, options?: any): AxiosPromise<boolean>;
|
|
221
|
+
/**
|
|
222
|
+
*
|
|
223
|
+
* @summary Translate FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
224
|
+
* @param {string} frequentlyAskedQuestionId
|
|
225
|
+
* @param {TranslateFrequentlyAskedQuestionCommand} [translateFrequentlyAskedQuestionCommand]
|
|
226
|
+
* @param {*} [options] Override http request option.
|
|
227
|
+
* @throws {RequiredError}
|
|
228
|
+
*/
|
|
229
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePost(frequentlyAskedQuestionId: string, translateFrequentlyAskedQuestionCommand?: TranslateFrequentlyAskedQuestionCommand, options?: any): AxiosPromise<void>;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @summary Get FrequentlyAskedQuestions (Auth policies: RequireContentManagerRole)
|
|
233
|
+
* @param {string} [languageCode]
|
|
234
|
+
* @param {string} [name]
|
|
235
|
+
* @param {FrequentlyAskedQuestionCategories} [category]
|
|
236
|
+
* @param {FrequentlyAskedQuestionSubcategories} [subcategory]
|
|
237
|
+
* @param {string} [id]
|
|
238
|
+
* @param {string} [hospitalId]
|
|
239
|
+
* @param {string} [doctorAffiliationId]
|
|
240
|
+
* @param {string} [dealId]
|
|
241
|
+
* @param {string} [articleId]
|
|
242
|
+
* @param {FrequentlyAskedQuestionStatus} [status]
|
|
243
|
+
* @param {boolean} [showHidden]
|
|
244
|
+
* @param {number} [page]
|
|
245
|
+
* @param {number} [limit]
|
|
246
|
+
* @param {Date} [lastRetrieved]
|
|
247
|
+
* @param {*} [options] Override http request option.
|
|
248
|
+
* @throws {RequiredError}
|
|
249
|
+
*/
|
|
250
|
+
apiV1FrequentlyaskedquestionsGet(languageCode?: string, name?: string, category?: FrequentlyAskedQuestionCategories, subcategory?: FrequentlyAskedQuestionSubcategories, id?: string, hospitalId?: string, doctorAffiliationId?: string, dealId?: string, articleId?: string, status?: FrequentlyAskedQuestionStatus, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<FrequentlyAskedQuestionsModel>;
|
|
251
|
+
/**
|
|
252
|
+
*
|
|
253
|
+
* @summary Create FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
254
|
+
* @param {CreateFrequentlyAskedQuestionCommand} [createFrequentlyAskedQuestionCommand]
|
|
255
|
+
* @param {*} [options] Override http request option.
|
|
256
|
+
* @throws {RequiredError}
|
|
257
|
+
*/
|
|
258
|
+
apiV1FrequentlyaskedquestionsPost(createFrequentlyAskedQuestionCommand?: CreateFrequentlyAskedQuestionCommand, options?: any): AxiosPromise<FrequentlyAskedQuestionModel>;
|
|
259
|
+
};
|
|
260
|
+
/**
|
|
261
|
+
* Request parameters for apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDelete operation in FrequentlyAskedQuestionsApi.
|
|
262
|
+
* @export
|
|
263
|
+
* @interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDeleteRequest
|
|
264
|
+
*/
|
|
265
|
+
export interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDeleteRequest {
|
|
266
|
+
/**
|
|
267
|
+
*
|
|
268
|
+
* @type {string}
|
|
269
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDelete
|
|
270
|
+
*/
|
|
271
|
+
readonly frequentlyAskedQuestionId: string;
|
|
272
|
+
/**
|
|
273
|
+
*
|
|
274
|
+
* @type {boolean}
|
|
275
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDelete
|
|
276
|
+
*/
|
|
277
|
+
readonly isPermanent?: boolean;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* Request parameters for apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGet operation in FrequentlyAskedQuestionsApi.
|
|
281
|
+
* @export
|
|
282
|
+
* @interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGetRequest
|
|
283
|
+
*/
|
|
284
|
+
export interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGetRequest {
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGet
|
|
289
|
+
*/
|
|
290
|
+
readonly frequentlyAskedQuestionId: string;
|
|
291
|
+
/**
|
|
292
|
+
*
|
|
293
|
+
* @type {string}
|
|
294
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGet
|
|
295
|
+
*/
|
|
296
|
+
readonly languageCode?: string;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* Request parameters for apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPut operation in FrequentlyAskedQuestionsApi.
|
|
300
|
+
* @export
|
|
301
|
+
* @interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPutRequest
|
|
302
|
+
*/
|
|
303
|
+
export interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPutRequest {
|
|
304
|
+
/**
|
|
305
|
+
*
|
|
306
|
+
* @type {string}
|
|
307
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPut
|
|
308
|
+
*/
|
|
309
|
+
readonly frequentlyAskedQuestionId: string;
|
|
310
|
+
/**
|
|
311
|
+
*
|
|
312
|
+
* @type {UpdateFrequentlyAskedQuestionCommand}
|
|
313
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPut
|
|
314
|
+
*/
|
|
315
|
+
readonly updateFrequentlyAskedQuestionCommand?: UpdateFrequentlyAskedQuestionCommand;
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* Request parameters for apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePut operation in FrequentlyAskedQuestionsApi.
|
|
319
|
+
* @export
|
|
320
|
+
* @interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePutRequest
|
|
321
|
+
*/
|
|
322
|
+
export interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePutRequest {
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* @type {string}
|
|
326
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePut
|
|
327
|
+
*/
|
|
328
|
+
readonly frequentlyAskedQuestionId: string;
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* Request parameters for apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePost operation in FrequentlyAskedQuestionsApi.
|
|
332
|
+
* @export
|
|
333
|
+
* @interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePostRequest
|
|
334
|
+
*/
|
|
335
|
+
export interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePostRequest {
|
|
336
|
+
/**
|
|
337
|
+
*
|
|
338
|
+
* @type {string}
|
|
339
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePost
|
|
340
|
+
*/
|
|
341
|
+
readonly frequentlyAskedQuestionId: string;
|
|
342
|
+
/**
|
|
343
|
+
*
|
|
344
|
+
* @type {TranslateFrequentlyAskedQuestionCommand}
|
|
345
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePost
|
|
346
|
+
*/
|
|
347
|
+
readonly translateFrequentlyAskedQuestionCommand?: TranslateFrequentlyAskedQuestionCommand;
|
|
348
|
+
}
|
|
349
|
+
/**
|
|
350
|
+
* Request parameters for apiV1FrequentlyaskedquestionsGet operation in FrequentlyAskedQuestionsApi.
|
|
351
|
+
* @export
|
|
352
|
+
* @interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGetRequest
|
|
353
|
+
*/
|
|
354
|
+
export interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGetRequest {
|
|
355
|
+
/**
|
|
356
|
+
*
|
|
357
|
+
* @type {string}
|
|
358
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
359
|
+
*/
|
|
360
|
+
readonly languageCode?: string;
|
|
361
|
+
/**
|
|
362
|
+
*
|
|
363
|
+
* @type {string}
|
|
364
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
365
|
+
*/
|
|
366
|
+
readonly name?: string;
|
|
367
|
+
/**
|
|
368
|
+
*
|
|
369
|
+
* @type {FrequentlyAskedQuestionCategories}
|
|
370
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
371
|
+
*/
|
|
372
|
+
readonly category?: FrequentlyAskedQuestionCategories;
|
|
373
|
+
/**
|
|
374
|
+
*
|
|
375
|
+
* @type {FrequentlyAskedQuestionSubcategories}
|
|
376
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
377
|
+
*/
|
|
378
|
+
readonly subcategory?: FrequentlyAskedQuestionSubcategories;
|
|
379
|
+
/**
|
|
380
|
+
*
|
|
381
|
+
* @type {string}
|
|
382
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
383
|
+
*/
|
|
384
|
+
readonly id?: string;
|
|
385
|
+
/**
|
|
386
|
+
*
|
|
387
|
+
* @type {string}
|
|
388
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
389
|
+
*/
|
|
390
|
+
readonly hospitalId?: string;
|
|
391
|
+
/**
|
|
392
|
+
*
|
|
393
|
+
* @type {string}
|
|
394
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
395
|
+
*/
|
|
396
|
+
readonly doctorAffiliationId?: string;
|
|
397
|
+
/**
|
|
398
|
+
*
|
|
399
|
+
* @type {string}
|
|
400
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
401
|
+
*/
|
|
402
|
+
readonly dealId?: string;
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
* @type {string}
|
|
406
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
407
|
+
*/
|
|
408
|
+
readonly articleId?: string;
|
|
409
|
+
/**
|
|
410
|
+
*
|
|
411
|
+
* @type {FrequentlyAskedQuestionStatus}
|
|
412
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
413
|
+
*/
|
|
414
|
+
readonly status?: FrequentlyAskedQuestionStatus;
|
|
415
|
+
/**
|
|
416
|
+
*
|
|
417
|
+
* @type {boolean}
|
|
418
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
419
|
+
*/
|
|
420
|
+
readonly showHidden?: boolean;
|
|
421
|
+
/**
|
|
422
|
+
*
|
|
423
|
+
* @type {number}
|
|
424
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
425
|
+
*/
|
|
426
|
+
readonly page?: number;
|
|
427
|
+
/**
|
|
428
|
+
*
|
|
429
|
+
* @type {number}
|
|
430
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
431
|
+
*/
|
|
432
|
+
readonly limit?: number;
|
|
433
|
+
/**
|
|
434
|
+
*
|
|
435
|
+
* @type {Date}
|
|
436
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGet
|
|
437
|
+
*/
|
|
438
|
+
readonly lastRetrieved?: Date;
|
|
439
|
+
}
|
|
440
|
+
/**
|
|
441
|
+
* Request parameters for apiV1FrequentlyaskedquestionsPost operation in FrequentlyAskedQuestionsApi.
|
|
442
|
+
* @export
|
|
443
|
+
* @interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsPostRequest
|
|
444
|
+
*/
|
|
445
|
+
export interface FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsPostRequest {
|
|
446
|
+
/**
|
|
447
|
+
*
|
|
448
|
+
* @type {CreateFrequentlyAskedQuestionCommand}
|
|
449
|
+
* @memberof FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsPost
|
|
450
|
+
*/
|
|
451
|
+
readonly createFrequentlyAskedQuestionCommand?: CreateFrequentlyAskedQuestionCommand;
|
|
452
|
+
}
|
|
453
|
+
/**
|
|
454
|
+
* FrequentlyAskedQuestionsApi - object-oriented interface
|
|
455
|
+
* @export
|
|
456
|
+
* @class FrequentlyAskedQuestionsApi
|
|
457
|
+
* @extends {BaseAPI}
|
|
458
|
+
*/
|
|
459
|
+
export declare class FrequentlyAskedQuestionsApi extends BaseAPI {
|
|
460
|
+
/**
|
|
461
|
+
*
|
|
462
|
+
* @summary Delete FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
463
|
+
* @param {FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDeleteRequest} requestParameters Request parameters.
|
|
464
|
+
* @param {*} [options] Override http request option.
|
|
465
|
+
* @throws {RequiredError}
|
|
466
|
+
* @memberof FrequentlyAskedQuestionsApi
|
|
467
|
+
*/
|
|
468
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDelete(requestParameters: FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
469
|
+
/**
|
|
470
|
+
*
|
|
471
|
+
* @summary Get FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
472
|
+
* @param {FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGetRequest} requestParameters Request parameters.
|
|
473
|
+
* @param {*} [options] Override http request option.
|
|
474
|
+
* @throws {RequiredError}
|
|
475
|
+
* @memberof FrequentlyAskedQuestionsApi
|
|
476
|
+
*/
|
|
477
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGet(requestParameters: FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FrequentlyAskedQuestionModel, any>>;
|
|
478
|
+
/**
|
|
479
|
+
*
|
|
480
|
+
* @summary Update FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
481
|
+
* @param {FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPutRequest} requestParameters Request parameters.
|
|
482
|
+
* @param {*} [options] Override http request option.
|
|
483
|
+
* @throws {RequiredError}
|
|
484
|
+
* @memberof FrequentlyAskedQuestionsApi
|
|
485
|
+
*/
|
|
486
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPut(requestParameters: FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FrequentlyAskedQuestionModel, any>>;
|
|
487
|
+
/**
|
|
488
|
+
*
|
|
489
|
+
* @summary Reactivate FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
490
|
+
* @param {FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePutRequest} requestParameters Request parameters.
|
|
491
|
+
* @param {*} [options] Override http request option.
|
|
492
|
+
* @throws {RequiredError}
|
|
493
|
+
* @memberof FrequentlyAskedQuestionsApi
|
|
494
|
+
*/
|
|
495
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePut(requestParameters: FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @summary Translate FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
499
|
+
* @param {FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePostRequest} requestParameters Request parameters.
|
|
500
|
+
* @param {*} [options] Override http request option.
|
|
501
|
+
* @throws {RequiredError}
|
|
502
|
+
* @memberof FrequentlyAskedQuestionsApi
|
|
503
|
+
*/
|
|
504
|
+
apiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePost(requestParameters: FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsFrequentlyAskedQuestionIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* @summary Get FrequentlyAskedQuestions (Auth policies: RequireContentManagerRole)
|
|
508
|
+
* @param {FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGetRequest} requestParameters Request parameters.
|
|
509
|
+
* @param {*} [options] Override http request option.
|
|
510
|
+
* @throws {RequiredError}
|
|
511
|
+
* @memberof FrequentlyAskedQuestionsApi
|
|
512
|
+
*/
|
|
513
|
+
apiV1FrequentlyaskedquestionsGet(requestParameters?: FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FrequentlyAskedQuestionsModel, any>>;
|
|
514
|
+
/**
|
|
515
|
+
*
|
|
516
|
+
* @summary Create FrequentlyAskedQuestion (Auth policies: RequireContentManagerRole)
|
|
517
|
+
* @param {FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsPostRequest} requestParameters Request parameters.
|
|
518
|
+
* @param {*} [options] Override http request option.
|
|
519
|
+
* @throws {RequiredError}
|
|
520
|
+
* @memberof FrequentlyAskedQuestionsApi
|
|
521
|
+
*/
|
|
522
|
+
apiV1FrequentlyaskedquestionsPost(requestParameters?: FrequentlyAskedQuestionsApiApiV1FrequentlyaskedquestionsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FrequentlyAskedQuestionModel, any>>;
|
|
523
|
+
}
|
|
524
|
+
//# sourceMappingURL=frequently-asked-questions-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"frequently-asked-questions-api.d.ts","sourceRoot":"","sources":["../../src/api/frequently-asked-questions-api.ts"],"names":[],"mappings":"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"}
|