@seamapi/types 1.355.0 → 1.356.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.
@@ -10432,10 +10432,10 @@ export interface Routes {
10432
10432
  user_identity_email_address?: string | undefined;
10433
10433
  /** ID of the `acs_system` for which you want to retrieve all `acs_user`s. */
10434
10434
  acs_system_id?: string | undefined;
10435
- /** Maximum number of records to return per page. */
10436
- limit?: number;
10437
10435
  /** String to partial match between full_name, phone_number and email_address. */
10438
10436
  search?: string | undefined;
10437
+ /** Maximum number of records to return per page. */
10438
+ limit?: number;
10439
10439
  created_before?: Date | undefined;
10440
10440
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
10441
10441
  page_cursor?: (string | undefined) | null;
@@ -10542,6 +10542,8 @@ export interface Routes {
10542
10542
  next_page_cursor: string | null;
10543
10543
  /** Indicates whether there is another page of results after this one. */
10544
10544
  has_next_page: boolean;
10545
+ /** URL to get the next page of results. */
10546
+ next_page_url: string | null;
10545
10547
  };
10546
10548
  };
10547
10549
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.355.0",
3
+ "version": "1.356.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -18758,6 +18758,7 @@ export default {
18758
18758
  search: {
18759
18759
  description:
18760
18760
  'String to partial match between full_name, phone_number and email_address.',
18761
+ minLength: 1,
18761
18762
  type: 'string',
18762
18763
  },
18763
18764
  user_identity_email_address: {
@@ -18808,8 +18809,18 @@ export default {
18808
18809
  nullable: true,
18809
18810
  type: 'string',
18810
18811
  },
18812
+ next_page_url: {
18813
+ description: 'URL to get the next page of results.',
18814
+ format: 'uri',
18815
+ nullable: true,
18816
+ type: 'string',
18817
+ },
18811
18818
  },
18812
- required: ['next_page_cursor', 'has_next_page'],
18819
+ required: [
18820
+ 'next_page_cursor',
18821
+ 'has_next_page',
18822
+ 'next_page_url',
18823
+ ],
18813
18824
  type: 'object',
18814
18825
  },
18815
18826
  },
@@ -12494,10 +12494,10 @@ export interface Routes {
12494
12494
  user_identity_email_address?: string | undefined
12495
12495
  /** ID of the `acs_system` for which you want to retrieve all `acs_user`s. */
12496
12496
  acs_system_id?: string | undefined
12497
- /** Maximum number of records to return per page. */
12498
- limit?: number
12499
12497
  /** String to partial match between full_name, phone_number and email_address. */
12500
12498
  search?: string | undefined
12499
+ /** Maximum number of records to return per page. */
12500
+ limit?: number
12501
12501
  created_before?: Date | undefined
12502
12502
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
12503
12503
  page_cursor?: (string | undefined) | null
@@ -12630,6 +12630,8 @@ export interface Routes {
12630
12630
  next_page_cursor: string | null
12631
12631
  /** Indicates whether there is another page of results after this one. */
12632
12632
  has_next_page: boolean
12633
+ /** URL to get the next page of results. */
12634
+ next_page_url: string | null
12633
12635
  }
12634
12636
  }
12635
12637
  }