n8n/packages/nodes-base/credentials/OuraApi.credentials.ts

16 lines
340 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
export class OuraApi implements ICredentialType {
name = 'ouraApi';
displayName = 'Oura API';
documentationUrl = 'oura';
properties: INodeProperties[] = [
{
displayName: 'Personal Access Token',
name: 'accessToken',
type: 'string',
default: '',
},
];
}