/** * Discourse Node - Version 1 * Discriminator: resource=post, operation=get */ interface Credentials { discourseApi: CredentialReference; } /** Get a group */ export type DiscourseV1PostGetParams = { resource: 'post'; operation: 'get'; /** * ID of the post */ postId?: string | Expression | PlaceholderValue; }; export type DiscourseV1PostGetNode = { type: 'n8n-nodes-base.discourse'; version: 1; credentials?: Credentials; config: NodeConfig; };