@getodk/xpath 0.3.0 → 0.4.0

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "_expressionParser-DpqfmhIO.js": {
3
- "file": "expressionParser-DpqfmhIO.js",
2
+ "_expressionParser-BYZuKGXg.js": {
3
+ "file": "expressionParser-BYZuKGXg.js",
4
4
  "name": "expressionParser"
5
5
  },
6
6
  "src/expressionParser.ts": {
@@ -9,7 +9,7 @@
9
9
  "src": "src/expressionParser.ts",
10
10
  "isEntry": true,
11
11
  "imports": [
12
- "_expressionParser-DpqfmhIO.js"
12
+ "_expressionParser-BYZuKGXg.js"
13
13
  ]
14
14
  },
15
15
  "src/index.ts": {
@@ -18,7 +18,7 @@
18
18
  "src": "src/index.ts",
19
19
  "isEntry": true,
20
20
  "imports": [
21
- "_expressionParser-DpqfmhIO.js"
21
+ "_expressionParser-BYZuKGXg.js"
22
22
  ]
23
23
  }
24
24
  }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * @todo This is intended as a temporary placeholder, so we can identify cases
3
+ * where we've reused JavaRosa error messaging, especially if it's not clear
4
+ * whether that reuse makes sense.
5
+ */
6
+ export declare class JRCompatibleError extends Error {
7
+ }
@@ -0,0 +1,6 @@
1
+ import { JRCompatibleError } from './JRCompatibleError.ts';
2
+ type JRCompatibleFallibleGeoFunction = 'distance' | 'geofence';
3
+ export declare class JRCompatibleGeoValueError extends JRCompatibleError {
4
+ constructor(geoFunction: JRCompatibleFallibleGeoFunction);
5
+ }
6
+ export {};