@pnpm/installing.client 1100.1.0 → 1100.2.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.
Files changed (2) hide show
  1. package/lib/index.d.ts +4 -3
  2. package/package.json +16 -16
package/lib/index.d.ts CHANGED
@@ -3,11 +3,11 @@ import { type TarballFetchers } from '@pnpm/fetching.tarball-fetcher';
3
3
  import type { RetryTimeoutOptions } from '@pnpm/fetching.types';
4
4
  import type { CustomFetcher, CustomResolver } from '@pnpm/hooks.types';
5
5
  import { type DispatcherOptions } from '@pnpm/network.fetch';
6
- import { type ResolutionVerifierFactoryOptions, type ResolveFunction, type ResolverFactoryOptions } from '@pnpm/resolving.default-resolver';
7
- import type { ResolutionVerifier } from '@pnpm/resolving.resolver-base';
6
+ import { type ResolutionVerifierFactoryOptions, type ResolveFunction, type ResolveLatestDispatcher, type ResolverFactoryOptions } from '@pnpm/resolving.default-resolver';
7
+ import type { LatestInfo, LatestQuery, ResolutionVerifier } from '@pnpm/resolving.resolver-base';
8
8
  import type { StoreIndex } from '@pnpm/store.index';
9
9
  import type { RegistryConfig } from '@pnpm/types';
10
- export type { ResolutionVerifier, ResolveFunction };
10
+ export type { LatestInfo, LatestQuery, ResolutionVerifier, ResolveFunction, ResolveLatestDispatcher };
11
11
  export type ClientOptions = {
12
12
  configByUri: Record<string, RegistryConfig>;
13
13
  customResolvers?: CustomResolver[];
@@ -41,6 +41,7 @@ export interface Client {
41
41
  export declare function createClient(opts: ClientOptions): Client;
42
42
  export declare function createResolver(opts: Omit<ClientOptions, 'storeIndex'>): {
43
43
  resolve: ResolveFunction;
44
+ resolveLatest: ResolveLatestDispatcher;
44
45
  clearCache: () => void;
45
46
  };
46
47
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/installing.client",
3
- "version": "1100.1.0",
3
+ "version": "1100.2.1",
4
4
  "description": "Creates the package resolve and fetch functions",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -27,27 +27,27 @@
27
27
  ],
28
28
  "dependencies": {
29
29
  "ramda": "npm:@pnpm/ramda@0.28.1",
30
- "@pnpm/engine.runtime.node-resolver": "1101.0.9",
30
+ "@pnpm/engine.runtime.node-resolver": "1101.1.0",
31
31
  "@pnpm/error": "1100.0.0",
32
- "@pnpm/fetching.binary-fetcher": "1101.0.6",
33
- "@pnpm/fetching.git-fetcher": "1101.0.7",
34
- "@pnpm/fetching.tarball-fetcher": "1101.0.8",
32
+ "@pnpm/fetching.binary-fetcher": "1101.0.7",
33
+ "@pnpm/fetching.git-fetcher": "1101.0.8",
34
+ "@pnpm/fetching.directory-fetcher": "1100.0.11",
35
+ "@pnpm/fetching.tarball-fetcher": "1101.0.9",
35
36
  "@pnpm/fetching.types": "1100.0.1",
36
- "@pnpm/hooks.types": "1100.0.7",
37
- "@pnpm/network.auth-header": "1100.0.2",
38
- "@pnpm/network.fetch": "1100.0.5",
39
- "@pnpm/fetching.directory-fetcher": "1100.0.10",
40
- "@pnpm/resolving.npm-resolver": "1101.2.0",
41
- "@pnpm/resolving.default-resolver": "1100.2.0",
42
- "@pnpm/store.index": "1100.1.0",
43
- "@pnpm/types": "1101.1.0",
44
- "@pnpm/resolving.resolver-base": "1100.2.0"
37
+ "@pnpm/network.auth-header": "1100.0.3",
38
+ "@pnpm/network.fetch": "1100.0.6",
39
+ "@pnpm/hooks.types": "1100.0.8",
40
+ "@pnpm/resolving.default-resolver": "1100.3.1",
41
+ "@pnpm/resolving.npm-resolver": "1101.3.1",
42
+ "@pnpm/resolving.resolver-base": "1100.3.0",
43
+ "@pnpm/types": "1101.1.1",
44
+ "@pnpm/store.index": "1100.1.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@jest/globals": "30.3.0",
48
48
  "@types/ramda": "0.31.1",
49
- "@pnpm/fetching.fetcher-base": "1100.1.4",
50
- "@pnpm/installing.client": "1100.1.0"
49
+ "@pnpm/fetching.fetcher-base": "1100.1.5",
50
+ "@pnpm/installing.client": "1100.2.1"
51
51
  },
52
52
  "engines": {
53
53
  "node": ">=22.13"