UNPKG

n8n-nodes-google-document-ai

Version:
27 lines 1.01 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GoogleServiceAccount = void 0; class GoogleServiceAccount { constructor() { this.name = 'googleServiceAccount'; this.displayName = 'Google Service Account'; this.documentationUrl = 'https://cloud.google.com/iam/docs/creating-managing-service-account-keys'; this.icon = 'file:icons/Google.svg'; this.properties = [ { displayName: 'Service Account Key', name: 'serviceAccountKey', type: 'string', typeOptions: { password: true, rows: 10, }, default: '', required: true, description: 'Enter the JSON key file contents from your Google service account', }, ]; } } exports.GoogleServiceAccount = GoogleServiceAccount; //# sourceMappingURL=GoogleServiceAccount.credentials.js.map