@yolo-croket-dev/amqp-access 0.5.51-jun.4 → 0.5.51-jun.5
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
|
@@ -25,13 +25,13 @@ let AmqpChatContentGroupService = class AmqpChatContentGroupService {
|
|
|
25
25
|
return this.amqpManager.call('채팅 컨텐츠 그룹 답변', 'chat-content-group.answer', payload, param, { isErrorThrowing: true });
|
|
26
26
|
}
|
|
27
27
|
async getChatContentGroup(payload, param) {
|
|
28
|
-
return this.amqpManager.call('채팅 컨텐츠 그룹 조회', 'chat-content-group.get', payload, param);
|
|
28
|
+
return this.amqpManager.call('채팅 컨텐츠 그룹 조회', 'chat-content-group.get', payload, param, { isErrorThrowing: true });
|
|
29
29
|
}
|
|
30
30
|
async getSyncTargetBySellerId(payload, param) {
|
|
31
|
-
return this.amqpManager.call('채팅 컨텐츠 그룹 동기화 대상 조회', 'chat-content-group.get.sync-target-by-seller-id', payload, param);
|
|
31
|
+
return this.amqpManager.call('채팅 컨텐츠 그룹 동기화 대상 조회', 'chat-content-group.get.sync-target-by-seller-id', payload, param, { isErrorThrowing: true });
|
|
32
32
|
}
|
|
33
33
|
async syncChatContentGroup(payload, param) {
|
|
34
|
-
return this.amqpManager.call('채팅 컨텐츠 그룹 동기화', 'chat-content-group.sync', payload, param);
|
|
34
|
+
return this.amqpManager.call('채팅 컨텐츠 그룹 동기화', 'chat-content-group.sync', payload, param, { isErrorThrowing: true });
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
AmqpChatContentGroupService = __decorate([
|