mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 12:27:31 -08:00
e94cda3837
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Waiting to run
80 lines
2.1 KiB
TypeScript
80 lines
2.1 KiB
TypeScript
import * as LoggerProxy from './LoggerProxy';
|
|
export * as ErrorReporterProxy from './ErrorReporterProxy';
|
|
export * as ExpressionEvaluatorProxy from './ExpressionEvaluatorProxy';
|
|
import * as NodeHelpers from './NodeHelpers';
|
|
import * as ObservableObject from './ObservableObject';
|
|
import * as TelemetryHelpers from './TelemetryHelpers';
|
|
|
|
export * from './errors';
|
|
export * from './Constants';
|
|
export * from './Cron';
|
|
export * from './DeferredPromise';
|
|
export * from './GlobalState';
|
|
export * from './Interfaces';
|
|
export * from './MessageEventBus';
|
|
export * from './ExecutionStatus';
|
|
export * from './Expression';
|
|
export * from './NodeHelpers';
|
|
export * from './RoutingNode';
|
|
export * from './Workflow';
|
|
export * from './WorkflowDataProxy';
|
|
export * from './WorkflowDataProxyEnvProvider';
|
|
export * from './WorkflowHooks';
|
|
export * from './VersionedNodeType';
|
|
export * from './TypeValidation';
|
|
export { LoggerProxy, NodeHelpers, ObservableObject, TelemetryHelpers };
|
|
export {
|
|
isObjectEmpty,
|
|
deepCopy,
|
|
jsonParse,
|
|
jsonStringify,
|
|
replaceCircularReferences,
|
|
sleep,
|
|
fileTypeFromMimeType,
|
|
assert,
|
|
removeCircularRefs,
|
|
updateDisplayOptions,
|
|
randomInt,
|
|
randomString,
|
|
} from './utils';
|
|
export {
|
|
isINodeProperties,
|
|
isINodePropertyOptions,
|
|
isINodePropertyCollection,
|
|
isINodePropertiesList,
|
|
isINodePropertyCollectionList,
|
|
isINodePropertyOptionsList,
|
|
isResourceMapperValue,
|
|
isFilterValue,
|
|
} from './type-guards';
|
|
|
|
export { ExpressionExtensions } from './Extensions';
|
|
export * as ExpressionParser from './Extensions/ExpressionParser';
|
|
export { NativeMethods } from './NativeMethods';
|
|
export * from './NodeParameters/FilterParameter';
|
|
|
|
export type {
|
|
DocMetadata,
|
|
NativeDoc,
|
|
DocMetadataArgument,
|
|
DocMetadataExample,
|
|
Extension,
|
|
} from './Extensions';
|
|
|
|
declare module 'http' {
|
|
export interface IncomingMessage {
|
|
contentType?: string;
|
|
encoding: BufferEncoding;
|
|
contentDisposition?: { type: string; filename?: string };
|
|
rawBody: Buffer;
|
|
readRawBody(): Promise<void>;
|
|
_body: boolean;
|
|
|
|
// This gets added by the `follow-redirects` package
|
|
responseUrl?: string;
|
|
|
|
// This is added to response objects for all outgoing requests
|
|
req?: ClientRequest;
|
|
}
|
|
}
|