mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
42bbe3006a
* 🚧 setup - Added everything, need to test and add icon * Add icon * 🚧 Node colour change * 🚧 Fixed Descriptions * ✔️ Tested, fixed up properties * ✅ Fixed issue of issue * ✅ Added create option for team & organization * ⚡ Improvements * ⚡ Fixed OAuth2 credentials scope * ⚡ Adjusted descriptions, added loadOptions for organizations/projects, small fixes * ⚡ Added Create Release, interfaces * ⚡ Improvements to SentryIO-Node Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
21 lines
328 B
TypeScript
21 lines
328 B
TypeScript
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;
|
|
}
|