@marketrix.ai/widget 4.0.104 → 4.0.106
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.
|
@@ -58,8 +58,6 @@ export declare const UserEntitySchema: z.ZodObject<{
|
|
|
58
58
|
}, z.core.$strip>;
|
|
59
59
|
export declare const UserSummarySchema: z.ZodObject<{
|
|
60
60
|
id: z.ZodNumber;
|
|
61
|
-
created_at: z.ZodCoercedDate<unknown>;
|
|
62
|
-
updated_at: z.ZodCoercedDate<unknown>;
|
|
63
61
|
is_super: z.ZodBoolean;
|
|
64
62
|
status: z.ZodEnum<{
|
|
65
63
|
created: "created";
|
|
@@ -78,6 +76,7 @@ export declare const UserSummarySchema: z.ZodObject<{
|
|
|
78
76
|
member: "member";
|
|
79
77
|
}>>>;
|
|
80
78
|
}, z.core.$strip>;
|
|
79
|
+
export type UserSummary = z.infer<typeof UserSummarySchema>;
|
|
81
80
|
export type UserData = z.infer<typeof UserEntitySchema>;
|
|
82
81
|
export declare const WorkspaceEntitySchema: z.ZodObject<{
|
|
83
82
|
id: z.ZodNumber;
|
|
@@ -116,6 +115,7 @@ export declare const WorkspaceSummarySchema: z.ZodObject<{
|
|
|
116
115
|
}>;
|
|
117
116
|
ending_date: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
118
117
|
slack_webhook_configured: z.ZodBoolean;
|
|
118
|
+
notify_all_members_on_question: z.ZodBoolean;
|
|
119
119
|
}, z.core.$strip>;
|
|
120
120
|
export type WorkspaceSummary = z.infer<typeof WorkspaceSummarySchema>;
|
|
121
121
|
export declare const ApplicationEntitySchema: z.ZodObject<{
|