mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
3c29e5c14f
* Improve Google sheet path match, not you can use embedded object to get the path from
* Add the Unleashed node in alphabet order in the package.json file to follow contribution guide requirements
* ⚡ Improvements to Unleashed-Node
* Implement pagination and fix date transformation from Unleashed to ISO
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
27 lines
484 B
TypeScript
27 lines
484 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class UnleashedSoftwareApi implements ICredentialType {
|
|
name = 'unleashedSoftwareApi';
|
|
displayName = 'Unleashed API';
|
|
properties = [
|
|
{
|
|
displayName: 'API ID',
|
|
name: 'apiId',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
},
|
|
];
|
|
}
|