/** * Slack Node - Version 1 * Discriminator: resource=userProfile, operation=get */ interface Credentials { slackApi: CredentialReference; slackOAuth2Api: CredentialReference; } /** Get information about a channel */ export type SlackV1UserProfileGetParams = { resource: 'userProfile'; operation: 'get'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Whether to include labels for each ID in custom profile fields * @default false */ include_labels?: boolean | Expression; /** User to retrieve profile info for */ user?: string | Expression | PlaceholderValue; }; }; export type SlackV1UserProfileGetNode = { type: 'n8n-nodes-base.slack'; version: 1; credentials?: Credentials; config: NodeConfig; };