forked from steveukx/git-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
response.d.ts
512 lines (428 loc) · 11.4 KB
/
response.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
import { DefaultLogFields } from '../src/lib/tasks/log';
export interface BranchSummaryBranch {
current: boolean;
name: string;
commit: string;
label: string;
}
export interface BranchSummary {
detached: boolean;
current: string;
all: string[];
branches: {
[key: string]: BranchSummaryBranch;
};
}
/**
* Represents the successful deletion of a single branch
*/
export interface BranchSingleDeleteSuccess {
branch: string;
hash: string;
success: true;
}
/**
* Represents the failure to delete a single branch
*/
export interface BranchSingleDeleteFailure {
branch: string;
hash: null;
success: false;
}
export type BranchSingleDeleteResult = BranchSingleDeleteFailure | BranchSingleDeleteSuccess;
/**
* Represents the status of having deleted a batch of branches
*/
export interface BranchMultiDeleteResult {
/**
* All branches included in the response
*/
all: BranchSingleDeleteResult[];
/**
* Branches mapped by their branch name
*/
branches: { [branchName: string]: BranchSingleDeleteResult };
/**
* Array of responses that are in error
*/
errors: BranchSingleDeleteResult[];
/**
* Flag showing whether all branches were deleted successfully
*/
readonly success: boolean;
}
export interface CleanSummary {
readonly dryRun: boolean;
paths: string[];
files: string[];
folders: string[];
}
export interface CommitResult {
author: null | {
email: string;
name: string;
};
branch: string;
commit: string;
root: boolean;
summary: {
changes: number;
insertions: number;
deletions: number;
};
}
/** Represents the response to using `git.getConfig` */
export interface ConfigGetResult {
/** The key that was searched for */
key: string;
/** The single value seen by `git` for this key (equivalent to `git config --get key`) */
value: string | null;
/** All possible values for this key no matter the scope (equivalent to `git config --get-all key`) */
values: string[];
/** The file paths from which configuration was read */
paths: string[];
/**
* The full hierarchy of values the property can have had across the
* various scopes that were searched (keys in this Map are the strings
* also found in the `paths` array).
*/
scopes: Map<string, string[]>;
}
/**
* Represents the current git configuration, as defined by the output from `git log`
*/
export interface ConfigListSummary {
/**
* All configuration settings, where local/user settings override user/global settings
* the overridden value will appear in this object.
*/
readonly all: ConfigValues;
/**
* The file paths configuration was read from
*/
files: string[];
/**
* The `ConfigValues` for each of the `files`, use this object to determine
* local repo, user and global settings.
*/
values: { [fileName: string]: ConfigValues };
}
/**
* Represents the map of configuration settings
*/
export interface ConfigValues {
[key: string]: string | string[];
}
export interface DiffResultTextFile {
file: string;
changes: number;
insertions: number;
deletions: number;
binary: false;
}
export interface DiffResultBinaryFile {
file: string;
before: number;
after: number;
binary: true;
}
export interface DiffResult {
/** The total number of files changed as reported in the summary line */
changed: number;
/** When present in the diff, lists the details of each file changed */
files: Array<DiffResultTextFile | DiffResultBinaryFile>;
/** The number of files changed with insertions */
insertions: number;
/** The number of files changed with deletions */
deletions: number;
}
export interface FetchResult {
raw: string;
remote: string | null;
branches: {
name: string;
tracking: string;
}[];
tags: {
name: string;
tracking: string;
}[];
}
/** Represents the response to git.grep */
export interface GrepResult {
paths: Set<string>;
results: Record<string, Array<{
line: number;
path: string;
preview: string;
}>>;
}
/**
* The `InitResult` is returned when (re)initialising a git repo.
*/
export interface InitResult {
/**
* Boolean representing whether the `--bare` option was used
*/
readonly bare: boolean;
/**
* Boolean representing whether the repo already existed (re-initialised rather than initialised)
*/
readonly existing: boolean;
/**
* The path used when initialising
*/
readonly path: string;
/**
* The git configuration directory - for a bare repo this is the same as `path`, in non-bare repos
* this will usually be a sub-directory with the name `.git` (or value of the `$GIT_DIR` environment
* variable).
*/
readonly gitDir: string;
}
/**
* A parsed response summary for calls to `git mv`
*/
export interface MoveResult {
/**
* Array of files moved
*/
moves: Array<{ from: string, to: string }>;
}
export interface PullDetailFileChanges {
[fileName: string]: number;
}
export interface PullDetailSummary {
changes: number;
insertions: number;
deletions: number;
}
export interface PullDetail {
/** Array of all files that are referenced in the pull */
files: string[];
/** Map of file names to the number of insertions in that file */
insertions: PullDetailFileChanges;
/** Map of file names to the number of deletions in that file */
deletions: PullDetailFileChanges;
summary: PullDetailSummary;
/** Array of file names that have been created */
created: string[];
/** Array of file names that have been deleted */
deleted: string[];
}
export interface PullResult extends PullDetail, RemoteMessageResult {
}
/**
* Represents file name changes in a StatusResult
*/
export interface StatusResultRenamed {
from: string;
to: string;
}
export interface FileStatusResult {
/** Original location of the file, when the file has been moved */
from?: string
/** Path of the file */
path: string;
/** First digit of the status code of the file, e.g. 'M' = modified.
Represents the status of the index if no merge conflicts, otherwise represents
status of one side of the merge. */
index: string;
/** Second digit of the status code of the file. Represents status of the working directory
if no merge conflicts, otherwise represents status of other side of a merge. */
working_dir: string;
}
/**
* The StatusResult is returned for calls to `git.status()`, represents the state of the
* working directory.
*/
export interface StatusResult {
not_added: string[];
conflicted: string[];
created: string[];
deleted: string[];
modified: string[];
renamed: StatusResultRenamed[];
staged: string[];
/**
* All files represented as an array of objects containing the `path` and status in `index` and
* in the `working_dir`.
*/
files: FileStatusResult[];
/**
* Number of commits ahead of the tracked branch
*/
ahead: number;
/**
*Number of commits behind the tracked branch
*/
behind: number;
/**
* Name of the current branch
*/
current: string | null;
/**
* Name of the branch being tracked
*/
tracking: string | null;
/**
* Detached status of the working copy, for more detail of what the working branch
* is detached from use `git.branch()`
*/
detached: boolean;
/**
* Gets whether this represents a clean working branch.
*/
isClean(): boolean;
}
/**
* Response retrieved when using the `git.tags` method
*/
export interface TagResult {
/**
* All tag names
*/
all: string[];
/**
* The semver latest tag name or `undefined` when no tags are named in the response
*/
latest: string | undefined;
}
/**
* The ListLogLine represents a single entry in the `git.log`, the properties on the object
* are mixed in depending on the names used in the format (see `DefaultLogFields`), but some
* properties are dependent on the command used.
*/
export interface ListLogLine {
/**
* When using a `--stat=4096` or `--shortstat` options in the `git.log` or `git.stashList`,
* each entry in the `ListLogSummary` will also have a `diff` property representing as much
* detail as was given in the response.
*/
diff?: DiffResult;
}
export interface LogResult<T = DefaultLogFields> {
all: ReadonlyArray<T & ListLogLine>;
total: number;
latest: (T & ListLogLine) | null;
}
/**
* Where the file was deleted, if there is a modify/delete conflict
*/
export interface MergeConflictDeletion {
deleteRef: string;
}
/**
* Represents a single file with conflicts in the MergeSummary
*/
export interface MergeConflict {
/**
* Type of conflict
*/
reason: string;
/**
* Path to file
*/
file: string | null;
/**
* Additional detail for the specific type of conflict
*/
meta?: MergeConflictDeletion;
}
export type MergeResultStatus = 'success' | string;
export interface MergeDetail {
conflicts: MergeConflict[];
merges: string[];
result: MergeResultStatus;
readonly failed: boolean;
}
export type MergeResult = PullResult & MergeDetail;
/**
*
*/
export interface PushResultPushedItem {
local: string;
remote: string;
readonly deleted: boolean;
readonly tag: boolean;
readonly branch: boolean;
readonly new: boolean;
readonly alreadyUpdated: boolean;
}
export interface RemoteMessagesObjectEnumeration {
enumerating: number,
counting: number,
compressing: number,
total: {
count: number,
delta: number,
},
reused: {
count: number,
delta: number,
},
packReused: number,
}
export interface RemoteMessages {
all: string[];
objects?: RemoteMessagesObjectEnumeration;
}
export interface PushResultRemoteMessages extends RemoteMessages {
pullRequestUrl?: string;
vulnerabilities?: {
count: number;
summary: string;
url: string;
};
}
export interface RemoteMessageResult<T extends RemoteMessages = RemoteMessages> {
remoteMessages: T;
}
export interface PushResultBranchUpdate {
head: {
local: string;
remote: string;
};
hash: {
from: string;
to: string;
};
}
export interface PushDetail {
repo?: string;
ref?: {
local: string;
};
pushed: PushResultPushedItem[];
branch?: {
local: string;
remote: string;
remoteName: string;
};
update?: PushResultBranchUpdate;
}
export interface PushResult extends PushDetail, RemoteMessageResult<PushResultRemoteMessages> {
}
/**
* @deprecated
* For consistent naming, please use `CommitResult` instead of `CommitSummary`
*/
export type CommitSummary = CommitResult;
/**
* @deprecated
* For consistent naming, please use `MergeResult` instead of `MergeSummary`
*/
export type MergeSummary = MergeResult;
/**
* @deprecated to aid consistent naming, please use `BranchSingleDeleteResult` instead of `BranchDeletionSummary`.
*/
export type BranchDeletionSummary = BranchSingleDeleteResult;
/**
* @deprecated to aid consistent naming, please use `BranchMultiDeleteResult` instead of `BranchDeletionBatchSummary`.
*/
export type BranchDeletionBatchSummary = BranchMultiDeleteResult;
export type MoveSummary = MoveResult;
/**
* @deprecated to aid consistent naming, please use `LogResult` instead of `ListLogSummary`.
*/
export type ListLogSummary<T = DefaultLogFields> = LogResult<T>;