mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
👕 Replace some double quotes with single ones
This commit is contained in:
@@ -6,13 +6,13 @@ import {
|
|||||||
|
|
||||||
import {
|
import {
|
||||||
UserSettings,
|
UserSettings,
|
||||||
} from "n8n-core";
|
} from 'n8n-core';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
ConnectionOptions,
|
ConnectionOptions,
|
||||||
createConnection,
|
createConnection,
|
||||||
getRepository,
|
getRepository,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
MongoDb,
|
MongoDb,
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import { join as pathJoin } from 'path';
|
|||||||
import {
|
import {
|
||||||
readFile as fsReadFile,
|
readFile as fsReadFile,
|
||||||
} from 'fs';
|
} from 'fs';
|
||||||
import { promisify } from "util";
|
import { promisify } from 'util';
|
||||||
import { IDataObject } from 'n8n-workflow';
|
import { IDataObject } from 'n8n-workflow';
|
||||||
|
|
||||||
import { IPackageVersions } from './';
|
import { IPackageVersions } from './';
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ import {
|
|||||||
} from 'n8n-core';
|
} from 'n8n-core';
|
||||||
|
|
||||||
|
|
||||||
import { ObjectID, Repository } from "typeorm";
|
import { ObjectID, Repository } from 'typeorm';
|
||||||
|
|
||||||
import { ChildProcess } from 'child_process';
|
import { ChildProcess } from 'child_process';
|
||||||
import { Url } from 'url';
|
import { Url } from 'url';
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ import {
|
|||||||
} from 'fs';
|
} from 'fs';
|
||||||
import * as glob from 'glob-promise';
|
import * as glob from 'glob-promise';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import { promisify } from "util";
|
import { promisify } from 'util';
|
||||||
|
|
||||||
const fsAccessAsync = promisify(fsAccess);
|
const fsAccessAsync = promisify(fsAccess);
|
||||||
const fsReaddirAsync = promisify(fsReaddir);
|
const fsReaddirAsync = promisify(fsReaddir);
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import {
|
|||||||
} from 'path';
|
} from 'path';
|
||||||
import {
|
import {
|
||||||
getConnectionManager,
|
getConnectionManager,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
import * as bodyParser from 'body-parser';
|
import * as bodyParser from 'body-parser';
|
||||||
import * as history from 'connect-history-api-fallback';
|
import * as history from 'connect-history-api-fallback';
|
||||||
import * as requestPromise from 'request-promise-native';
|
import * as requestPromise from 'request-promise-native';
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import {
|
|||||||
|
|
||||||
import {
|
import {
|
||||||
UserSettings,
|
UserSettings,
|
||||||
} from "n8n-core";
|
} from 'n8n-core';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
IDataObject,
|
IDataObject,
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import {
|
|||||||
Index,
|
Index,
|
||||||
ObjectID,
|
ObjectID,
|
||||||
ObjectIdColumn,
|
ObjectIdColumn,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class CredentialsEntity implements ICredentialsDb {
|
export class CredentialsEntity implements ICredentialsDb {
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import {
|
|||||||
Index,
|
Index,
|
||||||
ObjectID,
|
ObjectID,
|
||||||
ObjectIdColumn,
|
ObjectIdColumn,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class ExecutionEntity implements IExecutionFlattedDb {
|
export class ExecutionEntity implements IExecutionFlattedDb {
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ import {
|
|||||||
Entity,
|
Entity,
|
||||||
ObjectID,
|
ObjectID,
|
||||||
ObjectIdColumn,
|
ObjectIdColumn,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class WorkflowEntity implements IWorkflowDb {
|
export class WorkflowEntity implements IWorkflowDb {
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import {
|
|||||||
Entity,
|
Entity,
|
||||||
Index,
|
Index,
|
||||||
PrimaryGeneratedColumn,
|
PrimaryGeneratedColumn,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class CredentialsEntity implements ICredentialsDb {
|
export class CredentialsEntity implements ICredentialsDb {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import {
|
|||||||
Entity,
|
Entity,
|
||||||
Index,
|
Index,
|
||||||
PrimaryGeneratedColumn,
|
PrimaryGeneratedColumn,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import {
|
|||||||
Column,
|
Column,
|
||||||
Entity,
|
Entity,
|
||||||
PrimaryGeneratedColumn,
|
PrimaryGeneratedColumn,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class WorkflowEntity implements IWorkflowDb {
|
export class WorkflowEntity implements IWorkflowDb {
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import {
|
|||||||
Entity,
|
Entity,
|
||||||
Index,
|
Index,
|
||||||
PrimaryGeneratedColumn,
|
PrimaryGeneratedColumn,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class CredentialsEntity implements ICredentialsDb {
|
export class CredentialsEntity implements ICredentialsDb {
|
||||||
|
|||||||
@@ -11,11 +11,9 @@ import {
|
|||||||
Column,
|
Column,
|
||||||
Entity,
|
Entity,
|
||||||
Index,
|
Index,
|
||||||
ManyToOne,
|
|
||||||
PrimaryGeneratedColumn,
|
PrimaryGeneratedColumn,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
import { WorkflowEntity } from './WorkflowEntity';
|
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class ExecutionEntity implements IExecutionFlattedDb {
|
export class ExecutionEntity implements IExecutionFlattedDb {
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import {
|
|||||||
Column,
|
Column,
|
||||||
Entity,
|
Entity,
|
||||||
PrimaryGeneratedColumn,
|
PrimaryGeneratedColumn,
|
||||||
} from "typeorm";
|
} from 'typeorm';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class WorkflowEntity implements IWorkflowDb {
|
export class WorkflowEntity implements IWorkflowDb {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import { IBuildOptions } from '.';
|
|||||||
|
|
||||||
import {
|
import {
|
||||||
UserSettings,
|
UserSettings,
|
||||||
} from "n8n-core";
|
} from 'n8n-core';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
import {
|
import {
|
||||||
readFile as fsReadFile,
|
readFile as fsReadFile,
|
||||||
} from 'fs';
|
} from 'fs';
|
||||||
import { promisify } from "util";
|
import { promisify } from 'util';
|
||||||
|
|
||||||
const fsReadFileAsync = promisify(fsReadFile);
|
const fsReadFileAsync = promisify(fsReadFile);
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import * as path from 'path';
|
|||||||
import {
|
import {
|
||||||
readFile as fsReadFile,
|
readFile as fsReadFile,
|
||||||
} from 'fs';
|
} from 'fs';
|
||||||
import { promisify } from "util";
|
import { promisify } from 'util';
|
||||||
|
|
||||||
const fsReadFileAsync = promisify(fsReadFile);
|
const fsReadFileAsync = promisify(fsReadFile);
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import {
|
|||||||
import {
|
import {
|
||||||
writeFile as fsWriteFile,
|
writeFile as fsWriteFile,
|
||||||
} from 'fs';
|
} from 'fs';
|
||||||
import { promisify } from "util";
|
import { promisify } from 'util';
|
||||||
|
|
||||||
const fsWriteFileAsync = promisify(fsWriteFile);
|
const fsWriteFileAsync = promisify(fsWriteFile);
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Workflow } from './Workflow';
|
import { Workflow } from './Workflow';
|
||||||
import * as express from "express";
|
import * as express from 'express';
|
||||||
|
|
||||||
export interface IBinaryData {
|
export interface IBinaryData {
|
||||||
[key: string]: string | undefined;
|
[key: string]: string | undefined;
|
||||||
|
|||||||
Reference in New Issue
Block a user