@graphql-tools/load 8.1.3-alpha-20251020211457-8672127a3d7c0c4b50c813f61c92db55ad2eb25f → 8.1.3-alpha-20251020211631-81d51f0956d22e6f143b14039ad3485f89801bd1

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/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@graphql-tools/load",
3
- "version": "8.1.3-alpha-20251020211457-8672127a3d7c0c4b50c813f61c92db55ad2eb25f",
3
+ "version": "8.1.3-alpha-20251020211631-81d51f0956d22e6f143b14039ad3485f89801bd1",
4
4
  "description": "A set of utils for faster development of GraphQL tools",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
7
7
  "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
8
8
  },
9
9
  "dependencies": {
10
- "@graphql-tools/schema": "10.0.26-alpha-20251020211457-8672127a3d7c0c4b50c813f61c92db55ad2eb25f",
11
- "@graphql-tools/utils": "10.10.0-alpha-20251020211457-8672127a3d7c0c4b50c813f61c92db55ad2eb25f",
12
- "p-limit": "3.1.0",
10
+ "@graphql-tools/schema": "10.0.26-alpha-20251020211631-81d51f0956d22e6f143b14039ad3485f89801bd1",
11
+ "@graphql-tools/utils": "10.10.0-alpha-20251020211631-81d51f0956d22e6f143b14039ad3485f89801bd1",
12
+ "p-limit": "7.2.0",
13
13
  "tslib": "^2.4.0"
14
14
  },
15
15
  "repository": {
@@ -1,4 +1,3 @@
1
- import pLimit from 'p-limit';
2
1
  /**
3
2
  * Converts a string to 32bit integer
4
3
  */
@@ -6,4 +5,4 @@ export declare function stringToHash(str: string): number;
6
5
  export type StackNext = () => void;
7
6
  export type StackFn<T> = (input: T, next: StackNext) => void;
8
7
  export declare function useStack<T>(...fns: Array<StackFn<T>>): (input: T) => void;
9
- export declare function useLimit(concurrency: number): pLimit.Limit;
8
+ export declare function useLimit(concurrency: number): import("p-limit").LimitFunction;
@@ -1,4 +1,3 @@
1
- import pLimit from 'p-limit';
2
1
  /**
3
2
  * Converts a string to 32bit integer
4
3
  */
@@ -6,4 +5,4 @@ export declare function stringToHash(str: string): number;
6
5
  export type StackNext = () => void;
7
6
  export type StackFn<T> = (input: T, next: StackNext) => void;
8
7
  export declare function useStack<T>(...fns: Array<StackFn<T>>): (input: T) => void;
9
- export declare function useLimit(concurrency: number): pLimit.Limit;
8
+ export declare function useLimit(concurrency: number): import("p-limit").LimitFunction;