Socket
Socket
Sign inDemoInstall

@graphql-tools/utils

Package Overview
Dependencies
Maintainers
0
Versions
1269
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 10.3.0 to 10.3.1-alpha-20240705161243-31c38d9db4400e9be58cf584de0a43ffc7446237

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc