ide-assi 0.80.0 → 0.81.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
|
@@ -193660,7 +193660,7 @@ class ideAssiSettings extends HTMLElement
|
|
|
193660
193660
|
}
|
|
193661
193661
|
|
|
193662
193662
|
get geminiApiKey() { return this.shadowRoot.querySelector("#geminiApiKey").value; };
|
|
193663
|
-
set geminiApiKey(v) { this.shadowRoot.querySelector("#geminiApiKey").value = v; };
|
|
193663
|
+
set geminiApiKey(v) { console.log("::::::::", v); this.shadowRoot.querySelector("#geminiApiKey").value = v; };
|
|
193664
193664
|
|
|
193665
193665
|
get openaiApiKey() { return this.shadowRoot.querySelector("#openaiApiKey").value };
|
|
193666
193666
|
set openaiApiKey(v) { this.shadowRoot.querySelector("#openaiApiKey").value = v; };
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193656,7 +193656,7 @@ class ideAssiSettings extends HTMLElement
|
|
|
193656
193656
|
}
|
|
193657
193657
|
|
|
193658
193658
|
get geminiApiKey() { return this.shadowRoot.querySelector("#geminiApiKey").value; };
|
|
193659
|
-
set geminiApiKey(v) { this.shadowRoot.querySelector("#geminiApiKey").value = v; };
|
|
193659
|
+
set geminiApiKey(v) { console.log("::::::::", v); this.shadowRoot.querySelector("#geminiApiKey").value = v; };
|
|
193660
193660
|
|
|
193661
193661
|
get openaiApiKey() { return this.shadowRoot.querySelector("#openaiApiKey").value };
|
|
193662
193662
|
set openaiApiKey(v) { this.shadowRoot.querySelector("#openaiApiKey").value = v; };
|
|
@@ -10,7 +10,7 @@ class ideAssiSettings extends HTMLElement
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
get geminiApiKey() { return this.shadowRoot.querySelector("#geminiApiKey").value; };
|
|
13
|
-
set geminiApiKey(v) { this.shadowRoot.querySelector("#geminiApiKey").value = v; };
|
|
13
|
+
set geminiApiKey(v) { console.log("::::::::", v); this.shadowRoot.querySelector("#geminiApiKey").value = v; };
|
|
14
14
|
|
|
15
15
|
get openaiApiKey() { return this.shadowRoot.querySelector("#openaiApiKey").value };
|
|
16
16
|
set openaiApiKey(v) { this.shadowRoot.querySelector("#openaiApiKey").value = v; };
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@ class ideAssiSettings extends HTMLElement
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
get geminiApiKey() { return this.shadowRoot.querySelector("#geminiApiKey").value; };
|
|
13
|
-
set geminiApiKey(v) { this.shadowRoot.querySelector("#geminiApiKey").value = v; };
|
|
13
|
+
set geminiApiKey(v) { console.log("::::::::", v); this.shadowRoot.querySelector("#geminiApiKey").value = v; };
|
|
14
14
|
|
|
15
15
|
get openaiApiKey() { return this.shadowRoot.querySelector("#openaiApiKey").value };
|
|
16
16
|
set openaiApiKey(v) { this.shadowRoot.querySelector("#openaiApiKey").value = v; };
|