UNPKG

unomi-sdk-node

Version:

Node module to interact with unomi.

16 lines (15 loc) 555 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAll = void 0; const connection_1 = require("../utils/connection"); const helpers_1 = require("../utils/helpers"); /** * @function getAll * @returns {FilteredResponse} */ function getAll() { const url = ""; // this function has no url (custom function) const body = helpers_1.getProfilePropertyComparisonOperators(); // get comparison operators return connection_1.callResponse("GET", url, body, 200); // return result object } exports.getAll = getAll;