n8n-workflow
Advanced tools
Comparing version 0.148.0 to 0.149.0
export declare const BINARY_ENCODING = "base64"; | ||
export declare const WAIT_TIME_UNLIMITED = "3000-01-01T00:00:00.000Z"; | ||
export declare const CODE_LANGUAGES: readonly ["javaScript", "json", "python"]; | ||
export declare const CODE_EXECUTION_MODES: readonly ["runOnceForAllItems", "runOnceForEachItem"]; | ||
export declare const NODES_WITH_RENAMABLE_CONTENT: Set<string>; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.NODES_WITH_RENAMABLE_CONTENT = exports.WAIT_TIME_UNLIMITED = exports.BINARY_ENCODING = void 0; | ||
exports.NODES_WITH_RENAMABLE_CONTENT = exports.CODE_EXECUTION_MODES = exports.CODE_LANGUAGES = exports.WAIT_TIME_UNLIMITED = exports.BINARY_ENCODING = void 0; | ||
exports.BINARY_ENCODING = 'base64'; | ||
exports.WAIT_TIME_UNLIMITED = '3000-01-01T00:00:00.000Z'; | ||
exports.CODE_LANGUAGES = ['javaScript', 'json', 'python']; | ||
exports.CODE_EXECUTION_MODES = ['runOnceForAllItems', 'runOnceForEachItem']; | ||
exports.NODES_WITH_RENAMABLE_CONTENT = new Set([ | ||
@@ -7,0 +9,0 @@ 'n8n-nodes-base.code', |
export { extend, extendOptional, hasExpressionExtension, hasNativeMethod, extendTransform, EXTENSION_OBJECTS as ExpressionExtensions, } from './ExpressionExtension'; | ||
export type { DocMetadata } from './Extensions'; | ||
export type { DocMetadata, NativeDoc } from './Extensions'; |
@@ -30,3 +30,3 @@ /// <reference types="node" /> | ||
export { NativeMethods } from './NativeMethods'; | ||
export type { DocMetadata } from './Extensions'; | ||
export type { DocMetadata, NativeDoc } from './Extensions'; | ||
declare module 'http' { | ||
@@ -33,0 +33,0 @@ interface IncomingMessage { |
@@ -13,2 +13,4 @@ /// <reference types="node" /> | ||
import type { RequestPromiseOptions, RequestPromiseAPI } from 'request-promise-native'; | ||
import type { PathLike } from 'fs'; | ||
import type { CODE_EXECUTION_MODES, CODE_LANGUAGES } from './Constants'; | ||
import type { IDeferredPromise } from './DeferredPromise'; | ||
@@ -21,3 +23,2 @@ import type { Workflow } from './Workflow'; | ||
import type { ExpressionError } from './ExpressionError'; | ||
import type { PathLike } from 'fs'; | ||
import type { ExecutionStatus } from './ExecutionStatus'; | ||
@@ -600,3 +601,4 @@ import type { AuthenticationMethod } from './Authentication'; | ||
export type EditorType = 'code' | 'codeNodeEditor' | 'htmlEditor' | 'sqlEditor' | 'json'; | ||
export type CodeNodeEditorLanguage = 'javaScript' | 'json'; | ||
export type CodeNodeEditorLanguage = (typeof CODE_LANGUAGES)[number]; | ||
export type CodeExecutionMode = (typeof CODE_EXECUTION_MODES)[number]; | ||
export type SQLDialect = 'mssql' | 'mysql' | 'postgres'; | ||
@@ -603,0 +605,0 @@ export interface ILoadOptions { |
{ | ||
"name": "n8n-workflow", | ||
"version": "0.148.0", | ||
"version": "0.149.0", | ||
"description": "Workflow base code of n8n", | ||
@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE.md", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
653636
8881