npm package diff
Package: @forge/events
Versions: 2.0.0-next.5 - 2.0.0-next.6
File: package/src/types.ts
Index: package/src/types.ts
===================================================================
--- package/src/types.ts
+++ package/src/types.ts
@@ -1,6 +1,4 @@
-import { InvocationErrorCode } from './invocationErrorCode';
-
export type Payload = Record<string, unknown>;
export interface QueueParams {
key: string;
@@ -49,9 +47,9 @@
}
export interface RetryContext {
retryCount: number;
- retryReason: InvocationErrorCode;
+ retryReason: string;
retryData: any;
retentionWindow?: RetentionWindow;
}