@opengeni/sdk 0.35.0 → 0.36.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/core.js CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  OpenGeniStreamError,
9
9
  isRetryableStreamError,
10
10
  resolveWorkspaceVoiceInputEnabled
11
- } from "./chunk-UYBM64HP.js";
11
+ } from "./chunk-I3KLDXFA.js";
12
12
  export {
13
13
  OPENGENI_API_CONTRACT_HEADER,
14
14
  OPENGENI_API_CONTRACT_REVISION,
package/dist/index.js CHANGED
@@ -21,7 +21,7 @@ import {
21
21
  resolveWorkspaceVoiceInputEnabled,
22
22
  streamSessionEvents,
23
23
  streamWorkspaceControlEvents
24
- } from "./chunk-UYBM64HP.js";
24
+ } from "./chunk-I3KLDXFA.js";
25
25
 
26
26
  // src/artifact-client.ts
27
27
  var OpenGeniClient2 = class extends OpenGeniClient {
package/dist/types.d.ts CHANGED
@@ -2651,6 +2651,11 @@ export type CapabilityPack = {
2651
2651
  category: string;
2652
2652
  version: string;
2653
2653
  sandboxImage?: string | undefined;
2654
+ sandboxProviderImages?: {
2655
+ modal?: {
2656
+ imageId: string;
2657
+ } | undefined;
2658
+ } | undefined;
2654
2659
  skills: CapabilityPackSkill[];
2655
2660
  tools: ToolRef[];
2656
2661
  connectors: CapabilityPackConnector[];
@@ -2668,6 +2673,11 @@ export type RegisterCapabilityPackRequest = {
2668
2673
  category: string;
2669
2674
  version: string;
2670
2675
  sandboxImage?: string | undefined;
2676
+ sandboxProviderImages?: {
2677
+ modal?: {
2678
+ imageId: string;
2679
+ } | undefined;
2680
+ } | undefined;
2671
2681
  skills?: {
2672
2682
  name: string;
2673
2683
  description?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeni/sdk",
3
- "version": "0.35.0",
3
+ "version": "0.36.0",
4
4
  "description": "Framework-agnostic TypeScript SDK for the OpenGeni API: typed client, session lifecycle, SSE event streaming with reconnect + replay-by-sequence, and proxy re-streaming helpers.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
package/src/types.ts CHANGED
@@ -3412,6 +3412,11 @@ export type CapabilityPack = {
3412
3412
  category: string;
3413
3413
  version: string;
3414
3414
  sandboxImage?: string | undefined;
3415
+ sandboxProviderImages?:
3416
+ | {
3417
+ modal?: { imageId: string } | undefined;
3418
+ }
3419
+ | undefined;
3415
3420
  skills: CapabilityPackSkill[];
3416
3421
  tools: ToolRef[];
3417
3422
  connectors: CapabilityPackConnector[];
@@ -3430,6 +3435,11 @@ export type RegisterCapabilityPackRequest = {
3430
3435
  category: string;
3431
3436
  version: string;
3432
3437
  sandboxImage?: string | undefined;
3438
+ sandboxProviderImages?:
3439
+ | {
3440
+ modal?: { imageId: string } | undefined;
3441
+ }
3442
+ | undefined;
3433
3443
  skills?:
3434
3444
  | {
3435
3445
  name: string;