mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(AWS SES Node): Fix issue with email aliases not working for sending from or sending to (#9811)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
@@ -7,6 +7,7 @@ import type { IncomingHttpHeaders } from 'http';
|
||||
import type { SecureContextOptions } from 'tls';
|
||||
import type { Readable } from 'stream';
|
||||
import type { URLSearchParams } from 'url';
|
||||
import type { RequestBodyMatcher } from 'nock';
|
||||
|
||||
import type { AuthenticationMethod } from './Authentication';
|
||||
import type { CODE_EXECUTION_MODES, CODE_LANGUAGES, LOG_LEVELS } from './Constants';
|
||||
@@ -2213,10 +2214,11 @@ export interface WorkflowTestData {
|
||||
nock?: {
|
||||
baseUrl: string;
|
||||
mocks: Array<{
|
||||
method: string;
|
||||
method: 'get' | 'post';
|
||||
path: string;
|
||||
requestBody?: RequestBodyMatcher;
|
||||
statusCode: number;
|
||||
responseBody: any;
|
||||
responseBody: string | object;
|
||||
}>;
|
||||
};
|
||||
trigger?: {
|
||||
|
||||
Reference in New Issue
Block a user