geonetwork-ui 2.9.0-dev.36b986bfb → 2.9.0-dev.3b1e90427

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.
@@ -25384,9 +25384,11 @@ async function getLayers(url, serviceProtocol) {
25384
25384
  case 'wfs': {
25385
25385
  const endpointWfs = await new WfsEndpoint(url).isReady();
25386
25386
  const featureTypes = await endpointWfs.getFeatureTypes();
25387
- const layers = await Promise.all(featureTypes.map(async (collection) => {
25388
- return await endpointWfs.getFeatureTypeFull(collection.name);
25389
- }));
25387
+ const layers = (await Promise.allSettled(featureTypes.map((collection) => {
25388
+ return endpointWfs.getFeatureTypeFull(collection.name);
25389
+ })))
25390
+ .filter((settled) => settled.status === 'fulfilled')
25391
+ .map((fulfilled) => fulfilled.value);
25390
25392
  return layers;
25391
25393
  }
25392
25394
  case 'wms': {
@@ -25517,7 +25519,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
25517
25519
  }] } });
25518
25520
 
25519
25521
  var name = "geonetwork-ui";
25520
- var version = "2.9.0-dev.36b986bfb";
25522
+ var version = "2.9.0-dev.3b1e90427";
25521
25523
  var engines = {
25522
25524
  node: ">=20"
25523
25525
  };