@widget-js/core 24.1.1-beta.84 → 24.1.1-beta.85
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/index.cjs +7 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3330,6 +3330,12 @@ var UserApiEvent = /* @__PURE__ */ ((UserApiEvent2) => {
|
|
|
3330
3330
|
return UserApiEvent2;
|
|
3331
3331
|
})(UserApiEvent || {});
|
|
3332
3332
|
|
|
3333
|
+
// src/api/interface/IAiApi.ts
|
|
3334
|
+
var AiApiEvent = /* @__PURE__ */ ((AiApiEvent2) => {
|
|
3335
|
+
AiApiEvent2["CONFIG_UPDATED"] = `channel::cn.widgetjs.core.ai.config.updated`;
|
|
3336
|
+
return AiApiEvent2;
|
|
3337
|
+
})(AiApiEvent || {});
|
|
3338
|
+
|
|
3333
3339
|
// src/api/WidgetPackageApi.ts
|
|
3334
3340
|
var WidgetPackageApiImpl = class extends BaseApi {
|
|
3335
3341
|
getChannel() {
|
|
@@ -3555,6 +3561,7 @@ var AiApiImpl = class extends BaseApi {
|
|
|
3555
3561
|
var AiApi = new AiApiImpl();
|
|
3556
3562
|
|
|
3557
3563
|
exports.AiApi = AiApi;
|
|
3564
|
+
exports.AiApiEvent = AiApiEvent;
|
|
3558
3565
|
exports.ApiConstants = ApiConstants;
|
|
3559
3566
|
exports.AppApi = AppApi;
|
|
3560
3567
|
exports.AppApiConstants = AppApiConstants;
|