@autohq/cli 0.1.458 → 0.1.459
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/agent-bridge.js +38 -1
- package/dist/index.js +39 -2
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -30825,7 +30825,7 @@ Object.assign(lookup, {
|
|
|
30825
30825
|
// package.json
|
|
30826
30826
|
var package_default = {
|
|
30827
30827
|
name: "@autohq/cli",
|
|
30828
|
-
version: "0.1.
|
|
30828
|
+
version: "0.1.459",
|
|
30829
30829
|
license: "SEE LICENSE IN README.md",
|
|
30830
30830
|
publishConfig: {
|
|
30831
30831
|
access: "public"
|
|
@@ -31927,6 +31927,43 @@ var ChatMessageEventPayloadSchema = external_exports.object({
|
|
|
31927
31927
|
}).optional(),
|
|
31928
31928
|
raw: JsonValueSchema2
|
|
31929
31929
|
});
|
|
31930
|
+
var ChatMessageEditedEventPayloadSchema = external_exports.object({
|
|
31931
|
+
chat: external_exports.object({
|
|
31932
|
+
provider: ProviderNameSchema,
|
|
31933
|
+
kind: external_exports.literal("edited"),
|
|
31934
|
+
threadId: external_exports.string().trim().min(1),
|
|
31935
|
+
channelId: external_exports.string().trim().min(1),
|
|
31936
|
+
isDirectMessage: external_exports.boolean(),
|
|
31937
|
+
messageId: external_exports.string().trim().min(1)
|
|
31938
|
+
}),
|
|
31939
|
+
message: external_exports.object({
|
|
31940
|
+
text: external_exports.string(),
|
|
31941
|
+
previousText: external_exports.string().optional(),
|
|
31942
|
+
author: JsonValueSchema2,
|
|
31943
|
+
isMention: external_exports.literal(false),
|
|
31944
|
+
dateSent: external_exports.string().datetime(),
|
|
31945
|
+
editedAt: external_exports.string().datetime(),
|
|
31946
|
+
attachments: JsonValueSchema2.default([]),
|
|
31947
|
+
links: JsonValueSchema2.default([])
|
|
31948
|
+
}),
|
|
31949
|
+
auto: external_exports.object({
|
|
31950
|
+
mentioned: external_exports.literal(false),
|
|
31951
|
+
contextual: external_exports.boolean().default(true),
|
|
31952
|
+
authored: external_exports.boolean().default(false),
|
|
31953
|
+
context: external_exports.object({ kind: external_exports.literal("thread_participation") }).optional(),
|
|
31954
|
+
attribution: external_exports.object({
|
|
31955
|
+
sessionId: external_exports.string().trim().min(1),
|
|
31956
|
+
agentName: external_exports.string().trim().min(1)
|
|
31957
|
+
}).optional(),
|
|
31958
|
+
attributions: external_exports.array(
|
|
31959
|
+
external_exports.object({
|
|
31960
|
+
sessionId: external_exports.string().trim().min(1),
|
|
31961
|
+
agentName: external_exports.string().trim().min(1)
|
|
31962
|
+
})
|
|
31963
|
+
).optional()
|
|
31964
|
+
}).optional(),
|
|
31965
|
+
raw: JsonValueSchema2
|
|
31966
|
+
});
|
|
31930
31967
|
var ChatReactionEventPayloadSchema = external_exports.object({
|
|
31931
31968
|
chat: external_exports.object({
|
|
31932
31969
|
provider: ProviderNameSchema,
|
package/dist/index.js
CHANGED
|
@@ -15555,7 +15555,7 @@ var init_auth = __esm({
|
|
|
15555
15555
|
});
|
|
15556
15556
|
|
|
15557
15557
|
// ../../packages/schemas/src/chat.ts
|
|
15558
|
-
var ChatMessageKindSchema, ChatMessageRefSchema, ChatToolBindingSchema, ChatMessageEventPayloadSchema, ChatReactionEventPayloadSchema, ChatMessageContentSchema, ChatThreadSelectorSchema, SlackChatDestinationSchema, LinearChatDestinationSchema, TelegramChatDestinationSchema, ChatDestinationSchema, SlackChatRecipientSchema, LinearChatRecipientSchema, TelegramChatRecipientSchema, ChatRecipientSchema, SlackChatAddressSchema, LinearChatAddressSchema, TelegramChatAddressSchema, ChatAddressSchema, ChatToolDefaultsSchema, ChatSendToolInputSchema, ChatSendToolOutputSchema, ChatHistoryToolInputSchema, ChatAttachmentSchema, ChatHistoryMessageSchema, ChatHistoryToolOutputSchema, ChatAttachmentDownloadAllowedMimeTypes, ChatAttachmentDownloadAllowedMimeTypeSchema, ChatAttachmentDownloadMaxSizeBytesByType, ChatAttachmentDownloadMaxSizeBytes, ChatAttachmentDownloadToolInputSchema, ChatAttachmentDownloadToolOutputSchema, ChatIssueParticipantSchema, ChatIssueNamedRefSchema, ChatIssueRefSchema, ChatIssueSchema, ChatIssueGetToolInputSchema, ChatIssueGetToolOutputSchema, ChatIssueUpdateToolInputSchema, ChatIssueUpdateToolOutputSchema, ChatReplyToolInputSchema, ChatReplyToolOutputSchema, ChatReactionToolInputSchema, ChatReactionToolOutputSchema, ChatSearchResultTypeSchema, ChatSearchToolInputSchema, ChatSearchWorkspaceSchema, SlackChatSearchResultSchema, ChatSearchResultSchema, ChatSearchToolOutputSchema;
|
|
15558
|
+
var ChatMessageKindSchema, ChatMessageRefSchema, ChatToolBindingSchema, ChatMessageEventPayloadSchema, ChatMessageEditedEventPayloadSchema, ChatReactionEventPayloadSchema, ChatMessageContentSchema, ChatThreadSelectorSchema, SlackChatDestinationSchema, LinearChatDestinationSchema, TelegramChatDestinationSchema, ChatDestinationSchema, SlackChatRecipientSchema, LinearChatRecipientSchema, TelegramChatRecipientSchema, ChatRecipientSchema, SlackChatAddressSchema, LinearChatAddressSchema, TelegramChatAddressSchema, ChatAddressSchema, ChatToolDefaultsSchema, ChatSendToolInputSchema, ChatSendToolOutputSchema, ChatHistoryToolInputSchema, ChatAttachmentSchema, ChatHistoryMessageSchema, ChatHistoryToolOutputSchema, ChatAttachmentDownloadAllowedMimeTypes, ChatAttachmentDownloadAllowedMimeTypeSchema, ChatAttachmentDownloadMaxSizeBytesByType, ChatAttachmentDownloadMaxSizeBytes, ChatAttachmentDownloadToolInputSchema, ChatAttachmentDownloadToolOutputSchema, ChatIssueParticipantSchema, ChatIssueNamedRefSchema, ChatIssueRefSchema, ChatIssueSchema, ChatIssueGetToolInputSchema, ChatIssueGetToolOutputSchema, ChatIssueUpdateToolInputSchema, ChatIssueUpdateToolOutputSchema, ChatReplyToolInputSchema, ChatReplyToolOutputSchema, ChatReactionToolInputSchema, ChatReactionToolOutputSchema, ChatSearchResultTypeSchema, ChatSearchToolInputSchema, ChatSearchWorkspaceSchema, SlackChatSearchResultSchema, ChatSearchResultSchema, ChatSearchToolOutputSchema;
|
|
15559
15559
|
var init_chat = __esm({
|
|
15560
15560
|
"../../packages/schemas/src/chat.ts"() {
|
|
15561
15561
|
"use strict";
|
|
@@ -15641,6 +15641,43 @@ var init_chat = __esm({
|
|
|
15641
15641
|
}).optional(),
|
|
15642
15642
|
raw: JsonValueSchema
|
|
15643
15643
|
});
|
|
15644
|
+
ChatMessageEditedEventPayloadSchema = external_exports.object({
|
|
15645
|
+
chat: external_exports.object({
|
|
15646
|
+
provider: ProviderNameSchema,
|
|
15647
|
+
kind: external_exports.literal("edited"),
|
|
15648
|
+
threadId: external_exports.string().trim().min(1),
|
|
15649
|
+
channelId: external_exports.string().trim().min(1),
|
|
15650
|
+
isDirectMessage: external_exports.boolean(),
|
|
15651
|
+
messageId: external_exports.string().trim().min(1)
|
|
15652
|
+
}),
|
|
15653
|
+
message: external_exports.object({
|
|
15654
|
+
text: external_exports.string(),
|
|
15655
|
+
previousText: external_exports.string().optional(),
|
|
15656
|
+
author: JsonValueSchema,
|
|
15657
|
+
isMention: external_exports.literal(false),
|
|
15658
|
+
dateSent: external_exports.string().datetime(),
|
|
15659
|
+
editedAt: external_exports.string().datetime(),
|
|
15660
|
+
attachments: JsonValueSchema.default([]),
|
|
15661
|
+
links: JsonValueSchema.default([])
|
|
15662
|
+
}),
|
|
15663
|
+
auto: external_exports.object({
|
|
15664
|
+
mentioned: external_exports.literal(false),
|
|
15665
|
+
contextual: external_exports.boolean().default(true),
|
|
15666
|
+
authored: external_exports.boolean().default(false),
|
|
15667
|
+
context: external_exports.object({ kind: external_exports.literal("thread_participation") }).optional(),
|
|
15668
|
+
attribution: external_exports.object({
|
|
15669
|
+
sessionId: external_exports.string().trim().min(1),
|
|
15670
|
+
agentName: external_exports.string().trim().min(1)
|
|
15671
|
+
}).optional(),
|
|
15672
|
+
attributions: external_exports.array(
|
|
15673
|
+
external_exports.object({
|
|
15674
|
+
sessionId: external_exports.string().trim().min(1),
|
|
15675
|
+
agentName: external_exports.string().trim().min(1)
|
|
15676
|
+
})
|
|
15677
|
+
).optional()
|
|
15678
|
+
}).optional(),
|
|
15679
|
+
raw: JsonValueSchema
|
|
15680
|
+
});
|
|
15644
15681
|
ChatReactionEventPayloadSchema = external_exports.object({
|
|
15645
15682
|
chat: external_exports.object({
|
|
15646
15683
|
provider: ProviderNameSchema,
|
|
@@ -53327,7 +53364,7 @@ var init_package = __esm({
|
|
|
53327
53364
|
"package.json"() {
|
|
53328
53365
|
package_default = {
|
|
53329
53366
|
name: "@autohq/cli",
|
|
53330
|
-
version: "0.1.
|
|
53367
|
+
version: "0.1.459",
|
|
53331
53368
|
license: "SEE LICENSE IN README.md",
|
|
53332
53369
|
publishConfig: {
|
|
53333
53370
|
access: "public"
|