n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 875 B
text/typescript
/**
* SIGNL4 Node - Version 1
* Discriminator: resource=alert, operation=resolve
*/
interface Credentials {
signl4Api: CredentialReference;
}
/** Resolve an alert */
export type Signl4V1AlertResolveParams = {
resource: 'alert';
operation: 'resolve';
/**
* If the event originates from a record in a 3rd party system, use this parameter to pass the unique ID of that record. That ID will be communicated in outbound webhook notifications from SIGNL4, which is great for correlation/synchronization of that record with the alert. If you resolve / close an alert you must use the same External ID as in the original alert.
*/
externalId?: string | Expression<string> | PlaceholderValue;
};
export type Signl4V1AlertResolveNode = {
type: 'n8n-nodes-base.signl4';
version: 1;
credentials?: Credentials;
config: NodeConfig<Signl4V1AlertResolveParams>;
};