@datapos/datapos-shared 0.3.539 → 0.3.541
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
|
|
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
|
|
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
|
|
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
|
|
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
|
-
|
|
131
|
+
u as EngineError,
|
|
132
132
|
l as FetchError,
|
|
133
|
-
|
|
133
|
+
f as OperationalError,
|
|
134
134
|
y as VueHandledError,
|
|
135
135
|
g as WindowHandledPromiseRejectionError,
|
|
136
136
|
E as WindowHandledRuntimeError,
|
|
@@ -150,12 +150,12 @@ interface DropObjectOptions extends EngineOperationOptions {
|
|
|
150
150
|
* Find object options and result.
|
|
151
151
|
*/
|
|
152
152
|
interface FindObjectOptions extends EngineOperationOptions {
|
|
153
|
-
|
|
153
|
+
storeId: string | undefined;
|
|
154
154
|
nodeId: string;
|
|
155
155
|
}
|
|
156
156
|
interface FindObjectResult {
|
|
157
|
-
|
|
158
|
-
|
|
157
|
+
path: string;
|
|
158
|
+
schema: unknown;
|
|
159
159
|
}
|
|
160
160
|
/**
|
|
161
161
|
* Get readable stream options.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.541",
|
|
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>",
|