@uniqu/url 0.0.4 → 0.0.5

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -2
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1,7 +1,9 @@
1
- import { Uniquery, UniqueryInsights } from '@uniqu/core';
1
+ import { Uniquery, FilterExpr, UniqueryControls, UniqueryInsights } from '@uniqu/core';
2
2
 
3
- /** Result of parsing a URL query string. Narrows `Uniquery.insights` from optional to required (eagerly computed during parsing). */
3
+ /** Result of parsing a URL query string. Narrows optional fields to required (always produced by the parser). */
4
4
  interface UrlQuery extends Uniquery {
5
+ filter: FilterExpr;
6
+ controls: UniqueryControls;
5
7
  insights: UniqueryInsights;
6
8
  }
7
9
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniqu/url",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "URL query string parser producing the Uniqu canonical query format",
5
5
  "license": "MIT",
6
6
  "author": "Artem Maltsev",
@@ -28,7 +28,7 @@
28
28
  "dist"
29
29
  ],
30
30
  "dependencies": {
31
- "@uniqu/core": "^0.0.4"
31
+ "@uniqu/core": "^0.0.5"
32
32
  },
33
33
  "scripts": {
34
34
  "pub": "pnpm publish --access public",