@hermespilot/link 0.8.1-beta.3 → 0.8.1
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-IJSMGOPK.js → chunk-UI43QFRT.js} +1055 -567
- package/dist/cli/index.js +1 -1
- package/dist/http/app.d.ts +10 -0
- package/dist/http/app.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
package/dist/http/app.d.ts
CHANGED
|
@@ -175,12 +175,20 @@ interface LinkInputRequest {
|
|
|
175
175
|
payload: unknown;
|
|
176
176
|
};
|
|
177
177
|
}
|
|
178
|
+
interface LinkMessagePresentation {
|
|
179
|
+
type: "message" | "lifecycle_marker";
|
|
180
|
+
kind?: "model_switch" | "personality_changed" | "personality_cleared";
|
|
181
|
+
model?: string;
|
|
182
|
+
provider?: string;
|
|
183
|
+
}
|
|
178
184
|
interface LinkMessage {
|
|
179
185
|
id: string;
|
|
180
186
|
schema_version: 1;
|
|
181
187
|
conversation_id: string;
|
|
182
188
|
role: "user" | "assistant" | "tool" | "system";
|
|
183
189
|
status: "queued" | "completed" | "streaming" | "failed" | "cancelled";
|
|
190
|
+
visibility?: "visible" | "internal";
|
|
191
|
+
presentation?: LinkMessagePresentation;
|
|
184
192
|
run_id?: string;
|
|
185
193
|
client_message_id?: string;
|
|
186
194
|
created_at: string;
|
|
@@ -690,6 +698,8 @@ declare class ConversationService {
|
|
|
690
698
|
scope: 'conversation';
|
|
691
699
|
runtime: ConversationRuntimeMetadata;
|
|
692
700
|
last_event_seq: number;
|
|
701
|
+
marker_message?: LinkMessage;
|
|
702
|
+
marker_event_seq?: number;
|
|
693
703
|
}>;
|
|
694
704
|
setConversationProfile(conversationId: string, profileName: string): Promise<{
|
|
695
705
|
conversation_id: string;
|
package/dist/http/app.js
CHANGED