npm package diff
Package: @forge/egress
Versions: 2.0.2 - 2.0.3-next.0
Modified: package/out/egress/egress-filtering-service.js
Index: package/out/egress/egress-filtering-service.js
===================================================================
--- package/out/egress/egress-filtering-service.js
+++ package/out/egress/egress-filtering-service.js
@@ -17,8 +17,11 @@
}
parseUrl(url) {
return (0, url_parser_1.parseUrl)(url);
}
+ containsWildCardEgress() {
+ return this.allowsEverything;
+ }
isValidUrl(url) {
if (this.allowsEverything) {
return true;
}
Modified: package/package.json
Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
{
"name": "@forge/egress",
- "version": "2.0.2",
+ "version": "2.0.3-next.0",
"description": "Helpers and utils for egress implementation in Forge apps",
"main": "out/index.js",
"author": "Atlassian",
"license": "SEE LICENSE IN LICENSE.txt",
Modified: package/out/egress/egress-filtering-service.d.ts.map
Index: package/out/egress/egress-filtering-service.d.ts.map
===================================================================
--- package/out/egress/egress-filtering-service.d.ts.map
+++ package/out/egress/egress-filtering-service.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"egress-filtering-service.d.ts","sourceRoot":"","sources":["../../src/egress/egress-filtering-service.ts"],"names":[],"mappings":"AAGA,qBAAa,sBAAsB;IACjC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAY;IACjC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAY;IAC5C,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAU;gBAE/B,SAAS,EAAE,MAAM,EAAE;IAU/B,OAAO,CAAC,QAAQ;IAKT,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IASvC,OAAO,CAAC,aAAa;CAKtB"}
\ No newline at end of file
+{"version":3,"file":"egress-filtering-service.d.ts","sourceRoot":"","sources":["../../src/egress/egress-filtering-service.ts"],"names":[],"mappings":"AAGA,qBAAa,sBAAsB;IACjC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAY;IACjC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAY;IAC5C,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAU;gBAE/B,SAAS,EAAE,MAAM,EAAE;IAU/B,OAAO,CAAC,QAAQ;IAIT,sBAAsB,IAAI,OAAO;IAKjC,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IASvC,OAAO,CAAC,aAAa;CAKtB"}
\ No newline at end of file
Modified: package/CHANGELOG.md
Index: package/CHANGELOG.md
===================================================================
--- package/CHANGELOG.md
+++ package/CHANGELOG.md
@@ -1,6 +1,12 @@
# @forge/egress
+## 2.0.3-next.0
+
+### Patch Changes
+
+- 8a3d993: Expose allowsEverything property in Egress Service via function
+
## 2.0.2
### Patch Changes
Modified: package/out/egress/egress-filtering-service.d.ts
Index: package/out/egress/egress-filtering-service.d.ts
===================================================================
--- package/out/egress/egress-filtering-service.d.ts
+++ package/out/egress/egress-filtering-service.d.ts
@@ -3,8 +3,9 @@
private readonly wildcardDomains;
private readonly allowsEverything;
constructor(allowList: string[]);
private parseUrl;
+ containsWildCardEgress(): boolean;
isValidUrl(url: string): boolean;
private allowedDomain;
}
//# sourceMappingURL=egress-filtering-service.d.ts.map
\ No newline at end of file