@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.d.cts
CHANGED
|
@@ -82405,6 +82405,11 @@ declare const _default: {
|
|
|
82405
82405
|
description: string;
|
|
82406
82406
|
type: string;
|
|
82407
82407
|
};
|
|
82408
|
+
customer_key: {
|
|
82409
|
+
description: string;
|
|
82410
|
+
minLength: number;
|
|
82411
|
+
type: string;
|
|
82412
|
+
};
|
|
82408
82413
|
};
|
|
82409
82414
|
required: string[];
|
|
82410
82415
|
type: string;
|
|
@@ -137987,12 +137992,14 @@ type Routes = {
|
|
|
137987
137992
|
connected_account_id: string;
|
|
137988
137993
|
/** Indicates whether newly-added devices should appear as [managed devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices). */
|
|
137989
137994
|
automatically_manage_new_devices?: boolean | undefined;
|
|
137990
|
-
/** 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). */
|
|
137995
|
+
/** 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). */
|
|
137991
137996
|
custom_metadata?: {
|
|
137992
137997
|
[x: string]: string | boolean | null;
|
|
137993
137998
|
} | undefined;
|
|
137994
137999
|
/** List of accepted device capabilities that restrict the types of devices that can be connected through this connected account. Valid values are `lock`, `thermostat`, `noise_sensor`, and `access_control`. */
|
|
137995
138000
|
accepted_capabilities?: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[] | undefined;
|
|
138001
|
+
/** 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. */
|
|
138002
|
+
customer_key?: string | undefined;
|
|
137996
138003
|
};
|
|
137997
138004
|
commonParams: {};
|
|
137998
138005
|
formData: {};
|
package/dist/index.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"],
|