@seamapi/types 1.415.0 → 1.416.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 +7 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +15 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +4 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/partner/magic-link.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +5 -0
- package/src/lib/seam/connect/route-types.ts +6 -0
|
@@ -19493,6 +19493,8 @@ export interface Routes {
|
|
|
19493
19493
|
custom_metadata: Record<string, string | boolean>;
|
|
19494
19494
|
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
19495
19495
|
automatically_manage_new_devices: boolean;
|
|
19496
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
19497
|
+
customer_key?: string | undefined;
|
|
19496
19498
|
};
|
|
19497
19499
|
};
|
|
19498
19500
|
};
|
|
@@ -19637,6 +19639,8 @@ export interface Routes {
|
|
|
19637
19639
|
custom_metadata: Record<string, string | boolean>;
|
|
19638
19640
|
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
19639
19641
|
automatically_manage_new_devices: boolean;
|
|
19642
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
19643
|
+
customer_key?: string | undefined;
|
|
19640
19644
|
}>;
|
|
19641
19645
|
/** Information about the current page of results. */
|
|
19642
19646
|
pagination: {
|
|
@@ -19800,6 +19804,8 @@ export interface Routes {
|
|
|
19800
19804
|
custom_metadata: Record<string, string | boolean>;
|
|
19801
19805
|
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
19802
19806
|
automatically_manage_new_devices: boolean;
|
|
19807
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
19808
|
+
customer_key?: string | undefined;
|
|
19803
19809
|
};
|
|
19804
19810
|
};
|
|
19805
19811
|
};
|
package/package.json
CHANGED
|
@@ -302,6 +302,12 @@ export const connected_account = z.object({
|
|
|
302
302
|
.describe(
|
|
303
303
|
'Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API.',
|
|
304
304
|
),
|
|
305
|
+
customer_key: z
|
|
306
|
+
.string()
|
|
307
|
+
.optional()
|
|
308
|
+
.describe(
|
|
309
|
+
'Your unique key for the customer associated with this connected account.',
|
|
310
|
+
),
|
|
305
311
|
}).describe(`
|
|
306
312
|
---
|
|
307
313
|
route_path: /connected_accounts
|
|
@@ -7690,6 +7690,11 @@ export default {
|
|
|
7690
7690
|
'Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application.',
|
|
7691
7691
|
type: 'object',
|
|
7692
7692
|
},
|
|
7693
|
+
customer_key: {
|
|
7694
|
+
description:
|
|
7695
|
+
'Your unique key for the customer associated with this connected account.',
|
|
7696
|
+
type: 'string',
|
|
7697
|
+
},
|
|
7693
7698
|
errors: {
|
|
7694
7699
|
description: 'Errors associated with the connected account.',
|
|
7695
7700
|
items: {
|
|
@@ -22568,6 +22568,8 @@ export interface Routes {
|
|
|
22568
22568
|
custom_metadata: Record<string, string | boolean>
|
|
22569
22569
|
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
22570
22570
|
automatically_manage_new_devices: boolean
|
|
22571
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
22572
|
+
customer_key?: string | undefined
|
|
22571
22573
|
}
|
|
22572
22574
|
}
|
|
22573
22575
|
}
|
|
@@ -22723,6 +22725,8 @@ export interface Routes {
|
|
|
22723
22725
|
custom_metadata: Record<string, string | boolean>
|
|
22724
22726
|
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
22725
22727
|
automatically_manage_new_devices: boolean
|
|
22728
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
22729
|
+
customer_key?: string | undefined
|
|
22726
22730
|
}>
|
|
22727
22731
|
/** Information about the current page of results. */
|
|
22728
22732
|
pagination: {
|
|
@@ -22897,6 +22901,8 @@ export interface Routes {
|
|
|
22897
22901
|
custom_metadata: Record<string, string | boolean>
|
|
22898
22902
|
/** Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API. */
|
|
22899
22903
|
automatically_manage_new_devices: boolean
|
|
22904
|
+
/** Your unique key for the customer associated with this connected account. */
|
|
22905
|
+
customer_key?: string | undefined
|
|
22900
22906
|
}
|
|
22901
22907
|
}
|
|
22902
22908
|
}
|