33 lines
685 B
JavaScript
Executable file
33 lines
685 B
JavaScript
Executable file
const sendMessage = content => ({
|
|
url: `/api/v1/widget/messages${window.location.search}`,
|
|
params: {
|
|
message: {
|
|
content,
|
|
timestamp: new Date().toString(),
|
|
referer_url: window.refererURL || '',
|
|
},
|
|
},
|
|
});
|
|
|
|
const getConversation = ({ before }) => ({
|
|
url: `/api/v1/widget/messages${window.location.search}`,
|
|
params: { before },
|
|
});
|
|
|
|
const updateContact = id => ({
|
|
url: `/api/v1/widget/messages/${id}${window.location.search}`,
|
|
});
|
|
|
|
const getAvailableAgents = token => ({
|
|
url: '/api/v1/widget/inbox_members',
|
|
params: {
|
|
website_token: token,
|
|
},
|
|
});
|
|
|
|
export default {
|
|
sendMessage,
|
|
getConversation,
|
|
updateContact,
|
|
getAvailableAgents,
|
|
};
|