@linear/sdk 19.0.0 → 19.1.0

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.
package/dist/index-es.js CHANGED
@@ -117420,7 +117420,7 @@ class Request {
117420
117420
  let connection = yield boundFn(args);
117421
117421
  const nodes = connection.nodes;
117422
117422
  while (connection.pageInfo.hasNextPage) {
117423
- connection = yield boundFn(Object.assign(Object.assign({}, args), { after: connection.pageInfo.endCursor }));
117423
+ connection = yield boundFn(Object.assign(Object.assign({ first: 50 }, args), { after: connection.pageInfo.endCursor }));
117424
117424
  nodes.push(...connection.nodes);
117425
117425
  }
117426
117426
  return nodes;