mindwire 0.1.22 → 0.1.23
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/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/workspace.d.ts +9 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -697,7 +697,7 @@ var GitAccessApi = class {
|
|
|
697
697
|
run(projectId, operation, auth) {
|
|
698
698
|
return this.mw.http.request("POST", `/workspace/projects/${encodeURIComponent(projectId)}/git/${operation}`, { body: { auth } });
|
|
699
699
|
}
|
|
700
|
-
/** Requires health.gitOperationsVersion >= 1 (>= 2 for
|
|
700
|
+
/** Requires health.gitOperationsVersion >= 1 (>= 2 for branches, >= 4 for restore_commit). Acceptance persists before Git runs;
|
|
701
701
|
* disconnecting only detaches the client. The same ID/intent never runs twice.
|
|
702
702
|
*/
|
|
703
703
|
start(projectId, request) {
|
|
@@ -707,7 +707,7 @@ var GitAccessApi = class {
|
|
|
707
707
|
const result = await this.mw.http.request(
|
|
708
708
|
"GET",
|
|
709
709
|
`/workspace/projects/${encodeURIComponent(projectId)}/git/operations`,
|
|
710
|
-
{ query: { active: activeOnly, actionsVersion:
|
|
710
|
+
{ query: { active: activeOnly, actionsVersion: 4 } }
|
|
711
711
|
);
|
|
712
712
|
return result.operations;
|
|
713
713
|
}
|
|
@@ -940,7 +940,7 @@ init_errors();
|
|
|
940
940
|
init_errors();
|
|
941
941
|
|
|
942
942
|
// src/version.ts
|
|
943
|
-
var SDK_VERSION = "0.1.
|
|
943
|
+
var SDK_VERSION = "0.1.23" ;
|
|
944
944
|
|
|
945
945
|
// src/daemon-binary.ts
|
|
946
946
|
function supported(platform, arch) {
|