2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2022-02-19 02:18:43 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { getPagingParameters } from '../GenericFunctions';
|
2022-02-19 02:18:43 -08:00
|
|
|
|
|
|
|
export const spaceOperations: INodeProperties[] = [
|
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
noDataExpression: true,
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['space'],
|
2022-02-19 02:18:43 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get a space',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get a space',
|
2022-02-19 02:18:43 -08:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2022-02-19 02:18:43 -08:00
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
description: 'Get many spaces the caller is a member of',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many spaces',
|
2022-02-19 02:18:43 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'get',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export const spaceFields: INodeProperties[] = [
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* space:get */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Space ID',
|
|
|
|
name: 'spaceId',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['space'],
|
|
|
|
operation: ['get'],
|
2022-02-19 02:18:43 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'Resource name of the space, in the form "spaces/*"',
|
|
|
|
},
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* space:getAll */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
...getPagingParameters('space'),
|
|
|
|
];
|