mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
Merge branch 'master' into RicardoE105-google-books
This commit is contained in:
@@ -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.',
|
||||
},
|
||||
];
|
||||
}
|
||||
@@ -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',
|
||||
|
||||
@@ -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: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
@@ -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: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user