mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
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:
parent
845f0f9d20
commit
b03e358a12
|
@ -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',
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
ICredentialDataDecryptedObject,
|
ICredentialDataDecryptedObject,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
ICredentialDataDecryptedObject,
|
ICredentialDataDecryptedObject,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
ICredentialDataDecryptedObject,
|
ICredentialDataDecryptedObject,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
IHttpRequestOptions,
|
IHttpRequestOptions,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
ICredentialDataDecryptedObject,
|
ICredentialDataDecryptedObject,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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'];
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||||
|
|
||||||
const scopes: string[] = [];
|
const scopes: string[] = [];
|
||||||
|
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
ICredentialDataDecryptedObject,
|
ICredentialDataDecryptedObject,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
ICredentialDataDecryptedObject,
|
ICredentialDataDecryptedObject,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {
|
import type {
|
||||||
IAuthenticateGeneric,
|
IAuthenticateGeneric,
|
||||||
ICredentialTestRequest,
|
ICredentialTestRequest,
|
||||||
ICredentialType,
|
ICredentialType,
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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'];
|
||||||
|
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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'];
|
||||||
|
|
||||||
|
|
|
@ -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'];
|
||||||
|
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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'];
|
||||||
|
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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
Loading…
Reference in a new issue