@yolo-croket-dev/amqp-access 0.0.44 → 0.0.45
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/package.json
CHANGED
|
@@ -53,7 +53,10 @@ let AmqpUserService = class AmqpUserService {
|
|
|
53
53
|
}
|
|
54
54
|
/** 유저 알림 정보 포함하여 가져오기 */
|
|
55
55
|
async getUserByIdWithNotification(payload, param) {
|
|
56
|
-
return this.amqpManager.call('getUserByIdWithNotification', 'GET_USER_BY_ID',
|
|
56
|
+
return this.amqpManager.call('getUserByIdWithNotification', 'GET_USER_BY_ID', {
|
|
57
|
+
...payload,
|
|
58
|
+
isNotification: true,
|
|
59
|
+
}, param, { isErrorThrowing: true });
|
|
57
60
|
}
|
|
58
61
|
/** 유저 정보 수정 */
|
|
59
62
|
async updateUserById(payload, param) {
|