@seamapi/types 1.483.0 → 1.484.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.
@@ -20663,6 +20663,9 @@ declare const _default: {
20663
20663
  ok: {
20664
20664
  type: string;
20665
20665
  };
20666
+ pagination: {
20667
+ $ref: string;
20668
+ };
20666
20669
  };
20667
20670
  required: string[];
20668
20671
  type: string;
@@ -20795,6 +20798,11 @@ declare const _default: {
20795
20798
  format: string;
20796
20799
  type: string;
20797
20800
  };
20801
+ page_cursor: {
20802
+ description: string;
20803
+ nullable: boolean;
20804
+ type: string;
20805
+ };
20798
20806
  };
20799
20807
  type: string;
20800
20808
  oneOf?: never;
@@ -20818,6 +20826,9 @@ declare const _default: {
20818
20826
  ok: {
20819
20827
  type: string;
20820
20828
  };
20829
+ pagination: {
20830
+ $ref: string;
20831
+ };
20821
20832
  };
20822
20833
  required: string[];
20823
20834
  type: string;
@@ -28411,8 +28411,9 @@ export default {
28411
28411
  type: 'array',
28412
28412
  },
28413
28413
  ok: { type: 'boolean' },
28414
+ pagination: { $ref: '#/components/schemas/pagination' },
28414
28415
  },
28415
- required: ['acs_credentials', 'ok'],
28416
+ required: ['acs_credentials', 'pagination', 'ok'],
28416
28417
  type: 'object',
28417
28418
  },
28418
28419
  },
@@ -28515,6 +28516,11 @@ export default {
28515
28516
  format: 'float',
28516
28517
  type: 'number',
28517
28518
  },
28519
+ page_cursor: {
28520
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
28521
+ nullable: true,
28522
+ type: 'string',
28523
+ },
28518
28524
  },
28519
28525
  type: 'object',
28520
28526
  },
@@ -28534,8 +28540,9 @@ export default {
28534
28540
  type: 'array',
28535
28541
  },
28536
28542
  ok: { type: 'boolean' },
28543
+ pagination: { $ref: '#/components/schemas/pagination' },
28537
28544
  },
28538
- required: ['acs_credentials', 'ok'],
28545
+ required: ['acs_credentials', 'pagination', 'ok'],
28539
28546
  type: 'object',
28540
28547
  },
28541
28548
  },