@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.
@@ -30366,11 +30366,13 @@ declare const _default: {
30366
30366
  limit: {
30367
30367
  default: number;
30368
30368
  description: string;
30369
- format: string;
30369
+ exclusiveMinimum: boolean;
30370
+ minimum: number;
30370
30371
  type: string;
30371
30372
  };
30372
30373
  page_cursor: {
30373
30374
  description: string;
30375
+ nullable: boolean;
30374
30376
  type: string;
30375
30377
  };
30376
30378
  user_identity_email_address: {
@@ -51540,7 +51542,7 @@ interface Routes {
51540
51542
  limit?: number;
51541
51543
  created_before?: Date | undefined;
51542
51544
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
51543
- page_cursor?: string | undefined;
51545
+ page_cursor?: (string | undefined) | null;
51544
51546
  };
51545
51547
  formData: {};
51546
51548
  jsonResponse: {
@@ -13765,11 +13765,13 @@ declare const _default: {
13765
13765
  limit: {
13766
13766
  default: number;
13767
13767
  description: string;
13768
- format: string;
13768
+ exclusiveMinimum: boolean;
13769
+ minimum: number;
13769
13770
  type: string;
13770
13771
  };
13771
13772
  page_cursor: {
13772
13773
  description: string;
13774
+ nullable: boolean;
13773
13775
  type: string;
13774
13776
  };
13775
13777
  user_identity_email_address: {
@@ -17542,11 +17542,13 @@ export default {
17542
17542
  limit: {
17543
17543
  default: 500,
17544
17544
  description: 'Maximum number of records to return per page.',
17545
- format: 'float',
17546
- type: 'number',
17545
+ exclusiveMinimum: true,
17546
+ minimum: 0,
17547
+ type: 'integer',
17547
17548
  },
17548
17549
  page_cursor: {
17549
17550
  description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
17551
+ nullable: true,
17550
17552
  type: 'string',
17551
17553
  },
17552
17554
  user_identity_email_address: {