@linear/sdk 19.0.0 → 19.1.1

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-cjs.js CHANGED
@@ -117433,7 +117433,7 @@ class Request {
117433
117433
  let connection = yield boundFn(args);
117434
117434
  const nodes = connection.nodes;
117435
117435
  while (connection.pageInfo.hasNextPage) {
117436
- connection = yield boundFn(Object.assign(Object.assign({}, args), { after: connection.pageInfo.endCursor }));
117436
+ connection = yield boundFn(Object.assign(Object.assign({ first: 50 }, args), { after: connection.pageInfo.endCursor }));
117437
117437
  nodes.push(...connection.nodes);
117438
117438
  }
117439
117439
  return nodes;