just-git 1.6.0 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/dist/{hooks-pZgz2y6k.d.ts → hooks-BcVLl-zm.d.ts} +1 -1
- package/dist/index.d.ts +25 -2
- package/dist/index.js +468 -446
- package/dist/repo/index.d.ts +3 -3
- package/dist/server/index.d.ts +2 -2
- package/dist/{writing-O7uuLVT_.d.ts → writing-BjiCfFbi.d.ts} +2 -2
- package/package.json +1 -1
package/dist/repo/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { g as GitRepo, _ as RefEntry, e as Commit, a4 as TreeEntry, i as ObjectId, h as Identity, a5 as TreeDiffEntry,
|
|
2
|
-
import {
|
|
3
|
-
export { B as BuildCommitOptions,
|
|
1
|
+
import { g as GitRepo, _ as RefEntry, e as Commit, a4 as TreeEntry, i as ObjectId, h as Identity, a5 as TreeDiffEntry, c as GitContext, F as FileSystem } from '../hooks-BcVLl-zm.js';
|
|
2
|
+
import { C as CommitIdentity } from '../writing-BjiCfFbi.js';
|
|
3
|
+
export { B as BuildCommitOptions, a as CommitAuthor, b as CommitOptions, c as CommitResult, d as CreateAnnotatedTagOptions, e as CreateCommitOptions, T as TreeEntryInput, f as TreeUpdate, g as buildCommit, h as commit, i as createAnnotatedTag, j as createCommit, u as updateTree, w as writeBlob, k as writeTree } from '../writing-BjiCfFbi.js';
|
|
4
4
|
import { M as MergeDriver } from '../merge-ort-BYMritNd.js';
|
|
5
5
|
export { a as MergeDriverResult } from '../merge-ort-BYMritNd.js';
|
|
6
6
|
|
package/dist/server/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { i as ObjectId, X as RawObject, Y as Ref, g as GitRepo, a0 as Rejection, N as NetworkPolicy } from '../hooks-
|
|
2
|
-
import {
|
|
1
|
+
import { i as ObjectId, X as RawObject, Y as Ref, g as GitRepo, a0 as Rejection, N as NetworkPolicy } from '../hooks-BcVLl-zm.js';
|
|
2
|
+
import { b as CommitOptions, c as CommitResult } from '../writing-BjiCfFbi.js';
|
|
3
3
|
|
|
4
4
|
/** Shallow boundary delta: what to add/remove from `.git/shallow`. */
|
|
5
5
|
interface ShallowUpdate {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { h as Identity, j as ObjectType, g as GitRepo } from './hooks-
|
|
1
|
+
import { h as Identity, j as ObjectType, g as GitRepo } from './hooks-BcVLl-zm.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Simplified identity for the public API. When `date` is omitted,
|
|
@@ -201,4 +201,4 @@ interface TreeUpdate {
|
|
|
201
201
|
*/
|
|
202
202
|
declare function updateTree(repo: GitRepo, treeHash: string, updates: TreeUpdate[]): Promise<string>;
|
|
203
203
|
|
|
204
|
-
export { type BuildCommitOptions as B, type
|
|
204
|
+
export { type BuildCommitOptions as B, type CommitIdentity as C, type TreeEntryInput as T, type CommitAuthor as a, type CommitOptions as b, type CommitResult as c, type CreateAnnotatedTagOptions as d, type CreateCommitOptions as e, type TreeUpdate as f, buildCommit as g, commit as h, createAnnotatedTag as i, createCommit as j, writeTree as k, updateTree as u, writeBlob as w };
|