mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ Add Figma Trigger Node (#2521)
* ✨ Figma Trigger * ⚡ Improvements * ⚡ Small cleanup Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
18
packages/nodes-base/credentials/FigmaApi.credentials.ts
Normal file
18
packages/nodes-base/credentials/FigmaApi.credentials.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class FigmaApi implements ICredentialType {
|
||||
name = 'figmaApi';
|
||||
displayName = 'Figma API';
|
||||
documentationUrl = 'figma';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Access Token',
|
||||
name: 'accessToken',
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user