aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts/src/types.ts
blob: 7adec202f388680150fd503e3162a5e43df1577f (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
24
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[];
    isPublished?: boolean;
}

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