mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-18 19:41:17 -05:00
fix: types
This commit is contained in:
@@ -108,15 +108,11 @@ export const ZContactCSVAttributeMap = z.record(z.string(), z.string()).superRef
|
||||
});
|
||||
export type TContactCSVAttributeMap = z.infer<typeof ZContactCSVAttributeMap>;
|
||||
|
||||
export const ZContactBulkUploadAttributeKey = z.object({
|
||||
key: z.string(),
|
||||
name: z.string(),
|
||||
});
|
||||
|
||||
export type TContactBulkUploadAttributeKey = z.infer<typeof ZContactBulkUploadAttributeKey>;
|
||||
|
||||
export const ZContactBulkUploadAttribute = z.object({
|
||||
attributeKey: ZContactBulkUploadAttributeKey,
|
||||
attributeKey: z.object({
|
||||
key: z.string(),
|
||||
name: z.string(),
|
||||
}),
|
||||
value: z.string(),
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user