@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openvcs/sdk",
3
- "version": "0.3.0",
3
+ "version": "0.4.0-edge.20260511.62",
4
4
  "description": "OpenVCS SDK CLI for plugin scaffolding and runtime asset builds",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "homepage": "https://openvcs.app/",
@@ -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. */