@datapos/datapos-shared 0.3.539 → 0.3.540

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.
@@ -9,7 +9,7 @@ class s extends c {
9
9
  }
10
10
  class m extends s {
11
11
  }
12
- class f extends s {
12
+ class u extends s {
13
13
  }
14
14
  class l extends s {
15
15
  body;
@@ -18,7 +18,7 @@ class l extends s {
18
18
  super(o, n, t), this.name = new.target.name, this.body = b(e ?? void 0);
19
19
  }
20
20
  }
21
- class u extends c {
21
+ class f extends c {
22
22
  }
23
23
  class y extends s {
24
24
  componentName;
@@ -90,13 +90,13 @@ function O(r) {
90
90
  e = new m(n.message, n.locator, { cause: o });
91
91
  break;
92
92
  case "EngineError":
93
- e = new f(n.message, n.locator, { cause: o });
93
+ e = new u(n.message, n.locator, { cause: o });
94
94
  break;
95
95
  case "ApplicationError":
96
96
  e = new s(n.message, n.locator, { cause: o });
97
97
  break;
98
98
  case "OperationalError":
99
- e = new u(n.message, n.locator, { cause: o });
99
+ e = new f(n.message, n.locator, { cause: o });
100
100
  break;
101
101
  case "WindowHandledRuntimeError":
102
102
  e = new E(n.message, n.locator, { cause: o });
@@ -128,9 +128,9 @@ function b(r) {
128
128
  export {
129
129
  m as APIError,
130
130
  s as ApplicationError,
131
- f as EngineError,
131
+ u as EngineError,
132
132
  l as FetchError,
133
- u as OperationalError,
133
+ f as OperationalError,
134
134
  y as VueHandledError,
135
135
  g as WindowHandledPromiseRejectionError,
136
136
  E as WindowHandledRuntimeError,
@@ -150,7 +150,8 @@ interface DropObjectOptions extends EngineOperationOptions {
150
150
  * Find object options and result.
151
151
  */
152
152
  interface FindObjectOptions extends EngineOperationOptions {
153
- containerId: string | undefined;
153
+ folderPath: string | undefined;
154
+ storeId: string | undefined;
154
155
  nodeId: string;
155
156
  }
156
157
  interface FindObjectResult {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.539",
3
+ "version": "0.3.540",
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>",