mindwire 0.1.22 → 0.1.24

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/dist/index.js CHANGED
@@ -567,7 +567,7 @@ var GitAccessApi = class {
567
567
  run(projectId, operation, auth) {
568
568
  return this.mw.http.request("POST", `/workspace/projects/${encodeURIComponent(projectId)}/git/${operation}`, { body: { auth } });
569
569
  }
570
- /** Requires health.gitOperationsVersion >= 1 (>= 2 for branch changes). Acceptance persists before Git runs;
570
+ /** Requires health.gitOperationsVersion >= 1 (>= 2 for branches, >= 4 for restore_commit). Acceptance persists before Git runs;
571
571
  * disconnecting only detaches the client. The same ID/intent never runs twice.
572
572
  */
573
573
  start(projectId, request) {
@@ -577,7 +577,7 @@ var GitAccessApi = class {
577
577
  const result = await this.mw.http.request(
578
578
  "GET",
579
579
  `/workspace/projects/${encodeURIComponent(projectId)}/git/operations`,
580
- { query: { active: activeOnly, actionsVersion: 2 } }
580
+ { query: { active: activeOnly, actionsVersion: 4 } }
581
581
  );
582
582
  return result.operations;
583
583
  }
@@ -804,7 +804,7 @@ function computerPairingURI(invitation) {
804
804
  }
805
805
 
806
806
  // src/version.ts
807
- var SDK_VERSION = "0.1.22" ;
807
+ var SDK_VERSION = "0.1.24" ;
808
808
 
809
809
  // src/daemon-binary.ts
810
810
  function supported(platform, arch) {