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:
Jon
2024-06-20 15:42:52 +01:00
committed by GitHub
parent 223488f190
commit e1e8a75763
4 changed files with 122 additions and 18 deletions

View File

@@ -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?: {