@datapos/datapos-shared 0.3.551 → 0.3.553

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.
@@ -10,6 +10,9 @@ class i extends c {
10
10
  class g extends i {
11
11
  }
12
12
  class u extends i {
13
+ constructor(s, o, e) {
14
+ super(s, o, e), this.name = "EngineError";
15
+ }
13
16
  }
14
17
  class l extends i {
15
18
  body;
@@ -30,6 +30,7 @@ declare class APIError extends ApplicationError {
30
30
  }
31
31
  /** Represents engine or core processing failures. */
32
32
  declare class EngineError extends ApplicationError {
33
+ constructor(message: string, locator: string, options?: ErrorOptions);
33
34
  }
34
35
  /** Represents failures during HTTP requests.
35
36
  * Includes a sanitized snapshot of the response body for diagnostic purposes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.551",
3
+ "version": "0.3.553",
4
4
  "description": "A library containing common constants, types and utilities used across all Data Positioning projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",