Merge branch 'master' into RicardoE105-google-books

This commit is contained in:
Jan Oberhauser
2020-11-04 15:43:38 +01:00
18 changed files with 1615 additions and 25 deletions

View File

@@ -0,0 +1,22 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class FacebookGraphAppApi implements ICredentialType {
name = 'facebookGraphAppApi';
displayName = 'Facebook Graph API (App)';
documentationUrl = 'facebookGraphApp';
extends = [
'facebookGraphApi',
];
properties = [
{
displayName: 'App Secret',
name: 'appSecret',
type: 'string' as NodePropertyTypes,
default: '',
description: '(Optional) When the app secret is set the node will verify this signature to validate the integrity and origin of the payload.',
},
];
}

View File

@@ -28,6 +28,7 @@ export class ShopifyApi implements ICredentialType {
required: true,
type: 'string' as NodePropertyTypes,
default: '',
description: 'Only the subdomain without .myshopify.com',
},
{
displayName: 'Shared Secret',

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class StoryblokContentApi implements ICredentialType {
name = 'storyblokContentApi';
displayName = 'Storyblok Content API';
documentationUrl = 'storyblok';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class StoryblokManagementApi implements ICredentialType {
name = 'storyblokManagementApi';
displayName = 'Storyblok Management API';
documentationUrl = 'storyblok';
properties = [
{
displayName: 'Personal Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}