@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
package/dist/connect.cjs
CHANGED
|
@@ -42441,8 +42441,13 @@ var openapi_default = {
|
|
|
42441
42441
|
{ type: "boolean" }
|
|
42442
42442
|
]
|
|
42443
42443
|
},
|
|
42444
|
-
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).",
|
|
42444
|
+
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).",
|
|
42445
42445
|
type: "object"
|
|
42446
|
+
},
|
|
42447
|
+
customer_key: {
|
|
42448
|
+
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. ",
|
|
42449
|
+
minLength: 1,
|
|
42450
|
+
type: "string"
|
|
42446
42451
|
}
|
|
42447
42452
|
},
|
|
42448
42453
|
required: ["connected_account_id"],
|