Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/SentryIo/Interface.ts
2025-09-08 04:48:28 +08:00

21 lines
328 B
TypeScript
Executable File

export interface ICommit {
id: string;
repository?: string;
message?: string;
patch_set?: IPatchSet[];
author_name?: string;
author_email?: string;
timestamp?: Date;
}
export interface IPatchSet {
path: string;
type: string;
}
export interface IRef {
commit: string;
repository: string;
previousCommit?: string;
}