@openvcs/sdk 0.3.0 → 0.4.0-edge.20260511.62
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/lib/types/vcs.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/types/vcs.ts +2 -0
package/lib/types/vcs.d.ts
CHANGED
|
@@ -165,6 +165,8 @@ export interface StatusPayload {
|
|
|
165
165
|
ahead: number;
|
|
166
166
|
/** Stores the local branch behind count relative to its upstream. */
|
|
167
167
|
behind: number;
|
|
168
|
+
/** Stores whether the current branch has a tracking reference on a remote. */
|
|
169
|
+
branch_on_remote: boolean;
|
|
168
170
|
}
|
|
169
171
|
/** Describes the complete parsed status result. */
|
|
170
172
|
export interface StatusParseResult {
|
package/package.json
CHANGED
package/src/lib/types/vcs.ts
CHANGED
|
@@ -190,6 +190,8 @@ export interface StatusPayload {
|
|
|
190
190
|
ahead: number;
|
|
191
191
|
/** Stores the local branch behind count relative to its upstream. */
|
|
192
192
|
behind: number;
|
|
193
|
+
/** Stores whether the current branch has a tracking reference on a remote. */
|
|
194
|
+
branch_on_remote: boolean;
|
|
193
195
|
}
|
|
194
196
|
|
|
195
197
|
/** Describes the complete parsed status result. */
|