@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.
- package/dist/connect.cjs +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +26 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -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
|
@@ -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. */
|