@xpert-ai/plugin-sdk 3.12.1 → 3.12.2
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/CHANGELOG.md +9 -0
- package/index.cjs.js +8 -0
- package/index.esm.js +1 -0
- package/package.json +1 -1
- package/src/lib/view-extension/index.d.ts +1 -0
package/CHANGELOG.md
CHANGED
package/index.cjs.js
CHANGED
|
@@ -4520,6 +4520,14 @@ function escapeHtmlAttribute(value) {
|
|
|
4520
4520
|
|
|
4521
4521
|
const VIEW_EXTENSION_CACHE_SERVICE_TOKEN = 'XPERT_PLUGIN_VIEW_EXTENSION_CACHE_SERVICE';
|
|
4522
4522
|
|
|
4523
|
+
Object.defineProperty(exports, "ASSISTANT_CHAT_SEND_MESSAGE_COMMAND", {
|
|
4524
|
+
enumerable: true,
|
|
4525
|
+
get: function () { return contracts.ASSISTANT_CHAT_SEND_MESSAGE_COMMAND; }
|
|
4526
|
+
});
|
|
4527
|
+
Object.defineProperty(exports, "ASSISTANT_CONTEXT_SET_COMMAND", {
|
|
4528
|
+
enumerable: true,
|
|
4529
|
+
get: function () { return contracts.ASSISTANT_CONTEXT_SET_COMMAND; }
|
|
4530
|
+
});
|
|
4523
4531
|
exports.ACCOUNT_BINDING_PERMISSION_SERVICE_TOKEN = ACCOUNT_BINDING_PERMISSION_SERVICE_TOKEN;
|
|
4524
4532
|
exports.AGENT_CHAT_DISPATCH_MESSAGE_TYPE = AGENT_CHAT_DISPATCH_MESSAGE_TYPE;
|
|
4525
4533
|
exports.AGENT_MIDDLEWARE_STRATEGY = AGENT_MIDDLEWARE_STRATEGY;
|
package/index.esm.js
CHANGED
|
@@ -4,6 +4,7 @@ import { pick } from 'lodash-es';
|
|
|
4
4
|
import { DiscoveryService, Reflector } from '@nestjs/core';
|
|
5
5
|
import { Subject, filter } from 'rxjs';
|
|
6
6
|
import { LanguagesEnum, AiModelTypeEnum, ParameterType, PriceType, FetchFrom, ModelFeature, ModelPropertyKey } from '@xpert-ai/contracts';
|
|
7
|
+
export { ASSISTANT_CHAT_SEND_MESSAGE_COMMAND, ASSISTANT_CONTEXT_SET_COMMAND } from '@xpert-ai/contracts';
|
|
7
8
|
import { AsyncLocalStorage } from 'node:async_hooks';
|
|
8
9
|
import { ExtractJwt } from 'passport-jwt';
|
|
9
10
|
import { verify, JsonWebTokenError } from 'jsonwebtoken';
|
package/package.json
CHANGED