n8n/packages/nodes-base/nodes/Google/Chat/descriptions/SpaceDescription.ts
Iván Ovejero 3a9c7acb04
refactor(nodes-base): Apply lint rule node-param-operation-option-description-wrong-for-get-many (#4064)
* 👕 Enable rule

* ⬆️ Upgrade linter

* 📦 Update `package-lock.json`

* 👕 Apply rule

* ✏️ Fix plurals

* ✏️ More typos

* ✏️ Final typos
2022-09-13 12:36:36 +02:00

59 lines
1.4 KiB
TypeScript

import { INodeProperties } from 'n8n-workflow';
import { getPagingParameters } from '../GenericFunctions';
export const spaceOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
noDataExpression: true,
type: 'options',
displayOptions: {
show: {
resource: ['space'],
},
},
options: [
{
name: 'Get',
value: 'get',
description: 'Get a space',
action: 'Get a space',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get many spaces the caller is a member of',
action: 'Get many spaces',
},
],
default: 'get',
},
];
export const spaceFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* space:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Space ID',
name: 'spaceId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['space'],
operation: ['get'],
},
},
default: '',
description: 'Resource name of the space, in the form "spaces/*"',
},
/* -------------------------------------------------------------------------- */
/* space:getAll */
/* -------------------------------------------------------------------------- */
...getPagingParameters('space'),
];