/** * Sentry.io Node - Version 1 * Discriminator: resource=project, operation=getAll */ interface Credentials { sentryIoOAuth2Api: CredentialReference; sentryIoApi: CredentialReference; sentryIoServerApi: CredentialReference; } /** Get many events */ export type SentryIoV1ProjectGetAllParams = { resource: 'project'; operation: 'getAll'; authentication?: 'accessToken' | 'oAuth2' | 'accessTokenServer' | Expression; /** * 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; }; export type SentryIoV1ProjectGetAllNode = { type: 'n8n-nodes-base.sentryIo'; version: 1; credentials?: Credentials; config: NodeConfig; };