/** * PagerDuty Node - Version 1 * Discriminator: resource=incidentNote, operation=create */ interface Credentials { pagerDutyApi: CredentialReference; pagerDutyOAuth2Api: CredentialReference; } /** Create an incident */ export type PagerDutyV1IncidentNoteCreateParams = { resource: 'incidentNote'; operation: 'create'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * Unique identifier for the incident */ incidentId?: string | Expression | PlaceholderValue; /** * The note content */ content?: string | Expression | PlaceholderValue; /** * The email address of a valid user associated with the account making the request */ email?: string | Expression | PlaceholderValue; }; export type PagerDutyV1IncidentNoteCreateNode = { type: 'n8n-nodes-base.pagerDuty'; version: 1; credentials?: Credentials; config: NodeConfig; };