mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
3293e6207f
* 🎉 Initial commit for stackby nodes * 👕 Adding values into package.json * ⚡ Improvements to #1389 * ⚡ Minor improvements to Stackby-Node * 👕 Fix lint issue Co-authored-by: Smit Parmar <16ce061@charusat.edu.in> Co-authored-by: Smit Parmar <30971669+smituparmar@users.noreply.github.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
19 lines
340 B
TypeScript
19 lines
340 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class StackbyApi implements ICredentialType {
|
|
name = 'stackbyApi';
|
|
displayName = 'Stackby API';
|
|
documentationUrl = 'stackby';
|
|
properties = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|