@yoryoboy/clickup-sdk
Version:
A modular TypeScript SDK for interacting with the ClickUp API
29 lines (28 loc) • 1.07 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function buildQuery(params) {
if (!params || Object.keys(params).length === 0)
return "";
const parts = [];
for (const [key, value] of Object.entries(params)) {
if (value === undefined || value === null)
continue;
// Handle arrays specially for ClickUp API (needs brackets in parameter name)
if (Array.isArray(value)) {
value.forEach((item) => {
// Encode both the key and value
const encodedKey = encodeURIComponent(`${key}[]`);
const encodedValue = encodeURIComponent(item);
parts.push(`${encodedKey}=${encodedValue}`);
});
}
else {
// Handle non-array values normally
const encodedKey = encodeURIComponent(key);
const encodedValue = encodeURIComponent(value);
parts.push(`${encodedKey}=${encodedValue}`);
}
}
return parts.join("&");
}
exports.default = buildQuery;