UNPKG

792 BTypeScriptView Raw
1import { TBumpType, TGitMessage } from '@auto/utils';
2export declare type TSlackOptions = {
3 token: string;
4 channel: string;
5 username: string;
6 iconEmoji: string;
7 colors: {
8 major: string;
9 minor: string;
10 patch: string;
11 };
12};
13export declare type TGithubOptions = {
14 token: string;
15 username: string;
16 repo: string;
17};
18export declare type TWorkspacesLogMessage = {
19 type: TBumpType | 'dependencies' | 'initial';
20 value: string;
21};
22export declare type TWorkspacesLog = {
23 name: string;
24 version: string;
25 type: TBumpType;
26 messages: TWorkspacesLogMessage[];
27};
28export declare type TRepoLogMessage = TGitMessage;
29export declare type TRepoLog = {
30 version: string;
31 type: TBumpType;
32 messages: TRepoLogMessage[];
33};