Bitly node

This commit is contained in:
Ricardo Espinoza
2020-01-25 16:44:33 -05:00
parent 5c3ac6c22d
commit 0c92349b5d
6 changed files with 583 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class BitlyApi implements ICredentialType {
name = 'bitlyApi';
displayName = 'Bitly API';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}