UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

33 lines 964 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AirtableApi = void 0; class AirtableApi { name = 'airtableApi'; displayName = 'Airtable API'; documentationUrl = 'airtable'; properties = [ { displayName: "This type of connection (API Key) was deprecated and can't be used anymore. Please create a new credential of type 'Access Token' instead.", name: 'deprecated', type: 'notice', default: '', }, { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, default: '', }, ]; authenticate = { type: 'generic', properties: { qs: { api_key: '={{$credentials.apiKey}}', }, }, }; } exports.AirtableApi = AirtableApi; //# sourceMappingURL=AirtableApi.credentials.js.map