@takeshape/util 11.64.0 → 11.69.0

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.
@@ -1,4 +1,3 @@
1
- import { URLSearchParams } from 'node:url';
2
1
  import { expect, test } from 'vitest';
3
2
  import { concatURLSearchParams } from "../search-params.js";
4
3
  test('concatURLSearchParams - concats a variety of values with ease', () => {
@@ -19,6 +19,7 @@ export * from './naming.ts';
19
19
  export * from './path-to-string.ts';
20
20
  export * from './persisted-queries.ts';
21
21
  export * from './predicate.ts';
22
+ export * from './search-params.ts';
22
23
  export * from './set-in.ts';
23
24
  export * from './sets.ts';
24
25
  export * from './sleep.ts';
@@ -19,6 +19,7 @@ export * from "./naming.js";
19
19
  export * from "./path-to-string.js";
20
20
  export * from "./persisted-queries.js";
21
21
  export * from "./predicate.js";
22
+ export * from "./search-params.js";
22
23
  export * from "./set-in.js";
23
24
  export * from "./sets.js";
24
25
  export * from "./sleep.js";
@@ -1,4 +1,3 @@
1
- import { URLSearchParams } from 'node:url';
2
1
  type ObjectTypes = Record<string, string | number | boolean | null | undefined>;
3
2
  export type URLSearchParamsInput = URLSearchParams | string | Array<[string, string]> | ObjectTypes;
4
3
  export declare function toSearchParamsEntries(obj: URLSearchParamsInput): Array<[string, string]>;
@@ -1,4 +1,3 @@
1
- import { URLSearchParams } from 'node:url';
2
1
  export function toSearchParamsEntries(obj) {
3
2
  if (obj instanceof URLSearchParams) {
4
3
  return [...obj.entries()];
@@ -1,4 +1,3 @@
1
1
  export * from './buffer.ts';
2
2
  export * from './encryption.ts';
3
3
  export * from './gzip.ts';
4
- export * from './search-params.ts';
@@ -1,4 +1,3 @@
1
1
  export * from "./buffer.js";
2
2
  export * from "./encryption.js";
3
3
  export * from "./gzip.js";
4
- export * from "./search-params.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takeshape/util",
3
- "version": "11.64.0",
3
+ "version": "11.69.0",
4
4
  "description": "Shared utilities",
5
5
  "homepage": "https://www.takeshape.io",
6
6
  "repository": {
@@ -46,7 +46,7 @@
46
46
  "tiny-invariant": "^1.2.0",
47
47
  "uint8array-extras": "^1.4.0",
48
48
  "url-parse": "^1.5.3",
49
- "@takeshape/routing": "11.64.0"
49
+ "@takeshape/routing": "11.69.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/classnames": "^2.2.9",