segment node

This commit is contained in:
Ricardo Espinoza
2020-01-23 12:27:28 -05:00
parent f9da0e7fad
commit 70e26681a4
9 changed files with 2527 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class SegmentApi implements ICredentialType {
name = 'segmentApi';
displayName = 'Segment API';
properties = [
{
displayName: 'Write Key',
name: 'writekey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}