@seamapi/types 1.588.0 → 1.589.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 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -1
- package/dist/index.cjs +6 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +6 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +7 -1
- package/src/lib/seam/connect/route-types.ts +3 -1
|
@@ -31102,6 +31102,11 @@ declare const _default: {
|
|
|
31102
31102
|
description: string;
|
|
31103
31103
|
type: string;
|
|
31104
31104
|
};
|
|
31105
|
+
customer_key: {
|
|
31106
|
+
description: string;
|
|
31107
|
+
minLength: number;
|
|
31108
|
+
type: string;
|
|
31109
|
+
};
|
|
31105
31110
|
};
|
|
31106
31111
|
required: string[];
|
|
31107
31112
|
type: string;
|
|
@@ -36714,9 +36714,14 @@ export default {
|
|
|
36714
36714
|
{ type: 'boolean' },
|
|
36715
36715
|
],
|
|
36716
36716
|
},
|
|
36717
|
-
description: 'Custom metadata that you want to associate with the connected account. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account) enables you to store custom information, like customer details or internal IDs from your application. Then, you can [filter connected accounts by the desired metadata](https://docs.seam.co/latest/core-concepts/connected-accounts/filtering-connected-accounts-by-custom-metadata).',
|
|
36717
|
+
description: 'Custom metadata that you want to associate with the connected account. Entirely replaces the existing custom metadata object. If a new Connect Webview contains custom metadata and is used to reconnect a connected account, the custom metadata from the Connect Webview will entirely replace the entire custom metadata object on the connected account. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account) enables you to store custom information, like customer details or internal IDs from your application. Then, you can [filter connected accounts by the desired metadata](https://docs.seam.co/latest/core-concepts/connected-accounts/filtering-connected-accounts-by-custom-metadata).',
|
|
36718
36718
|
type: 'object',
|
|
36719
36719
|
},
|
|
36720
|
+
customer_key: {
|
|
36721
|
+
description: 'The customer key to associate with this connected account. If provided, the connected account and all resources under the connected account will be moved to this customer. ',
|
|
36722
|
+
minLength: 1,
|
|
36723
|
+
type: 'string',
|
|
36724
|
+
},
|
|
36720
36725
|
},
|
|
36721
36726
|
required: ['connected_account_id'],
|
|
36722
36727
|
type: 'object',
|