From 0f6b82249b49647d2a3bf55973b7a643a2f4584a Mon Sep 17 00:00:00 2001 From: ricardo Date: Sun, 14 Jun 2020 16:30:24 -0400 Subject: [PATCH] :zap: Improvements to SurveyMonkey-Node --- .../credentials/SurveyMonkeyOAuth2Api.credentials.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/nodes-base/credentials/SurveyMonkeyOAuth2Api.credentials.ts b/packages/nodes-base/credentials/SurveyMonkeyOAuth2Api.credentials.ts index cbeafdf753..26949d879f 100644 --- a/packages/nodes-base/credentials/SurveyMonkeyOAuth2Api.credentials.ts +++ b/packages/nodes-base/credentials/SurveyMonkeyOAuth2Api.credentials.ts @@ -3,6 +3,14 @@ import { NodePropertyTypes, } from 'n8n-workflow'; +const scopes = [ + 'surveys_read', + 'collectors_read', + 'responses_read', + 'responses_read_detail', + 'webhooks_write', + 'webhooks_read', +]; export class SurveyMonkeyOAuth2Api implements ICredentialType { name = 'surveyMonkeyOAuth2Api'; @@ -28,8 +36,8 @@ export class SurveyMonkeyOAuth2Api implements ICredentialType { { displayName: 'Scope', name: 'scope', - type: 'string' as NodePropertyTypes, - default: 'surveys_read,surveys_write,responses_read,responses_write,webhooks_read,webhooks_write', + type: 'hidden' as NodePropertyTypes, + default: scopes.join(','), }, { displayName: 'Auth URI Query Parameters',