@ductape/sdk 0.0.4-v12 → 0.0.4-v14-fe
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/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/processor/services/processor.service.js +2 -2
- package/dist/processor/services/processor.service.js.map +1 -1
- package/dist/products/services/products.service.js +1 -1
- package/dist/products/services/products.service.js.map +1 -1
- package/dist/types/index.types.d.ts +2 -3
- package/dist/types/index.types.js.map +1 -1
- package/dist/types/processor.types.d.ts +1 -1
- package/package.json +1 -2
|
@@ -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;
|