2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2021-08-08 00:51:44 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const journalEntryOperations: INodeProperties[] = [
|
2021-08-08 00:51:44 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2021-08-08 00:51:44 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['journalEntry'],
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a journal entry',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Create a journal entry',
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a journal entry',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Delete a journal entry',
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Retrieve a journal entry',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get a journal entry',
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2021-08-08 00:51:44 -07:00
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
description: 'Retrieve many journal entries',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many journal entries',
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a journal entry',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Update a journal entry',
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2021-08-08 00:51:44 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const journalEntryFields: INodeProperties[] = [
|
2021-08-08 00:51:44 -07:00
|
|
|
// ----------------------------------------
|
|
|
|
// journalEntry: create
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Title',
|
|
|
|
name: 'title',
|
|
|
|
description: 'Title of the journal entry - max 250 characters',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['journalEntry'],
|
|
|
|
operation: ['create'],
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Content',
|
|
|
|
name: 'post',
|
|
|
|
description: 'Content of the journal entry - max 100,000 characters',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['journalEntry'],
|
|
|
|
operation: ['create'],
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// journalEntry: delete
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Journal Entry ID',
|
|
|
|
name: 'journalId',
|
|
|
|
description: 'ID of the journal entry to delete',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['journalEntry'],
|
|
|
|
operation: ['delete'],
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// journalEntry: get
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Journal Entry ID',
|
|
|
|
name: 'journalId',
|
|
|
|
description: 'ID of the journal entry to retrieve',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['journalEntry'],
|
|
|
|
operation: ['get'],
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// journalEntry: getAll
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['journalEntry'],
|
|
|
|
operation: ['getAll'],
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
default: 50,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2021-08-08 00:51:44 -07:00
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['journalEntry'],
|
|
|
|
operation: ['getAll'],
|
|
|
|
returnAll: [false],
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// journalEntry: update
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Journal Entry ID',
|
|
|
|
name: 'journalId',
|
|
|
|
description: 'ID of the journal entry to update',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['journalEntry'],
|
|
|
|
operation: ['update'],
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['journalEntry'],
|
|
|
|
operation: ['update'],
|
2021-08-08 00:51:44 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Content',
|
|
|
|
name: 'post',
|
|
|
|
description: 'Content of the journal entry - max 100,000 characters',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Title',
|
|
|
|
name: 'title',
|
|
|
|
description: 'Title of the journal entry - max 250 characters',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|