Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@message-queue-toolkit/core

Package Overview
Dependencies
Maintainers
3
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@message-queue-toolkit/core - npm Package Compare versions

Comparing version 10.0.0 to 10.1.0

13

dist/lib/types/queueOptionsTypes.d.ts

@@ -19,2 +19,3 @@ import type { ErrorReporter, ErrorResolver } from '@lokalise/node-core';

logMessages?: boolean;
deletionConfig?: DeletionConfig;
};

@@ -31,10 +32,8 @@ type CommonCreationConfigType = {

locatorConfig?: never;
deletionConfig?: DeletionConfig;
creationConfig: CreationConfigType;
} & CommonQueueOptions;
};
type ExistingQueueOptions<QueueLocatorType extends object> = {
locatorConfig: QueueLocatorType;
deletionConfig?: DeletionConfig;
creationConfig?: never;
} & CommonQueueOptions;
};
export type QueueOptions<CreationConfigType extends CommonCreationConfigType, QueueLocatorType extends object> = CommonQueueOptions & (NewQueueOptions<CreationConfigType> | ExistingQueueOptions<QueueLocatorType>);

@@ -44,5 +43,9 @@ export type QueuePublisherOptions<CreationConfigType extends CommonCreationConfigType, QueueLocatorType extends object, MessagePayloadSchemas extends object> = QueueOptions<CreationConfigType, QueueLocatorType> & {

};
export type QueueConsumerOptions<CreationConfigType extends object, QueueLocatorType extends object, MessagePayloadSchemas extends object, ExecutionContext, PrehandlerOutput = undefined> = QueueOptions<CreationConfigType, QueueLocatorType> & {
export type DeadLetterQueueOptions<CreationConfigType extends object, QueueLocatorType extends object, DeadLetterQueueIntegrationOptions extends object> = {
deletionConfig?: DeletionConfig;
} & DeadLetterQueueIntegrationOptions & (NewQueueOptions<CreationConfigType> | ExistingQueueOptions<QueueLocatorType>);
export type QueueConsumerOptions<CreationConfigType extends object, QueueLocatorType extends object, DeadLetterQueueIntegrationOptions extends object, MessagePayloadSchemas extends object, ExecutionContext, PrehandlerOutput = undefined> = QueueOptions<CreationConfigType, QueueLocatorType> & {
handlers: MessageHandlerConfig<MessagePayloadSchemas, ExecutionContext, PrehandlerOutput>[];
deadLetterQueue?: DeadLetterQueueOptions<CreationConfigType, QueueLocatorType, DeadLetterQueueIntegrationOptions>;
};
export {};
{
"name": "@message-queue-toolkit/core",
"version": "10.0.0",
"version": "10.1.0",
"private": false,

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc