ide-assi 0.44.0 → 0.45.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.
@@ -193349,7 +193349,7 @@ class IdeAi
193349
193349
  method: "POST",
193350
193350
  headers: { "Content-Type": "application/json" },
193351
193351
  body: JSON.stringify({
193352
- packageName: "ide.assi.be." + this.#toJavaPackage(res.service),
193352
+ packageName: "ide.assi.be." + this.#toJavaPackage(res.service).replace(".service", ""),
193353
193353
  userPrompt: userPrompt,
193354
193354
  url: res.menu.url,
193355
193355
  tables: columnInfo.list,
@@ -193345,7 +193345,7 @@ class IdeAi
193345
193345
  method: "POST",
193346
193346
  headers: { "Content-Type": "application/json" },
193347
193347
  body: JSON.stringify({
193348
- packageName: "ide.assi.be." + this.#toJavaPackage(res.service),
193348
+ packageName: "ide.assi.be." + this.#toJavaPackage(res.service).replace(".service", ""),
193349
193349
  userPrompt: userPrompt,
193350
193350
  url: res.menu.url,
193351
193351
  tables: columnInfo.list,
@@ -92,7 +92,7 @@ export class IdeAi
92
92
  method: "POST",
93
93
  headers: { "Content-Type": "application/json" },
94
94
  body: JSON.stringify({
95
- packageName: "ide.assi.be." + this.#toJavaPackage(res.service),
95
+ packageName: "ide.assi.be." + this.#toJavaPackage(res.service).replace(".service", ""),
96
96
  userPrompt: userPrompt,
97
97
  url: res.menu.url,
98
98
  tables: columnInfo.list,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.44.0",
4
+ "version": "0.45.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -92,7 +92,7 @@ export class IdeAi
92
92
  method: "POST",
93
93
  headers: { "Content-Type": "application/json" },
94
94
  body: JSON.stringify({
95
- packageName: "ide.assi.be." + this.#toJavaPackage(res.service),
95
+ packageName: "ide.assi.be." + this.#toJavaPackage(res.service).replace(".service", ""),
96
96
  userPrompt: userPrompt,
97
97
  url: res.menu.url,
98
98
  tables: columnInfo.list,