@zola_do/collection-query 0.1.38 → 0.1.39
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 -4
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -84,8 +84,9 @@ const queryString = encodeCollectionQuery(query);
|
|
|
84
84
|
- `FilterOperators` — Filter operator constants
|
|
85
85
|
- `FilterSeparators` — Separator constants for query strings
|
|
86
86
|
|
|
87
|
-
## Related Packages
|
|
88
87
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
- [
|
|
88
|
+
## Community
|
|
89
|
+
|
|
90
|
+
- [Contributing](../../CONTRIBUTING.md)
|
|
91
|
+
- [Code of Conduct](../../CODE_OF_CONDUCT.md)
|
|
92
|
+
- [Security Policy](../../SECURITY.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zola_do/collection-query",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.39",
|
|
4
4
|
"description": "TypeORM query builder for filter, sort, paginate",
|
|
5
5
|
"author": "zolaDO",
|
|
6
6
|
"license": "ISC",
|
|
@@ -47,6 +47,10 @@
|
|
|
47
47
|
"bugs": {
|
|
48
48
|
"url": "https://github.com/zola0031/zola-nestjs-shared/issues"
|
|
49
49
|
},
|
|
50
|
+
"funding": {
|
|
51
|
+
"type": "github",
|
|
52
|
+
"url": "https://github.com/sponsors/zola0031"
|
|
53
|
+
},
|
|
50
54
|
"keywords": [
|
|
51
55
|
"nestjs",
|
|
52
56
|
"typescript",
|
|
@@ -59,6 +63,7 @@
|
|
|
59
63
|
"filter",
|
|
60
64
|
"sort",
|
|
61
65
|
"paginate",
|
|
62
|
-
"collection"
|
|
66
|
+
"collection",
|
|
67
|
+
"nestjs-shared"
|
|
63
68
|
]
|
|
64
69
|
}
|