@scheduler-systems/gal-run 0.0.663 → 0.0.665

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.
Files changed (2) hide show
  1. package/dist/index.cjs +8 -7
  2. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -3881,7 +3881,7 @@ var cliVersion, defaultApiUrl, BUILD_CONSTANTS, constants_default;
3881
3881
  var init_constants = __esm({
3882
3882
  "module_6"() {
3883
3883
  "use strict";
3884
- cliVersion = true ? "0.0.663" : "0.0.0-dev";
3884
+ cliVersion = true ? "0.0.665" : "0.0.0-dev";
3885
3885
  defaultApiUrl = true ? "https://api.gal.run" : "http://localhost:3000";
3886
3886
  BUILD_CONSTANTS = Object.freeze([cliVersion, defaultApiUrl]);
3887
3887
  constants_default = BUILD_CONSTANTS;
@@ -4301,7 +4301,8 @@ function buildPnpmUnexpectedStoreRetryCommand(command, output) {
4301
4301
  if (!parsed?.linkedStoreDir) {
4302
4302
  return null;
4303
4303
  }
4304
- return `${command} --store-dir ${quoteShellArg(parsed.linkedStoreDir)}`;
4304
+ const linkedStoreBaseDir = /[/\\]v\d+$/.test(parsed.linkedStoreDir) ? (0, import_path.dirname)(parsed.linkedStoreDir) : parsed.linkedStoreDir;
4305
+ return `${command} --store-dir ${quoteShellArg(linkedStoreBaseDir)}`;
4305
4306
  }
4306
4307
  function buildInstallCommand(method, operation, options = {}) {
4307
4308
  const version2 = normalizeInstallVersion(options.version);
@@ -11911,7 +11912,7 @@ function detectEnvironment() {
11911
11912
  return "dev";
11912
11913
  }
11913
11914
  try {
11914
- const version2 = true ? "0.0.663" : void 0;
11915
+ const version2 = true ? "0.0.665" : void 0;
11915
11916
  if (version2 && version2.includes("-local")) {
11916
11917
  return "dev";
11917
11918
  }
@@ -14592,7 +14593,7 @@ function getId() {
14592
14593
  }
14593
14594
  function getCliVersion() {
14594
14595
  try {
14595
- return true ? "0.0.663" : "0.0.0-dev";
14596
+ return true ? "0.0.665" : "0.0.0-dev";
14596
14597
  } catch {
14597
14598
  return "0.0.0-dev";
14598
14599
  }
@@ -187669,7 +187670,7 @@ var init_gal_code_session_collection = __esm({
187669
187670
  });
187670
187671
 
187671
187672
  function resolveCliVersion() {
187672
- return true ? "0.0.663" : "0.0.0-dev";
187673
+ return true ? "0.0.665" : "0.0.0-dev";
187673
187674
  }
187674
187675
  function resolveGalCodeRunnerAsset(version2) {
187675
187676
  const platformMap = {
@@ -188044,7 +188045,7 @@ async function uploadSessionArchive(config, cwd, commandArgs, startedAt, exitCod
188044
188045
  return;
188045
188046
  }
188046
188047
  const endedAt = /* @__PURE__ */ new Date();
188047
- const wrapperVersion = true ? "0.0.663" : "0.0.0-dev";
188048
+ const wrapperVersion = true ? "0.0.665" : "0.0.0-dev";
188048
188049
  const model = childEnv.GAL_CODE_MODEL ?? "glm-vertex/glm-5";
188049
188050
  await uploadGalCodeSessionArchive(
188050
188051
  {
@@ -239725,7 +239726,7 @@ var init_index = __esm({
239725
239726
  }
239726
239727
  });
239727
239728
 
239728
- var cliVersion10 = true ? "0.0.663" : "0.0.0-dev";
239729
+ var cliVersion10 = true ? "0.0.665" : "0.0.0-dev";
239729
239730
  var args = process.argv.slice(2);
239730
239731
  var requestedGlobalHelp = args.length === 1 && (args[0] === "--help" || args[0] === "-h");
239731
239732
  var requestedVersion = args.length === 1 && (args[0] === "--version" || args[0] === "-V");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scheduler-systems/gal-run",
3
- "version": "0.0.663",
3
+ "version": "0.0.665",
4
4
  "description": "GAL CLI - Command-line tool for managing AI agent configurations across your organization",
5
5
  "license": "Elastic-2.0",
6
6
  "private": false,