@appland/scanner 1.71.4 → 1.71.5
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/types.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@appland/scanner-v1.71.5](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.71.4...@appland/scanner-v1.71.5) (2022-10-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Fix unresolved type in Rule.Options ([f4ed63c](https://github.com/getappmap/appmap-js/commit/f4ed63ca27e7c79b8e9bdb9faf63c9b3cd10145f))
|
|
7
|
+
|
|
1
8
|
# [@appland/scanner-v1.71.4](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.71.3...@appland/scanner-v1.71.4) (2022-10-13)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/types.d.ts
CHANGED
|
@@ -148,7 +148,7 @@ interface Rule {
|
|
|
148
148
|
impactDomain?: ImpactDomain;
|
|
149
149
|
references?: Record<string, URL>;
|
|
150
150
|
// User-defined options for the rule.
|
|
151
|
-
Options?:
|
|
151
|
+
Options?: any; // FIXME
|
|
152
152
|
// Function to instantiate the rule logic from configured options.
|
|
153
153
|
build: (options: this['Options']) => RuleLogic;
|
|
154
154
|
}
|