ch-admin-api-client-typescript 5.91.24 → 5.91.31
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/patient-review-consent-documents-api.d.ts +440 -0
- package/lib/api/patient-review-consent-documents-api.d.ts.map +1 -0
- package/lib/api/patient-review-consent-documents-api.js +812 -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/create-patient-review-consent-document-command.d.ts +79 -0
- package/lib/models/create-patient-review-consent-document-command.d.ts.map +1 -0
- package/lib/models/create-patient-review-consent-document-command.js +15 -0
- package/lib/models/index.d.ts +6 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +6 -0
- package/lib/models/patient-review-consent-document-item-model.d.ts +74 -0
- package/lib/models/patient-review-consent-document-item-model.d.ts.map +1 -0
- package/lib/models/patient-review-consent-document-item-model.js +15 -0
- package/lib/models/patient-review-consent-document-model.d.ts +92 -0
- package/lib/models/patient-review-consent-document-model.d.ts.map +1 -0
- package/lib/models/patient-review-consent-document-model.js +15 -0
- package/lib/models/patient-review-consent-documents-model.d.ts +33 -0
- package/lib/models/patient-review-consent-documents-model.d.ts.map +1 -0
- package/lib/models/patient-review-consent-documents-model.js +15 -0
- package/lib/models/translate-patient-review-consent-document-command.d.ts +55 -0
- package/lib/models/translate-patient-review-consent-document-command.d.ts.map +1 -0
- package/lib/models/translate-patient-review-consent-document-command.js +15 -0
- package/lib/models/update-patient-review-consent-document-command.d.ts +79 -0
- package/lib/models/update-patient-review-consent-document-command.d.ts.map +1 -0
- package/lib/models/update-patient-review-consent-document-command.js +15 -0
- package/package.json +1 -1
|
@@ -0,0 +1,440 @@
|
|
|
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 { CreatePatientReviewConsentDocumentCommand } from '../models';
|
|
16
|
+
import { PatientReviewConsentDocumentModel } from '../models';
|
|
17
|
+
import { PatientReviewConsentDocumentsModel } from '../models';
|
|
18
|
+
import { TranslatePatientReviewConsentDocumentCommand } from '../models';
|
|
19
|
+
import { UpdatePatientReviewConsentDocumentCommand } from '../models';
|
|
20
|
+
/**
|
|
21
|
+
* PatientReviewConsentDocumentsApi - axios parameter creator
|
|
22
|
+
* @export
|
|
23
|
+
*/
|
|
24
|
+
export declare const PatientReviewConsentDocumentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @summary Deletes a versioned patient review consent document (soft or permanent). (Auth policies: RequireContentManagerRole)
|
|
28
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
29
|
+
* @param {boolean} [isPermanent] Whether to permanently delete the document.
|
|
30
|
+
* @param {*} [options] Override http request option.
|
|
31
|
+
* @throws {RequiredError}
|
|
32
|
+
*/
|
|
33
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdDelete: (consentDocumentId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @summary Retrieves a single versioned patient review consent document for the given language. (Auth policies: RequireContentManagerRole)
|
|
37
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
38
|
+
* @param {string} [languageCode] Preferred language code for localized fields.
|
|
39
|
+
* @param {*} [options] Override http request option.
|
|
40
|
+
* @throws {RequiredError}
|
|
41
|
+
*/
|
|
42
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdGet: (consentDocumentId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @summary Updates an existing versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
46
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
47
|
+
* @param {UpdatePatientReviewConsentDocumentCommand} [updatePatientReviewConsentDocumentCommand] Consent document update payload.
|
|
48
|
+
* @param {*} [options] Override http request option.
|
|
49
|
+
* @throws {RequiredError}
|
|
50
|
+
*/
|
|
51
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdPut: (consentDocumentId: string, updatePatientReviewConsentDocumentCommand?: UpdatePatientReviewConsentDocumentCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @summary Reactivates a soft-deleted versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
55
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
56
|
+
* @param {*} [options] Override http request option.
|
|
57
|
+
* @throws {RequiredError}
|
|
58
|
+
*/
|
|
59
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePut: (consentDocumentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @summary Triggers AI-based automatic translation of a versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
63
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
64
|
+
* @param {TranslatePatientReviewConsentDocumentCommand} [translatePatientReviewConsentDocumentCommand] Translation request payload.
|
|
65
|
+
* @param {*} [options] Override http request option.
|
|
66
|
+
* @throws {RequiredError}
|
|
67
|
+
*/
|
|
68
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePost: (consentDocumentId: string, translatePatientReviewConsentDocumentCommand?: TranslatePatientReviewConsentDocumentCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @summary Retrieves a paged list of versioned patient review consent documents. (Auth policies: RequireContentManagerRole)
|
|
72
|
+
* @param {string} [languageCode]
|
|
73
|
+
* @param {string} [wordingVersion]
|
|
74
|
+
* @param {number} [page]
|
|
75
|
+
* @param {number} [limit]
|
|
76
|
+
* @param {Date} [lastRetrieved]
|
|
77
|
+
* @param {*} [options] Override http request option.
|
|
78
|
+
* @throws {RequiredError}
|
|
79
|
+
*/
|
|
80
|
+
apiV1PatientreviewconsentdocumentsGet: (languageCode?: string, wordingVersion?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
* @summary Creates a new versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
84
|
+
* @param {CreatePatientReviewConsentDocumentCommand} [createPatientReviewConsentDocumentCommand] Consent document creation payload.
|
|
85
|
+
* @param {*} [options] Override http request option.
|
|
86
|
+
* @throws {RequiredError}
|
|
87
|
+
*/
|
|
88
|
+
apiV1PatientreviewconsentdocumentsPost: (createPatientReviewConsentDocumentCommand?: CreatePatientReviewConsentDocumentCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* PatientReviewConsentDocumentsApi - functional programming interface
|
|
92
|
+
* @export
|
|
93
|
+
*/
|
|
94
|
+
export declare const PatientReviewConsentDocumentsApiFp: (configuration?: Configuration) => {
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @summary Deletes a versioned patient review consent document (soft or permanent). (Auth policies: RequireContentManagerRole)
|
|
98
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
99
|
+
* @param {boolean} [isPermanent] Whether to permanently delete the document.
|
|
100
|
+
* @param {*} [options] Override http request option.
|
|
101
|
+
* @throws {RequiredError}
|
|
102
|
+
*/
|
|
103
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdDelete(consentDocumentId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @summary Retrieves a single versioned patient review consent document for the given language. (Auth policies: RequireContentManagerRole)
|
|
107
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
108
|
+
* @param {string} [languageCode] Preferred language code for localized fields.
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @throws {RequiredError}
|
|
111
|
+
*/
|
|
112
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdGet(consentDocumentId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientReviewConsentDocumentModel>>;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @summary Updates an existing versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
116
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
117
|
+
* @param {UpdatePatientReviewConsentDocumentCommand} [updatePatientReviewConsentDocumentCommand] Consent document update payload.
|
|
118
|
+
* @param {*} [options] Override http request option.
|
|
119
|
+
* @throws {RequiredError}
|
|
120
|
+
*/
|
|
121
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdPut(consentDocumentId: string, updatePatientReviewConsentDocumentCommand?: UpdatePatientReviewConsentDocumentCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @summary Reactivates a soft-deleted versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
125
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
126
|
+
* @param {*} [options] Override http request option.
|
|
127
|
+
* @throws {RequiredError}
|
|
128
|
+
*/
|
|
129
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePut(consentDocumentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @summary Triggers AI-based automatic translation of a versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
133
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
134
|
+
* @param {TranslatePatientReviewConsentDocumentCommand} [translatePatientReviewConsentDocumentCommand] Translation request payload.
|
|
135
|
+
* @param {*} [options] Override http request option.
|
|
136
|
+
* @throws {RequiredError}
|
|
137
|
+
*/
|
|
138
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePost(consentDocumentId: string, translatePatientReviewConsentDocumentCommand?: TranslatePatientReviewConsentDocumentCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @summary Retrieves a paged list of versioned patient review consent documents. (Auth policies: RequireContentManagerRole)
|
|
142
|
+
* @param {string} [languageCode]
|
|
143
|
+
* @param {string} [wordingVersion]
|
|
144
|
+
* @param {number} [page]
|
|
145
|
+
* @param {number} [limit]
|
|
146
|
+
* @param {Date} [lastRetrieved]
|
|
147
|
+
* @param {*} [options] Override http request option.
|
|
148
|
+
* @throws {RequiredError}
|
|
149
|
+
*/
|
|
150
|
+
apiV1PatientreviewconsentdocumentsGet(languageCode?: string, wordingVersion?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientReviewConsentDocumentsModel>>;
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @summary Creates a new versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
154
|
+
* @param {CreatePatientReviewConsentDocumentCommand} [createPatientReviewConsentDocumentCommand] Consent document creation payload.
|
|
155
|
+
* @param {*} [options] Override http request option.
|
|
156
|
+
* @throws {RequiredError}
|
|
157
|
+
*/
|
|
158
|
+
apiV1PatientreviewconsentdocumentsPost(createPatientReviewConsentDocumentCommand?: CreatePatientReviewConsentDocumentCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientReviewConsentDocumentModel>>;
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* PatientReviewConsentDocumentsApi - factory interface
|
|
162
|
+
* @export
|
|
163
|
+
*/
|
|
164
|
+
export declare const PatientReviewConsentDocumentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
165
|
+
/**
|
|
166
|
+
*
|
|
167
|
+
* @summary Deletes a versioned patient review consent document (soft or permanent). (Auth policies: RequireContentManagerRole)
|
|
168
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
169
|
+
* @param {boolean} [isPermanent] Whether to permanently delete the document.
|
|
170
|
+
* @param {*} [options] Override http request option.
|
|
171
|
+
* @throws {RequiredError}
|
|
172
|
+
*/
|
|
173
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdDelete(consentDocumentId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
174
|
+
/**
|
|
175
|
+
*
|
|
176
|
+
* @summary Retrieves a single versioned patient review consent document for the given language. (Auth policies: RequireContentManagerRole)
|
|
177
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
178
|
+
* @param {string} [languageCode] Preferred language code for localized fields.
|
|
179
|
+
* @param {*} [options] Override http request option.
|
|
180
|
+
* @throws {RequiredError}
|
|
181
|
+
*/
|
|
182
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdGet(consentDocumentId: string, languageCode?: string, options?: any): AxiosPromise<PatientReviewConsentDocumentModel>;
|
|
183
|
+
/**
|
|
184
|
+
*
|
|
185
|
+
* @summary Updates an existing versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
186
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
187
|
+
* @param {UpdatePatientReviewConsentDocumentCommand} [updatePatientReviewConsentDocumentCommand] Consent document update payload.
|
|
188
|
+
* @param {*} [options] Override http request option.
|
|
189
|
+
* @throws {RequiredError}
|
|
190
|
+
*/
|
|
191
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdPut(consentDocumentId: string, updatePatientReviewConsentDocumentCommand?: UpdatePatientReviewConsentDocumentCommand, options?: any): AxiosPromise<void>;
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @summary Reactivates a soft-deleted versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
195
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
196
|
+
* @param {*} [options] Override http request option.
|
|
197
|
+
* @throws {RequiredError}
|
|
198
|
+
*/
|
|
199
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePut(consentDocumentId: string, options?: any): AxiosPromise<boolean>;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @summary Triggers AI-based automatic translation of a versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
203
|
+
* @param {string} consentDocumentId The consent document identifier.
|
|
204
|
+
* @param {TranslatePatientReviewConsentDocumentCommand} [translatePatientReviewConsentDocumentCommand] Translation request payload.
|
|
205
|
+
* @param {*} [options] Override http request option.
|
|
206
|
+
* @throws {RequiredError}
|
|
207
|
+
*/
|
|
208
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePost(consentDocumentId: string, translatePatientReviewConsentDocumentCommand?: TranslatePatientReviewConsentDocumentCommand, options?: any): AxiosPromise<void>;
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* @summary Retrieves a paged list of versioned patient review consent documents. (Auth policies: RequireContentManagerRole)
|
|
212
|
+
* @param {string} [languageCode]
|
|
213
|
+
* @param {string} [wordingVersion]
|
|
214
|
+
* @param {number} [page]
|
|
215
|
+
* @param {number} [limit]
|
|
216
|
+
* @param {Date} [lastRetrieved]
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
apiV1PatientreviewconsentdocumentsGet(languageCode?: string, wordingVersion?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<PatientReviewConsentDocumentsModel>;
|
|
221
|
+
/**
|
|
222
|
+
*
|
|
223
|
+
* @summary Creates a new versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
224
|
+
* @param {CreatePatientReviewConsentDocumentCommand} [createPatientReviewConsentDocumentCommand] Consent document creation payload.
|
|
225
|
+
* @param {*} [options] Override http request option.
|
|
226
|
+
* @throws {RequiredError}
|
|
227
|
+
*/
|
|
228
|
+
apiV1PatientreviewconsentdocumentsPost(createPatientReviewConsentDocumentCommand?: CreatePatientReviewConsentDocumentCommand, options?: any): AxiosPromise<PatientReviewConsentDocumentModel>;
|
|
229
|
+
};
|
|
230
|
+
/**
|
|
231
|
+
* Request parameters for apiV1PatientreviewconsentdocumentsConsentDocumentIdDelete operation in PatientReviewConsentDocumentsApi.
|
|
232
|
+
* @export
|
|
233
|
+
* @interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdDeleteRequest
|
|
234
|
+
*/
|
|
235
|
+
export interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdDeleteRequest {
|
|
236
|
+
/**
|
|
237
|
+
* The consent document identifier.
|
|
238
|
+
* @type {string}
|
|
239
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdDelete
|
|
240
|
+
*/
|
|
241
|
+
readonly consentDocumentId: string;
|
|
242
|
+
/**
|
|
243
|
+
* Whether to permanently delete the document.
|
|
244
|
+
* @type {boolean}
|
|
245
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdDelete
|
|
246
|
+
*/
|
|
247
|
+
readonly isPermanent?: boolean;
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* Request parameters for apiV1PatientreviewconsentdocumentsConsentDocumentIdGet operation in PatientReviewConsentDocumentsApi.
|
|
251
|
+
* @export
|
|
252
|
+
* @interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdGetRequest
|
|
253
|
+
*/
|
|
254
|
+
export interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdGetRequest {
|
|
255
|
+
/**
|
|
256
|
+
* The consent document identifier.
|
|
257
|
+
* @type {string}
|
|
258
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdGet
|
|
259
|
+
*/
|
|
260
|
+
readonly consentDocumentId: string;
|
|
261
|
+
/**
|
|
262
|
+
* Preferred language code for localized fields.
|
|
263
|
+
* @type {string}
|
|
264
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdGet
|
|
265
|
+
*/
|
|
266
|
+
readonly languageCode?: string;
|
|
267
|
+
}
|
|
268
|
+
/**
|
|
269
|
+
* Request parameters for apiV1PatientreviewconsentdocumentsConsentDocumentIdPut operation in PatientReviewConsentDocumentsApi.
|
|
270
|
+
* @export
|
|
271
|
+
* @interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdPutRequest
|
|
272
|
+
*/
|
|
273
|
+
export interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdPutRequest {
|
|
274
|
+
/**
|
|
275
|
+
* The consent document identifier.
|
|
276
|
+
* @type {string}
|
|
277
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdPut
|
|
278
|
+
*/
|
|
279
|
+
readonly consentDocumentId: string;
|
|
280
|
+
/**
|
|
281
|
+
* Consent document update payload.
|
|
282
|
+
* @type {UpdatePatientReviewConsentDocumentCommand}
|
|
283
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdPut
|
|
284
|
+
*/
|
|
285
|
+
readonly updatePatientReviewConsentDocumentCommand?: UpdatePatientReviewConsentDocumentCommand;
|
|
286
|
+
}
|
|
287
|
+
/**
|
|
288
|
+
* Request parameters for apiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePut operation in PatientReviewConsentDocumentsApi.
|
|
289
|
+
* @export
|
|
290
|
+
* @interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePutRequest
|
|
291
|
+
*/
|
|
292
|
+
export interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePutRequest {
|
|
293
|
+
/**
|
|
294
|
+
* The consent document identifier.
|
|
295
|
+
* @type {string}
|
|
296
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePut
|
|
297
|
+
*/
|
|
298
|
+
readonly consentDocumentId: string;
|
|
299
|
+
}
|
|
300
|
+
/**
|
|
301
|
+
* Request parameters for apiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePost operation in PatientReviewConsentDocumentsApi.
|
|
302
|
+
* @export
|
|
303
|
+
* @interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePostRequest
|
|
304
|
+
*/
|
|
305
|
+
export interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePostRequest {
|
|
306
|
+
/**
|
|
307
|
+
* The consent document identifier.
|
|
308
|
+
* @type {string}
|
|
309
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePost
|
|
310
|
+
*/
|
|
311
|
+
readonly consentDocumentId: string;
|
|
312
|
+
/**
|
|
313
|
+
* Translation request payload.
|
|
314
|
+
* @type {TranslatePatientReviewConsentDocumentCommand}
|
|
315
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePost
|
|
316
|
+
*/
|
|
317
|
+
readonly translatePatientReviewConsentDocumentCommand?: TranslatePatientReviewConsentDocumentCommand;
|
|
318
|
+
}
|
|
319
|
+
/**
|
|
320
|
+
* Request parameters for apiV1PatientreviewconsentdocumentsGet operation in PatientReviewConsentDocumentsApi.
|
|
321
|
+
* @export
|
|
322
|
+
* @interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsGetRequest
|
|
323
|
+
*/
|
|
324
|
+
export interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsGetRequest {
|
|
325
|
+
/**
|
|
326
|
+
*
|
|
327
|
+
* @type {string}
|
|
328
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsGet
|
|
329
|
+
*/
|
|
330
|
+
readonly languageCode?: string;
|
|
331
|
+
/**
|
|
332
|
+
*
|
|
333
|
+
* @type {string}
|
|
334
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsGet
|
|
335
|
+
*/
|
|
336
|
+
readonly wordingVersion?: string;
|
|
337
|
+
/**
|
|
338
|
+
*
|
|
339
|
+
* @type {number}
|
|
340
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsGet
|
|
341
|
+
*/
|
|
342
|
+
readonly page?: number;
|
|
343
|
+
/**
|
|
344
|
+
*
|
|
345
|
+
* @type {number}
|
|
346
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsGet
|
|
347
|
+
*/
|
|
348
|
+
readonly limit?: number;
|
|
349
|
+
/**
|
|
350
|
+
*
|
|
351
|
+
* @type {Date}
|
|
352
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsGet
|
|
353
|
+
*/
|
|
354
|
+
readonly lastRetrieved?: Date;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
* Request parameters for apiV1PatientreviewconsentdocumentsPost operation in PatientReviewConsentDocumentsApi.
|
|
358
|
+
* @export
|
|
359
|
+
* @interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsPostRequest
|
|
360
|
+
*/
|
|
361
|
+
export interface PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsPostRequest {
|
|
362
|
+
/**
|
|
363
|
+
* Consent document creation payload.
|
|
364
|
+
* @type {CreatePatientReviewConsentDocumentCommand}
|
|
365
|
+
* @memberof PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsPost
|
|
366
|
+
*/
|
|
367
|
+
readonly createPatientReviewConsentDocumentCommand?: CreatePatientReviewConsentDocumentCommand;
|
|
368
|
+
}
|
|
369
|
+
/**
|
|
370
|
+
* PatientReviewConsentDocumentsApi - object-oriented interface
|
|
371
|
+
* @export
|
|
372
|
+
* @class PatientReviewConsentDocumentsApi
|
|
373
|
+
* @extends {BaseAPI}
|
|
374
|
+
*/
|
|
375
|
+
export declare class PatientReviewConsentDocumentsApi extends BaseAPI {
|
|
376
|
+
/**
|
|
377
|
+
*
|
|
378
|
+
* @summary Deletes a versioned patient review consent document (soft or permanent). (Auth policies: RequireContentManagerRole)
|
|
379
|
+
* @param {PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdDeleteRequest} requestParameters Request parameters.
|
|
380
|
+
* @param {*} [options] Override http request option.
|
|
381
|
+
* @throws {RequiredError}
|
|
382
|
+
* @memberof PatientReviewConsentDocumentsApi
|
|
383
|
+
*/
|
|
384
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdDelete(requestParameters: PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
385
|
+
/**
|
|
386
|
+
*
|
|
387
|
+
* @summary Retrieves a single versioned patient review consent document for the given language. (Auth policies: RequireContentManagerRole)
|
|
388
|
+
* @param {PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdGetRequest} requestParameters Request parameters.
|
|
389
|
+
* @param {*} [options] Override http request option.
|
|
390
|
+
* @throws {RequiredError}
|
|
391
|
+
* @memberof PatientReviewConsentDocumentsApi
|
|
392
|
+
*/
|
|
393
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdGet(requestParameters: PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientReviewConsentDocumentModel, any>>;
|
|
394
|
+
/**
|
|
395
|
+
*
|
|
396
|
+
* @summary Updates an existing versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
397
|
+
* @param {PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdPutRequest} requestParameters Request parameters.
|
|
398
|
+
* @param {*} [options] Override http request option.
|
|
399
|
+
* @throws {RequiredError}
|
|
400
|
+
* @memberof PatientReviewConsentDocumentsApi
|
|
401
|
+
*/
|
|
402
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdPut(requestParameters: PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
* @summary Reactivates a soft-deleted versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
406
|
+
* @param {PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePutRequest} requestParameters Request parameters.
|
|
407
|
+
* @param {*} [options] Override http request option.
|
|
408
|
+
* @throws {RequiredError}
|
|
409
|
+
* @memberof PatientReviewConsentDocumentsApi
|
|
410
|
+
*/
|
|
411
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePut(requestParameters: PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
412
|
+
/**
|
|
413
|
+
*
|
|
414
|
+
* @summary Triggers AI-based automatic translation of a versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
415
|
+
* @param {PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePostRequest} requestParameters Request parameters.
|
|
416
|
+
* @param {*} [options] Override http request option.
|
|
417
|
+
* @throws {RequiredError}
|
|
418
|
+
* @memberof PatientReviewConsentDocumentsApi
|
|
419
|
+
*/
|
|
420
|
+
apiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePost(requestParameters: PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsConsentDocumentIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
421
|
+
/**
|
|
422
|
+
*
|
|
423
|
+
* @summary Retrieves a paged list of versioned patient review consent documents. (Auth policies: RequireContentManagerRole)
|
|
424
|
+
* @param {PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsGetRequest} requestParameters Request parameters.
|
|
425
|
+
* @param {*} [options] Override http request option.
|
|
426
|
+
* @throws {RequiredError}
|
|
427
|
+
* @memberof PatientReviewConsentDocumentsApi
|
|
428
|
+
*/
|
|
429
|
+
apiV1PatientreviewconsentdocumentsGet(requestParameters?: PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientReviewConsentDocumentsModel, any>>;
|
|
430
|
+
/**
|
|
431
|
+
*
|
|
432
|
+
* @summary Creates a new versioned patient review consent document. (Auth policies: RequireContentManagerRole)
|
|
433
|
+
* @param {PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsPostRequest} requestParameters Request parameters.
|
|
434
|
+
* @param {*} [options] Override http request option.
|
|
435
|
+
* @throws {RequiredError}
|
|
436
|
+
* @memberof PatientReviewConsentDocumentsApi
|
|
437
|
+
*/
|
|
438
|
+
apiV1PatientreviewconsentdocumentsPost(requestParameters?: PatientReviewConsentDocumentsApiApiV1PatientreviewconsentdocumentsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientReviewConsentDocumentModel, any>>;
|
|
439
|
+
}
|
|
440
|
+
//# sourceMappingURL=patient-review-consent-documents-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"patient-review-consent-documents-api.d.ts","sourceRoot":"","sources":["../../src/api/patient-review-consent-documents-api.ts"],"names":[],"mappings":"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"}
|