@seamapi/types 1.351.1 → 1.352.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.
@@ -30365,9 +30365,14 @@ declare const _default: {
30365
30365
  };
30366
30366
  limit: {
30367
30367
  default: number;
30368
+ description: string;
30368
30369
  format: string;
30369
30370
  type: string;
30370
30371
  };
30372
+ page_cursor: {
30373
+ description: string;
30374
+ type: string;
30375
+ };
30371
30376
  user_identity_email_address: {
30372
30377
  description: string;
30373
30378
  type: string;
@@ -30402,6 +30407,22 @@ declare const _default: {
30402
30407
  ok: {
30403
30408
  type: string;
30404
30409
  };
30410
+ pagination: {
30411
+ description: string;
30412
+ properties: {
30413
+ has_next_page: {
30414
+ description: string;
30415
+ type: string;
30416
+ };
30417
+ next_page_cursor: {
30418
+ description: string;
30419
+ nullable: boolean;
30420
+ type: string;
30421
+ };
30422
+ };
30423
+ required: string[];
30424
+ type: string;
30425
+ };
30405
30426
  };
30406
30427
  required: string[];
30407
30428
  type: string;
@@ -51508,8 +51529,11 @@ interface Routes {
51508
51529
  user_identity_email_address?: string | undefined;
51509
51530
  /** ID of the `acs_system` for which you want to retrieve all `acs_user`s. */
51510
51531
  acs_system_id?: string | undefined;
51532
+ /** Maximum number of records to return per page. */
51511
51533
  limit?: number;
51512
51534
  created_before?: Date | undefined;
51535
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
51536
+ page_cursor?: string | undefined;
51513
51537
  };
51514
51538
  formData: {};
51515
51539
  jsonResponse: {
@@ -51607,6 +51631,13 @@ interface Routes {
51607
51631
  phone_number?: string | undefined;
51608
51632
  is_managed: true;
51609
51633
  }>;
51634
+ /** Information about the current page of results. */
51635
+ pagination: {
51636
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
51637
+ next_page_cursor: string | null;
51638
+ /** Indicates whether there is another page of results after this one. */
51639
+ has_next_page: boolean;
51640
+ };
51610
51641
  };
51611
51642
  };
51612
51643
  '/acs/users/list_accessible_entrances': {
@@ -13764,9 +13764,14 @@ declare const _default: {
13764
13764
  };
13765
13765
  limit: {
13766
13766
  default: number;
13767
+ description: string;
13767
13768
  format: string;
13768
13769
  type: string;
13769
13770
  };
13771
+ page_cursor: {
13772
+ description: string;
13773
+ type: string;
13774
+ };
13770
13775
  user_identity_email_address: {
13771
13776
  description: string;
13772
13777
  type: string;
@@ -13801,6 +13806,22 @@ declare const _default: {
13801
13806
  ok: {
13802
13807
  type: string;
13803
13808
  };
13809
+ pagination: {
13810
+ description: string;
13811
+ properties: {
13812
+ has_next_page: {
13813
+ description: string;
13814
+ type: string;
13815
+ };
13816
+ next_page_cursor: {
13817
+ description: string;
13818
+ nullable: boolean;
13819
+ type: string;
13820
+ };
13821
+ };
13822
+ required: string[];
13823
+ type: string;
13824
+ };
13804
13825
  };
13805
13826
  required: string[];
13806
13827
  type: string;
@@ -17539,7 +17539,16 @@ export default {
17539
17539
  type: 'string',
17540
17540
  },
17541
17541
  created_before: { format: 'date-time', type: 'string' },
17542
- limit: { default: 500, format: 'float', type: 'number' },
17542
+ limit: {
17543
+ default: 500,
17544
+ description: 'Maximum number of records to return per page.',
17545
+ format: 'float',
17546
+ type: 'number',
17547
+ },
17548
+ page_cursor: {
17549
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
17550
+ type: 'string',
17551
+ },
17543
17552
  user_identity_email_address: {
17544
17553
  description: 'Email address of the user identity for which you want to retrieve all `acs_user`s.',
17545
17554
  type: 'string',
@@ -17570,8 +17579,24 @@ export default {
17570
17579
  type: 'array',
17571
17580
  },
17572
17581
  ok: { type: 'boolean' },
17582
+ pagination: {
17583
+ description: 'Information about the current page of results.',
17584
+ properties: {
17585
+ has_next_page: {
17586
+ description: 'Indicates whether there is another page of results after this one.',
17587
+ type: 'boolean',
17588
+ },
17589
+ next_page_cursor: {
17590
+ description: 'Opaque value that can be used to select the next page of results via the `page_cursor` parameter.',
17591
+ nullable: true,
17592
+ type: 'string',
17593
+ },
17594
+ },
17595
+ required: ['next_page_cursor', 'has_next_page'],
17596
+ type: 'object',
17597
+ },
17573
17598
  },
17574
- required: ['acs_users', 'ok'],
17599
+ required: ['acs_users', 'pagination', 'ok'],
17575
17600
  type: 'object',
17576
17601
  },
17577
17602
  },