mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
56 lines
1.1 KiB
TypeScript
56 lines
1.1 KiB
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class SalesforceJwtApi implements ICredentialType {
|
|
name = 'salesforceJwtApi';
|
|
|
|
displayName = 'Salesforce JWT API';
|
|
|
|
documentationUrl = 'salesforce';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Environment Type',
|
|
name: 'environment',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Production',
|
|
value: 'production',
|
|
},
|
|
{
|
|
name: 'Sandbox',
|
|
value: 'sandbox',
|
|
},
|
|
],
|
|
default: 'production',
|
|
},
|
|
{
|
|
displayName: 'Client ID',
|
|
name: 'clientId',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
description: 'Consumer Key from Salesforce Connected App',
|
|
},
|
|
{
|
|
displayName: 'Username',
|
|
name: 'username',
|
|
type: 'string',
|
|
default: '',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Private Key',
|
|
name: 'privateKey',
|
|
type: 'string',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
default: '',
|
|
required: true,
|
|
description:
|
|
'Use the multiline editor. Make sure it is in standard PEM key format:<br />-----BEGIN PRIVATE KEY-----<br />KEY DATA GOES HERE<br />-----END PRIVATE KEY-----',
|
|
},
|
|
];
|
|
}
|