2019-12-30 13:08:22 -08:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2019-12-30 13:08:22 -08:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export class WordpressApi implements ICredentialType {
|
|
|
|
name = 'wordpressApi';
|
|
|
|
displayName = 'Wordpress API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'wordpress';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2019-12-30 13:08:22 -08:00
|
|
|
{
|
|
|
|
displayName: 'Username',
|
|
|
|
name: 'username',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2019-12-30 13:08:22 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Password',
|
|
|
|
name: 'password',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2022-03-13 03:42:23 -07:00
|
|
|
typeOptions: {
|
|
|
|
password: true,
|
|
|
|
},
|
2019-12-30 13:08:22 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
2020-01-03 19:47:19 -08:00
|
|
|
displayName: 'Wordpress URL',
|
|
|
|
name: 'url',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2019-12-30 13:08:22 -08:00
|
|
|
default: '',
|
2020-01-03 19:47:19 -08:00
|
|
|
placeholder: 'https://example.com',
|
2019-12-30 13:08:22 -08:00
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|