@acorex/connectivity 20.3.0-next.0 → 20.3.0-next.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.
@@ -246,14 +246,6 @@ 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
- }
257
249
  async remove(fileId) {
258
250
  try {
259
251
  await firstValueFrom(this.http.delete(`${this.baseUrl}/remove/${fileId}`).pipe(catchError(() => of(void 0))));