UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

31 lines (27 loc) 736 B
/** * Pushbullet Node - Version 1 * Discriminator: resource=push, operation=update */ interface Credentials { pushbulletOAuth2Api: CredentialReference; } /** Update a push */ export type PushbulletV1PushUpdateParams = { resource: 'push'; operation: 'update'; /** * Push ID */ pushId?: string | Expression<string> | PlaceholderValue; /** * Whether to mark a push as having been dismissed by the user, will cause any notifications for the push to be hidden if possible * @default false */ dismissed?: boolean | Expression<boolean>; }; export type PushbulletV1PushUpdateNode = { type: 'n8n-nodes-base.pushbullet'; version: 1; credentials?: Credentials; config: NodeConfig<PushbulletV1PushUpdateParams>; };