@seamapi/types 1.354.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,6 +10432,8 @@ 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
+ /** String to partial match between full_name, phone_number and email_address. */
10436
+ search?: string | undefined;
10435
10437
  /** Maximum number of records to return per page. */
10436
10438
  limit?: number;
10437
10439
  created_before?: Date | undefined;
@@ -10540,6 +10542,8 @@ export interface Routes {
10540
10542
  next_page_cursor: string | null;
10541
10543
  /** Indicates whether there is another page of results after this one. */
10542
10544
  has_next_page: boolean;
10545
+ /** URL to get the next page of results. */
10546
+ next_page_url: string | null;
10543
10547
  };
10544
10548
  };
10545
10549
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.354.0",
3
+ "version": "1.356.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -18755,6 +18755,12 @@ export default {
18755
18755
  nullable: true,
18756
18756
  type: 'string',
18757
18757
  },
18758
+ search: {
18759
+ description:
18760
+ 'String to partial match between full_name, phone_number and email_address.',
18761
+ minLength: 1,
18762
+ type: 'string',
18763
+ },
18758
18764
  user_identity_email_address: {
18759
18765
  description:
18760
18766
  'Email address of the user identity for which you want to retrieve all `acs_user`s.',
@@ -18803,8 +18809,18 @@ export default {
18803
18809
  nullable: true,
18804
18810
  type: 'string',
18805
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
+ },
18806
18818
  },
18807
- required: ['next_page_cursor', 'has_next_page'],
18819
+ required: [
18820
+ 'next_page_cursor',
18821
+ 'has_next_page',
18822
+ 'next_page_url',
18823
+ ],
18808
18824
  type: 'object',
18809
18825
  },
18810
18826
  },
@@ -12494,6 +12494,8 @@ 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
+ /** String to partial match between full_name, phone_number and email_address. */
12498
+ search?: string | undefined
12497
12499
  /** Maximum number of records to return per page. */
12498
12500
  limit?: number
12499
12501
  created_before?: Date | undefined
@@ -12628,6 +12630,8 @@ export interface Routes {
12628
12630
  next_page_cursor: string | null
12629
12631
  /** Indicates whether there is another page of results after this one. */
12630
12632
  has_next_page: boolean
12633
+ /** URL to get the next page of results. */
12634
+ next_page_url: string | null
12631
12635
  }
12632
12636
  }
12633
12637
  }