cspell-io 8.16.1 → 8.17.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.
@@ -12,9 +12,9 @@ export declare class VFSError extends Error {
12
12
  }
13
13
  export declare class VFSErrorUnsupportedRequest extends VFSError {
14
14
  readonly request: string;
15
- readonly parameters?: unknown;
15
+ readonly parameters?: unknown | undefined;
16
16
  readonly url?: string | undefined;
17
- constructor(request: string, url?: URL | string, parameters?: unknown);
17
+ constructor(request: string, url?: URL | string, parameters?: unknown | undefined);
18
18
  }
19
19
  export declare function fsCapabilities(flags: FSCapabilityFlags): FSCapabilities;
20
20
  export declare class WrappedProviderFs implements VFileSystemCore {
@@ -2,7 +2,7 @@ import type { ServiceRequestFactoryRequestType } from '@cspell/cspell-service-bu
2
2
  interface RequestParams {
3
3
  readonly data: ArrayBufferView;
4
4
  }
5
- export declare const RequestZlibInflate: import("@cspell/cspell-service-bus").ServiceRequestFactory<import("@cspell/cspell-service-bus").ServiceRequest<"zlib:inflate", RequestParams, ArrayBufferView>, RequestParams, "zlib:inflate">;
5
+ export declare const RequestZlibInflate: import("@cspell/cspell-service-bus").ServiceRequestFactory<import("@cspell/cspell-service-bus").ServiceRequest<"zlib:inflate", RequestParams, ArrayBufferView<ArrayBufferLike>>, RequestParams, "zlib:inflate">;
6
6
  export type RequestZlibInflate = ServiceRequestFactoryRequestType<typeof RequestZlibInflate>;
7
7
  export {};
8
8
  //# sourceMappingURL=RequestZlibInflate.d.ts.map
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "provenance": true
6
6
  },
7
- "version": "8.16.1",
7
+ "version": "8.17.1",
8
8
  "description": "A library of useful I/O functions used across various cspell tools.",
9
9
  "type": "module",
10
10
  "sideEffects": false,
@@ -53,12 +53,12 @@
53
53
  },
54
54
  "devDependencies": {
55
55
  "lorem-ipsum": "^2.0.8",
56
- "typescript": "~5.6.3",
56
+ "typescript": "~5.7.2",
57
57
  "vitest-fetch-mock": "^0.4.2"
58
58
  },
59
59
  "dependencies": {
60
- "@cspell/cspell-service-bus": "8.16.1",
61
- "@cspell/url": "8.16.1"
60
+ "@cspell/cspell-service-bus": "8.17.1",
61
+ "@cspell/url": "8.17.1"
62
62
  },
63
- "gitHead": "773bb6e701ff0b7fbeb30e4621119bb4315415ad"
63
+ "gitHead": "476a03accde11d8bb97c2fd09322f962c83b116a"
64
64
  }