n8n-ikaue-nodes
Version:
IKAUE nodes for N8N, such as a custom BigQuery node or a Google Search Console node.
22 lines • 872 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GoogleSearchConsoleOAuth2Api = void 0;
const scopes = ['https://www.googleapis.com/auth/webmasters'];
class GoogleSearchConsoleOAuth2Api {
constructor() {
this.name = 'googleSearchConsoleOAuth2Api';
this.extends = ['googleOAuth2Api'];
this.displayName = 'Google Search Console OAuth2 API';
this.documentationUrl = 'https://developers.google.com/identity/protocols/oauth2';
this.properties = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: scopes.join(' '),
},
];
}
}
exports.GoogleSearchConsoleOAuth2Api = GoogleSearchConsoleOAuth2Api;
//# sourceMappingURL=GoogleSearchConsoleOAuth2Api.credentials.js.map