@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/{chunk-UYBM64HP.js → chunk-I3KLDXFA.js} +1 -1
- package/dist/chunk-I3KLDXFA.js.map +1 -0
- package/dist/core.js +1 -1
- package/dist/index.js +1 -1
- package/dist/types.d.ts +10 -0
- package/package.json +1 -1
- package/src/types.ts +10 -0
- package/dist/chunk-UYBM64HP.js.map +0 -1
package/dist/core.js
CHANGED
package/dist/index.js
CHANGED
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.
|
|
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;
|