@graphql-tools/utils
Advanced tools
Comparing version 10.3.0 to 10.3.1-alpha-20240705161243-31c38d9db4400e9be58cf584de0a43ffc7446237
{ | ||
"name": "@graphql-tools/utils", | ||
"version": "10.3.0", | ||
"version": "10.3.1-alpha-20240705161243-31c38d9db4400e9be58cf584de0a43ffc7446237", | ||
"description": "Common package containing utils and types for GraphQL tools", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
@@ -8,7 +8,7 @@ import { ExecutionRequest, ExecutionResult } from './Interfaces.js'; | ||
export type DisposableSyncExecutor<TBaseContext = Record<string, any>, TBaseExtensions = Record<string, any>> = SyncExecutor<TBaseContext, TBaseExtensions> & { | ||
[Symbol.dispose]?: () => void; | ||
[Symbol.dispose]: () => void; | ||
}; | ||
export type DisposableAsyncExecutor<TBaseContext = Record<string, any>, TBaseExtensions = Record<string, any>> = AsyncExecutor<TBaseContext, TBaseExtensions> & { | ||
[Symbol.dispose]?: () => void; | ||
[Symbol.asyncDispose]: () => PromiseLike<void>; | ||
}; | ||
export type DisposableExecutor<TBaseContext = Record<string, any>, TBaseExtensions = Record<string, any>> = DisposableSyncExecutor<TBaseContext, TBaseExtensions> | DisposableAsyncExecutor<TBaseContext, TBaseExtensions>; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
504850
2