mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
refactor: Enable cred-class-field-properties-assertion (no-changelog) (#6908)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
|
||||
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export class NetlifyApi implements ICredentialType {
|
||||
name = 'netlifyApi';
|
||||
@@ -7,11 +7,12 @@ export class NetlifyApi implements ICredentialType {
|
||||
|
||||
documentationUrl = 'netlify';
|
||||
|
||||
properties = [
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Access Token',
|
||||
name: 'accessToken',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
type: 'string',
|
||||
typeOptions: { password: true },
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user