@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.
@@ -30426,6 +30426,7 @@ declare const _default: {
30426
30426
  };
30427
30427
  search: {
30428
30428
  description: string;
30429
+ minLength: number;
30429
30430
  type: string;
30430
30431
  };
30431
30432
  user_identity_email_address: {
@@ -30474,6 +30475,12 @@ declare const _default: {
30474
30475
  nullable: boolean;
30475
30476
  type: string;
30476
30477
  };
30478
+ next_page_url: {
30479
+ description: string;
30480
+ format: string;
30481
+ nullable: boolean;
30482
+ type: string;
30483
+ };
30477
30484
  };
30478
30485
  required: string[];
30479
30486
  type: string;
@@ -51627,10 +51634,10 @@ interface Routes {
51627
51634
  user_identity_email_address?: string | undefined;
51628
51635
  /** ID of the `acs_system` for which you want to retrieve all `acs_user`s. */
51629
51636
  acs_system_id?: string | undefined;
51630
- /** Maximum number of records to return per page. */
51631
- limit?: number;
51632
51637
  /** String to partial match between full_name, phone_number and email_address. */
51633
51638
  search?: string | undefined;
51639
+ /** Maximum number of records to return per page. */
51640
+ limit?: number;
51634
51641
  created_before?: Date | undefined;
51635
51642
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
51636
51643
  page_cursor?: (string | undefined) | null;
@@ -51737,6 +51744,8 @@ interface Routes {
51737
51744
  next_page_cursor: string | null;
51738
51745
  /** Indicates whether there is another page of results after this one. */
51739
51746
  has_next_page: boolean;
51747
+ /** URL to get the next page of results. */
51748
+ next_page_url: string | null;
51740
51749
  };
51741
51750
  };
51742
51751
  };
@@ -13780,6 +13780,7 @@ declare const _default: {
13780
13780
  };
13781
13781
  search: {
13782
13782
  description: string;
13783
+ minLength: number;
13783
13784
  type: string;
13784
13785
  };
13785
13786
  user_identity_email_address: {
@@ -13828,6 +13829,12 @@ declare const _default: {
13828
13829
  nullable: boolean;
13829
13830
  type: string;
13830
13831
  };
13832
+ next_page_url: {
13833
+ description: string;
13834
+ format: string;
13835
+ nullable: boolean;
13836
+ type: string;
13837
+ };
13831
13838
  };
13832
13839
  required: string[];
13833
13840
  type: string;
@@ -17584,6 +17584,7 @@ export default {
17584
17584
  },
17585
17585
  search: {
17586
17586
  description: 'String to partial match between full_name, phone_number and email_address.',
17587
+ minLength: 1,
17587
17588
  type: 'string',
17588
17589
  },
17589
17590
  user_identity_email_address: {
@@ -17628,8 +17629,18 @@ export default {
17628
17629
  nullable: true,
17629
17630
  type: 'string',
17630
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
+ },
17631
17638
  },
17632
- required: ['next_page_cursor', 'has_next_page'],
17639
+ required: [
17640
+ 'next_page_cursor',
17641
+ 'has_next_page',
17642
+ 'next_page_url',
17643
+ ],
17633
17644
  type: 'object',
17634
17645
  },
17635
17646
  },