ide-assi 0.689.0 → 0.690.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
|
@@ -203983,13 +203983,7 @@ class IdeAssi extends HTMLElement
|
|
|
203983
203983
|
api.post(`/api/prompt/dir`, {
|
|
203984
203984
|
feProjectName: this.settings.feProjectName,
|
|
203985
203985
|
}).then(res => {
|
|
203986
|
-
this.#ai.prompt =
|
|
203987
|
-
mybatis: (res.mybatis || []).map(item => "/prompt/mybatis" + item),
|
|
203988
|
-
service: (res.service || []).map(item => "/prompt/service" + item),
|
|
203989
|
-
controller: (res.controller || []).map(item => "/prompt/controller" + item),
|
|
203990
|
-
react: res.react.map(item => "/prompt/react" + item),
|
|
203991
|
-
};
|
|
203992
|
-
|
|
203986
|
+
this.#ai.prompt = res;
|
|
203993
203987
|
console.log(this.#ai.prompt);
|
|
203994
203988
|
});
|
|
203995
203989
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -203979,13 +203979,7 @@ class IdeAssi extends HTMLElement
|
|
|
203979
203979
|
api.post(`/api/prompt/dir`, {
|
|
203980
203980
|
feProjectName: this.settings.feProjectName,
|
|
203981
203981
|
}).then(res => {
|
|
203982
|
-
this.#ai.prompt =
|
|
203983
|
-
mybatis: (res.mybatis || []).map(item => "/prompt/mybatis" + item),
|
|
203984
|
-
service: (res.service || []).map(item => "/prompt/service" + item),
|
|
203985
|
-
controller: (res.controller || []).map(item => "/prompt/controller" + item),
|
|
203986
|
-
react: res.react.map(item => "/prompt/react" + item),
|
|
203987
|
-
};
|
|
203988
|
-
|
|
203982
|
+
this.#ai.prompt = res;
|
|
203989
203983
|
console.log(this.#ai.prompt);
|
|
203990
203984
|
});
|
|
203991
203985
|
|
|
@@ -124,13 +124,7 @@ export class IdeAssi extends HTMLElement
|
|
|
124
124
|
api.post(`/api/prompt/dir`, {
|
|
125
125
|
feProjectName: this.settings.feProjectName,
|
|
126
126
|
}).then(res => {
|
|
127
|
-
this.#ai.prompt =
|
|
128
|
-
mybatis: (res.mybatis || []).map(item => "/prompt/mybatis" + item),
|
|
129
|
-
service: (res.service || []).map(item => "/prompt/service" + item),
|
|
130
|
-
controller: (res.controller || []).map(item => "/prompt/controller" + item),
|
|
131
|
-
react: res.react.map(item => "/prompt/react" + item),
|
|
132
|
-
};
|
|
133
|
-
|
|
127
|
+
this.#ai.prompt = res;
|
|
134
128
|
console.log(this.#ai.prompt);
|
|
135
129
|
});
|
|
136
130
|
|
package/package.json
CHANGED
|
@@ -124,13 +124,7 @@ export class IdeAssi extends HTMLElement
|
|
|
124
124
|
api.post(`/api/prompt/dir`, {
|
|
125
125
|
feProjectName: this.settings.feProjectName,
|
|
126
126
|
}).then(res => {
|
|
127
|
-
this.#ai.prompt =
|
|
128
|
-
mybatis: (res.mybatis || []).map(item => "/prompt/mybatis" + item),
|
|
129
|
-
service: (res.service || []).map(item => "/prompt/service" + item),
|
|
130
|
-
controller: (res.controller || []).map(item => "/prompt/controller" + item),
|
|
131
|
-
react: res.react.map(item => "/prompt/react" + item),
|
|
132
|
-
};
|
|
133
|
-
|
|
127
|
+
this.#ai.prompt = res;
|
|
134
128
|
console.log(this.#ai.prompt);
|
|
135
129
|
});
|
|
136
130
|
|