ide-assi 0.180.0 → 0.181.0

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.
@@ -193577,6 +193577,9 @@ class IdeAi
193577
193577
  throw new Error(o);
193578
193578
  }
193579
193579
 
193580
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
193581
+ console.log(a);
193582
+
193580
193583
  return o.result;
193581
193584
  };
193582
193585
 
@@ -193573,6 +193573,9 @@ class IdeAi
193573
193573
  throw new Error(o);
193574
193574
  }
193575
193575
 
193576
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
193577
+ console.log(a);
193578
+
193576
193579
  return o.result;
193577
193580
  };
193578
193581
 
@@ -1,5 +1,5 @@
1
1
  import ninegrid from "ninegrid2";
2
- import {IdeUtils} from "./ideUtils.js";
2
+ import { IdeUtils } from "./ideUtils.js";
3
3
  import { HumanMessage, SystemMessage } from '@langchain/core/messages';
4
4
  import { ChatGoogleGenerativeAI } from "@langchain/google-genai";
5
5
  import { Ollama } from "@langchain/ollama";
@@ -201,6 +201,9 @@ export class IdeAi
201
201
  throw new Error(o);
202
202
  }
203
203
 
204
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
205
+ console.log(a);
206
+
204
207
  return o.result;
205
208
  };
206
209
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.180.0",
4
+ "version": "0.181.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -1,5 +1,5 @@
1
1
  import ninegrid from "ninegrid2";
2
- import {IdeUtils} from "./ideUtils.js";
2
+ import { IdeUtils } from "./ideUtils.js";
3
3
  import { HumanMessage, SystemMessage } from '@langchain/core/messages';
4
4
  import { ChatGoogleGenerativeAI } from "@langchain/google-genai";
5
5
  import { Ollama } from "@langchain/ollama";
@@ -201,6 +201,9 @@ export class IdeAi
201
201
  throw new Error(o);
202
202
  }
203
203
 
204
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
205
+ console.log(a);
206
+
204
207
  return o.result;
205
208
  };
206
209