@vellumai/plugin-api 0.11.3-dev.202608121709.4a2dc5b → 0.11.3-dev.202608122017.f5ae62a
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 +12 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1210,6 +1210,12 @@ declare const AssistantEventEnvelopeSchema: z.ZodObject<{
|
|
|
1210
1210
|
seq: z.ZodOptional<z.ZodNumber>;
|
|
1211
1211
|
emittedAt: z.ZodString;
|
|
1212
1212
|
message: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1213
|
+
type: z.ZodLiteral<"acp_auth_required">;
|
|
1214
|
+
acpSessionId: z.ZodString;
|
|
1215
|
+
authCode: z.ZodString;
|
|
1216
|
+
agent: z.ZodString;
|
|
1217
|
+
parentToolUseId: z.ZodOptional<z.ZodString>;
|
|
1218
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1213
1219
|
type: z.ZodLiteral<"acp_session_completed">;
|
|
1214
1220
|
acpSessionId: z.ZodString;
|
|
1215
1221
|
stopReason: z.ZodEnum<{
|
|
@@ -2662,6 +2668,12 @@ declare const AssistantEventPublishOptionsSchema: z.ZodObject<{
|
|
|
2662
2668
|
* migration recipe.
|
|
2663
2669
|
*/
|
|
2664
2670
|
declare const AssistantEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2671
|
+
type: z.ZodLiteral<"acp_auth_required">;
|
|
2672
|
+
acpSessionId: z.ZodString;
|
|
2673
|
+
authCode: z.ZodString;
|
|
2674
|
+
agent: z.ZodString;
|
|
2675
|
+
parentToolUseId: z.ZodOptional<z.ZodString>;
|
|
2676
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2665
2677
|
type: z.ZodLiteral<"acp_session_completed">;
|
|
2666
2678
|
acpSessionId: z.ZodString;
|
|
2667
2679
|
stopReason: z.ZodEnum<{
|
package/package.json
CHANGED