/** * Pushbullet Node - Version 1 * Discriminator: resource=push, operation=getAll */ interface Credentials { pushbulletOAuth2Api: CredentialReference; } /** Get many pushes */ export type PushbulletV1PushGetAllParams = { resource: 'push'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Don't return deleted pushes * @default false */ active?: boolean | Expression; /** Request pushes modified after this timestamp */ modified_after?: string | Expression; }; }; export type PushbulletV1PushGetAllNode = { type: 'n8n-nodes-base.pushbullet'; version: 1; credentials?: Credentials; config: NodeConfig; };