n8n-nodes-base
Version:
Base nodes of n8n
22 lines • 644 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EgoiApi = void 0;
class EgoiApi {
name = 'egoiApi';
displayName = 'E-Goi API';
documentationUrl = 'egoi';
properties = [
// The credentials to get from user and save encrypted.
// Properties can be defined exactly in the same way
// as node properties.
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
}
exports.EgoiApi = EgoiApi;
//# sourceMappingURL=EgoiApi.credentials.js.map