@seamapi/types 1.521.0 → 1.522.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.
@@ -21518,6 +21518,8 @@ export type Routes = {
21518
21518
  created_before?: Date | undefined;
21519
21519
  /** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
21520
21520
  is_multi_phone_sync_credential?: boolean | undefined;
21521
+ /** String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`. */
21522
+ search?: string | undefined;
21521
21523
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
21522
21524
  page_cursor?: (string | undefined) | null;
21523
21525
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.521.0",
3
+ "version": "1.522.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -31657,6 +31657,12 @@ export default {
31657
31657
  nullable: true,
31658
31658
  type: 'string',
31659
31659
  },
31660
+ search: {
31661
+ description:
31662
+ 'String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`.',
31663
+ minLength: 1,
31664
+ type: 'string',
31665
+ },
31660
31666
  },
31661
31667
  type: 'object',
31662
31668
  },
@@ -25003,6 +25003,8 @@ export type Routes = {
25003
25003
  created_before?: Date | undefined
25004
25004
  /** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
25005
25005
  is_multi_phone_sync_credential?: boolean | undefined
25006
+ /** String for which to search. Filters returned credentials to include all records that satisfy a partial match using `code`, `card_number`, `acs_user_id` or `acs_credential_id`. */
25007
+ search?: string | undefined
25006
25008
  /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
25007
25009
  page_cursor?: (string | undefined) | null
25008
25010
  }