UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

49 lines (45 loc) 1.52 kB
/** * Sentry.io Node - Version 1 * Discriminator: resource=event, operation=getAll */ interface Credentials { sentryIoOAuth2Api: CredentialReference; sentryIoApi: CredentialReference; sentryIoServerApi: CredentialReference; } /** Get many events */ export type SentryIoV1EventGetAllParams = { resource: 'event'; operation: 'getAll'; authentication?: 'accessToken' | 'oAuth2' | 'accessTokenServer' | Expression<string>; /** * The slug of the organization the events belong to. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ organizationSlug?: string | Expression<string>; /** * The slug of the project the events belong to. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ projectSlug?: string | Expression<string>; /** * Whether the event payload will include the full event body, including the stack trace * @default true */ full?: boolean | Expression<boolean>; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression<boolean>; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression<number>; }; export type SentryIoV1EventGetAllNode = { type: 'n8n-nodes-base.sentryIo'; version: 1; credentials?: Credentials; config: NodeConfig<SentryIoV1EventGetAllParams>; };