@swaggerexpert/jsonpath 1.2.0 → 1.2.1
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/README.md +5 -1
- package/cjs/grammar.cjs +1 -1
- package/es/grammar.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,11 @@
|
|
|
9
9
|
|
|
10
10
|
`@swaggerexpert/jsonpath` is a **parser** and **validator** for [RFC 9535](https://www.rfc-editor.org/rfc/rfc9535) Query Expressions for JSON - **JSONPath**.
|
|
11
11
|
|
|
12
|
-
The development of this library contributed to the identification and formal submission of
|
|
12
|
+
The development of this library contributed to the identification and formal submission of following **erratas** against the RFC 9535:
|
|
13
|
+
- [Errata ID: 8343](https://www.rfc-editor.org/errata/eid8343)
|
|
14
|
+
- [Errata ID: 8352](https://www.rfc-editor.org/errata/eid8352)
|
|
15
|
+
- [Errata ID: 8353](https://www.rfc-editor.org/errata/eid8353)
|
|
16
|
+
- [Errata ID: 8354](https://www.rfc-editor.org/errata/eid8354)
|
|
13
17
|
|
|
14
18
|
<table>
|
|
15
19
|
<tr>
|
package/cjs/grammar.cjs
CHANGED
|
@@ -2720,7 +2720,7 @@ function grammar() {
|
|
|
2720
2720
|
str += "comparable = singular-query / ; singular query value\n";
|
|
2721
2721
|
str += " function-expr / ; ValueType\n";
|
|
2722
2722
|
str += " literal\n";
|
|
2723
|
-
str += " ; MODIFICATION: https://www.rfc-editor.org/errata/
|
|
2723
|
+
str += " ; MODIFICATION: https://www.rfc-editor.org/errata/eid8352\n";
|
|
2724
2724
|
str += "comparison-op = \"==\" / \"!=\" /\n";
|
|
2725
2725
|
str += " \"<=\" / \">=\" /\n";
|
|
2726
2726
|
str += " \"<\" / \">\"\n";
|
package/es/grammar.mjs
CHANGED
|
@@ -2716,7 +2716,7 @@ export default function grammar() {
|
|
|
2716
2716
|
str += "comparable = singular-query / ; singular query value\n";
|
|
2717
2717
|
str += " function-expr / ; ValueType\n";
|
|
2718
2718
|
str += " literal\n";
|
|
2719
|
-
str += " ; MODIFICATION: https://www.rfc-editor.org/errata/
|
|
2719
|
+
str += " ; MODIFICATION: https://www.rfc-editor.org/errata/eid8352\n";
|
|
2720
2720
|
str += "comparison-op = \"==\" / \"!=\" /\n";
|
|
2721
2721
|
str += " \"<=\" / \">=\" /\n";
|
|
2722
2722
|
str += " \"<\" / \">\"\n";
|