Small changes to Sms77 node

This commit is contained in:
Jan Oberhauser
2020-05-02 13:09:16 +02:00
parent 58d0cda0bf
commit ae853ce602
5 changed files with 43 additions and 31 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class Sms77Api implements ICredentialType {
name = 'sms77Api';
displayName = 'Sms77 API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}