@seamapi/types 1.353.0 → 1.353.2

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.
@@ -10400,7 +10400,7 @@ export interface Routes {
10400
10400
  limit?: number;
10401
10401
  created_before?: Date | undefined;
10402
10402
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
10403
- page_cursor?: string | undefined;
10403
+ page_cursor?: (string | undefined) | null;
10404
10404
  };
10405
10405
  formData: {};
10406
10406
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.353.0",
3
+ "version": "1.353.2",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -18709,12 +18709,14 @@ export default {
18709
18709
  default: 500,
18710
18710
  description:
18711
18711
  'Maximum number of records to return per page.',
18712
- format: 'float',
18713
- type: 'number',
18712
+ exclusiveMinimum: true,
18713
+ minimum: 0,
18714
+ type: 'integer',
18714
18715
  },
18715
18716
  page_cursor: {
18716
18717
  description:
18717
18718
  "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
18719
+ nullable: true,
18718
18720
  type: 'string',
18719
18721
  },
18720
18722
  user_identity_email_address: {
@@ -12453,7 +12453,7 @@ export interface Routes {
12453
12453
  limit?: number
12454
12454
  created_before?: Date | undefined
12455
12455
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
12456
- page_cursor?: string | undefined
12456
+ page_cursor?: (string | undefined) | null
12457
12457
  }
12458
12458
  formData: {}
12459
12459
  jsonResponse: {