Simplify more property types in credentials classes (#2211)

*  Simplify more property types

* 👕 Fix lint
This commit is contained in:
Iván Ovejero
2021-10-07 23:07:56 +02:00
committed by GitHub
parent d3a312cc6b
commit fa05d7557b
12 changed files with 55 additions and 56 deletions

View File

@@ -1,6 +1,6 @@
import {
ICredentialType,
NodePropertyTypes,
INodeProperties,
} from 'n8n-workflow';
export class CiscoWebexOAuth2Api implements ICredentialType {
@@ -9,37 +9,37 @@ export class CiscoWebexOAuth2Api implements ICredentialType {
'oAuth2Api',
];
displayName = 'Cisco Webex OAuth2 API';
properties = [
properties: INodeProperties[] = [
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden' as NodePropertyTypes,
type: 'hidden',
default: 'https://webexapis.com/v1/authorize',
required: true,
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden' as NodePropertyTypes,
type: 'hidden',
default: 'https://webexapis.com/v1/access_token',
required: true,
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden' as NodePropertyTypes,
type: 'hidden',
default: 'spark:memberships_read meeting:recordings_read spark:kms meeting:schedules_read spark:rooms_read spark:messages_write spark:memberships_write meeting:recordings_write meeting:preferences_read spark:messages_read meeting:schedules_write',
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden' as NodePropertyTypes,
type: 'hidden',
default: '',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden' as NodePropertyTypes,
type: 'hidden',
default: 'body',
},
];