@seamapi/http 2.11.2 → 2.13.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/lib/resources/connect-webview.d.ts +1 -1
- package/lib/resources/connected-account.d.ts +1 -1
- package/lib/resources/device.d.ts +1 -1
- package/lib/resources/event.d.ts +122 -122
- package/lib/resources/phone.d.ts +1 -1
- package/lib/resources/unmanaged-device.d.ts +1 -1
- package/lib/routes/access-grants/access-grants.d.ts +2 -2
- package/lib/routes/acs/credentials/credentials.d.ts +4 -4
- package/lib/routes/acs/users/users.d.ts +5 -5
- package/lib/routes/client-sessions/client-sessions.d.ts +2 -2
- package/lib/routes/connect-webviews/connect-webviews.d.ts +2 -2
- package/lib/routes/connected-accounts/connected-accounts.d.ts +2 -2
- package/lib/routes/customers/customers.d.ts +16 -16
- package/lib/routes/devices/devices.d.ts +3 -3
- package/lib/routes/devices/unmanaged/unmanaged.d.ts +2 -2
- package/lib/routes/user-identities/unmanaged/unmanaged.d.ts +1 -1
- package/lib/routes/user-identities/user-identities.d.ts +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +2 -2
- package/src/lib/resources/connect-webview.ts +1 -1
- package/src/lib/resources/connected-account.ts +1 -1
- package/src/lib/resources/device.ts +1 -1
- package/src/lib/resources/event.ts +187 -122
- package/src/lib/resources/phone.ts +1 -1
- package/src/lib/resources/unmanaged-device.ts +1 -1
- package/src/lib/routes/access-grants/access-grants.ts +2 -2
- package/src/lib/routes/acs/credentials/credentials.ts +4 -4
- package/src/lib/routes/acs/users/users.ts +5 -5
- package/src/lib/routes/client-sessions/client-sessions.ts +2 -2
- package/src/lib/routes/connect-webviews/connect-webviews.ts +2 -2
- package/src/lib/routes/connected-accounts/connected-accounts.ts +2 -2
- package/src/lib/routes/customers/customers.ts +16 -16
- package/src/lib/routes/devices/devices.ts +3 -3
- package/src/lib/routes/devices/unmanaged/unmanaged.ts +2 -2
- package/src/lib/routes/user-identities/unmanaged/unmanaged.ts +1 -1
- package/src/lib/routes/user-identities/user-identities.ts +1 -1
- package/src/lib/version.ts +1 -1
|
@@ -47,7 +47,7 @@ export type ConnectWebview = {
|
|
|
47
47
|
/**
|
|
48
48
|
* Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. Keys set to `null` or to an empty string are omitted.
|
|
49
49
|
*/
|
|
50
|
-
custom_metadata: Record<string,
|
|
50
|
+
custom_metadata: Record<string, string | boolean>;
|
|
51
51
|
/**
|
|
52
52
|
* URL to which the Connect Webview should redirect when an unexpected error occurs.
|
|
53
53
|
*/
|
|
@@ -29,7 +29,7 @@ export type ConnectedAccount = {
|
|
|
29
29
|
/**
|
|
30
30
|
* Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. Keys set to `null` or to an empty string are omitted.
|
|
31
31
|
*/
|
|
32
|
-
custom_metadata: Record<string,
|
|
32
|
+
custom_metadata: Record<string, string | boolean>;
|
|
33
33
|
/**
|
|
34
34
|
* Your unique key for the customer associated with this connected account.
|
|
35
35
|
*/
|
|
@@ -97,7 +97,7 @@ export type Device = {
|
|
|
97
97
|
/**
|
|
98
98
|
* Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. Keys set to `null` or to an empty string are omitted.
|
|
99
99
|
*/
|
|
100
|
-
custom_metadata: Record<string,
|
|
100
|
+
custom_metadata: Record<string, string | boolean>;
|
|
101
101
|
/**
|
|
102
102
|
* ID of the device.
|
|
103
103
|
*/
|