pmcf 3.10.17 → 3.10.19

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,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "3.10.17",
3
+ "version": "3.10.19",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -53,7 +53,7 @@
53
53
  "dependencies": {
54
54
  "ip-utilties": "^1.4.9",
55
55
  "npm-pkgbuild": "^18.2.31",
56
- "pacc": "^4.24.0",
56
+ "pacc": "^4.24.1",
57
57
  "package-directory": "^8.1.0"
58
58
  },
59
59
  "devDependencies": {
package/src/base.mjs CHANGED
@@ -3,7 +3,6 @@ import { allOutputs } from "npm-pkgbuild";
3
3
  import {
4
4
  parse,
5
5
  expand,
6
- tokens,
7
6
  baseTypes,
8
7
  attributeIterator,
9
8
  name_attribute_writable,
@@ -408,6 +407,10 @@ export class Base {
408
407
  return this.findService({ type: "smtp" });
409
408
  }
410
409
 
410
+ expression(expression) {
411
+ return parse(expression, { root: this });
412
+ }
413
+
411
414
  /**
412
415
  *
413
416
  * @param {any} filter
package/types/base.d.mts CHANGED
@@ -78,6 +78,7 @@ export class Base {
78
78
  get priority(): any;
79
79
  _priority: any;
80
80
  get smtp(): any;
81
+ expression(expression: any): any;
81
82
  /**
82
83
  *
83
84
  * @param {any} filter