Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions x-pack/plugins/code/public/actions/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface FetchFilePayload extends FetchRepoPayloadWithRevision {
}
export interface FetchRepoTreePayload extends FetchFilePayload {
limit?: number;
parents?: boolean;
}

export interface FetchFileResponse {
Expand Down
8 changes: 5 additions & 3 deletions x-pack/plugins/code/public/actions/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ export const indexRepo = createAction<string>('INDEX REPOS');
export const indexRepoSuccess = createAction<string>('INDEX REPOS SUCCESS');
export const indexRepoFailed = createAction<Error>('INDEX REPOS FAILED');

export const importRepo = createAction<string>('IMPORT REPOS');
export const importRepoSuccess = createAction<string>('IMPORT REPOS SUCCESS');
export const importRepoFailed = createAction<Error>('IMPORT REPOS FAILED');
export const importRepo = createAction<string>('IMPORT REPO');
export const importRepoSuccess = createAction<string>('IMPORT REPO SUCCESS');
export const importRepoFailed = createAction<Error>('IMPORT REPO FAILED');

export const hideCallOut = createAction('HIDE CALL OUT');

export const fetchRepoConfigs = createAction('FETCH REPO CONFIGS');
export const fetchRepoConfigSuccess = createAction<RepoConfigs>('FETCH REPO CONFIGS SUCCESS');
Expand Down
Loading