@clipboard-health/rules-engine 1.2.3 → 1.2.4

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/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@clipboard-health/rules-engine",
3
3
  "description": "A pure functional rules engine.",
4
- "version": "1.2.3",
5
4
  "bugs": "https://github.com/clipboardhealth/core-utils/issues",
6
5
  "dependencies": {
7
- "tslib": "2.6.3",
8
- "type-fest": "4.25.0"
6
+ "tslib": "2.7.0",
7
+ "type-fest": "4.26.1"
9
8
  },
10
9
  "keywords": [],
11
10
  "license": "MIT",
@@ -23,5 +22,6 @@
23
22
  },
24
23
  "type": "commonjs",
25
24
  "typings": "./src/index.d.ts",
26
- "types": "./src/index.d.ts"
25
+ "types": "./src/index.d.ts",
26
+ "version": "1.2.4"
27
27
  }
package/src/lib/rule.d.ts CHANGED
@@ -5,9 +5,7 @@ export interface RuleContext<TInput, TOutput> {
5
5
  */
6
6
  input: ReadonlyDeep<TInput>;
7
7
  /**
8
- * Output is immutable, do not modify existing items, only append.
9
- *
10
- * @see {@link appendOutput}
8
+ * Output is immutable, do not modify existing items, only append using {@link appendOutput}.
11
9
  */
12
10
  output: ReadonlyArray<ReadonlyDeep<TOutput>>;
13
11
  }