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.
package/dist/bundle.cjs.js
CHANGED
|
@@ -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);
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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
|
@@ -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);
|