mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 12:27:31 -08:00
8a5343401d
New Filter component + implementation in If node (v2) <img width="3283" alt="image" src="https://github.com/n8n-io/n8n/assets/8850410/35c379ef-4b62-4d06-82e7-673d4edcd652"> --------- Co-authored-by: Giulio Andreini <andreini@netseven.it> Co-authored-by: Michael Kret <michael.k@radency.com>
70 lines
2 KiB
TypeScript
70 lines
2 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 './Authentication';
|
|
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 './WorkflowHooks';
|
|
export * from './VersionedNodeType';
|
|
export * from './TypeValidation';
|
|
export { LoggerProxy, NodeHelpers, ObservableObject, TelemetryHelpers };
|
|
export {
|
|
isObjectEmpty,
|
|
deepCopy,
|
|
jsonParse,
|
|
jsonStringify,
|
|
sleep,
|
|
fileTypeFromMimeType,
|
|
assert,
|
|
removeCircularRefs,
|
|
} 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 } 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;
|
|
}
|
|
}
|