@pellux/goodvibes-sdk 0.33.8 → 0.33.10
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/browser-knowledge.d.ts +27 -0
- package/dist/browser-knowledge.d.ts.map +1 -1
- package/dist/browser-knowledge.js +12 -0
- package/dist/contracts/artifacts/operator-contract.json +441 -6
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/platform/companion/companion-chat-manager.d.ts +38 -2
- package/dist/platform/companion/companion-chat-manager.d.ts.map +1 -1
- package/dist/platform/companion/companion-chat-manager.js +162 -10
- package/dist/platform/companion/companion-chat-routes.d.ts.map +1 -1
- package/dist/platform/companion/companion-chat-routes.js +66 -4
- package/dist/platform/companion/companion-chat-types.d.ts +25 -0
- package/dist/platform/companion/companion-chat-types.d.ts.map +1 -1
- package/dist/platform/companion/index.d.ts +2 -2
- package/dist/platform/companion/index.d.ts.map +1 -1
- package/dist/platform/control-plane/conversation-message.d.ts +6 -0
- package/dist/platform/control-plane/conversation-message.d.ts.map +1 -1
- package/dist/platform/control-plane/conversation-message.js +0 -8
- package/dist/platform/control-plane/method-catalog-control-core.d.ts.map +1 -1
- package/dist/platform/control-plane/method-catalog-control-core.js +22 -3
- package/dist/platform/control-plane/operator-contract-schemas-runtime.d.ts +1 -0
- package/dist/platform/control-plane/operator-contract-schemas-runtime.d.ts.map +1 -1
- package/dist/platform/control-plane/operator-contract-schemas-runtime.js +26 -1
- package/dist/platform/daemon/facade-composition.d.ts.map +1 -1
- package/dist/platform/daemon/facade-composition.js +1 -0
- package/dist/platform/providers/builtin-registry.d.ts.map +1 -1
- package/dist/platform/providers/builtin-registry.js +1 -0
- package/dist/platform/types/generated/foundation-client-types.d.ts +1 -1
- package/dist/platform/types/generated/foundation-client-types.d.ts.map +1 -1
- package/dist/platform/types/index.d.ts +1 -1
- package/dist/platform/types/index.d.ts.map +1 -1
- package/dist/platform/version.js +1 -1
- package/package.json +9 -9
|
@@ -194,6 +194,18 @@ declare const KNOWLEDGE_BROWSER_ROUTES: {
|
|
|
194
194
|
readonly method: "GET";
|
|
195
195
|
readonly path: "/api/knowledge/usage";
|
|
196
196
|
};
|
|
197
|
+
readonly 'artifacts.create': {
|
|
198
|
+
readonly method: "POST";
|
|
199
|
+
readonly path: "/api/artifacts";
|
|
200
|
+
};
|
|
201
|
+
readonly 'artifacts.get': {
|
|
202
|
+
readonly method: "GET";
|
|
203
|
+
readonly path: "/api/artifacts/{artifactId}";
|
|
204
|
+
};
|
|
205
|
+
readonly 'artifacts.list': {
|
|
206
|
+
readonly method: "GET";
|
|
207
|
+
readonly path: "/api/artifacts";
|
|
208
|
+
};
|
|
197
209
|
readonly 'companion.chat.messages.create': {
|
|
198
210
|
readonly method: "POST";
|
|
199
211
|
readonly path: "/api/companion/chat/sessions/{sessionId}/messages";
|
|
@@ -210,6 +222,14 @@ declare const KNOWLEDGE_BROWSER_ROUTES: {
|
|
|
210
222
|
readonly method: "GET";
|
|
211
223
|
readonly path: "/api/companion/chat/sessions/{sessionId}";
|
|
212
224
|
};
|
|
225
|
+
readonly 'companion.chat.sessions.list': {
|
|
226
|
+
readonly method: "GET";
|
|
227
|
+
readonly path: "/api/companion/chat/sessions";
|
|
228
|
+
};
|
|
229
|
+
readonly 'companion.chat.sessions.update': {
|
|
230
|
+
readonly method: "PATCH";
|
|
231
|
+
readonly path: "/api/companion/chat/sessions/{sessionId}";
|
|
232
|
+
};
|
|
213
233
|
};
|
|
214
234
|
declare const KNOWLEDGE_BROWSER_DOMAINS: readonly ["session", "turn", "tasks", "providers", "knowledge", "control-plane"];
|
|
215
235
|
export type BrowserKnowledgeMethodId = SharedBrowserMethodId | Extract<keyof typeof KNOWLEDGE_BROWSER_ROUTES, OperatorTypedMethodId>;
|
|
@@ -225,6 +245,8 @@ export interface BrowserKnowledgeSdk extends ScopedBrowserSdk<BrowserKnowledgeMe
|
|
|
225
245
|
readonly sessions: {
|
|
226
246
|
create(input?: OperatorMethodInput<'companion.chat.sessions.create'>): Promise<OperatorMethodOutput<'companion.chat.sessions.create'>>;
|
|
227
247
|
get(sessionId: string): Promise<OperatorMethodOutput<'companion.chat.sessions.get'>>;
|
|
248
|
+
list(input?: OperatorMethodInput<'companion.chat.sessions.list'>): Promise<OperatorMethodOutput<'companion.chat.sessions.list'>>;
|
|
249
|
+
update(sessionId: string, input: Omit<OperatorMethodInput<'companion.chat.sessions.update'>, 'sessionId'>): Promise<OperatorMethodOutput<'companion.chat.sessions.update'>>;
|
|
228
250
|
};
|
|
229
251
|
readonly messages: {
|
|
230
252
|
create(sessionId: string, input: Omit<OperatorMethodInput<'companion.chat.messages.create'>, 'sessionId'>): Promise<OperatorMethodOutput<'companion.chat.messages.create'>>;
|
|
@@ -234,6 +256,11 @@ export interface BrowserKnowledgeSdk extends ScopedBrowserSdk<BrowserKnowledgeMe
|
|
|
234
256
|
stream(sessionId: string, handlers: ServerSentEventHandlers, options?: ScopedEventStreamOptions): Promise<() => void>;
|
|
235
257
|
};
|
|
236
258
|
};
|
|
259
|
+
readonly artifacts: {
|
|
260
|
+
create(input: OperatorMethodInput<'artifacts.create'>): Promise<OperatorMethodOutput<'artifacts.create'>>;
|
|
261
|
+
get(artifactId: string): Promise<OperatorMethodOutput<'artifacts.get'>>;
|
|
262
|
+
list(): Promise<OperatorMethodOutput<'artifacts.list'>>;
|
|
263
|
+
};
|
|
237
264
|
}
|
|
238
265
|
export declare function createBrowserKnowledgeSdk(options?: ScopedBrowserSdkOptions): BrowserKnowledgeSdk;
|
|
239
266
|
export { forScopedBrowserSession as forSession };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"browser-knowledge.d.ts","sourceRoot":"","sources":["../src/browser-knowledge.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,oBAAoB,EACpB,qBAAqB,EACtB,MAAM,+DAA+D,CAAC;AACvE,OAAO,EAEL,uBAAuB,EAGvB,KAAK,gBAAgB,EACrB,KAAK,wBAAwB,EAC7B,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC3B,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAEnE,QAAA,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"browser-knowledge.d.ts","sourceRoot":"","sources":["../src/browser-knowledge.ts"],"names":[],"mappings":"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"}
|
|
@@ -48,10 +48,15 @@ const KNOWLEDGE_BROWSER_ROUTES = {
|
|
|
48
48
|
'knowledge.sources.list': { method: 'GET', path: '/api/knowledge/sources' },
|
|
49
49
|
'knowledge.status': { method: 'GET', path: '/api/knowledge/status' },
|
|
50
50
|
'knowledge.usage.list': { method: 'GET', path: '/api/knowledge/usage' },
|
|
51
|
+
'artifacts.create': { method: 'POST', path: '/api/artifacts' },
|
|
52
|
+
'artifacts.get': { method: 'GET', path: '/api/artifacts/{artifactId}' },
|
|
53
|
+
'artifacts.list': { method: 'GET', path: '/api/artifacts' },
|
|
51
54
|
'companion.chat.messages.create': { method: 'POST', path: '/api/companion/chat/sessions/{sessionId}/messages' },
|
|
52
55
|
'companion.chat.messages.list': { method: 'GET', path: '/api/companion/chat/sessions/{sessionId}/messages' },
|
|
53
56
|
'companion.chat.sessions.create': { method: 'POST', path: '/api/companion/chat/sessions' },
|
|
54
57
|
'companion.chat.sessions.get': { method: 'GET', path: '/api/companion/chat/sessions/{sessionId}' },
|
|
58
|
+
'companion.chat.sessions.list': { method: 'GET', path: '/api/companion/chat/sessions' },
|
|
59
|
+
'companion.chat.sessions.update': { method: 'PATCH', path: '/api/companion/chat/sessions/{sessionId}' },
|
|
55
60
|
};
|
|
56
61
|
const KNOWLEDGE_BROWSER_DOMAINS = [
|
|
57
62
|
'session',
|
|
@@ -79,6 +84,8 @@ export function createBrowserKnowledgeSdk(options = {}) {
|
|
|
79
84
|
sessions: {
|
|
80
85
|
create: (input) => invoke('companion.chat.sessions.create', input),
|
|
81
86
|
get: (id) => invoke('companion.chat.sessions.get', { sessionId: id }),
|
|
87
|
+
list: (input) => invoke('companion.chat.sessions.list', input),
|
|
88
|
+
update: (id, input) => invoke('companion.chat.sessions.update', { sessionId: id, ...input }),
|
|
82
89
|
},
|
|
83
90
|
messages: {
|
|
84
91
|
create: (id, input) => invoke('companion.chat.messages.create', { sessionId: id, ...input }),
|
|
@@ -88,6 +95,11 @@ export function createBrowserKnowledgeSdk(options = {}) {
|
|
|
88
95
|
stream: (id, handlers, options) => sdk.streams.open('/api/companion/chat/sessions/' + id + '/events', handlers, options),
|
|
89
96
|
},
|
|
90
97
|
},
|
|
98
|
+
artifacts: {
|
|
99
|
+
create: (input) => invoke('artifacts.create', input),
|
|
100
|
+
get: (artifactId) => invoke('artifacts.get', { artifactId }),
|
|
101
|
+
list: () => invoke('artifacts.list'),
|
|
102
|
+
},
|
|
91
103
|
};
|
|
92
104
|
}
|
|
93
105
|
export { forScopedBrowserSession as forSession };
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.33.
|
|
6
|
+
"version": "0.33.10"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -20157,7 +20157,7 @@
|
|
|
20157
20157
|
{
|
|
20158
20158
|
"id": "companion.chat.messages.create",
|
|
20159
20159
|
"title": "Send Companion Chat Message",
|
|
20160
|
-
"description": "Post a user message to a companion-chat session. Accepts either `body` or `content` in the payload; `body` wins when both are provided.",
|
|
20160
|
+
"description": "Post a user message to a companion-chat session. Accepts either `body` or `content` in the payload; `body` wins when both are provided. Attachments reference artifacts created through `artifacts.create`.",
|
|
20161
20161
|
"category": "companion",
|
|
20162
20162
|
"source": "builtin",
|
|
20163
20163
|
"access": "authenticated",
|
|
@@ -20181,6 +20181,29 @@
|
|
|
20181
20181
|
"content": {
|
|
20182
20182
|
"type": "string"
|
|
20183
20183
|
},
|
|
20184
|
+
"attachments": {
|
|
20185
|
+
"type": "array",
|
|
20186
|
+
"items": {
|
|
20187
|
+
"type": "object",
|
|
20188
|
+
"properties": {
|
|
20189
|
+
"artifactId": {
|
|
20190
|
+
"type": "string"
|
|
20191
|
+
},
|
|
20192
|
+
"label": {
|
|
20193
|
+
"type": "string"
|
|
20194
|
+
},
|
|
20195
|
+
"metadata": {
|
|
20196
|
+
"type": "object",
|
|
20197
|
+
"properties": {},
|
|
20198
|
+
"additionalProperties": false
|
|
20199
|
+
}
|
|
20200
|
+
},
|
|
20201
|
+
"required": [
|
|
20202
|
+
"artifactId"
|
|
20203
|
+
],
|
|
20204
|
+
"additionalProperties": false
|
|
20205
|
+
}
|
|
20206
|
+
},
|
|
20184
20207
|
"metadata": {
|
|
20185
20208
|
"type": "object",
|
|
20186
20209
|
"properties": {},
|
|
@@ -20260,6 +20283,91 @@
|
|
|
20260
20283
|
"content": {
|
|
20261
20284
|
"type": "string"
|
|
20262
20285
|
},
|
|
20286
|
+
"attachments": {
|
|
20287
|
+
"type": "array",
|
|
20288
|
+
"items": {
|
|
20289
|
+
"type": "object",
|
|
20290
|
+
"properties": {
|
|
20291
|
+
"id": {
|
|
20292
|
+
"type": "string"
|
|
20293
|
+
},
|
|
20294
|
+
"artifactId": {
|
|
20295
|
+
"type": "string"
|
|
20296
|
+
},
|
|
20297
|
+
"kind": {
|
|
20298
|
+
"type": "string"
|
|
20299
|
+
},
|
|
20300
|
+
"mimeType": {
|
|
20301
|
+
"type": "string"
|
|
20302
|
+
},
|
|
20303
|
+
"filename": {
|
|
20304
|
+
"type": "string"
|
|
20305
|
+
},
|
|
20306
|
+
"sizeBytes": {
|
|
20307
|
+
"type": "number"
|
|
20308
|
+
},
|
|
20309
|
+
"sha256": {
|
|
20310
|
+
"type": "string"
|
|
20311
|
+
},
|
|
20312
|
+
"createdAt": {
|
|
20313
|
+
"type": "number"
|
|
20314
|
+
},
|
|
20315
|
+
"expiresAt": {
|
|
20316
|
+
"type": "number"
|
|
20317
|
+
},
|
|
20318
|
+
"sourceUri": {
|
|
20319
|
+
"type": "string"
|
|
20320
|
+
},
|
|
20321
|
+
"acquisitionMode": {
|
|
20322
|
+
"type": "string"
|
|
20323
|
+
},
|
|
20324
|
+
"fetchMode": {
|
|
20325
|
+
"type": "string"
|
|
20326
|
+
},
|
|
20327
|
+
"label": {
|
|
20328
|
+
"type": "string"
|
|
20329
|
+
},
|
|
20330
|
+
"metadata": {
|
|
20331
|
+
"type": "object",
|
|
20332
|
+
"additionalProperties": {
|
|
20333
|
+
"anyOf": [
|
|
20334
|
+
{
|
|
20335
|
+
"type": "string"
|
|
20336
|
+
},
|
|
20337
|
+
{
|
|
20338
|
+
"type": "number"
|
|
20339
|
+
},
|
|
20340
|
+
{
|
|
20341
|
+
"type": "boolean"
|
|
20342
|
+
},
|
|
20343
|
+
{
|
|
20344
|
+
"type": "null"
|
|
20345
|
+
},
|
|
20346
|
+
{
|
|
20347
|
+
"type": "object",
|
|
20348
|
+
"additionalProperties": {}
|
|
20349
|
+
},
|
|
20350
|
+
{
|
|
20351
|
+
"type": "array",
|
|
20352
|
+
"items": {}
|
|
20353
|
+
}
|
|
20354
|
+
]
|
|
20355
|
+
}
|
|
20356
|
+
}
|
|
20357
|
+
},
|
|
20358
|
+
"required": [
|
|
20359
|
+
"id",
|
|
20360
|
+
"artifactId",
|
|
20361
|
+
"kind",
|
|
20362
|
+
"mimeType",
|
|
20363
|
+
"sizeBytes",
|
|
20364
|
+
"sha256",
|
|
20365
|
+
"createdAt",
|
|
20366
|
+
"metadata"
|
|
20367
|
+
],
|
|
20368
|
+
"additionalProperties": true
|
|
20369
|
+
}
|
|
20370
|
+
},
|
|
20263
20371
|
"createdAt": {
|
|
20264
20372
|
"type": "number"
|
|
20265
20373
|
}
|
|
@@ -20269,6 +20377,7 @@
|
|
|
20269
20377
|
"sessionId",
|
|
20270
20378
|
"role",
|
|
20271
20379
|
"content",
|
|
20380
|
+
"attachments",
|
|
20272
20381
|
"createdAt"
|
|
20273
20382
|
],
|
|
20274
20383
|
"additionalProperties": false
|
|
@@ -20327,11 +20436,99 @@
|
|
|
20327
20436
|
},
|
|
20328
20437
|
"createdAt": {
|
|
20329
20438
|
"type": "number"
|
|
20439
|
+
},
|
|
20440
|
+
"session": {
|
|
20441
|
+
"type": "object",
|
|
20442
|
+
"properties": {
|
|
20443
|
+
"id": {
|
|
20444
|
+
"type": "string"
|
|
20445
|
+
},
|
|
20446
|
+
"kind": {
|
|
20447
|
+
"type": "string",
|
|
20448
|
+
"enum": [
|
|
20449
|
+
"companion-chat"
|
|
20450
|
+
]
|
|
20451
|
+
},
|
|
20452
|
+
"title": {
|
|
20453
|
+
"type": "string"
|
|
20454
|
+
},
|
|
20455
|
+
"model": {
|
|
20456
|
+
"anyOf": [
|
|
20457
|
+
{
|
|
20458
|
+
"type": "string"
|
|
20459
|
+
},
|
|
20460
|
+
{
|
|
20461
|
+
"type": "null"
|
|
20462
|
+
}
|
|
20463
|
+
]
|
|
20464
|
+
},
|
|
20465
|
+
"provider": {
|
|
20466
|
+
"anyOf": [
|
|
20467
|
+
{
|
|
20468
|
+
"type": "string"
|
|
20469
|
+
},
|
|
20470
|
+
{
|
|
20471
|
+
"type": "null"
|
|
20472
|
+
}
|
|
20473
|
+
]
|
|
20474
|
+
},
|
|
20475
|
+
"systemPrompt": {
|
|
20476
|
+
"anyOf": [
|
|
20477
|
+
{
|
|
20478
|
+
"type": "string"
|
|
20479
|
+
},
|
|
20480
|
+
{
|
|
20481
|
+
"type": "null"
|
|
20482
|
+
}
|
|
20483
|
+
]
|
|
20484
|
+
},
|
|
20485
|
+
"status": {
|
|
20486
|
+
"type": "string",
|
|
20487
|
+
"enum": [
|
|
20488
|
+
"active",
|
|
20489
|
+
"closed"
|
|
20490
|
+
]
|
|
20491
|
+
},
|
|
20492
|
+
"createdAt": {
|
|
20493
|
+
"type": "number"
|
|
20494
|
+
},
|
|
20495
|
+
"updatedAt": {
|
|
20496
|
+
"type": "number"
|
|
20497
|
+
},
|
|
20498
|
+
"closedAt": {
|
|
20499
|
+
"anyOf": [
|
|
20500
|
+
{
|
|
20501
|
+
"type": "number"
|
|
20502
|
+
},
|
|
20503
|
+
{
|
|
20504
|
+
"type": "null"
|
|
20505
|
+
}
|
|
20506
|
+
]
|
|
20507
|
+
},
|
|
20508
|
+
"messageCount": {
|
|
20509
|
+
"type": "number"
|
|
20510
|
+
}
|
|
20511
|
+
},
|
|
20512
|
+
"required": [
|
|
20513
|
+
"id",
|
|
20514
|
+
"kind",
|
|
20515
|
+
"title",
|
|
20516
|
+
"model",
|
|
20517
|
+
"provider",
|
|
20518
|
+
"systemPrompt",
|
|
20519
|
+
"status",
|
|
20520
|
+
"createdAt",
|
|
20521
|
+
"updatedAt",
|
|
20522
|
+
"closedAt",
|
|
20523
|
+
"messageCount"
|
|
20524
|
+
],
|
|
20525
|
+
"additionalProperties": false
|
|
20330
20526
|
}
|
|
20331
20527
|
},
|
|
20332
20528
|
"required": [
|
|
20333
20529
|
"sessionId",
|
|
20334
|
-
"createdAt"
|
|
20530
|
+
"createdAt",
|
|
20531
|
+
"session"
|
|
20335
20532
|
],
|
|
20336
20533
|
"additionalProperties": false
|
|
20337
20534
|
},
|
|
@@ -20526,6 +20723,91 @@
|
|
|
20526
20723
|
"content": {
|
|
20527
20724
|
"type": "string"
|
|
20528
20725
|
},
|
|
20726
|
+
"attachments": {
|
|
20727
|
+
"type": "array",
|
|
20728
|
+
"items": {
|
|
20729
|
+
"type": "object",
|
|
20730
|
+
"properties": {
|
|
20731
|
+
"id": {
|
|
20732
|
+
"type": "string"
|
|
20733
|
+
},
|
|
20734
|
+
"artifactId": {
|
|
20735
|
+
"type": "string"
|
|
20736
|
+
},
|
|
20737
|
+
"kind": {
|
|
20738
|
+
"type": "string"
|
|
20739
|
+
},
|
|
20740
|
+
"mimeType": {
|
|
20741
|
+
"type": "string"
|
|
20742
|
+
},
|
|
20743
|
+
"filename": {
|
|
20744
|
+
"type": "string"
|
|
20745
|
+
},
|
|
20746
|
+
"sizeBytes": {
|
|
20747
|
+
"type": "number"
|
|
20748
|
+
},
|
|
20749
|
+
"sha256": {
|
|
20750
|
+
"type": "string"
|
|
20751
|
+
},
|
|
20752
|
+
"createdAt": {
|
|
20753
|
+
"type": "number"
|
|
20754
|
+
},
|
|
20755
|
+
"expiresAt": {
|
|
20756
|
+
"type": "number"
|
|
20757
|
+
},
|
|
20758
|
+
"sourceUri": {
|
|
20759
|
+
"type": "string"
|
|
20760
|
+
},
|
|
20761
|
+
"acquisitionMode": {
|
|
20762
|
+
"type": "string"
|
|
20763
|
+
},
|
|
20764
|
+
"fetchMode": {
|
|
20765
|
+
"type": "string"
|
|
20766
|
+
},
|
|
20767
|
+
"label": {
|
|
20768
|
+
"type": "string"
|
|
20769
|
+
},
|
|
20770
|
+
"metadata": {
|
|
20771
|
+
"type": "object",
|
|
20772
|
+
"additionalProperties": {
|
|
20773
|
+
"anyOf": [
|
|
20774
|
+
{
|
|
20775
|
+
"type": "string"
|
|
20776
|
+
},
|
|
20777
|
+
{
|
|
20778
|
+
"type": "number"
|
|
20779
|
+
},
|
|
20780
|
+
{
|
|
20781
|
+
"type": "boolean"
|
|
20782
|
+
},
|
|
20783
|
+
{
|
|
20784
|
+
"type": "null"
|
|
20785
|
+
},
|
|
20786
|
+
{
|
|
20787
|
+
"type": "object",
|
|
20788
|
+
"additionalProperties": {}
|
|
20789
|
+
},
|
|
20790
|
+
{
|
|
20791
|
+
"type": "array",
|
|
20792
|
+
"items": {}
|
|
20793
|
+
}
|
|
20794
|
+
]
|
|
20795
|
+
}
|
|
20796
|
+
}
|
|
20797
|
+
},
|
|
20798
|
+
"required": [
|
|
20799
|
+
"id",
|
|
20800
|
+
"artifactId",
|
|
20801
|
+
"kind",
|
|
20802
|
+
"mimeType",
|
|
20803
|
+
"sizeBytes",
|
|
20804
|
+
"sha256",
|
|
20805
|
+
"createdAt",
|
|
20806
|
+
"metadata"
|
|
20807
|
+
],
|
|
20808
|
+
"additionalProperties": true
|
|
20809
|
+
}
|
|
20810
|
+
},
|
|
20529
20811
|
"createdAt": {
|
|
20530
20812
|
"type": "number"
|
|
20531
20813
|
}
|
|
@@ -20535,6 +20817,7 @@
|
|
|
20535
20817
|
"sessionId",
|
|
20536
20818
|
"role",
|
|
20537
20819
|
"content",
|
|
20820
|
+
"attachments",
|
|
20538
20821
|
"createdAt"
|
|
20539
20822
|
],
|
|
20540
20823
|
"additionalProperties": false
|
|
@@ -20549,6 +20832,158 @@
|
|
|
20549
20832
|
},
|
|
20550
20833
|
"invokable": true
|
|
20551
20834
|
},
|
|
20835
|
+
{
|
|
20836
|
+
"id": "companion.chat.sessions.list",
|
|
20837
|
+
"title": "List Companion Chat Sessions",
|
|
20838
|
+
"description": "List active companion-chat sessions. Pass `includeClosed` to include recently closed sessions.",
|
|
20839
|
+
"category": "companion",
|
|
20840
|
+
"source": "builtin",
|
|
20841
|
+
"access": "authenticated",
|
|
20842
|
+
"transport": [
|
|
20843
|
+
"http",
|
|
20844
|
+
"ws"
|
|
20845
|
+
],
|
|
20846
|
+
"scopes": [
|
|
20847
|
+
"read:sessions"
|
|
20848
|
+
],
|
|
20849
|
+
"http": {
|
|
20850
|
+
"method": "GET",
|
|
20851
|
+
"path": "/api/companion/chat/sessions"
|
|
20852
|
+
},
|
|
20853
|
+
"inputSchema": {
|
|
20854
|
+
"type": "object",
|
|
20855
|
+
"properties": {
|
|
20856
|
+
"includeClosed": {
|
|
20857
|
+
"type": "boolean"
|
|
20858
|
+
},
|
|
20859
|
+
"limit": {
|
|
20860
|
+
"type": "number"
|
|
20861
|
+
}
|
|
20862
|
+
},
|
|
20863
|
+
"additionalProperties": false
|
|
20864
|
+
},
|
|
20865
|
+
"outputSchema": {
|
|
20866
|
+
"type": "object",
|
|
20867
|
+
"properties": {
|
|
20868
|
+
"sessions": {
|
|
20869
|
+
"type": "array",
|
|
20870
|
+
"items": {
|
|
20871
|
+
"type": "object",
|
|
20872
|
+
"properties": {
|
|
20873
|
+
"id": {
|
|
20874
|
+
"type": "string"
|
|
20875
|
+
},
|
|
20876
|
+
"kind": {
|
|
20877
|
+
"type": "string",
|
|
20878
|
+
"enum": [
|
|
20879
|
+
"companion-chat"
|
|
20880
|
+
]
|
|
20881
|
+
},
|
|
20882
|
+
"title": {
|
|
20883
|
+
"type": "string"
|
|
20884
|
+
},
|
|
20885
|
+
"model": {
|
|
20886
|
+
"anyOf": [
|
|
20887
|
+
{
|
|
20888
|
+
"type": "string"
|
|
20889
|
+
},
|
|
20890
|
+
{
|
|
20891
|
+
"type": "null"
|
|
20892
|
+
}
|
|
20893
|
+
]
|
|
20894
|
+
},
|
|
20895
|
+
"provider": {
|
|
20896
|
+
"anyOf": [
|
|
20897
|
+
{
|
|
20898
|
+
"type": "string"
|
|
20899
|
+
},
|
|
20900
|
+
{
|
|
20901
|
+
"type": "null"
|
|
20902
|
+
}
|
|
20903
|
+
]
|
|
20904
|
+
},
|
|
20905
|
+
"systemPrompt": {
|
|
20906
|
+
"anyOf": [
|
|
20907
|
+
{
|
|
20908
|
+
"type": "string"
|
|
20909
|
+
},
|
|
20910
|
+
{
|
|
20911
|
+
"type": "null"
|
|
20912
|
+
}
|
|
20913
|
+
]
|
|
20914
|
+
},
|
|
20915
|
+
"status": {
|
|
20916
|
+
"type": "string",
|
|
20917
|
+
"enum": [
|
|
20918
|
+
"active",
|
|
20919
|
+
"closed"
|
|
20920
|
+
]
|
|
20921
|
+
},
|
|
20922
|
+
"createdAt": {
|
|
20923
|
+
"type": "number"
|
|
20924
|
+
},
|
|
20925
|
+
"updatedAt": {
|
|
20926
|
+
"type": "number"
|
|
20927
|
+
},
|
|
20928
|
+
"closedAt": {
|
|
20929
|
+
"anyOf": [
|
|
20930
|
+
{
|
|
20931
|
+
"type": "number"
|
|
20932
|
+
},
|
|
20933
|
+
{
|
|
20934
|
+
"type": "null"
|
|
20935
|
+
}
|
|
20936
|
+
]
|
|
20937
|
+
},
|
|
20938
|
+
"messageCount": {
|
|
20939
|
+
"type": "number"
|
|
20940
|
+
}
|
|
20941
|
+
},
|
|
20942
|
+
"required": [
|
|
20943
|
+
"id",
|
|
20944
|
+
"kind",
|
|
20945
|
+
"title",
|
|
20946
|
+
"model",
|
|
20947
|
+
"provider",
|
|
20948
|
+
"systemPrompt",
|
|
20949
|
+
"status",
|
|
20950
|
+
"createdAt",
|
|
20951
|
+
"updatedAt",
|
|
20952
|
+
"closedAt",
|
|
20953
|
+
"messageCount"
|
|
20954
|
+
],
|
|
20955
|
+
"additionalProperties": false
|
|
20956
|
+
}
|
|
20957
|
+
},
|
|
20958
|
+
"totals": {
|
|
20959
|
+
"type": "object",
|
|
20960
|
+
"properties": {
|
|
20961
|
+
"sessions": {
|
|
20962
|
+
"type": "number"
|
|
20963
|
+
},
|
|
20964
|
+
"active": {
|
|
20965
|
+
"type": "number"
|
|
20966
|
+
},
|
|
20967
|
+
"closed": {
|
|
20968
|
+
"type": "number"
|
|
20969
|
+
}
|
|
20970
|
+
},
|
|
20971
|
+
"required": [
|
|
20972
|
+
"sessions",
|
|
20973
|
+
"active",
|
|
20974
|
+
"closed"
|
|
20975
|
+
],
|
|
20976
|
+
"additionalProperties": false
|
|
20977
|
+
}
|
|
20978
|
+
},
|
|
20979
|
+
"required": [
|
|
20980
|
+
"sessions",
|
|
20981
|
+
"totals"
|
|
20982
|
+
],
|
|
20983
|
+
"additionalProperties": false
|
|
20984
|
+
},
|
|
20985
|
+
"invokable": true
|
|
20986
|
+
},
|
|
20552
20987
|
{
|
|
20553
20988
|
"id": "companion.chat.sessions.update",
|
|
20554
20989
|
"title": "Update Companion Chat Session",
|
|
@@ -68753,10 +69188,10 @@
|
|
|
68753
69188
|
}
|
|
68754
69189
|
],
|
|
68755
69190
|
"schemaCoverage": {
|
|
68756
|
-
"methods":
|
|
68757
|
-
"typedInputs":
|
|
69191
|
+
"methods": 264,
|
|
69192
|
+
"typedInputs": 264,
|
|
68758
69193
|
"genericInputs": 0,
|
|
68759
|
-
"typedOutputs":
|
|
69194
|
+
"typedOutputs": 264,
|
|
68760
69195
|
"genericOutputs": 0
|
|
68761
69196
|
},
|
|
68762
69197
|
"eventCoverage": {
|
package/dist/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export { createExpoGoodVibesSdk } from './expo.js';
|
|
|
15
15
|
export { TokenStore, SessionManager, PermissionResolver, AutoRefreshCoordinator } from './client-auth/index.js';
|
|
16
16
|
export * from './observer/index.js';
|
|
17
17
|
export * from './events/index.js';
|
|
18
|
-
export type { ContractHttpDefinition, DistributedPeerKind, DistributedWorkStatus, DistributedWorkType, GatewayEventTransport, GatewayMethodAccess, GatewayMethodSource, GatewayMethodTransport, JsonSchema, OperatorContractManifest, OperatorEventCoverageContract, OperatorEventContract, OperatorMethodContract, OperatorSchemaCoverageContract, PeerContractManifest, PeerEndpointContract, CompanionChatMessage, CompanionChatMessageRole, CompanionChatSession, CompanionChatSessionStatus, OperatorEventPayload, OperatorEventPayloadMap, JsonPrimitive, JsonValue, OperatorMethodInput, OperatorMethodInputMap, OperatorMethodOutput, OperatorMethodOutputMap, OperatorStreamMethodId, OperatorTypedEventId, OperatorTypedMethodId, PeerEndpointInput, PeerEndpointInputMap, PeerEndpointOutput, PeerEndpointOutputMap, PeerTypedEndpointId, RuntimeDomainEventPayload, RuntimeDomainEventPayloadMap, RuntimeDomainEventType, RuntimeEventTypedDomain, SharedSessionConversationRouteOutput, OperatorMethodId, PeerEndpointId, ControlAuthLoginResponse, ControlAuthCurrentResponse, AccountsSnapshotResponse, SerializedEventEnvelopeShape, TypedSerializedEventEnvelopeShape, ControlStatusResponse, LocalAuthStatusResponse, ProviderModelRef, ProviderModelEntry, ConfiguredVia, ProviderAuthRouteDescriptor, ProviderModelProvider, ListProviderModelsResponse, CurrentModelResponse, PatchCurrentModelBody, PatchCurrentModelError, PatchCurrentModelResponse, ModelChangedEvent, } from './contracts.js';
|
|
18
|
+
export type { ContractHttpDefinition, DistributedPeerKind, DistributedWorkStatus, DistributedWorkType, GatewayEventTransport, GatewayMethodAccess, GatewayMethodSource, GatewayMethodTransport, JsonSchema, OperatorContractManifest, OperatorEventCoverageContract, OperatorEventContract, OperatorMethodContract, OperatorSchemaCoverageContract, PeerContractManifest, PeerEndpointContract, CompanionChatMessage, CompanionChatMessageRole, CompanionChatSession, CompanionChatSessionsListTotals, CompanionChatSessionStatus, OperatorEventPayload, OperatorEventPayloadMap, JsonPrimitive, JsonValue, OperatorMethodInput, OperatorMethodInputMap, OperatorMethodOutput, OperatorMethodOutputMap, OperatorStreamMethodId, OperatorTypedEventId, OperatorTypedMethodId, PeerEndpointInput, PeerEndpointInputMap, PeerEndpointOutput, PeerEndpointOutputMap, PeerTypedEndpointId, RuntimeDomainEventPayload, RuntimeDomainEventPayloadMap, RuntimeDomainEventType, RuntimeEventTypedDomain, SharedSessionConversationRouteOutput, OperatorMethodId, PeerEndpointId, ControlAuthLoginResponse, ControlAuthCurrentResponse, AccountsSnapshotResponse, SerializedEventEnvelopeShape, TypedSerializedEventEnvelopeShape, ControlStatusResponse, LocalAuthStatusResponse, ProviderModelRef, ProviderModelEntry, ConfiguredVia, ProviderAuthRouteDescriptor, ProviderModelProvider, ListProviderModelsResponse, CurrentModelResponse, PatchCurrentModelBody, PatchCurrentModelError, PatchCurrentModelResponse, ModelChangedEvent, } from './contracts.js';
|
|
19
19
|
export { DISTRIBUTED_WORK_TYPES, FOUNDATION_METADATA, OPERATOR_CONTRACT, OPERATOR_METHOD_IDS, PEER_CONTRACT, PEER_ENDPOINT_IDS, getOperatorContract, getPeerContract, getOperatorMethod, getPeerEndpoint, listOperatorMethods, listPeerEndpoints, isOperatorMethodId, isPeerEndpointId, ControlAuthLoginResponseSchema, ControlAuthCurrentResponseSchema, AccountsSnapshotResponseSchema, SerializedEventEnvelopeSchema, TypedSerializedEventEnvelopeSchema, RuntimeEventRecordSchema, ControlStatusResponseSchema, LocalAuthStatusResponseSchema, ProviderModelRefSchema, ProviderModelEntrySchema, ConfiguredViaSchema, ProviderAuthRouteDescriptorSchema, ProviderModelProviderSchema, ListProviderModelsResponseSchema, CurrentModelResponseSchema, PatchCurrentModelBodySchema, PatchCurrentModelErrorSchema, PatchCurrentModelResponseSchema, ModelChangedEventSchema, } from './contracts.js';
|
|
20
20
|
export * from './errors.js';
|
|
21
21
|
export * from './transport-core.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|