@swaggerexpert/jsonpath 1.0.1 → 1.0.2

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/cjs/grammar.cjs CHANGED
@@ -1998,13 +1998,13 @@ function grammar() {
1998
1998
  index: 27
1999
1999
  }; // RNM(logical-expr)
2000
2000
  this.rules[58].opcodes[2] = {
2001
- type: 4,
2002
- index: 57
2003
- }; // RNM(function-expr)
2004
- this.rules[58].opcodes[3] = {
2005
2001
  type: 4,
2006
2002
  index: 34
2007
2003
  }; // RNM(filter-query)
2004
+ this.rules[58].opcodes[3] = {
2005
+ type: 4,
2006
+ index: 57
2007
+ }; // RNM(function-expr)
2008
2008
  this.rules[58].opcodes[4] = {
2009
2009
  type: 4,
2010
2010
  index: 38
@@ -2749,8 +2749,8 @@ function grammar() {
2749
2749
  str += "function-expr = function-name left-paren S [function-argument ; MODIFICATION: surrogate text rule used\n";
2750
2750
  str += " *(S comma S function-argument)] S right-paren ; MODIFICATION: surrogate text rule used\n";
2751
2751
  str += "function-argument = logical-expr / ; MODIFICATION: https://www.rfc-editor.org/errata/eid8343\n";
2752
- str += " function-expr /\n";
2753
2752
  str += " filter-query / ; (includes singular-query)\n";
2753
+ str += " function-expr /\n";
2754
2754
  str += " literal\n";
2755
2755
  str += "\n";
2756
2756
  str += "\n";
package/es/grammar.mjs CHANGED
@@ -1994,13 +1994,13 @@ export default function grammar() {
1994
1994
  index: 27
1995
1995
  }; // RNM(logical-expr)
1996
1996
  this.rules[58].opcodes[2] = {
1997
- type: 4,
1998
- index: 57
1999
- }; // RNM(function-expr)
2000
- this.rules[58].opcodes[3] = {
2001
1997
  type: 4,
2002
1998
  index: 34
2003
1999
  }; // RNM(filter-query)
2000
+ this.rules[58].opcodes[3] = {
2001
+ type: 4,
2002
+ index: 57
2003
+ }; // RNM(function-expr)
2004
2004
  this.rules[58].opcodes[4] = {
2005
2005
  type: 4,
2006
2006
  index: 38
@@ -2745,8 +2745,8 @@ export default function grammar() {
2745
2745
  str += "function-expr = function-name left-paren S [function-argument ; MODIFICATION: surrogate text rule used\n";
2746
2746
  str += " *(S comma S function-argument)] S right-paren ; MODIFICATION: surrogate text rule used\n";
2747
2747
  str += "function-argument = logical-expr / ; MODIFICATION: https://www.rfc-editor.org/errata/eid8343\n";
2748
- str += " function-expr /\n";
2749
2748
  str += " filter-query / ; (includes singular-query)\n";
2749
+ str += " function-expr /\n";
2750
2750
  str += " literal\n";
2751
2751
  str += "\n";
2752
2752
  str += "\n";
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.0.1",
6
+ "version": "1.0.2",
7
7
  "description": "RCF 9535 implementation of JSONPath",
8
8
  "main": "./cjs/index.cjs",
9
9
  "types": "./types/index.d.ts",