@xuda.io/account_module 1.2.360 → 1.2.362
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.
- package/index.mjs +13 -13
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1144,20 +1144,20 @@ export const get_contacts = async function (req) {
|
|
|
1144
1144
|
var opt = {
|
|
1145
1145
|
selector: {
|
|
1146
1146
|
docType: 'contact',
|
|
1147
|
-
|
|
1147
|
+
uid,
|
|
1148
1148
|
stat: { $lt: 4 },
|
|
1149
|
-
$and: [
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
],
|
|
1149
|
+
// $and: [
|
|
1150
|
+
// {
|
|
1151
|
+
// $or: [
|
|
1152
|
+
// {
|
|
1153
|
+
// uid,
|
|
1154
|
+
// },
|
|
1155
|
+
// {
|
|
1156
|
+
// contact_uid: uid,
|
|
1157
|
+
// },
|
|
1158
|
+
// ],
|
|
1159
|
+
// },
|
|
1160
|
+
// ],
|
|
1161
1161
|
},
|
|
1162
1162
|
limit: limit ? limit : 99999,
|
|
1163
1163
|
};
|