@openvcs/sdk 0.4.1-edge.20260604.114 → 0.4.1-edge.20260604.115

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.
@@ -13,8 +13,8 @@ export interface VcsCapabilities {
13
13
  push_pull: boolean;
14
14
  /** Indicates whether fast-forward helpers are supported. */
15
15
  fast_forward: boolean;
16
- /** Indicates whether merge strategy selection (merge/squash/rebase) is supported. */
17
- merge_strategies?: boolean;
16
+ /** Merge strategies the backend supports (values like "merge", "squash", "rebase"). */
17
+ merge_strategies?: string[];
18
18
  }
19
19
  /** Describes params that carry a repository session id. */
20
20
  export interface VcsSessionParams extends RequestParams {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openvcs/sdk",
3
- "version": "0.4.1-edge.20260604.114",
3
+ "version": "0.4.1-edge.20260604.115",
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/",
@@ -17,8 +17,8 @@ export interface VcsCapabilities {
17
17
  push_pull: boolean;
18
18
  /** Indicates whether fast-forward helpers are supported. */
19
19
  fast_forward: boolean;
20
- /** Indicates whether merge strategy selection (merge/squash/rebase) is supported. */
21
- merge_strategies?: boolean;
20
+ /** Merge strategies the backend supports (values like "merge", "squash", "rebase"). */
21
+ merge_strategies?: string[];
22
22
  }
23
23
 
24
24
  /** Describes params that carry a repository session id. */