feat(Azure Storage Node): New node (#12536)

This commit is contained in:
feelgood-interface
2025-02-28 11:17:56 +01:00
committed by GitHub
parent d550382a4a
commit 727f6f3c0e
43 changed files with 4696 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ import type * as express from 'express';
import type FormData from 'form-data';
import type { PathLike } from 'fs';
import type { IncomingHttpHeaders } from 'http';
import type { RequestBodyMatcher } from 'nock';
import type { ReplyHeaders, RequestBodyMatcher, RequestHeaderMatcher } from 'nock';
import type { Client as SSHClient } from 'ssh2';
import type { Readable } from 'stream';
import type { SecureContextOptions } from 'tls';
@@ -2412,8 +2412,10 @@ export interface WorkflowTestData {
method: 'delete' | 'get' | 'patch' | 'post' | 'put';
path: string;
requestBody?: RequestBodyMatcher;
requestHeaders?: Record<string, RequestHeaderMatcher>;
statusCode: number;
responseBody: string | object;
responseHeaders?: ReplyHeaders;
}>;
};
trigger?: {