| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
- import { AbstractPage } from "./core.mjs";
- /**
- * Note: no pagination actually occurs yet, this is for forwards-compatibility.
- */
- export class Page extends AbstractPage {
- constructor(client, response, body, options) {
- super(client, response, body, options);
- this.data = body.data || [];
- this.object = body.object;
- }
- getPaginatedItems() {
- return this.data ?? [];
- }
- // @deprecated Please use `nextPageInfo()` instead
- /**
- * This page represents a response that isn't actually paginated at the API level
- * so there will never be any next page params.
- */
- nextPageParams() {
- return null;
- }
- nextPageInfo() {
- return null;
- }
- }
- export class CursorPage extends AbstractPage {
- constructor(client, response, body, options) {
- super(client, response, body, options);
- this.data = body.data || [];
- this.has_more = body.has_more || false;
- }
- getPaginatedItems() {
- return this.data ?? [];
- }
- hasNextPage() {
- if (this.has_more === false) {
- return false;
- }
- return super.hasNextPage();
- }
- // @deprecated Please use `nextPageInfo()` instead
- nextPageParams() {
- const info = this.nextPageInfo();
- if (!info)
- return null;
- if ('params' in info)
- return info.params;
- const params = Object.fromEntries(info.url.searchParams);
- if (!Object.keys(params).length)
- return null;
- return params;
- }
- nextPageInfo() {
- const data = this.getPaginatedItems();
- if (!data.length) {
- return null;
- }
- const id = data[data.length - 1]?.id;
- if (!id) {
- return null;
- }
- return { params: { after: id } };
- }
- }
- //# sourceMappingURL=pagination.mjs.map
|