@hermespilot/link 0.7.4-beta.0 → 0.7.5-beta.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-V6Q4B4MA.js → chunk-E7KAHPLU.js} +1311 -530
- package/dist/cli/index.js +1 -1
- package/dist/http/app.d.ts +12 -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
|
@@ -501,6 +501,18 @@ declare class ConversationService {
|
|
|
501
501
|
}): Promise<void>;
|
|
502
502
|
syncHermesSessions(): Promise<HermesSessionSyncResult>;
|
|
503
503
|
deliverStagedFiles(stagingDir: string): Promise<ImportMediaReferencesResult>;
|
|
504
|
+
deliverFilesFromTool(input: {
|
|
505
|
+
profile?: string;
|
|
506
|
+
taskId?: string;
|
|
507
|
+
sessionId?: string;
|
|
508
|
+
files: unknown;
|
|
509
|
+
}): Promise<ImportMediaReferencesResult & {
|
|
510
|
+
staged_count: number;
|
|
511
|
+
skipped_files: Array<{
|
|
512
|
+
path: string;
|
|
513
|
+
reason: string;
|
|
514
|
+
}>;
|
|
515
|
+
}>;
|
|
504
516
|
getMessages(conversationId: string, options?: ConversationMessagesPageOptions): Promise<{
|
|
505
517
|
messages: LinkMessage[];
|
|
506
518
|
last_event_seq: number;
|
package/dist/http/app.js
CHANGED