@marketrix.ai/widget 3.8.468 → 3.8.469

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>>;
@@ -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>>;