@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.
- package/dist/connect.cjs +6 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4 -28
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2 -27
- package/lib/seam/connect/openapi.js +6 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -6
- package/src/lib/seam/connect/route-types.ts +2 -1
|
@@ -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
|
-
|
|
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
|
@@ -36746,10 +36746,11 @@ export default {
|
|
|
36746
36746
|
},
|
|
36747
36747
|
{
|
|
36748
36748
|
in: 'query',
|
|
36749
|
-
name: '
|
|
36749
|
+
name: 'customer_key',
|
|
36750
36750
|
schema: {
|
|
36751
|
-
|
|
36752
|
-
|
|
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
|
-
|
|
36842
|
-
|
|
36843
|
-
|
|
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
|
-
|
|
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. */
|