@seamapi/types 1.814.0 → 1.815.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.
@@ -31196,6 +31196,8 @@ export type Routes = {
31196
31196
  } | undefined;
31197
31197
  /** Customer key by which you want to filter connected accounts. */
31198
31198
  customer_key?: string | undefined;
31199
+ /** ID of the space by which you want to filter connected accounts. */
31200
+ space_id?: string | undefined;
31199
31201
  /** 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`. */
31200
31202
  search?: string | undefined;
31201
31203
  /** 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.814.0",
3
+ "version": "1.815.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -50170,6 +50170,16 @@ export default {
50170
50170
  type: 'string',
50171
50171
  },
50172
50172
  },
50173
+ {
50174
+ in: 'query',
50175
+ name: 'space_id',
50176
+ schema: {
50177
+ description:
50178
+ 'ID of the space by which you want to filter connected accounts.',
50179
+ format: 'uuid',
50180
+ type: 'string',
50181
+ },
50182
+ },
50173
50183
  {
50174
50184
  in: 'query',
50175
50185
  name: 'search',
@@ -50281,6 +50291,12 @@ export default {
50281
50291
  minLength: 1,
50282
50292
  type: 'string',
50283
50293
  },
50294
+ space_id: {
50295
+ description:
50296
+ 'ID of the space by which you want to filter connected accounts.',
50297
+ format: 'uuid',
50298
+ type: 'string',
50299
+ },
50284
50300
  user_identifier_key: {
50285
50301
  description:
50286
50302
  'Your user ID for the user by which you want to filter connected accounts.',
@@ -36138,6 +36138,8 @@ export type Routes = {
36138
36138
  | undefined
36139
36139
  /** Customer key by which you want to filter connected accounts. */
36140
36140
  customer_key?: string | undefined
36141
+ /** ID of the space by which you want to filter connected accounts. */
36142
+ space_id?: string | undefined
36141
36143
  /** 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`. */
36142
36144
  search?: string | undefined
36143
36145
  /** Maximum number of records to return per page. */