From b0186676263252eff6cde5a0b78970d6f238ec56 Mon Sep 17 00:00:00 2001 From: Walter Manger Date: Wed, 15 Mar 2017 10:06:27 -0600 Subject: [PATCH] fix: incorrect _util prefix in ApiPath --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 3f622cb..10f4fc9 100644 --- a/src/index.js +++ b/src/index.js @@ -80,11 +80,11 @@ function forteApi(credentials, scope, options) { content: { aggregate: function aggregate(type, list, aggregate) { validateArgs('content_aggregate', arguments); - return client.post(_util.ApiPaths.content.aggregate(scope, type), { data: { list, aggregate } } ); + return client.post(ApiPaths.content.aggregate(scope, type), { data: { list, aggregate } } ); }, getManyComplex: function getManyComplex(type, filter) { validateArgs('content_getManyComplex', arguments); - return client.post(_util.ApiPaths.content.getMany(scope, type), { + return client.post(ApiPaths.content.getMany(scope, type), { data: filter, }); },