ysyt-agent-sdk 1.0.114 → 1.0.116
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.
|
@@ -129,16 +129,16 @@ export interface CallCrmObject {
|
|
|
129
129
|
/**
|
|
130
130
|
* 号码归属地城市
|
|
131
131
|
*/
|
|
132
|
-
city
|
|
132
|
+
city: string;
|
|
133
133
|
/**
|
|
134
134
|
* 联系次数
|
|
135
135
|
*/
|
|
136
|
-
contact_count
|
|
137
|
-
in_contact_count
|
|
136
|
+
contact_count: number;
|
|
137
|
+
in_contact_count: number;
|
|
138
138
|
/**
|
|
139
139
|
* 客户名称
|
|
140
140
|
*/
|
|
141
|
-
customer_name
|
|
141
|
+
customer_name: string;
|
|
142
142
|
/**
|
|
143
143
|
* 手机号码
|
|
144
144
|
*/
|
|
@@ -146,7 +146,7 @@ export interface CallCrmObject {
|
|
|
146
146
|
/**
|
|
147
147
|
* 号码归属地省份
|
|
148
148
|
*/
|
|
149
|
-
province
|
|
149
|
+
province: string;
|
|
150
150
|
is_vip: 0 | 1;
|
|
151
151
|
}
|
|
152
152
|
export interface AgentDataType {
|