Add latest published document version ID node

Co-authored-by: Sacha Al Himdani <sacha@probo.com>
Signed-off-by: Cursor Agent <cursoragent@cursor.com>
This commit is contained in:
Cursor Agent
2026-06-30 09:12:15 +00:00
parent 0bf36f74db
commit 972d68d937
2 changed files with 78 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ import * as deleteOp from './delete.operation';
import * as archiveOp from './archive.operation';
import * as unarchiveOp from './unarchive.operation';
import * as getVersionOp from './getVersion.operation';
import * as getLatestPublishedVersionIdOp from './getLatestPublishedVersionId.operation';
import * as getAllVersionsOp from './getAllVersions.operation';
import * as createDraftVersionOp from './createDraftVersion.operation';
import * as updateVersionOp from './updateVersion.operation';
@@ -102,6 +103,12 @@ export const description: INodeProperties[] = [
description: 'Get an approval quorum',
action: 'Get an approval quorum',
},
{
name: 'Get Latest Published Version ID',
value: 'getLatestPublishedVersionId',
description: 'Get the latest published document version ID',
action: 'Get the latest published document version ID',
},
{
name: 'Get Many',
value: 'getAll',
@@ -191,6 +198,7 @@ export const description: INodeProperties[] = [
...archiveOp.description,
...unarchiveOp.description,
...getVersionOp.description,
...getLatestPublishedVersionIdOp.description,
...getAllVersionsOp.description,
...createDraftVersionOp.description,
...updateVersionOp.description,
@@ -216,6 +224,7 @@ export {
archiveOp as archive,
unarchiveOp as unarchive,
getVersionOp as getVersion,
getLatestPublishedVersionIdOp as getLatestPublishedVersionId,
getAllVersionsOp as getAllVersions,
createDraftVersionOp as createDraftVersion,
updateVersionOp as updateVersion,