/** * Beeminder Node - Version 1 * Discriminator: resource=user, operation=get */ interface Credentials { beeminderApi: CredentialReference; beeminderOAuth2Api: CredentialReference; } /** Get a single datapoint */ export type BeeminderV1UserGetParams = { resource: 'user'; operation: 'get'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Whether to include associations in the response * @default false */ associations?: boolean | Expression; /** Only goals and datapoints that have been created or updated since the timestamp will be returned */ diff_since?: string | Expression; /** Whether to return minimal user data * @default false */ skinny?: boolean | Expression; /** Whether to include the goal attributes called road, roadall, and fullroad will be stripped from any goal objects returned with the user * @default false */ emaciated?: boolean | Expression; /** Number of datapoints to include */ datapoints_count?: number | Expression; }; }; export type BeeminderV1UserGetNode = { type: 'n8n-nodes-base.beeminder'; version: 1; credentials?: Credentials; config: NodeConfig; };