@pluno/product-agent-web 0.1.189 → 0.1.190

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/index.d.ts CHANGED
@@ -56,6 +56,10 @@ export type ProductAgentMessage = {
56
56
  personalChannelConnectionRequest?: ProductAgentPersonalChannelConnectionRequest;
57
57
  securitySettingsUrl?: string;
58
58
  };
59
+ export type ProductAgentActiveScheduledFollowUp = {
60
+ taskId: string;
61
+ dueAt: string;
62
+ };
59
63
  export type ProductAgentIntegrationAuthRequest = {
60
64
  type: "pipedream_auth_required";
61
65
  authRequestId: string;
@@ -131,6 +135,7 @@ export type ProductAgentState = {
131
135
  starterPromptsLoading: boolean;
132
136
  appearance: ProductAgentAppearance | null;
133
137
  messages: ProductAgentMessage[];
138
+ activeScheduledFollowUps: ProductAgentActiveScheduledFollowUp[] | null;
134
139
  isLoadingSession: boolean;
135
140
  assistantDraft: string;
136
141
  assistantDraftItemId: string | null;