ebay-api
Version:
eBay API for Node and Browser
12 lines (11 loc) • 431 B
JavaScript
import { EventType } from './types.js';
// https://developer.ebay.com/devzone/client-alerts/docs/CallRef/index.html
var calls;
(function (calls) {
calls[calls["GetPublicAlerts"] = 0] = "GetPublicAlerts";
calls[calls["GetUserAlerts"] = 1] = "GetUserAlerts";
calls[calls["Login"] = 2] = "Login";
calls[calls["Logout"] = 3] = "Logout";
})(calls || (calls = {}));
export { EventType };
export default calls;