@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.
@@ -30424,6 +30424,11 @@ declare const _default: {
30424
30424
  nullable: boolean;
30425
30425
  type: string;
30426
30426
  };
30427
+ search: {
30428
+ description: string;
30429
+ minLength: number;
30430
+ type: string;
30431
+ };
30427
30432
  user_identity_email_address: {
30428
30433
  description: string;
30429
30434
  type: string;
@@ -30470,6 +30475,12 @@ declare const _default: {
30470
30475
  nullable: boolean;
30471
30476
  type: string;
30472
30477
  };
30478
+ next_page_url: {
30479
+ description: string;
30480
+ format: string;
30481
+ nullable: boolean;
30482
+ type: string;
30483
+ };
30473
30484
  };
30474
30485
  required: string[];
30475
30486
  type: string;
@@ -51623,6 +51634,8 @@ interface Routes {
51623
51634
  user_identity_email_address?: string | undefined;
51624
51635
  /** ID of the `acs_system` for which you want to retrieve all `acs_user`s. */
51625
51636
  acs_system_id?: string | undefined;
51637
+ /** String to partial match between full_name, phone_number and email_address. */
51638
+ search?: string | undefined;
51626
51639
  /** Maximum number of records to return per page. */
51627
51640
  limit?: number;
51628
51641
  created_before?: Date | undefined;
@@ -51731,6 +51744,8 @@ interface Routes {
51731
51744
  next_page_cursor: string | null;
51732
51745
  /** Indicates whether there is another page of results after this one. */
51733
51746
  has_next_page: boolean;
51747
+ /** URL to get the next page of results. */
51748
+ next_page_url: string | null;
51734
51749
  };
51735
51750
  };
51736
51751
  };
@@ -13778,6 +13778,11 @@ declare const _default: {
13778
13778
  nullable: boolean;
13779
13779
  type: string;
13780
13780
  };
13781
+ search: {
13782
+ description: string;
13783
+ minLength: number;
13784
+ type: string;
13785
+ };
13781
13786
  user_identity_email_address: {
13782
13787
  description: string;
13783
13788
  type: string;
@@ -13824,6 +13829,12 @@ declare const _default: {
13824
13829
  nullable: boolean;
13825
13830
  type: string;
13826
13831
  };
13832
+ next_page_url: {
13833
+ description: string;
13834
+ format: string;
13835
+ nullable: boolean;
13836
+ type: string;
13837
+ };
13827
13838
  };
13828
13839
  required: string[];
13829
13840
  type: string;
@@ -17582,6 +17582,11 @@ export default {
17582
17582
  nullable: true,
17583
17583
  type: 'string',
17584
17584
  },
17585
+ search: {
17586
+ description: 'String to partial match between full_name, phone_number and email_address.',
17587
+ minLength: 1,
17588
+ type: 'string',
17589
+ },
17585
17590
  user_identity_email_address: {
17586
17591
  description: 'Email address of the user identity for which you want to retrieve all `acs_user`s.',
17587
17592
  type: 'string',
@@ -17624,8 +17629,18 @@ export default {
17624
17629
  nullable: true,
17625
17630
  type: 'string',
17626
17631
  },
17632
+ next_page_url: {
17633
+ description: 'URL to get the next page of results.',
17634
+ format: 'uri',
17635
+ nullable: true,
17636
+ type: 'string',
17637
+ },
17627
17638
  },
17628
- required: ['next_page_cursor', 'has_next_page'],
17639
+ required: [
17640
+ 'next_page_cursor',
17641
+ 'has_next_page',
17642
+ 'next_page_url',
17643
+ ],
17629
17644
  type: 'object',
17630
17645
  },
17631
17646
  },