@acorex/connectivity 20.2.4-next.0 → 20.2.4-next.2

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.
@@ -246,6 +246,14 @@ class AXCFileStorageApiService extends AXPFileStorageService {
246
246
  return this.fallbackFileInfo;
247
247
  }
248
248
  }
249
+ async findMany(ids) {
250
+ try {
251
+ return await firstValueFrom(this.http.post(`${this.baseUrl}/find-many`, { ids }).pipe(catchError(() => of([]))));
252
+ }
253
+ catch {
254
+ return [];
255
+ }
256
+ }
249
257
  async remove(fileId) {
250
258
  try {
251
259
  await firstValueFrom(this.http.delete(`${this.baseUrl}/remove/${fileId}`).pipe(catchError(() => of(void 0))));