@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.
- package/fesm2022/acorex-connectivity-api.mjs +0 -8
- package/fesm2022/acorex-connectivity-api.mjs.map +1 -1
- package/fesm2022/acorex-connectivity-mock.mjs +10849 -19329
- package/fesm2022/acorex-connectivity-mock.mjs.map +1 -1
- package/mock/index.d.ts +499 -1467
- package/package.json +7 -6
- package/fesm2022/acorex-connectivity-mock-category-with-items.query-72bKFWcj.mjs +0 -86
- package/fesm2022/acorex-connectivity-mock-category-with-items.query-72bKFWcj.mjs.map +0 -1
|
@@ -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))));
|