Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/credentials/StoryblokManagementApi.credentials.ts
2025-09-08 04:48:28 +08:00

20 lines
435 B
TypeScript
Executable File

import type { 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',
typeOptions: { password: true },
default: '',
},
];
}