@pagelines/sdk 1.0.788 → 1.0.790
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/AgentWrap.js +31 -5
- package/dist/AgentWrap.js.map +1 -1
- package/dist/agent/AgentController.d.ts +1 -0
- package/dist/contract.js +8 -4
- package/dist/contract.js.map +1 -1
- package/package.json +1 -1
|
@@ -115,6 +115,7 @@ export declare class AgentChatController extends SettingsObject<AgentChatControl
|
|
|
115
115
|
private nextStreamToken;
|
|
116
116
|
private runningStreamToken;
|
|
117
117
|
private readonly suppressedStreamTokens;
|
|
118
|
+
private pendingStartupSend?;
|
|
118
119
|
/**
|
|
119
120
|
* Client ids of messages accepted while a turn was running. Rendered dimmed
|
|
120
121
|
* until the turn that answers them starts producing output.
|
package/dist/contract.js
CHANGED
|
@@ -4232,10 +4232,10 @@ var Vr = 3900, L = `$${Vr / 100}/month`, Hr = _enum(["account", "error"]), Ur =
|
|
|
4232
4232
|
},
|
|
4233
4233
|
billing_budget_reached: {
|
|
4234
4234
|
bucket: "account",
|
|
4235
|
-
title: "
|
|
4236
|
-
help: "Your
|
|
4237
|
-
actionLabel: "
|
|
4238
|
-
oneLine: "The workspace
|
|
4235
|
+
title: "Not enough credits",
|
|
4236
|
+
help: "Your workspace needs more included credits for another reply. Upgrade an assistant or wait for the next billing period.",
|
|
4237
|
+
actionLabel: "Review billing",
|
|
4238
|
+
oneLine: "The workspace needs more included credits; its owner can upgrade an assistant or wait for the next billing period."
|
|
4239
4239
|
},
|
|
4240
4240
|
agent_deleted: {
|
|
4241
4241
|
bucket: "error",
|
|
@@ -4527,6 +4527,10 @@ var ei = object({ conversationId: string().min(1) }).strict(), ti = object({
|
|
|
4527
4527
|
senderName: string().optional(),
|
|
4528
4528
|
senderRole: _enum(["owner", "member"]).optional(),
|
|
4529
4529
|
threadSummary: string(),
|
|
4530
|
+
capabilities: array(object({
|
|
4531
|
+
name: string().min(1),
|
|
4532
|
+
description: string().min(1)
|
|
4533
|
+
})).optional(),
|
|
4530
4534
|
surfaceGuidance: string().optional(),
|
|
4531
4535
|
maxDurationSeconds: number().int().positive().max(3600).optional(),
|
|
4532
4536
|
expiresAt: datetime()
|