@nimee/inforu 1.0.6 → 1.0.8
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/dist/normalize.js +1 -1
- package/package.json +1 -2
- package/src/normalize.ts +1 -1
package/dist/normalize.js
CHANGED
|
@@ -10,7 +10,7 @@ function normalizeBetweenEndUserToContacts(contacts, groupName) {
|
|
|
10
10
|
Email: contact.email,
|
|
11
11
|
PhoneNumber: contact.phone,
|
|
12
12
|
IsMember: contact.isMember,
|
|
13
|
-
|
|
13
|
+
ParticipationAtEventsCounter: contact.participationAtEventsCounter,
|
|
14
14
|
AddToGroupName: groupName,
|
|
15
15
|
ContactRefId: contact._id,
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimee/inforu",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "inforu SDK for Node.js",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": "dan goldberg",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"types": "dist/index.d.ts",
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@nimee/error-handler": "^0.0.9",
|
|
31
|
-
"@nimee/logger": "1.0.27",
|
|
32
31
|
"axios": "1.2.1"
|
|
33
32
|
}
|
|
34
33
|
}
|
package/src/normalize.ts
CHANGED
|
@@ -9,7 +9,7 @@ function normalizeBetweenEndUserToContacts(contacts: IEndUserModel[], groupName?
|
|
|
9
9
|
Email: contact.email,
|
|
10
10
|
PhoneNumber: contact.phone,
|
|
11
11
|
IsMember: (contact as any).isMember,
|
|
12
|
-
|
|
12
|
+
ParticipationAtEventsCounter: (contact as any).participationAtEventsCounter,
|
|
13
13
|
AddToGroupName: groupName,
|
|
14
14
|
ContactRefId: contact._id,
|
|
15
15
|
};
|