2023-01-27 03:22:44 -08:00
|
|
|
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2021-02-14 08:56:34 -08:00
|
|
|
|
|
|
|
export class PostHogApi implements ICredentialType {
|
|
|
|
name = 'postHogApi';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-02-14 08:56:34 -08:00
|
|
|
displayName = 'PostHog API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-18 14:46:21 -07:00
|
|
|
documentationUrl = 'postHog';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2021-02-14 08:56:34 -08:00
|
|
|
{
|
|
|
|
displayName: 'URL',
|
|
|
|
name: 'url',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2021-02-14 08:56:34 -08:00
|
|
|
default: 'https://app.posthog.com',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'API Key',
|
|
|
|
name: 'apiKey',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2022-11-01 09:41:45 -07:00
|
|
|
typeOptions: { password: true },
|
2021-02-14 08:56:34 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|