@ductape/sdk 0.0.4-v12 → 0.0.4-v13

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.
@@ -1409,7 +1409,7 @@ class ProductsBuilderService {
1409
1409
  return this.product.apps;
1410
1410
  }
1411
1411
  fetchApp(tag, throwErrorIfExists = false) {
1412
- const app = this.product.apps.find((data) => data.app_tag === tag);
1412
+ const app = this.product.apps.find((data) => data.app_tag === tag || data.access_tag === tag);
1413
1413
  if (!app && throwErrorIfExists)
1414
1414
  throw new Error(`App ${tag} not found`);
1415
1415
  return app;