@marketrix.ai/widget 3.8.469 → 3.8.470
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/src/sdk/contracts/common.d.ts +12 -0
- package/dist/widget.mjs +1 -1
- package/dist/widget.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -134,4 +134,16 @@ export declare const NotificationResolvedReasonSchema: z.ZodEnum<{
|
|
|
134
134
|
cancelled: "cancelled";
|
|
135
135
|
}>;
|
|
136
136
|
export type NotificationResolvedReason = z.infer<typeof NotificationResolvedReasonSchema>;
|
|
137
|
+
/** Every live-progress stream the api opens. The app keys `useAgentProgress` on these, so a kind it
|
|
138
|
+
* cannot name is a generator whose progress never renders. */
|
|
139
|
+
export declare const AGENT_PROGRESS_KINDS: readonly ["study_plan", "qa_generate_journeys", "qa_prefill_values", "persona_generate", "persona_from_description", "persona_autocomplete"];
|
|
140
|
+
export declare const AgentProgressKindSchema: z.ZodEnum<{
|
|
141
|
+
study_plan: "study_plan";
|
|
142
|
+
qa_generate_journeys: "qa_generate_journeys";
|
|
143
|
+
qa_prefill_values: "qa_prefill_values";
|
|
144
|
+
persona_generate: "persona_generate";
|
|
145
|
+
persona_from_description: "persona_from_description";
|
|
146
|
+
persona_autocomplete: "persona_autocomplete";
|
|
147
|
+
}>;
|
|
148
|
+
export type AgentProgressKind = z.infer<typeof AgentProgressKindSchema>;
|
|
137
149
|
export {};
|