mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 01:24:05 -08:00
36 lines
935 B
TypeScript
36 lines
935 B
TypeScript
|
import type { INodeProperties } from 'n8n-workflow';
|
||
|
|
||
|
export const sessionIdOption: INodeProperties = {
|
||
|
displayName: 'Session ID',
|
||
|
name: 'sessionIdType',
|
||
|
type: 'options',
|
||
|
options: [
|
||
|
{
|
||
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||
|
name: 'Take from previous node automatically',
|
||
|
value: 'fromInput',
|
||
|
description: 'Looks for an input field called sessionId',
|
||
|
},
|
||
|
{
|
||
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||
|
name: 'Define below',
|
||
|
value: 'customKey',
|
||
|
description: 'Use an expression to reference data in previous nodes or enter static text',
|
||
|
},
|
||
|
],
|
||
|
default: 'fromInput',
|
||
|
};
|
||
|
|
||
|
export const sessionKeyProperty: INodeProperties = {
|
||
|
displayName: 'Key',
|
||
|
name: 'sessionKey',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
description: 'The key to use to store session ID in the memory',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
sessionIdType: ['customKey'],
|
||
|
},
|
||
|
},
|
||
|
};
|