@vellumai/plugin-api 0.10.8-dev.202607110139.afd85ad → 0.10.8-dev.202607110507.dcd3b7b
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/index.d.ts +4 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1162,6 +1162,7 @@ declare const AssistantConfigSchema: z.ZodObject<{
|
|
|
1162
1162
|
turnCommitMaxWaitMs: z.ZodDefault<z.ZodNumber>;
|
|
1163
1163
|
failureBackoffBaseMs: z.ZodDefault<z.ZodNumber>;
|
|
1164
1164
|
failureBackoffMaxMs: z.ZodDefault<z.ZodNumber>;
|
|
1165
|
+
maxFileSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
1165
1166
|
interactiveGitTimeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
1166
1167
|
enrichmentQueueSize: z.ZodDefault<z.ZodNumber>;
|
|
1167
1168
|
enrichmentConcurrency: z.ZodDefault<z.ZodNumber>;
|
|
@@ -3630,7 +3631,7 @@ declare const InteractionResolvedEventSchema: z.ZodObject<{
|
|
|
3630
3631
|
kind: z.ZodString;
|
|
3631
3632
|
}, z.core.$strip>;
|
|
3632
3633
|
|
|
3633
|
-
declare const INTERFACE_IDS: readonly ["macos", "ios", "cli", "telegram", "phone", "web", "whatsapp", "slack", "email", "chrome-extension", "a2a"];
|
|
3634
|
+
declare const INTERFACE_IDS: readonly ["macos", "ios", "cli", "telegram", "phone", "web", "whatsapp", "slack", "email", "chrome-extension", "a2a", "route"];
|
|
3634
3635
|
|
|
3635
3636
|
declare type InterfaceId = (typeof INTERFACE_IDS)[number];
|
|
3636
3637
|
|
|
@@ -3892,8 +3893,8 @@ declare const messageMetadataSchema: z.ZodObject<{
|
|
|
3892
3893
|
platform: "platform";
|
|
3893
3894
|
a2a: "a2a";
|
|
3894
3895
|
}>>;
|
|
3895
|
-
userMessageInterface: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension" | null, string>> & z.ZodType<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension", string, z.core.$ZodTypeInternals<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension", string>>>;
|
|
3896
|
-
assistantMessageInterface: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension" | null, string>> & z.ZodType<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension", string, z.core.$ZodTypeInternals<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension", string>>>;
|
|
3896
|
+
userMessageInterface: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension" | "route" | null, string>> & z.ZodType<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension" | "route", string, z.core.$ZodTypeInternals<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension" | "route", string>>>;
|
|
3897
|
+
assistantMessageInterface: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension" | "route" | null, string>> & z.ZodType<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension" | "route", string, z.core.$ZodTypeInternals<"telegram" | "phone" | "whatsapp" | "slack" | "email" | "a2a" | "macos" | "ios" | "cli" | "web" | "chrome-extension" | "route", string>>>;
|
|
3897
3898
|
client: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3898
3899
|
subagentNotification: z.ZodOptional<z.ZodObject<{
|
|
3899
3900
|
subagentId: z.ZodString;
|
package/package.json
CHANGED