aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts/src/types.ts
blob: 9e6edd186f7612f3f808227c135d67f365069d75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export interface UpdatedPackage {
    name: string;
    version: string;
    private: boolean;
}

export interface Changes {
    note: string;
    pr?: number;
}

export interface Changelog {
    timestamp?: number;
    version: string;
    changes: Changes[];
}

export enum SemVerIndex {
    Invalid,
    Patch,
    Minor,
    Major,
}