ch-admin-api-client-typescript 5.91.36 → 5.91.47
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/articles-api.d.ts +132 -132
- package/lib/api/articles-api.js +146 -146
- package/lib/api/images-api.d.ts +8 -8
- package/lib/api/images-api.js +10 -10
- package/lib/api/patient-reviews-api.d.ts +195 -0
- package/lib/api/patient-reviews-api.d.ts.map +1 -1
- package/lib/api/patient-reviews-api.js +303 -0
- package/lib/models/accreditation-item-model.d.ts +6 -0
- package/lib/models/accreditation-item-model.d.ts.map +1 -1
- package/lib/models/accreditation-model.d.ts +6 -0
- package/lib/models/accreditation-model.d.ts.map +1 -1
- package/lib/models/article-model.d.ts +7 -0
- package/lib/models/article-model.d.ts.map +1 -1
- package/lib/models/create-article-command.d.ts +7 -0
- package/lib/models/create-article-command.d.ts.map +1 -1
- package/lib/models/create-deal-command.d.ts +7 -0
- package/lib/models/create-deal-command.d.ts.map +1 -1
- package/lib/models/create-doctor-affiliation-command.d.ts +7 -0
- package/lib/models/create-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/create-hospital-service-command.d.ts +7 -0
- package/lib/models/create-hospital-service-command.d.ts.map +1 -1
- package/lib/models/create-hospital-specialty-command.d.ts +7 -0
- package/lib/models/create-hospital-specialty-command.d.ts.map +1 -1
- package/lib/models/deal-model.d.ts +7 -0
- package/lib/models/deal-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +7 -0
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/hospital-service-model.d.ts +7 -0
- package/lib/models/hospital-service-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-model.d.ts +7 -0
- package/lib/models/hospital-specialty-model.d.ts.map +1 -1
- 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/location-model.d.ts +30 -0
- package/lib/models/location-model.d.ts.map +1 -1
- package/lib/models/patch-article-command.d.ts +7 -0
- package/lib/models/patch-article-command.d.ts.map +1 -1
- package/lib/models/patch-deal-command.d.ts +7 -0
- package/lib/models/patch-deal-command.d.ts.map +1 -1
- package/lib/models/patch-doctor-affiliation-command.d.ts +7 -0
- package/lib/models/patch-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/patch-hospital-service-command.d.ts +7 -0
- package/lib/models/patch-hospital-service-command.d.ts.map +1 -1
- package/lib/models/patch-hospital-specialty-command.d.ts +7 -0
- package/lib/models/patch-hospital-specialty-command.d.ts.map +1 -1
- package/lib/models/patient-review-before-and-after-photo-access-model.d.ts +32 -0
- package/lib/models/patient-review-before-and-after-photo-access-model.d.ts.map +1 -0
- package/lib/models/patient-review-before-and-after-photo-access-model.js +15 -0
- package/lib/models/patient-review-item-model.d.ts +6 -0
- package/lib/models/patient-review-item-model.d.ts.map +1 -1
- package/lib/models/patient-review-model.d.ts +6 -0
- package/lib/models/patient-review-model.d.ts.map +1 -1
- package/lib/models/secure-file-document-access-model.d.ts +25 -0
- package/lib/models/secure-file-document-access-model.d.ts.map +1 -0
- package/lib/models/secure-file-document-access-model.js +15 -0
- package/lib/models/secure-file-image-access-model.d.ts +31 -0
- package/lib/models/secure-file-image-access-model.d.ts.map +1 -0
- package/lib/models/secure-file-image-access-model.js +15 -0
- package/lib/models/translation-link-input-model.d.ts +56 -0
- package/lib/models/translation-link-input-model.d.ts.map +1 -0
- package/lib/models/translation-link-input-model.js +15 -0
- package/lib/models/translation-link-model.d.ts +56 -0
- package/lib/models/translation-link-model.d.ts.map +1 -0
- package/lib/models/translation-link-model.js +15 -0
- package/lib/models/translation-link-rel-type.d.ts +25 -0
- package/lib/models/translation-link-rel-type.d.ts.map +1 -0
- package/lib/models/translation-link-rel-type.js +28 -0
- package/lib/models/update-article-command.d.ts +7 -0
- package/lib/models/update-article-command.d.ts.map +1 -1
- package/lib/models/update-deal-command.d.ts +7 -0
- package/lib/models/update-deal-command.d.ts.map +1 -1
- package/lib/models/update-doctor-affiliation-command.d.ts +7 -0
- package/lib/models/update-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/update-hospital-service-command.d.ts +7 -0
- package/lib/models/update-hospital-service-command.d.ts.map +1 -1
- package/lib/models/update-hospital-specialty-command.d.ts +7 -0
- package/lib/models/update-hospital-specialty-command.d.ts.map +1 -1
- package/package.json +1 -1
package/lib/api/images-api.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ import { UploadedMediasModel } from '../models';
|
|
|
22
22
|
export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23
23
|
/**
|
|
24
24
|
*
|
|
25
|
-
* @summary (Auth)
|
|
25
|
+
* @summary (Auth policies: RequireHospitalImageAccess)
|
|
26
26
|
* @param {Array<File>} [files]
|
|
27
27
|
* @param {*} [options] Override http request option.
|
|
28
28
|
* @throws {RequiredError}
|
|
@@ -30,7 +30,7 @@ export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
30
30
|
apiV1ImagesPost: (files?: Array<File>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @summary Upload media from uri (Auth)
|
|
33
|
+
* @summary Upload media from uri (Auth policies: RequireHospitalImageAccess)
|
|
34
34
|
* @param {UploadMediaFromUriCommand} [uploadMediaFromUriCommand]
|
|
35
35
|
* @param {*} [options] Override http request option.
|
|
36
36
|
* @throws {RequiredError}
|
|
@@ -44,7 +44,7 @@ export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
44
44
|
export declare const ImagesApiFp: (configuration?: Configuration) => {
|
|
45
45
|
/**
|
|
46
46
|
*
|
|
47
|
-
* @summary (Auth)
|
|
47
|
+
* @summary (Auth policies: RequireHospitalImageAccess)
|
|
48
48
|
* @param {Array<File>} [files]
|
|
49
49
|
* @param {*} [options] Override http request option.
|
|
50
50
|
* @throws {RequiredError}
|
|
@@ -52,7 +52,7 @@ export declare const ImagesApiFp: (configuration?: Configuration) => {
|
|
|
52
52
|
apiV1ImagesPost(files?: Array<File>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MediaModel>>>;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
|
-
* @summary Upload media from uri (Auth)
|
|
55
|
+
* @summary Upload media from uri (Auth policies: RequireHospitalImageAccess)
|
|
56
56
|
* @param {UploadMediaFromUriCommand} [uploadMediaFromUriCommand]
|
|
57
57
|
* @param {*} [options] Override http request option.
|
|
58
58
|
* @throws {RequiredError}
|
|
@@ -66,7 +66,7 @@ export declare const ImagesApiFp: (configuration?: Configuration) => {
|
|
|
66
66
|
export declare const ImagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
67
67
|
/**
|
|
68
68
|
*
|
|
69
|
-
* @summary (Auth)
|
|
69
|
+
* @summary (Auth policies: RequireHospitalImageAccess)
|
|
70
70
|
* @param {Array<File>} [files]
|
|
71
71
|
* @param {*} [options] Override http request option.
|
|
72
72
|
* @throws {RequiredError}
|
|
@@ -74,7 +74,7 @@ export declare const ImagesApiFactory: (configuration?: Configuration, basePath?
|
|
|
74
74
|
apiV1ImagesPost(files?: Array<File>, options?: any): AxiosPromise<Array<MediaModel>>;
|
|
75
75
|
/**
|
|
76
76
|
*
|
|
77
|
-
* @summary Upload media from uri (Auth)
|
|
77
|
+
* @summary Upload media from uri (Auth policies: RequireHospitalImageAccess)
|
|
78
78
|
* @param {UploadMediaFromUriCommand} [uploadMediaFromUriCommand]
|
|
79
79
|
* @param {*} [options] Override http request option.
|
|
80
80
|
* @throws {RequiredError}
|
|
@@ -116,7 +116,7 @@ export interface ImagesApiApiV1ImagesUriPostRequest {
|
|
|
116
116
|
export declare class ImagesApi extends BaseAPI {
|
|
117
117
|
/**
|
|
118
118
|
*
|
|
119
|
-
* @summary (Auth)
|
|
119
|
+
* @summary (Auth policies: RequireHospitalImageAccess)
|
|
120
120
|
* @param {ImagesApiApiV1ImagesPostRequest} requestParameters Request parameters.
|
|
121
121
|
* @param {*} [options] Override http request option.
|
|
122
122
|
* @throws {RequiredError}
|
|
@@ -125,7 +125,7 @@ export declare class ImagesApi extends BaseAPI {
|
|
|
125
125
|
apiV1ImagesPost(requestParameters?: ImagesApiApiV1ImagesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel[], any>>;
|
|
126
126
|
/**
|
|
127
127
|
*
|
|
128
|
-
* @summary Upload media from uri (Auth)
|
|
128
|
+
* @summary Upload media from uri (Auth policies: RequireHospitalImageAccess)
|
|
129
129
|
* @param {ImagesApiApiV1ImagesUriPostRequest} requestParameters Request parameters.
|
|
130
130
|
* @param {*} [options] Override http request option.
|
|
131
131
|
* @throws {RequiredError}
|
package/lib/api/images-api.js
CHANGED
|
@@ -103,7 +103,7 @@ var ImagesApiAxiosParamCreator = function (configuration) {
|
|
|
103
103
|
return {
|
|
104
104
|
/**
|
|
105
105
|
*
|
|
106
|
-
* @summary (Auth)
|
|
106
|
+
* @summary (Auth policies: RequireHospitalImageAccess)
|
|
107
107
|
* @param {Array<File>} [files]
|
|
108
108
|
* @param {*} [options] Override http request option.
|
|
109
109
|
* @throws {RequiredError}
|
|
@@ -130,7 +130,7 @@ var ImagesApiAxiosParamCreator = function (configuration) {
|
|
|
130
130
|
localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
131
131
|
// authentication oauth2 required
|
|
132
132
|
// oauth required
|
|
133
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
133
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api", "hospital-content-api"], configuration)];
|
|
134
134
|
case 1:
|
|
135
135
|
// authentication oauth2 required
|
|
136
136
|
// oauth required
|
|
@@ -155,7 +155,7 @@ var ImagesApiAxiosParamCreator = function (configuration) {
|
|
|
155
155
|
},
|
|
156
156
|
/**
|
|
157
157
|
*
|
|
158
|
-
* @summary Upload media from uri (Auth)
|
|
158
|
+
* @summary Upload media from uri (Auth policies: RequireHospitalImageAccess)
|
|
159
159
|
* @param {UploadMediaFromUriCommand} [uploadMediaFromUriCommand]
|
|
160
160
|
* @param {*} [options] Override http request option.
|
|
161
161
|
* @throws {RequiredError}
|
|
@@ -181,7 +181,7 @@ var ImagesApiAxiosParamCreator = function (configuration) {
|
|
|
181
181
|
localVarQueryParameter = {};
|
|
182
182
|
// authentication oauth2 required
|
|
183
183
|
// oauth required
|
|
184
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
184
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api", "hospital-content-api"], configuration)];
|
|
185
185
|
case 1:
|
|
186
186
|
// authentication oauth2 required
|
|
187
187
|
// oauth required
|
|
@@ -211,7 +211,7 @@ var ImagesApiFp = function (configuration) {
|
|
|
211
211
|
return {
|
|
212
212
|
/**
|
|
213
213
|
*
|
|
214
|
-
* @summary (Auth)
|
|
214
|
+
* @summary (Auth policies: RequireHospitalImageAccess)
|
|
215
215
|
* @param {Array<File>} [files]
|
|
216
216
|
* @param {*} [options] Override http request option.
|
|
217
217
|
* @throws {RequiredError}
|
|
@@ -231,7 +231,7 @@ var ImagesApiFp = function (configuration) {
|
|
|
231
231
|
},
|
|
232
232
|
/**
|
|
233
233
|
*
|
|
234
|
-
* @summary Upload media from uri (Auth)
|
|
234
|
+
* @summary Upload media from uri (Auth policies: RequireHospitalImageAccess)
|
|
235
235
|
* @param {UploadMediaFromUriCommand} [uploadMediaFromUriCommand]
|
|
236
236
|
* @param {*} [options] Override http request option.
|
|
237
237
|
* @throws {RequiredError}
|
|
@@ -261,7 +261,7 @@ var ImagesApiFactory = function (configuration, basePath, axios) {
|
|
|
261
261
|
return {
|
|
262
262
|
/**
|
|
263
263
|
*
|
|
264
|
-
* @summary (Auth)
|
|
264
|
+
* @summary (Auth policies: RequireHospitalImageAccess)
|
|
265
265
|
* @param {Array<File>} [files]
|
|
266
266
|
* @param {*} [options] Override http request option.
|
|
267
267
|
* @throws {RequiredError}
|
|
@@ -271,7 +271,7 @@ var ImagesApiFactory = function (configuration, basePath, axios) {
|
|
|
271
271
|
},
|
|
272
272
|
/**
|
|
273
273
|
*
|
|
274
|
-
* @summary Upload media from uri (Auth)
|
|
274
|
+
* @summary Upload media from uri (Auth policies: RequireHospitalImageAccess)
|
|
275
275
|
* @param {UploadMediaFromUriCommand} [uploadMediaFromUriCommand]
|
|
276
276
|
* @param {*} [options] Override http request option.
|
|
277
277
|
* @throws {RequiredError}
|
|
@@ -295,7 +295,7 @@ var ImagesApi = /** @class */ (function (_super) {
|
|
|
295
295
|
}
|
|
296
296
|
/**
|
|
297
297
|
*
|
|
298
|
-
* @summary (Auth)
|
|
298
|
+
* @summary (Auth policies: RequireHospitalImageAccess)
|
|
299
299
|
* @param {ImagesApiApiV1ImagesPostRequest} requestParameters Request parameters.
|
|
300
300
|
* @param {*} [options] Override http request option.
|
|
301
301
|
* @throws {RequiredError}
|
|
@@ -308,7 +308,7 @@ var ImagesApi = /** @class */ (function (_super) {
|
|
|
308
308
|
};
|
|
309
309
|
/**
|
|
310
310
|
*
|
|
311
|
-
* @summary Upload media from uri (Auth)
|
|
311
|
+
* @summary Upload media from uri (Auth policies: RequireHospitalImageAccess)
|
|
312
312
|
* @param {ImagesApiApiV1ImagesUriPostRequest} requestParameters Request parameters.
|
|
313
313
|
* @param {*} [options] Override http request option.
|
|
314
314
|
* @throws {RequiredError}
|
|
@@ -14,9 +14,12 @@ import { Configuration } from '../configuration';
|
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import { PatchPatientReviewInputModel } from '../models';
|
|
16
16
|
import { PatientReviewActivityLogModel } from '../models';
|
|
17
|
+
import { PatientReviewBeforeAndAfterPhotoAccessModel } from '../models';
|
|
17
18
|
import { PatientReviewModel } from '../models';
|
|
18
19
|
import { PatientReviewStatus } from '../models';
|
|
19
20
|
import { PatientReviewsModel } from '../models';
|
|
21
|
+
import { SecureFileDocumentAccessModel } from '../models';
|
|
22
|
+
import { SecureFileImageAccessModel } from '../models';
|
|
20
23
|
import { UpdatePatientReviewStatusCommand } from '../models';
|
|
21
24
|
import { VerifyPatientReviewContentCommand } from '../models';
|
|
22
25
|
/**
|
|
@@ -50,6 +53,16 @@ export declare const PatientReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
50
53
|
* @throws {RequiredError}
|
|
51
54
|
*/
|
|
52
55
|
apiV1PatientreviewsPatientReviewIdActivitylogsGet: (patientReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @summary Issues a temporary SAS URL to read a patient review before-and-after photo. (Auth policies: RequireContentManagerRole)
|
|
59
|
+
* @param {string} patientReviewId The patient review identifier.
|
|
60
|
+
* @param {string} beforeAndAfterPhotoId The before-and-after photo identifier.
|
|
61
|
+
* @param {number} [minutesAvailableUntil] Optional minutes until the SAS URL expires.
|
|
62
|
+
* @param {*} [options] Override http request option.
|
|
63
|
+
* @throws {RequiredError}
|
|
64
|
+
*/
|
|
65
|
+
apiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGet: (patientReviewId: string, beforeAndAfterPhotoId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
66
|
/**
|
|
54
67
|
*
|
|
55
68
|
* @summary Copies a private before-and-after photo set to a new public before-and-after photo record. (Auth policies: RequireContentManagerRole)
|
|
@@ -85,6 +98,16 @@ export declare const PatientReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
85
98
|
* @throws {RequiredError}
|
|
86
99
|
*/
|
|
87
100
|
apiV1PatientreviewsPatientReviewIdDocumentverificationPut: (patientReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @summary Issues a temporary SAS URL to read a patient review general photo. (Auth policies: RequireContentManagerRole)
|
|
104
|
+
* @param {string} patientReviewId The patient review identifier.
|
|
105
|
+
* @param {string} generalPhotoId The general photo identifier.
|
|
106
|
+
* @param {number} [minutesAvailableUntil] Optional minutes until the SAS URL expires.
|
|
107
|
+
* @param {*} [options] Override http request option.
|
|
108
|
+
* @throws {RequiredError}
|
|
109
|
+
*/
|
|
110
|
+
apiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGet: (patientReviewId: string, generalPhotoId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
88
111
|
/**
|
|
89
112
|
*
|
|
90
113
|
* @summary Copies a private general photo to a new public general photo record. (Auth policies: RequireContentManagerRole)
|
|
@@ -137,6 +160,16 @@ export declare const PatientReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
137
160
|
* @throws {RequiredError}
|
|
138
161
|
*/
|
|
139
162
|
apiV1PatientreviewsPatientReviewIdStatusPut: (patientReviewId: string, updatePatientReviewStatusCommand?: UpdatePatientReviewStatusCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
163
|
+
/**
|
|
164
|
+
*
|
|
165
|
+
* @summary Issues a temporary SAS URL to read a patient review verification document. (Auth policies: RequireContentManagerRole)
|
|
166
|
+
* @param {string} patientReviewId The patient review identifier.
|
|
167
|
+
* @param {string} verificationDocumentId The verification document identifier.
|
|
168
|
+
* @param {number} [minutesAvailableUntil] Optional minutes until the SAS URL expires.
|
|
169
|
+
* @param {*} [options] Override http request option.
|
|
170
|
+
* @throws {RequiredError}
|
|
171
|
+
*/
|
|
172
|
+
apiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGet: (patientReviewId: string, verificationDocumentId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
140
173
|
};
|
|
141
174
|
/**
|
|
142
175
|
* PatientReviewsApi - functional programming interface
|
|
@@ -169,6 +202,16 @@ export declare const PatientReviewsApiFp: (configuration?: Configuration) => {
|
|
|
169
202
|
* @throws {RequiredError}
|
|
170
203
|
*/
|
|
171
204
|
apiV1PatientreviewsPatientReviewIdActivitylogsGet(patientReviewId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PatientReviewActivityLogModel>>>;
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @summary Issues a temporary SAS URL to read a patient review before-and-after photo. (Auth policies: RequireContentManagerRole)
|
|
208
|
+
* @param {string} patientReviewId The patient review identifier.
|
|
209
|
+
* @param {string} beforeAndAfterPhotoId The before-and-after photo identifier.
|
|
210
|
+
* @param {number} [minutesAvailableUntil] Optional minutes until the SAS URL expires.
|
|
211
|
+
* @param {*} [options] Override http request option.
|
|
212
|
+
* @throws {RequiredError}
|
|
213
|
+
*/
|
|
214
|
+
apiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGet(patientReviewId: string, beforeAndAfterPhotoId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatientReviewBeforeAndAfterPhotoAccessModel>>;
|
|
172
215
|
/**
|
|
173
216
|
*
|
|
174
217
|
* @summary Copies a private before-and-after photo set to a new public before-and-after photo record. (Auth policies: RequireContentManagerRole)
|
|
@@ -204,6 +247,16 @@ export declare const PatientReviewsApiFp: (configuration?: Configuration) => {
|
|
|
204
247
|
* @throws {RequiredError}
|
|
205
248
|
*/
|
|
206
249
|
apiV1PatientreviewsPatientReviewIdDocumentverificationPut(patientReviewId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
250
|
+
/**
|
|
251
|
+
*
|
|
252
|
+
* @summary Issues a temporary SAS URL to read a patient review general photo. (Auth policies: RequireContentManagerRole)
|
|
253
|
+
* @param {string} patientReviewId The patient review identifier.
|
|
254
|
+
* @param {string} generalPhotoId The general photo identifier.
|
|
255
|
+
* @param {number} [minutesAvailableUntil] Optional minutes until the SAS URL expires.
|
|
256
|
+
* @param {*} [options] Override http request option.
|
|
257
|
+
* @throws {RequiredError}
|
|
258
|
+
*/
|
|
259
|
+
apiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGet(patientReviewId: string, generalPhotoId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureFileImageAccessModel>>;
|
|
207
260
|
/**
|
|
208
261
|
*
|
|
209
262
|
* @summary Copies a private general photo to a new public general photo record. (Auth policies: RequireContentManagerRole)
|
|
@@ -256,6 +309,16 @@ export declare const PatientReviewsApiFp: (configuration?: Configuration) => {
|
|
|
256
309
|
* @throws {RequiredError}
|
|
257
310
|
*/
|
|
258
311
|
apiV1PatientreviewsPatientReviewIdStatusPut(patientReviewId: string, updatePatientReviewStatusCommand?: UpdatePatientReviewStatusCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
312
|
+
/**
|
|
313
|
+
*
|
|
314
|
+
* @summary Issues a temporary SAS URL to read a patient review verification document. (Auth policies: RequireContentManagerRole)
|
|
315
|
+
* @param {string} patientReviewId The patient review identifier.
|
|
316
|
+
* @param {string} verificationDocumentId The verification document identifier.
|
|
317
|
+
* @param {number} [minutesAvailableUntil] Optional minutes until the SAS URL expires.
|
|
318
|
+
* @param {*} [options] Override http request option.
|
|
319
|
+
* @throws {RequiredError}
|
|
320
|
+
*/
|
|
321
|
+
apiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGet(patientReviewId: string, verificationDocumentId: string, minutesAvailableUntil?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureFileDocumentAccessModel>>;
|
|
259
322
|
};
|
|
260
323
|
/**
|
|
261
324
|
* PatientReviewsApi - factory interface
|
|
@@ -288,6 +351,16 @@ export declare const PatientReviewsApiFactory: (configuration?: Configuration, b
|
|
|
288
351
|
* @throws {RequiredError}
|
|
289
352
|
*/
|
|
290
353
|
apiV1PatientreviewsPatientReviewIdActivitylogsGet(patientReviewId: string, options?: any): AxiosPromise<Array<PatientReviewActivityLogModel>>;
|
|
354
|
+
/**
|
|
355
|
+
*
|
|
356
|
+
* @summary Issues a temporary SAS URL to read a patient review before-and-after photo. (Auth policies: RequireContentManagerRole)
|
|
357
|
+
* @param {string} patientReviewId The patient review identifier.
|
|
358
|
+
* @param {string} beforeAndAfterPhotoId The before-and-after photo identifier.
|
|
359
|
+
* @param {number} [minutesAvailableUntil] Optional minutes until the SAS URL expires.
|
|
360
|
+
* @param {*} [options] Override http request option.
|
|
361
|
+
* @throws {RequiredError}
|
|
362
|
+
*/
|
|
363
|
+
apiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGet(patientReviewId: string, beforeAndAfterPhotoId: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<PatientReviewBeforeAndAfterPhotoAccessModel>;
|
|
291
364
|
/**
|
|
292
365
|
*
|
|
293
366
|
* @summary Copies a private before-and-after photo set to a new public before-and-after photo record. (Auth policies: RequireContentManagerRole)
|
|
@@ -323,6 +396,16 @@ export declare const PatientReviewsApiFactory: (configuration?: Configuration, b
|
|
|
323
396
|
* @throws {RequiredError}
|
|
324
397
|
*/
|
|
325
398
|
apiV1PatientreviewsPatientReviewIdDocumentverificationPut(patientReviewId: string, options?: any): AxiosPromise<boolean>;
|
|
399
|
+
/**
|
|
400
|
+
*
|
|
401
|
+
* @summary Issues a temporary SAS URL to read a patient review general photo. (Auth policies: RequireContentManagerRole)
|
|
402
|
+
* @param {string} patientReviewId The patient review identifier.
|
|
403
|
+
* @param {string} generalPhotoId The general photo identifier.
|
|
404
|
+
* @param {number} [minutesAvailableUntil] Optional minutes until the SAS URL expires.
|
|
405
|
+
* @param {*} [options] Override http request option.
|
|
406
|
+
* @throws {RequiredError}
|
|
407
|
+
*/
|
|
408
|
+
apiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGet(patientReviewId: string, generalPhotoId: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<SecureFileImageAccessModel>;
|
|
326
409
|
/**
|
|
327
410
|
*
|
|
328
411
|
* @summary Copies a private general photo to a new public general photo record. (Auth policies: RequireContentManagerRole)
|
|
@@ -375,6 +458,16 @@ export declare const PatientReviewsApiFactory: (configuration?: Configuration, b
|
|
|
375
458
|
* @throws {RequiredError}
|
|
376
459
|
*/
|
|
377
460
|
apiV1PatientreviewsPatientReviewIdStatusPut(patientReviewId: string, updatePatientReviewStatusCommand?: UpdatePatientReviewStatusCommand, options?: any): AxiosPromise<boolean>;
|
|
461
|
+
/**
|
|
462
|
+
*
|
|
463
|
+
* @summary Issues a temporary SAS URL to read a patient review verification document. (Auth policies: RequireContentManagerRole)
|
|
464
|
+
* @param {string} patientReviewId The patient review identifier.
|
|
465
|
+
* @param {string} verificationDocumentId The verification document identifier.
|
|
466
|
+
* @param {number} [minutesAvailableUntil] Optional minutes until the SAS URL expires.
|
|
467
|
+
* @param {*} [options] Override http request option.
|
|
468
|
+
* @throws {RequiredError}
|
|
469
|
+
*/
|
|
470
|
+
apiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGet(patientReviewId: string, verificationDocumentId: string, minutesAvailableUntil?: number, options?: any): AxiosPromise<SecureFileDocumentAccessModel>;
|
|
378
471
|
};
|
|
379
472
|
/**
|
|
380
473
|
* Request parameters for apiV1PatientreviewsGet operation in PatientReviewsApi.
|
|
@@ -462,6 +555,31 @@ export interface PatientReviewsApiApiV1PatientreviewsPatientReviewIdActivitylogs
|
|
|
462
555
|
*/
|
|
463
556
|
readonly patientReviewId: string;
|
|
464
557
|
}
|
|
558
|
+
/**
|
|
559
|
+
* Request parameters for apiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGet operation in PatientReviewsApi.
|
|
560
|
+
* @export
|
|
561
|
+
* @interface PatientReviewsApiApiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGetRequest
|
|
562
|
+
*/
|
|
563
|
+
export interface PatientReviewsApiApiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGetRequest {
|
|
564
|
+
/**
|
|
565
|
+
* The patient review identifier.
|
|
566
|
+
* @type {string}
|
|
567
|
+
* @memberof PatientReviewsApiApiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGet
|
|
568
|
+
*/
|
|
569
|
+
readonly patientReviewId: string;
|
|
570
|
+
/**
|
|
571
|
+
* The before-and-after photo identifier.
|
|
572
|
+
* @type {string}
|
|
573
|
+
* @memberof PatientReviewsApiApiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGet
|
|
574
|
+
*/
|
|
575
|
+
readonly beforeAndAfterPhotoId: string;
|
|
576
|
+
/**
|
|
577
|
+
* Optional minutes until the SAS URL expires.
|
|
578
|
+
* @type {number}
|
|
579
|
+
* @memberof PatientReviewsApiApiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGet
|
|
580
|
+
*/
|
|
581
|
+
readonly minutesAvailableUntil?: number;
|
|
582
|
+
}
|
|
465
583
|
/**
|
|
466
584
|
* Request parameters for apiV1PatientreviewsPatientReviewIdBeforeandafterphotosPatientReviewBeforeAndAfterPhotoIdCopytopublicPost operation in PatientReviewsApi.
|
|
467
585
|
* @export
|
|
@@ -532,6 +650,31 @@ export interface PatientReviewsApiApiV1PatientreviewsPatientReviewIdDocumentveri
|
|
|
532
650
|
*/
|
|
533
651
|
readonly patientReviewId: string;
|
|
534
652
|
}
|
|
653
|
+
/**
|
|
654
|
+
* Request parameters for apiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGet operation in PatientReviewsApi.
|
|
655
|
+
* @export
|
|
656
|
+
* @interface PatientReviewsApiApiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGetRequest
|
|
657
|
+
*/
|
|
658
|
+
export interface PatientReviewsApiApiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGetRequest {
|
|
659
|
+
/**
|
|
660
|
+
* The patient review identifier.
|
|
661
|
+
* @type {string}
|
|
662
|
+
* @memberof PatientReviewsApiApiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGet
|
|
663
|
+
*/
|
|
664
|
+
readonly patientReviewId: string;
|
|
665
|
+
/**
|
|
666
|
+
* The general photo identifier.
|
|
667
|
+
* @type {string}
|
|
668
|
+
* @memberof PatientReviewsApiApiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGet
|
|
669
|
+
*/
|
|
670
|
+
readonly generalPhotoId: string;
|
|
671
|
+
/**
|
|
672
|
+
* Optional minutes until the SAS URL expires.
|
|
673
|
+
* @type {number}
|
|
674
|
+
* @memberof PatientReviewsApiApiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGet
|
|
675
|
+
*/
|
|
676
|
+
readonly minutesAvailableUntil?: number;
|
|
677
|
+
}
|
|
535
678
|
/**
|
|
536
679
|
* Request parameters for apiV1PatientreviewsPatientReviewIdGeneralphotosPatientReviewGeneralPhotoIdCopytopublicPost operation in PatientReviewsApi.
|
|
537
680
|
* @export
|
|
@@ -634,6 +777,31 @@ export interface PatientReviewsApiApiV1PatientreviewsPatientReviewIdStatusPutReq
|
|
|
634
777
|
*/
|
|
635
778
|
readonly updatePatientReviewStatusCommand?: UpdatePatientReviewStatusCommand;
|
|
636
779
|
}
|
|
780
|
+
/**
|
|
781
|
+
* Request parameters for apiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGet operation in PatientReviewsApi.
|
|
782
|
+
* @export
|
|
783
|
+
* @interface PatientReviewsApiApiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGetRequest
|
|
784
|
+
*/
|
|
785
|
+
export interface PatientReviewsApiApiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGetRequest {
|
|
786
|
+
/**
|
|
787
|
+
* The patient review identifier.
|
|
788
|
+
* @type {string}
|
|
789
|
+
* @memberof PatientReviewsApiApiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGet
|
|
790
|
+
*/
|
|
791
|
+
readonly patientReviewId: string;
|
|
792
|
+
/**
|
|
793
|
+
* The verification document identifier.
|
|
794
|
+
* @type {string}
|
|
795
|
+
* @memberof PatientReviewsApiApiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGet
|
|
796
|
+
*/
|
|
797
|
+
readonly verificationDocumentId: string;
|
|
798
|
+
/**
|
|
799
|
+
* Optional minutes until the SAS URL expires.
|
|
800
|
+
* @type {number}
|
|
801
|
+
* @memberof PatientReviewsApiApiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGet
|
|
802
|
+
*/
|
|
803
|
+
readonly minutesAvailableUntil?: number;
|
|
804
|
+
}
|
|
637
805
|
/**
|
|
638
806
|
* PatientReviewsApi - object-oriented interface
|
|
639
807
|
* @export
|
|
@@ -659,6 +827,15 @@ export declare class PatientReviewsApi extends BaseAPI {
|
|
|
659
827
|
* @memberof PatientReviewsApi
|
|
660
828
|
*/
|
|
661
829
|
apiV1PatientreviewsPatientReviewIdActivitylogsGet(requestParameters: PatientReviewsApiApiV1PatientreviewsPatientReviewIdActivitylogsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientReviewActivityLogModel[], any>>;
|
|
830
|
+
/**
|
|
831
|
+
*
|
|
832
|
+
* @summary Issues a temporary SAS URL to read a patient review before-and-after photo. (Auth policies: RequireContentManagerRole)
|
|
833
|
+
* @param {PatientReviewsApiApiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGetRequest} requestParameters Request parameters.
|
|
834
|
+
* @param {*} [options] Override http request option.
|
|
835
|
+
* @throws {RequiredError}
|
|
836
|
+
* @memberof PatientReviewsApi
|
|
837
|
+
*/
|
|
838
|
+
apiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGet(requestParameters: PatientReviewsApiApiV1PatientreviewsPatientReviewIdBeforeandafterphotosBeforeAndAfterPhotoIdReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientReviewBeforeAndAfterPhotoAccessModel, any>>;
|
|
662
839
|
/**
|
|
663
840
|
*
|
|
664
841
|
* @summary Copies a private before-and-after photo set to a new public before-and-after photo record. (Auth policies: RequireContentManagerRole)
|
|
@@ -695,6 +872,15 @@ export declare class PatientReviewsApi extends BaseAPI {
|
|
|
695
872
|
* @memberof PatientReviewsApi
|
|
696
873
|
*/
|
|
697
874
|
apiV1PatientreviewsPatientReviewIdDocumentverificationPut(requestParameters: PatientReviewsApiApiV1PatientreviewsPatientReviewIdDocumentverificationPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
875
|
+
/**
|
|
876
|
+
*
|
|
877
|
+
* @summary Issues a temporary SAS URL to read a patient review general photo. (Auth policies: RequireContentManagerRole)
|
|
878
|
+
* @param {PatientReviewsApiApiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGetRequest} requestParameters Request parameters.
|
|
879
|
+
* @param {*} [options] Override http request option.
|
|
880
|
+
* @throws {RequiredError}
|
|
881
|
+
* @memberof PatientReviewsApi
|
|
882
|
+
*/
|
|
883
|
+
apiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGet(requestParameters: PatientReviewsApiApiV1PatientreviewsPatientReviewIdGeneralphotosGeneralPhotoIdReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureFileImageAccessModel, any>>;
|
|
698
884
|
/**
|
|
699
885
|
*
|
|
700
886
|
* @summary Copies a private general photo to a new public general photo record. (Auth policies: RequireContentManagerRole)
|
|
@@ -749,5 +935,14 @@ export declare class PatientReviewsApi extends BaseAPI {
|
|
|
749
935
|
* @memberof PatientReviewsApi
|
|
750
936
|
*/
|
|
751
937
|
apiV1PatientreviewsPatientReviewIdStatusPut(requestParameters: PatientReviewsApiApiV1PatientreviewsPatientReviewIdStatusPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
938
|
+
/**
|
|
939
|
+
*
|
|
940
|
+
* @summary Issues a temporary SAS URL to read a patient review verification document. (Auth policies: RequireContentManagerRole)
|
|
941
|
+
* @param {PatientReviewsApiApiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGetRequest} requestParameters Request parameters.
|
|
942
|
+
* @param {*} [options] Override http request option.
|
|
943
|
+
* @throws {RequiredError}
|
|
944
|
+
* @memberof PatientReviewsApi
|
|
945
|
+
*/
|
|
946
|
+
apiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGet(requestParameters: PatientReviewsApiApiV1PatientreviewsPatientReviewIdVerificationdocumentsVerificationDocumentIdReadGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureFileDocumentAccessModel, any>>;
|
|
752
947
|
}
|
|
753
948
|
//# sourceMappingURL=patient-reviews-api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patient-reviews-api.d.ts","sourceRoot":"","sources":["../../src/api/patient-reviews-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,4BAA4B,EAAE,MAAM,WAAW,CAAC;AAEzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,WAAW,CAAC;AAE1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAEhD,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAIhD,OAAO,EAAE,gCAAgC,EAAE,MAAM,WAAW,CAAC;AAE7D,OAAO,EAAE,iCAAiC,EAAE,MAAM,WAAW,CAAC;AAC9D;;;GAGG;AACH,eAAO,MAAM,kCAAkC,mBAA6B,aAAa;IAEjF;;;;;;;;;;;;;;;;OAgBG;0CACyC,MAAM,wBAAwB,MAAM,WAAW,MAAM,WAAW,mBAAmB,iBAAiB,MAAM,WAAW,MAAM,kBAAkB,MAAM,eAAe,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA0EnU;;;;;;OAMG;yEACwE,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA+B1I;;;;;;;OAOG;gIAC+H,MAAM,sCAAsC,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkC7O;;;;;;;OAOG;gFAC+E,MAAM,sCAAsC,iCAAiC,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkCxN;;;;;;;OAOG;gEAC+D,MAAM,gBAAgB,OAAO,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAmCxJ;;;;;;OAMG;iFACgF,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA+BlJ;;;;;;;OAOG;kHACiH,MAAM,+BAA+B,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkCxN;;;;;;;OAOG;6DAC4D,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAmCrJ;;;;;;;OAOG;+DAC8D,MAAM,iCAAiC,4BAA4B,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkC7L;;;;;;OAMG;8EAC6E,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA+B/I;;;;;;OAMG;uEACsE,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA+BxI;;;;;;;OAOG;mEACkE,MAAM,qCAAqC,gCAAgC,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"patient-reviews-api.d.ts","sourceRoot":"","sources":["../../src/api/patient-reviews-api.ts"],"names":[],"mappings":"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"}
|