UNPKG

n8n-ikaue-nodes

Version:

IKAUE nodes for N8N, such as a custom BigQuery node or a Google Search Console node.

22 lines 834 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GoogleBigQueryOAuth2Api = void 0; const scopes = ['https://www.googleapis.com/auth/bigquery']; class GoogleBigQueryOAuth2Api { constructor() { this.name = 'googleBigQueryOAuth2Api'; this.extends = ['googleOAuth2Api']; this.displayName = 'Google BigQuery OAuth2 API'; this.documentationUrl = 'https://developers.google.com/identity/protocols/oauth2'; this.properties = [ { displayName: 'Scope', name: 'scope', type: 'hidden', default: scopes.join(' '), }, ]; } } exports.GoogleBigQueryOAuth2Api = GoogleBigQueryOAuth2Api; //# sourceMappingURL=GoogleBigQueryOAuth2Api.credentials.js.map