npm package diff
Package: @forge/bridge
Versions: 5.8.0-next.4-experimental-4cf7fd3 - 5.8.0-next.5
File: package/out/rovo/types.d.ts
Index: package/out/rovo/types.d.ts
===================================================================
--- package/out/rovo/types.d.ts
+++ package/out/rovo/types.d.ts
@@ -0,0 +1,19 @@
+declare type ForgeAgentPayload = {
+    type: 'forge';
+    agentAppId: string;
+    agentKey: string;
+    agentName: string;
+    prompt?: string;
+};
+declare type AtlassianAgentPayload = {
+    type: 'atlassian';
+    agentName: string;
+    prompt?: string;
+};
+declare type DefaultAgentPayload = {
+    type: 'default';
+    prompt?: string;
+};
+export declare type OpenRovoPayload = ForgeAgentPayload | AtlassianAgentPayload | DefaultAgentPayload;
+export {};
+//# sourceMappingURL=types.d.ts.map
\ No newline at end of file