mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
19 lines
394 B
TypeScript
19 lines
394 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class StoryblokManagementApi implements ICredentialType {
|
|
name = 'storyblokManagementApi';
|
|
displayName = 'Storyblok Management API';
|
|
documentationUrl = 'storyblok';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Personal Access Token',
|
|
name: 'accessToken',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
}
|