oci-aivision 2.79.0 → 2.79.1
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/client.d.ts +25 -26
- package/lib/client.js +52 -132
- package/lib/client.js.map +1 -1
- package/lib/model/dataset.js +2 -4
- package/lib/model/dataset.js.map +1 -1
- package/lib/model/document-details.js +2 -4
- package/lib/model/document-details.js.map +1 -1
- package/lib/model/document-feature.js +2 -4
- package/lib/model/document-feature.js.map +1 -1
- package/lib/model/field-value.js +2 -4
- package/lib/model/field-value.js.map +1 -1
- package/lib/model/image-details.js +2 -4
- package/lib/model/image-details.js.map +1 -1
- package/lib/model/image-feature.js +2 -4
- package/lib/model/image-feature.js.map +1 -1
- package/lib/model/input-location.js +2 -4
- package/lib/model/input-location.js.map +1 -1
- package/lib/request/analyze-document-request.d.ts +1 -1
- package/lib/request/analyze-image-request.d.ts +1 -1
- package/lib/request/cancel-document-job-request.d.ts +1 -1
- package/lib/request/cancel-image-job-request.d.ts +1 -1
- package/lib/request/cancel-work-request-request.d.ts +1 -1
- package/lib/request/change-model-compartment-request.d.ts +1 -1
- package/lib/request/change-project-compartment-request.d.ts +1 -1
- package/lib/request/create-document-job-request.d.ts +1 -1
- package/lib/request/create-image-job-request.d.ts +1 -1
- package/lib/request/create-model-request.d.ts +1 -1
- package/lib/request/create-project-request.d.ts +1 -1
- package/lib/request/delete-model-request.d.ts +1 -1
- package/lib/request/delete-project-request.d.ts +1 -1
- package/lib/request/get-document-job-request.d.ts +1 -1
- package/lib/request/get-image-job-request.d.ts +1 -1
- package/lib/request/get-model-request.d.ts +1 -1
- package/lib/request/get-project-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-models-request.d.ts +1 -1
- package/lib/request/list-projects-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/update-model-request.d.ts +1 -1
- package/lib/request/update-project-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -46,7 +46,6 @@ export declare class AIServiceVisionClient {
|
|
|
46
46
|
* @param endpoint The endpoint of the service.
|
|
47
47
|
*/
|
|
48
48
|
set endpoint(endpoint: string);
|
|
49
|
-
get logger(): import("oci-common/lib/log").Logger;
|
|
50
49
|
/**
|
|
51
50
|
* Determines whether realm specific endpoint should be used or not.
|
|
52
51
|
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
@@ -92,7 +91,7 @@ export declare class AIServiceVisionClient {
|
|
|
92
91
|
* @param AnalyzeDocumentRequest
|
|
93
92
|
* @return AnalyzeDocumentResponse
|
|
94
93
|
* @throws OciError when an error occurs
|
|
95
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
94
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/AnalyzeDocument.ts.html |here} to see how to use AnalyzeDocument API.
|
|
96
95
|
*/
|
|
97
96
|
analyzeDocument(analyzeDocumentRequest: requests.AnalyzeDocumentRequest): Promise<responses.AnalyzeDocumentResponse>;
|
|
98
97
|
/**
|
|
@@ -102,7 +101,7 @@ export declare class AIServiceVisionClient {
|
|
|
102
101
|
* @param AnalyzeImageRequest
|
|
103
102
|
* @return AnalyzeImageResponse
|
|
104
103
|
* @throws OciError when an error occurs
|
|
105
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
104
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/AnalyzeImage.ts.html |here} to see how to use AnalyzeImage API.
|
|
106
105
|
*/
|
|
107
106
|
analyzeImage(analyzeImageRequest: requests.AnalyzeImageRequest): Promise<responses.AnalyzeImageResponse>;
|
|
108
107
|
/**
|
|
@@ -112,7 +111,7 @@ export declare class AIServiceVisionClient {
|
|
|
112
111
|
* @param CancelDocumentJobRequest
|
|
113
112
|
* @return CancelDocumentJobResponse
|
|
114
113
|
* @throws OciError when an error occurs
|
|
115
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
114
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/CancelDocumentJob.ts.html |here} to see how to use CancelDocumentJob API.
|
|
116
115
|
*/
|
|
117
116
|
cancelDocumentJob(cancelDocumentJobRequest: requests.CancelDocumentJobRequest): Promise<responses.CancelDocumentJobResponse>;
|
|
118
117
|
/**
|
|
@@ -122,7 +121,7 @@ export declare class AIServiceVisionClient {
|
|
|
122
121
|
* @param CancelImageJobRequest
|
|
123
122
|
* @return CancelImageJobResponse
|
|
124
123
|
* @throws OciError when an error occurs
|
|
125
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
124
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/CancelImageJob.ts.html |here} to see how to use CancelImageJob API.
|
|
126
125
|
*/
|
|
127
126
|
cancelImageJob(cancelImageJobRequest: requests.CancelImageJobRequest): Promise<responses.CancelImageJobResponse>;
|
|
128
127
|
/**
|
|
@@ -131,7 +130,7 @@ export declare class AIServiceVisionClient {
|
|
|
131
130
|
* @param CancelWorkRequestRequest
|
|
132
131
|
* @return CancelWorkRequestResponse
|
|
133
132
|
* @throws OciError when an error occurs
|
|
134
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
133
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
135
134
|
*/
|
|
136
135
|
cancelWorkRequest(cancelWorkRequestRequest: requests.CancelWorkRequestRequest): Promise<responses.CancelWorkRequestResponse>;
|
|
137
136
|
/**
|
|
@@ -140,7 +139,7 @@ export declare class AIServiceVisionClient {
|
|
|
140
139
|
* @param ChangeModelCompartmentRequest
|
|
141
140
|
* @return ChangeModelCompartmentResponse
|
|
142
141
|
* @throws OciError when an error occurs
|
|
143
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
142
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartment API.
|
|
144
143
|
*/
|
|
145
144
|
changeModelCompartment(changeModelCompartmentRequest: requests.ChangeModelCompartmentRequest): Promise<responses.ChangeModelCompartmentResponse>;
|
|
146
145
|
/**
|
|
@@ -149,7 +148,7 @@ export declare class AIServiceVisionClient {
|
|
|
149
148
|
* @param ChangeProjectCompartmentRequest
|
|
150
149
|
* @return ChangeProjectCompartmentResponse
|
|
151
150
|
* @throws OciError when an error occurs
|
|
152
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
151
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartment API.
|
|
153
152
|
*/
|
|
154
153
|
changeProjectCompartment(changeProjectCompartmentRequest: requests.ChangeProjectCompartmentRequest): Promise<responses.ChangeProjectCompartmentResponse>;
|
|
155
154
|
/**
|
|
@@ -159,7 +158,7 @@ export declare class AIServiceVisionClient {
|
|
|
159
158
|
* @param CreateDocumentJobRequest
|
|
160
159
|
* @return CreateDocumentJobResponse
|
|
161
160
|
* @throws OciError when an error occurs
|
|
162
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/CreateDocumentJob.ts.html |here} to see how to use CreateDocumentJob API.
|
|
163
162
|
*/
|
|
164
163
|
createDocumentJob(createDocumentJobRequest: requests.CreateDocumentJobRequest): Promise<responses.CreateDocumentJobResponse>;
|
|
165
164
|
/**
|
|
@@ -169,7 +168,7 @@ export declare class AIServiceVisionClient {
|
|
|
169
168
|
* @param CreateImageJobRequest
|
|
170
169
|
* @return CreateImageJobResponse
|
|
171
170
|
* @throws OciError when an error occurs
|
|
172
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
171
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/CreateImageJob.ts.html |here} to see how to use CreateImageJob API.
|
|
173
172
|
*/
|
|
174
173
|
createImageJob(createImageJobRequest: requests.CreateImageJobRequest): Promise<responses.CreateImageJobResponse>;
|
|
175
174
|
/**
|
|
@@ -179,7 +178,7 @@ export declare class AIServiceVisionClient {
|
|
|
179
178
|
* @param CreateModelRequest
|
|
180
179
|
* @return CreateModelResponse
|
|
181
180
|
* @throws OciError when an error occurs
|
|
182
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
181
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/CreateModel.ts.html |here} to see how to use CreateModel API.
|
|
183
182
|
*/
|
|
184
183
|
createModel(createModelRequest: requests.CreateModelRequest): Promise<responses.CreateModelResponse>;
|
|
185
184
|
/**
|
|
@@ -189,7 +188,7 @@ export declare class AIServiceVisionClient {
|
|
|
189
188
|
* @param CreateProjectRequest
|
|
190
189
|
* @return CreateProjectResponse
|
|
191
190
|
* @throws OciError when an error occurs
|
|
192
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
191
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/CreateProject.ts.html |here} to see how to use CreateProject API.
|
|
193
192
|
*/
|
|
194
193
|
createProject(createProjectRequest: requests.CreateProjectRequest): Promise<responses.CreateProjectResponse>;
|
|
195
194
|
/**
|
|
@@ -198,7 +197,7 @@ export declare class AIServiceVisionClient {
|
|
|
198
197
|
* @param DeleteModelRequest
|
|
199
198
|
* @return DeleteModelResponse
|
|
200
199
|
* @throws OciError when an error occurs
|
|
201
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
200
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/DeleteModel.ts.html |here} to see how to use DeleteModel API.
|
|
202
201
|
*/
|
|
203
202
|
deleteModel(deleteModelRequest: requests.DeleteModelRequest): Promise<responses.DeleteModelResponse>;
|
|
204
203
|
/**
|
|
@@ -207,7 +206,7 @@ export declare class AIServiceVisionClient {
|
|
|
207
206
|
* @param DeleteProjectRequest
|
|
208
207
|
* @return DeleteProjectResponse
|
|
209
208
|
* @throws OciError when an error occurs
|
|
210
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
209
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/DeleteProject.ts.html |here} to see how to use DeleteProject API.
|
|
211
210
|
*/
|
|
212
211
|
deleteProject(deleteProjectRequest: requests.DeleteProjectRequest): Promise<responses.DeleteProjectResponse>;
|
|
213
212
|
/**
|
|
@@ -217,7 +216,7 @@ export declare class AIServiceVisionClient {
|
|
|
217
216
|
* @param GetDocumentJobRequest
|
|
218
217
|
* @return GetDocumentJobResponse
|
|
219
218
|
* @throws OciError when an error occurs
|
|
220
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
219
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/GetDocumentJob.ts.html |here} to see how to use GetDocumentJob API.
|
|
221
220
|
*/
|
|
222
221
|
getDocumentJob(getDocumentJobRequest: requests.GetDocumentJobRequest): Promise<responses.GetDocumentJobResponse>;
|
|
223
222
|
/**
|
|
@@ -227,7 +226,7 @@ export declare class AIServiceVisionClient {
|
|
|
227
226
|
* @param GetImageJobRequest
|
|
228
227
|
* @return GetImageJobResponse
|
|
229
228
|
* @throws OciError when an error occurs
|
|
230
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/GetImageJob.ts.html |here} to see how to use GetImageJob API.
|
|
231
230
|
*/
|
|
232
231
|
getImageJob(getImageJobRequest: requests.GetImageJobRequest): Promise<responses.GetImageJobResponse>;
|
|
233
232
|
/**
|
|
@@ -236,7 +235,7 @@ export declare class AIServiceVisionClient {
|
|
|
236
235
|
* @param GetModelRequest
|
|
237
236
|
* @return GetModelResponse
|
|
238
237
|
* @throws OciError when an error occurs
|
|
239
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
238
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/GetModel.ts.html |here} to see how to use GetModel API.
|
|
240
239
|
*/
|
|
241
240
|
getModel(getModelRequest: requests.GetModelRequest): Promise<responses.GetModelResponse>;
|
|
242
241
|
/**
|
|
@@ -245,7 +244,7 @@ export declare class AIServiceVisionClient {
|
|
|
245
244
|
* @param GetProjectRequest
|
|
246
245
|
* @return GetProjectResponse
|
|
247
246
|
* @throws OciError when an error occurs
|
|
248
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/GetProject.ts.html |here} to see how to use GetProject API.
|
|
249
248
|
*/
|
|
250
249
|
getProject(getProjectRequest: requests.GetProjectRequest): Promise<responses.GetProjectResponse>;
|
|
251
250
|
/**
|
|
@@ -254,7 +253,7 @@ export declare class AIServiceVisionClient {
|
|
|
254
253
|
* @param GetWorkRequestRequest
|
|
255
254
|
* @return GetWorkRequestResponse
|
|
256
255
|
* @throws OciError when an error occurs
|
|
257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
256
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
258
257
|
*/
|
|
259
258
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
260
259
|
/**
|
|
@@ -264,7 +263,7 @@ export declare class AIServiceVisionClient {
|
|
|
264
263
|
* @param ListModelsRequest
|
|
265
264
|
* @return ListModelsResponse
|
|
266
265
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
266
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/ListModels.ts.html |here} to see how to use ListModels API.
|
|
268
267
|
*/
|
|
269
268
|
listModels(listModelsRequest: requests.ListModelsRequest): Promise<responses.ListModelsResponse>;
|
|
270
269
|
/**
|
|
@@ -274,7 +273,7 @@ export declare class AIServiceVisionClient {
|
|
|
274
273
|
* @param ListProjectsRequest
|
|
275
274
|
* @return ListProjectsResponse
|
|
276
275
|
* @throws OciError when an error occurs
|
|
277
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/ListProjects.ts.html |here} to see how to use ListProjects API.
|
|
278
277
|
*/
|
|
279
278
|
listProjects(listProjectsRequest: requests.ListProjectsRequest): Promise<responses.ListProjectsResponse>;
|
|
280
279
|
/**
|
|
@@ -284,7 +283,7 @@ export declare class AIServiceVisionClient {
|
|
|
284
283
|
* @param ListWorkRequestErrorsRequest
|
|
285
284
|
* @return ListWorkRequestErrorsResponse
|
|
286
285
|
* @throws OciError when an error occurs
|
|
287
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
286
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
288
287
|
*/
|
|
289
288
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
290
289
|
/**
|
|
@@ -294,7 +293,7 @@ export declare class AIServiceVisionClient {
|
|
|
294
293
|
* @param ListWorkRequestLogsRequest
|
|
295
294
|
* @return ListWorkRequestLogsResponse
|
|
296
295
|
* @throws OciError when an error occurs
|
|
297
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
296
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
298
297
|
*/
|
|
299
298
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
300
299
|
/**
|
|
@@ -304,7 +303,7 @@ export declare class AIServiceVisionClient {
|
|
|
304
303
|
* @param ListWorkRequestsRequest
|
|
305
304
|
* @return ListWorkRequestsResponse
|
|
306
305
|
* @throws OciError when an error occurs
|
|
307
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
306
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
308
307
|
*/
|
|
309
308
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
310
309
|
/**
|
|
@@ -313,7 +312,7 @@ export declare class AIServiceVisionClient {
|
|
|
313
312
|
* @param UpdateModelRequest
|
|
314
313
|
* @return UpdateModelResponse
|
|
315
314
|
* @throws OciError when an error occurs
|
|
316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
315
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/UpdateModel.ts.html |here} to see how to use UpdateModel API.
|
|
317
316
|
*/
|
|
318
317
|
updateModel(updateModelRequest: requests.UpdateModelRequest): Promise<responses.UpdateModelResponse>;
|
|
319
318
|
/**
|
|
@@ -322,7 +321,7 @@ export declare class AIServiceVisionClient {
|
|
|
322
321
|
* @param UpdateProjectRequest
|
|
323
322
|
* @return UpdateProjectResponse
|
|
324
323
|
* @throws OciError when an error occurs
|
|
325
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.
|
|
324
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/aivision/UpdateProject.ts.html |here} to see how to use UpdateProject API.
|
|
326
325
|
*/
|
|
327
326
|
updateProject(updateProjectRequest: requests.UpdateProjectRequest): Promise<responses.UpdateProjectResponse>;
|
|
328
327
|
}
|