mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
d4f858db92
* 👕 Apply `node-param-operation-option-action-wrong-for-get-many` * 🔥 Remove `package-lock.json` * 📦 Re-add `package-lock.json` * ⚡ master update Co-authored-by: Michael Kret <michael.k@radency.com>
59 lines
1.4 KiB
TypeScript
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 all 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'),
|
|
];
|