n8n-nodes-base
Version:
Base nodes of n8n
40 lines (36 loc) • 1.14 kB
text/typescript
/**
* Sentry.io Node - Version 1
* Discriminator: resource=team, operation=getAll
*/
interface Credentials {
sentryIoOAuth2Api: CredentialReference;
sentryIoApi: CredentialReference;
sentryIoServerApi: CredentialReference;
}
/** Get many events */
export type SentryIoV1TeamGetAllParams = {
resource: 'team';
operation: 'getAll';
authentication?: 'accessToken' | 'oAuth2' | 'accessTokenServer' | Expression<string>;
/**
* The slug of the organization for which the teams should be listed. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
organizationSlug?: string | Expression<string>;
/**
* 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 SentryIoV1TeamGetAllNode = {
type: 'n8n-nodes-base.sentryIo';
version: 1;
credentials?: Credentials;
config: NodeConfig<SentryIoV1TeamGetAllParams>;
};