@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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @xpert-ai/plugin-sdk
2
2
 
3
+ ## 3.12.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f23228b: client commands for extension view
8
+ - Updated dependencies [e6528c8]
9
+ - Updated dependencies [f23228b]
10
+ - @xpert-ai/contracts@3.13.0
11
+
3
12
  ## 3.12.1
4
13
 
5
14
  ### Patch Changes
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xpert-ai/plugin-sdk",
3
- "version": "3.12.1",
3
+ "version": "3.12.2",
4
4
  "license": "AGPL-3.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -3,3 +3,4 @@ export * from './provider.interface';
3
3
  export * from './provider.registry';
4
4
  export * from './remote-component-html';
5
5
  export * from './tokens';
6
+ export { ASSISTANT_CHAT_SEND_MESSAGE_COMMAND, ASSISTANT_CONTEXT_SET_COMMAND } from '@xpert-ai/contracts';