@seamapi/types 1.447.0 → 1.448.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.
@@ -21832,7 +21832,8 @@ export interface Routes {
21832
21832
  user_identifier_key?: string | undefined;
21833
21833
  /** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
21834
21834
  custom_metadata_has?: Record<string, string | boolean> | undefined;
21835
- customer_ids?: string[] | undefined;
21835
+ /** Customer key by which you want to filter connected accounts. */
21836
+ customer_key?: string | undefined;
21836
21837
  /** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
21837
21838
  search?: string | undefined;
21838
21839
  /** Maximum number of records to return per page. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.447.0",
3
+ "version": "1.448.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -36746,10 +36746,11 @@ export default {
36746
36746
  },
36747
36747
  {
36748
36748
  in: 'query',
36749
- name: 'customer_ids',
36749
+ name: 'customer_key',
36750
36750
  schema: {
36751
- items: { format: 'uuid', type: 'string' },
36752
- type: 'array',
36751
+ description:
36752
+ 'Customer key by which you want to filter connected accounts.',
36753
+ type: 'string',
36753
36754
  },
36754
36755
  },
36755
36756
  {
@@ -36838,9 +36839,10 @@ export default {
36838
36839
  'Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs.',
36839
36840
  type: 'object',
36840
36841
  },
36841
- customer_ids: {
36842
- items: { format: 'uuid', type: 'string' },
36843
- type: 'array',
36842
+ customer_key: {
36843
+ description:
36844
+ 'Customer key by which you want to filter connected accounts.',
36845
+ type: 'string',
36844
36846
  },
36845
36847
  limit: {
36846
36848
  default: 11_000,
@@ -24839,7 +24839,8 @@ export interface Routes {
24839
24839
  user_identifier_key?: string | undefined
24840
24840
  /** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
24841
24841
  custom_metadata_has?: Record<string, string | boolean> | undefined
24842
- customer_ids?: string[] | undefined
24842
+ /** Customer key by which you want to filter connected accounts. */
24843
+ customer_key?: string | undefined
24843
24844
  /** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
24844
24845
  search?: string | undefined
24845
24846
  /** Maximum number of records to return per page. */