n8n-nodes-base
Version:
Base nodes of n8n
26 lines • 976 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GoogleCloudStorageOAuth2Api = void 0;
const scopes = [
'https://www.googleapis.com/auth/cloud-platform',
'https://www.googleapis.com/auth/cloud-platform.read-only',
'https://www.googleapis.com/auth/devstorage.full_control',
'https://www.googleapis.com/auth/devstorage.read_only',
'https://www.googleapis.com/auth/devstorage.read_write',
];
class GoogleCloudStorageOAuth2Api {
name = 'googleCloudStorageOAuth2Api';
extends = ['googleOAuth2Api'];
displayName = 'Google Cloud Storage OAuth2 API';
documentationUrl = 'google/oauth-single-service';
properties = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: scopes.join(' '),
},
];
}
exports.GoogleCloudStorageOAuth2Api = GoogleCloudStorageOAuth2Api;
//# sourceMappingURL=GoogleCloudStorageOAuth2Api.credentials.js.map