@marketrix.ai/widget 3.8.468 → 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.
|
@@ -4,6 +4,7 @@ export declare const EntityStatusSchema: z.ZodEnum<{
|
|
|
4
4
|
active: "active";
|
|
5
5
|
suspended: "suspended";
|
|
6
6
|
}>;
|
|
7
|
+
export type EntityStatus = z.infer<typeof EntityStatusSchema>;
|
|
7
8
|
export declare const BaseEntitySchema: z.ZodObject<{
|
|
8
9
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9
10
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
@@ -133,4 +134,16 @@ export declare const NotificationResolvedReasonSchema: z.ZodEnum<{
|
|
|
133
134
|
cancelled: "cancelled";
|
|
134
135
|
}>;
|
|
135
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>;
|
|
136
149
|
export {};
|
|
@@ -29,6 +29,7 @@ export declare const WorkspaceMemberRoleSchema: z.ZodEnum<{
|
|
|
29
29
|
admin: "admin";
|
|
30
30
|
member: "member";
|
|
31
31
|
}>;
|
|
32
|
+
export type WorkspaceMemberRole = z.infer<typeof WorkspaceMemberRoleSchema>;
|
|
32
33
|
export declare const UserEntitySchema: z.ZodObject<{
|
|
33
34
|
id: z.ZodOptional<z.ZodNumber>;
|
|
34
35
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|