bruce-models 0.4.7 → 0.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1341,7 +1341,7 @@
1341
1341
  // Attribute filter.
1342
1342
  (!requestFilter ? "" : "&Filter=" + exports.Api.Encode(JSON.stringify(requestFilter))) +
1343
1343
  // Order by attribute + sort order.
1344
- (!filter.orderBy ? "" : "&OrderBy=" + exports.Api.Encode(JSON.stringify(filter.orderBy))) +
1344
+ (!filter.orderBy ? "" : "&OrderBy=" + filter.orderBy) +
1345
1345
  (filter.sortOrder ? "&SortOrder=" + (filter.sortOrder == exports.Api.ESortOrder.Asc ? "ASC" : "DESC") : "");
1346
1346
  return [4 /*yield*/, api.GET(url, exports.Api.PrepReqParams())];
1347
1347
  case 1: