@odata-filter/marshalers 1.0.0 → 1.0.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 +3 -4
- package/package.json +18 -2
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
|
-
See [INSTALL.md](
|
|
11
|
+
See [INSTALL.md](https://github.com/prior-art/odata-filter/blob/main/INSTALL.md) for full instructions.
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
|
@@ -57,13 +57,12 @@ toMongoJson(ast);
|
|
|
57
57
|
|
|
58
58
|
## Contributing
|
|
59
59
|
|
|
60
|
-
See [CONTRIBUTING.md](
|
|
60
|
+
See [CONTRIBUTING.md](https://github.com/prior-art/odata-filter/blob/main/CONTRIBUTING.md) for full instructions.
|
|
61
61
|
|
|
62
62
|
## License
|
|
63
63
|
|
|
64
|
-
See [LICENSE](
|
|
64
|
+
See [LICENSE](https://github.com/prior-art/odata-filter/blob/main/LICENSE) for licensing information.
|
|
65
65
|
|
|
66
66
|
## Documentation
|
|
67
67
|
|
|
68
68
|
* [OData Standard v4](https://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part2-url-conventions.html)
|
|
69
|
-
* [JSONSchema](https://json-schema.org/)
|
package/package.json
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odata-filter/marshalers",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"odata",
|
|
6
|
+
"rest-api",
|
|
7
|
+
"nodejs",
|
|
8
|
+
"typescript",
|
|
9
|
+
"mikro-orm",
|
|
10
|
+
"mongo-query"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/prior-art/odata-filter.git",
|
|
15
|
+
"directory": "packages/marshalers"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/prior-art/odata-filter/issues"
|
|
19
|
+
},
|
|
20
|
+
"description": "Marshaler utilities for OData filter expressions, including a MongoDB query generator for MikroORM usage.",
|
|
5
21
|
"license": "MIT",
|
|
6
22
|
"main": "dist/index.js",
|
|
7
23
|
"types": "dist/index.d.ts",
|