ide-assi 0.678.0 → 0.680.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
|
@@ -204006,12 +204006,13 @@ class IdeAssi extends HTMLElement
|
|
|
204006
204006
|
//this.shadowRoot.querySelector('ide-diff-popup').remove();
|
|
204007
204007
|
|
|
204008
204008
|
if (!this.#ai.prompt) {
|
|
204009
|
-
console.log(this.settings);
|
|
204009
|
+
console.log(this.settings, this.settings.feProjectName);
|
|
204010
204010
|
const res = await api.post(`/api/prompt/dir`, {
|
|
204011
|
-
|
|
204011
|
+
feProjectName: this.settings.feProjectName,
|
|
204012
204012
|
});
|
|
204013
204013
|
|
|
204014
204014
|
this.#ai.prompt = res;
|
|
204015
|
+
console.log(res);
|
|
204015
204016
|
}
|
|
204016
204017
|
|
|
204017
204018
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -204002,12 +204002,13 @@ class IdeAssi extends HTMLElement
|
|
|
204002
204002
|
//this.shadowRoot.querySelector('ide-diff-popup').remove();
|
|
204003
204003
|
|
|
204004
204004
|
if (!this.#ai.prompt) {
|
|
204005
|
-
console.log(this.settings);
|
|
204005
|
+
console.log(this.settings, this.settings.feProjectName);
|
|
204006
204006
|
const res = await api.post(`/api/prompt/dir`, {
|
|
204007
|
-
|
|
204007
|
+
feProjectName: this.settings.feProjectName,
|
|
204008
204008
|
});
|
|
204009
204009
|
|
|
204010
204010
|
this.#ai.prompt = res;
|
|
204011
|
+
console.log(res);
|
|
204011
204012
|
}
|
|
204012
204013
|
|
|
204013
204014
|
|
|
@@ -132,12 +132,13 @@ export class IdeAssi extends HTMLElement
|
|
|
132
132
|
//this.shadowRoot.querySelector('ide-diff-popup').remove();
|
|
133
133
|
|
|
134
134
|
if (!this.#ai.prompt) {
|
|
135
|
-
console.log(this.settings);
|
|
135
|
+
console.log(this.settings, this.settings.feProjectName);
|
|
136
136
|
const res = await api.post(`/api/prompt/dir`, {
|
|
137
|
-
|
|
137
|
+
feProjectName: this.settings.feProjectName,
|
|
138
138
|
});
|
|
139
139
|
|
|
140
140
|
this.#ai.prompt = res;
|
|
141
|
+
console.log(res);
|
|
141
142
|
}
|
|
142
143
|
|
|
143
144
|
|
package/package.json
CHANGED
|
@@ -132,12 +132,13 @@ export class IdeAssi extends HTMLElement
|
|
|
132
132
|
//this.shadowRoot.querySelector('ide-diff-popup').remove();
|
|
133
133
|
|
|
134
134
|
if (!this.#ai.prompt) {
|
|
135
|
-
console.log(this.settings);
|
|
135
|
+
console.log(this.settings, this.settings.feProjectName);
|
|
136
136
|
const res = await api.post(`/api/prompt/dir`, {
|
|
137
|
-
|
|
137
|
+
feProjectName: this.settings.feProjectName,
|
|
138
138
|
});
|
|
139
139
|
|
|
140
140
|
this.#ai.prompt = res;
|
|
141
|
+
console.log(res);
|
|
141
142
|
}
|
|
142
143
|
|
|
143
144
|
|