ide-assi 0.666.0 → 0.667.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.
@@ -237612,7 +237612,7 @@ class aiNatualInput extends HTMLElement
237612
237612
 
237613
237613
  let params = {};
237614
237614
  if (this.#target.value) {
237615
- params = { "_whereClause": await ai.generateWhereCause2(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
237615
+ params = { "_whereClause": await this.#ai.generateWhereCause2(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
237616
237616
  }
237617
237617
 
237618
237618
  this.#selectFunc.call(this, params);
@@ -237608,7 +237608,7 @@ class aiNatualInput extends HTMLElement
237608
237608
 
237609
237609
  let params = {};
237610
237610
  if (this.#target.value) {
237611
- params = { "_whereClause": await ai.generateWhereCause2(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
237611
+ params = { "_whereClause": await this.#ai.generateWhereCause2(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
237612
237612
  }
237613
237613
 
237614
237614
  this.#selectFunc.call(this, params);
@@ -37,7 +37,7 @@ class aiNatualInput extends HTMLElement
37
37
 
38
38
  let params = {};
39
39
  if (this.#target.value) {
40
- params = { "_whereClause": await ai.generateWhereCause2(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
40
+ params = { "_whereClause": await this.#ai.generateWhereCause2(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
41
41
  }
42
42
 
43
43
  this.#selectFunc.call(this, params);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.666.0",
4
+ "version": "0.667.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -37,7 +37,7 @@ class aiNatualInput extends HTMLElement
37
37
 
38
38
  let params = {};
39
39
  if (this.#target.value) {
40
- params = { "_whereClause": await ai.generateWhereCause2(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
40
+ params = { "_whereClause": await this.#ai.generateWhereCause2(this.#xmlPath, this.#queryId, this.#target.value, this.#apiKey) };
41
41
  }
42
42
 
43
43
  this.#selectFunc.call(this, params);