refactor: remove ExternalType from CustomerIdentity and related structures

This commit is contained in:
mlogclub
2026-04-27 18:40:25 +08:00
parent f8b44ab127
commit 73b78a817d
8 changed files with 23 additions and 58 deletions
-9
View File
@@ -82,15 +82,6 @@ export const ExternalSourceLabels: Record<ExternalSource, string> = {
[ExternalSource.WxWorkKF]: "企业微信客服",
}
export enum ExternalType {
Guest = "guest",
User = "user",
}
export const ExternalTypeLabels: Record<ExternalType, string> = {
[ExternalType.Guest]: "访客",
[ExternalType.User]: "用户",
}
export enum Gender {
Unknown = 0,
Male = 1,