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
49 lines
1,007 B
TypeScript
49 lines
1,007 B
TypeScript
import type {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class KoBoToolboxApi implements ICredentialType {
|
|
name = 'koBoToolboxApi';
|
|
|
|
displayName = 'KoBoToolbox API Token';
|
|
|
|
// See https://support.kobotoolbox.org/api.html
|
|
documentationUrl = 'koBoToolbox';
|
|
|
|
properties = [
|
|
{
|
|
displayName: 'API Root URL',
|
|
name: 'URL',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: 'https://kf.kobotoolbox.org/',
|
|
},
|
|
{
|
|
displayName: 'API Token',
|
|
name: 'token',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
hint: 'You can get your API token at https://[api-root]/token/?format=json (for a logged in user)',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
Authorization: '=Token {{$credentials.token}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: '={{$credentials.URL}}',
|
|
url: '/api/v2/assets/',
|
|
method: 'GET',
|
|
},
|
|
};
|
|
}
|