/** * 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 | 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; }; export type PushbulletV1PushUpdateNode = { type: 'n8n-nodes-base.pushbullet'; version: 1; credentials?: Credentials; config: NodeConfig; };