rejoiner 2.13.0 → 2.13.1
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.
|
@@ -50,22 +50,22 @@ const customerEndpoint = (client) => {
|
|
|
50
50
|
const params = { email }
|
|
51
51
|
const data = { preference_tags: tags }
|
|
52
52
|
|
|
53
|
-
const config = { params
|
|
54
|
-
return dispatchReturnData('put')(preferenceTagsPath, config)
|
|
53
|
+
const config = { params }
|
|
54
|
+
return dispatchReturnData('put')(preferenceTagsPath, data, config)
|
|
55
55
|
},
|
|
56
56
|
add: (email, tags) => {
|
|
57
57
|
const params = { email }
|
|
58
58
|
const data = { preference_tags: tags }
|
|
59
59
|
|
|
60
|
-
const config = { params
|
|
61
|
-
return dispatchReturnData('patch')(preferenceTagsPath, config)
|
|
60
|
+
const config = { params }
|
|
61
|
+
return dispatchReturnData('patch')(preferenceTagsPath, data, config)
|
|
62
62
|
},
|
|
63
63
|
remove: (email, tags) => {
|
|
64
64
|
const params = { email }
|
|
65
65
|
const data = { preference_tags: tags }
|
|
66
66
|
|
|
67
|
-
const config = { params
|
|
68
|
-
return dispatchReturnData('patch')(preferenceTagsRemovePath, config)
|
|
67
|
+
const config = { params }
|
|
68
|
+
return dispatchReturnData('patch')(preferenceTagsRemovePath, data, config)
|
|
69
69
|
},
|
|
70
70
|
},
|
|
71
71
|
}
|
package/package.json
CHANGED