refactor: Integrate consistent-type-imports in nodes-base (no-changelog) (#5267)

* 👕 Enable `consistent-type-imports` for nodes-base

* 👕 Apply to nodes-base

*  Undo unrelated changes

* 🚚 Move to `.eslintrc.js` in nodes-base

*  Revert "Enable `consistent-type-imports` for nodes-base"

This reverts commit 529ad72b05.

* 👕 Fix severity
This commit is contained in:
Iván Ovejero 2023-01-27 12:22:44 +01:00 committed by GitHub
parent 845f0f9d20
commit b03e358a12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1840 changed files with 3829 additions and 3516 deletions

View file

@ -9,6 +9,8 @@ module.exports = {
...sharedOptions(__dirname), ...sharedOptions(__dirname),
rules: { rules: {
'@typescript-eslint/consistent-type-imports': 'error',
// TODO: remove all the following rules // TODO: remove all the following rules
eqeqeq: 'off', eqeqeq: 'off',
'id-denylist': 'off', 'id-denylist': 'off',

View file

@ -1,4 +1,4 @@
import { import type {
ICredentialDataDecryptedObject, ICredentialDataDecryptedObject,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class AcuitySchedulingApi implements ICredentialType { export class AcuitySchedulingApi implements ICredentialType {
name = 'acuitySchedulingApi'; name = 'acuitySchedulingApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class AcuitySchedulingOAuth2Api implements ICredentialType { export class AcuitySchedulingOAuth2Api implements ICredentialType {
name = 'acuitySchedulingOAuth2Api'; name = 'acuitySchedulingOAuth2Api';

View file

@ -1,4 +1,4 @@
import { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow'; import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
export class AdaloApi implements ICredentialType { export class AdaloApi implements ICredentialType {
name = 'adaloApi'; name = 'adaloApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class AffinityApi implements ICredentialType { export class AffinityApi implements ICredentialType {
name = 'affinityApi'; name = 'affinityApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class AgileCrmApi implements ICredentialType { export class AgileCrmApi implements ICredentialType {
name = 'agileCrmApi'; name = 'agileCrmApi';

View file

@ -1,4 +1,4 @@
import { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow'; import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
export class AirtableApi implements ICredentialType { export class AirtableApi implements ICredentialType {
name = 'airtableApi'; name = 'airtableApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class Amqp implements ICredentialType { export class Amqp implements ICredentialType {
name = 'amqp'; name = 'amqp';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow'; import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
export class AsanaApi implements ICredentialType { export class AsanaApi implements ICredentialType {
name = 'asanaApi'; name = 'asanaApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class AsanaOAuth2Api implements ICredentialType { export class AsanaOAuth2Api implements ICredentialType {
name = 'asanaOAuth2Api'; name = 'asanaOAuth2Api';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class AutomizyApi implements ICredentialType { export class AutomizyApi implements ICredentialType {
name = 'automizyApi'; name = 'automizyApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class AutopilotApi implements ICredentialType { export class AutopilotApi implements ICredentialType {
name = 'autopilotApi'; name = 'autopilotApi';

View file

@ -1,6 +1,7 @@
import { Request, sign } from 'aws4'; import type { Request } from 'aws4';
import { sign } from 'aws4';
import { import type {
ICredentialDataDecryptedObject, ICredentialDataDecryptedObject,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class BambooHrApi implements ICredentialType { export class BambooHrApi implements ICredentialType {
name = 'bambooHrApi'; name = 'bambooHrApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class BannerbearApi implements ICredentialType { export class BannerbearApi implements ICredentialType {
name = 'bannerbearApi'; name = 'bannerbearApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
// https://api.baserow.io/api/redoc/#section/Authentication // https://api.baserow.io/api/redoc/#section/Authentication

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class BitbucketApi implements ICredentialType { export class BitbucketApi implements ICredentialType {
name = 'bitbucketApi'; name = 'bitbucketApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class BitlyApi implements ICredentialType { export class BitlyApi implements ICredentialType {
name = 'bitlyApi'; name = 'bitlyApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class BitlyOAuth2Api implements ICredentialType { export class BitlyOAuth2Api implements ICredentialType {
name = 'bitlyOAuth2Api'; name = 'bitlyOAuth2Api';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
// https://bitwarden.com/help/article/public-api/#authentication // https://bitwarden.com/help/article/public-api/#authentication

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class BoxOAuth2Api implements ICredentialType { export class BoxOAuth2Api implements ICredentialType {
name = 'boxOAuth2Api'; name = 'boxOAuth2Api';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class BrandfetchApi implements ICredentialType { export class BrandfetchApi implements ICredentialType {
name = 'brandfetchApi'; name = 'brandfetchApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class BubbleApi implements ICredentialType { export class BubbleApi implements ICredentialType {
name = 'bubbleApi'; name = 'bubbleApi';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { import type {
ICredentialDataDecryptedObject, ICredentialDataDecryptedObject,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class ChargebeeApi implements ICredentialType { export class ChargebeeApi implements ICredentialType {
name = 'chargebeeApi'; name = 'chargebeeApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class CircleCiApi implements ICredentialType { export class CircleCiApi implements ICredentialType {
name = 'circleCiApi'; name = 'circleCiApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class CiscoWebexOAuth2Api implements ICredentialType { export class CiscoWebexOAuth2Api implements ICredentialType {
name = 'ciscoWebexOAuth2Api'; name = 'ciscoWebexOAuth2Api';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class ClearbitApi implements ICredentialType { export class ClearbitApi implements ICredentialType {
name = 'clearbitApi'; name = 'clearbitApi';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class ClickUpOAuth2Api implements ICredentialType { export class ClickUpOAuth2Api implements ICredentialType {
name = 'clickUpOAuth2Api'; name = 'clickUpOAuth2Api';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class CockpitApi implements ICredentialType { export class CockpitApi implements ICredentialType {
name = 'cockpitApi'; name = 'cockpitApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class CodaApi implements ICredentialType { export class CodaApi implements ICredentialType {
name = 'codaApi'; name = 'codaApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
//https://www.contentful.com/developers/docs/references/authentication/ //https://www.contentful.com/developers/docs/references/authentication/
export class ContentfulApi implements ICredentialType { export class ContentfulApi implements ICredentialType {

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class ConvertKitApi implements ICredentialType { export class ConvertKitApi implements ICredentialType {
name = 'convertKitApi'; name = 'convertKitApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class CopperApi implements ICredentialType { export class CopperApi implements ICredentialType {
name = 'copperApi'; name = 'copperApi';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class CrateDb implements ICredentialType { export class CrateDb implements ICredentialType {
name = 'crateDb'; name = 'crateDb';

View file

@ -1,4 +1,4 @@
import { import type {
ICredentialDataDecryptedObject, ICredentialDataDecryptedObject,
ICredentialType, ICredentialType,
IHttpRequestOptions, IHttpRequestOptions,

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class DemioApi implements ICredentialType { export class DemioApi implements ICredentialType {
name = 'demioApi'; name = 'demioApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class DhlApi implements ICredentialType { export class DhlApi implements ICredentialType {
name = 'dhlApi'; name = 'dhlApi';

View file

@ -1,4 +1,4 @@
import { import type {
ICredentialDataDecryptedObject, ICredentialDataDecryptedObject,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class DisqusApi implements ICredentialType { export class DisqusApi implements ICredentialType {
name = 'disqusApi'; name = 'disqusApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class DriftApi implements ICredentialType { export class DriftApi implements ICredentialType {
name = 'driftApi'; name = 'driftApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class DriftOAuth2Api implements ICredentialType { export class DriftOAuth2Api implements ICredentialType {
name = 'driftOAuth2Api'; name = 'driftOAuth2Api';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = ['files.content.write', 'files.content.read', 'sharing.read', 'account_info.read']; const scopes = ['files.content.write', 'files.content.read', 'sharing.read', 'account_info.read'];

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class EgoiApi implements ICredentialType { export class EgoiApi implements ICredentialType {
name = 'egoiApi'; name = 'egoiApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class ElasticSecurityApi implements ICredentialType { export class ElasticSecurityApi implements ICredentialType {
name = 'elasticSecurityApi'; name = 'elasticSecurityApi';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class EmeliaApi implements ICredentialType { export class EmeliaApi implements ICredentialType {
name = 'emeliaApi'; name = 'emeliaApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class EventbriteApi implements ICredentialType { export class EventbriteApi implements ICredentialType {
name = 'eventbriteApi'; name = 'eventbriteApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class EventbriteOAuth2Api implements ICredentialType { export class EventbriteOAuth2Api implements ICredentialType {
name = 'eventbriteOAuth2Api'; name = 'eventbriteOAuth2Api';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class FacebookGraphAppApi implements ICredentialType { export class FacebookGraphAppApi implements ICredentialType {
name = 'facebookGraphAppApi'; name = 'facebookGraphAppApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class FigmaApi implements ICredentialType { export class FigmaApi implements ICredentialType {
name = 'figmaApi'; name = 'figmaApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class FileMaker implements ICredentialType { export class FileMaker implements ICredentialType {
name = 'fileMaker'; name = 'fileMaker';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class FlowApi implements ICredentialType { export class FlowApi implements ICredentialType {
name = 'flowApi'; name = 'flowApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class FormIoApi implements ICredentialType { export class FormIoApi implements ICredentialType {
name = 'formIoApi'; name = 'formIoApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class FormstackApi implements ICredentialType { export class FormstackApi implements ICredentialType {
name = 'formstackApi'; name = 'formstackApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes: string[] = []; const scopes: string[] = [];

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class FreshdeskApi implements ICredentialType { export class FreshdeskApi implements ICredentialType {
name = 'freshdeskApi'; name = 'freshdeskApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class FreshserviceApi implements ICredentialType { export class FreshserviceApi implements ICredentialType {
name = 'freshserviceApi'; name = 'freshserviceApi';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class Ftp implements ICredentialType { export class Ftp implements ICredentialType {
name = 'ftp'; name = 'ftp';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/admin.directory.group', 'https://www.googleapis.com/auth/admin.directory.group',

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class GetResponseOAuth2Api implements ICredentialType { export class GetResponseOAuth2Api implements ICredentialType {
name = 'getResponseOAuth2Api'; name = 'getResponseOAuth2Api';

View file

@ -1,4 +1,4 @@
import { import type {
ICredentialDataDecryptedObject, ICredentialDataDecryptedObject,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { import type {
ICredentialDataDecryptedObject, ICredentialDataDecryptedObject,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class GitPassword implements ICredentialType { export class GitPassword implements ICredentialType {
name = 'gitPassword'; name = 'gitPassword';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class GithubOAuth2Api implements ICredentialType { export class GithubOAuth2Api implements ICredentialType {
name = 'githubOAuth2Api'; name = 'githubOAuth2Api';

View file

@ -1,4 +1,4 @@
import { import type {
IAuthenticateGeneric, IAuthenticateGeneric,
ICredentialTestRequest, ICredentialTestRequest,
ICredentialType, ICredentialType,

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class GitlabOAuth2Api implements ICredentialType { export class GitlabOAuth2Api implements ICredentialType {
name = 'gitlabOAuth2Api'; name = 'gitlabOAuth2Api';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/gmail.labels', 'https://www.googleapis.com/auth/gmail.labels',

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class GoToWebinarOAuth2Api implements ICredentialType { export class GoToWebinarOAuth2Api implements ICredentialType {
name = 'goToWebinarOAuth2Api'; name = 'goToWebinarOAuth2Api';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = ['https://www.googleapis.com/auth/adwords']; const scopes = ['https://www.googleapis.com/auth/adwords'];

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/analytics', 'https://www.googleapis.com/auth/analytics',

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class GoogleApi implements ICredentialType { export class GoogleApi implements ICredentialType {
name = 'googleApi'; name = 'googleApi';

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = ['https://www.googleapis.com/auth/bigquery']; const scopes = ['https://www.googleapis.com/auth/bigquery'];

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = ['https://www.googleapis.com/auth/books']; const scopes = ['https://www.googleapis.com/auth/books'];

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/calendar', 'https://www.googleapis.com/auth/calendar',

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/cloud-language', 'https://www.googleapis.com/auth/cloud-language',

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/cloud-platform', 'https://www.googleapis.com/auth/cloud-platform',

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = ['https://www.googleapis.com/auth/contacts']; const scopes = ['https://www.googleapis.com/auth/contacts'];

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/documents', 'https://www.googleapis.com/auth/documents',

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/drive', 'https://www.googleapis.com/auth/drive',

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/datastore', 'https://www.googleapis.com/auth/datastore',

View file

@ -1,4 +1,4 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow'; import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [ const scopes = [
'https://www.googleapis.com/auth/userinfo.email', 'https://www.googleapis.com/auth/userinfo.email',

Some files were not shown because too many files have changed in this diff Show more