2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-11-04 01:53:33 -08:00
|
|
|
|
|
|
|
export class StoryblokManagementApi implements ICredentialType {
|
|
|
|
name = 'storyblokManagementApi';
|
|
|
|
displayName = 'Storyblok Management API';
|
|
|
|
documentationUrl = 'storyblok';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-11-04 01:53:33 -08:00
|
|
|
{
|
|
|
|
displayName: 'Personal Access Token',
|
|
|
|
name: 'accessToken',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2022-11-01 09:41:45 -07:00
|
|
|
typeOptions: { password: true },
|
2020-11-04 01:53:33 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|