Finish compliance portal rename leftovers across portal, trust, and n8n.

Update mailing list queries to currentCompliancePortal, and include regenerated console resolvers plus sorted n8n/frontend imports from the rename.

Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
Bryan Frimin
2026-07-20 22:48:38 +02:00
parent 75075bcb15
commit 3f6795001a
11 changed files with 679 additions and 681 deletions

View File

@@ -62,6 +62,18 @@ export const description: INodeProperties[] = [
default: 'INTERNAL',
description: 'The classification of the document. Updating it edits the current draft version, creating one from the latest published version if none exists.',
},
{
displayName: 'Compliance Portal Visibility',
name: 'compliancePortalVisibility',
type: 'options',
options: [
{ name: 'None', value: 'NONE' },
{ name: 'Private', value: 'PRIVATE' },
{ name: 'Public', value: 'PUBLIC' },
],
default: 'NONE',
description: 'The compliance portal visibility of the document',
},
{
displayName: 'Content',
name: 'content',
@@ -104,18 +116,6 @@ export const description: INodeProperties[] = [
default: '',
description: 'The title of the document. Updating it edits the current draft version, creating one from the latest published version if none exists.',
},
{
displayName: 'Compliance Portal Visibility',
name: 'compliancePortalVisibility',
type: 'options',
options: [
{ name: 'None', value: 'NONE' },
{ name: 'Private', value: 'PRIVATE' },
{ name: 'Public', value: 'PUBLIC' },
],
default: 'NONE',
description: 'The compliance portal visibility of the document',
},
],
},
];