@seamapi/types 1.887.0 → 1.889.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 +71 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +176 -10
- package/dist/index.cjs +71 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.js +2 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js +2 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +45 -0
- package/lib/seam/connect/models/acs/acs-system.js +9 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +58 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +9 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/openapi.js +49 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +121 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +12 -0
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +57 -7
- package/src/lib/seam/connect/route-types.ts +134 -10
|
@@ -1977,7 +1977,9 @@ export type Routes = {
|
|
|
1977
1977
|
|
|
1978
1978
|
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/low-level-apis/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/low-level-apis/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`. An ongoing access code is active, until it has been removed from the device. To specify an ongoing access code, leave both `starts_at` and `ends_at` empty. A time-bound access code will be programmed at the `starts_at` time and removed at the `ends_at` time.
|
|
1979
1979
|
|
|
1980
|
-
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/low-level-apis/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code.
|
|
1980
|
+
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/low-level-apis/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code.
|
|
1981
|
+
|
|
1982
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach and work across both standalone smart locks and access systems. Use the lower-level Access Codes API directly only when you specifically need to manage individual PIN codes. */
|
|
1981
1983
|
access_code: {
|
|
1982
1984
|
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
1983
1985
|
workspace_id: string
|
|
@@ -5418,7 +5420,9 @@ export type Routes = {
|
|
|
5418
5420
|
|
|
5419
5421
|
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/low-level-apis/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/low-level-apis/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`. An ongoing access code is active, until it has been removed from the device. To specify an ongoing access code, leave both `starts_at` and `ends_at` empty. A time-bound access code will be programmed at the `starts_at` time and removed at the `ends_at` time.
|
|
5420
5422
|
|
|
5421
|
-
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/low-level-apis/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code.
|
|
5423
|
+
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/low-level-apis/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code.
|
|
5424
|
+
|
|
5425
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach and work across both standalone smart locks and access systems. Use the lower-level Access Codes API directly only when you specifically need to manage individual PIN codes. */
|
|
5422
5426
|
access_code: {
|
|
5423
5427
|
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
5424
5428
|
workspace_id: string
|
|
@@ -6992,7 +6996,9 @@ export type Routes = {
|
|
|
6992
6996
|
|
|
6993
6997
|
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/low-level-apis/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/low-level-apis/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`. An ongoing access code is active, until it has been removed from the device. To specify an ongoing access code, leave both `starts_at` and `ends_at` empty. A time-bound access code will be programmed at the `starts_at` time and removed at the `ends_at` time.
|
|
6994
6998
|
|
|
6995
|
-
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/low-level-apis/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code.
|
|
6999
|
+
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/low-level-apis/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code.
|
|
7000
|
+
|
|
7001
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach and work across both standalone smart locks and access systems. Use the lower-level Access Codes API directly only when you specifically need to manage individual PIN codes. */
|
|
6996
7002
|
backup_access_code: {
|
|
6997
7003
|
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
6998
7004
|
workspace_id: string
|
|
@@ -7707,7 +7713,9 @@ export type Routes = {
|
|
|
7707
7713
|
|
|
7708
7714
|
Seam supports programming two types of access codes: [ongoing](https://docs.seam.co/low-level-apis/smart-locks/access-codes#ongoing-access-codes) and [time-bound](https://docs.seam.co/low-level-apis/smart-locks/access-codes#time-bound-access-codes). To differentiate between the two, refer to the `type` property of the access code. Ongoing codes display as `ongoing`, whereas time-bound codes are labeled `time_bound`. An ongoing access code is active, until it has been removed from the device. To specify an ongoing access code, leave both `starts_at` and `ends_at` empty. A time-bound access code will be programmed at the `starts_at` time and removed at the `ends_at` time.
|
|
7709
7715
|
|
|
7710
|
-
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/low-level-apis/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code.
|
|
7716
|
+
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/low-level-apis/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code.
|
|
7717
|
+
|
|
7718
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach and work across both standalone smart locks and access systems. Use the lower-level Access Codes API directly only when you specifically need to manage individual PIN codes. */
|
|
7711
7719
|
access_code: {
|
|
7712
7720
|
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
7713
7721
|
workspace_id: string
|
|
@@ -16993,6 +17001,14 @@ export type Routes = {
|
|
|
16993
17001
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16994
17002
|
warning_code: 'provider_service_unavailable'
|
|
16995
17003
|
}
|
|
17004
|
+
| {
|
|
17005
|
+
/** Date and time at which Seam created the warning. */
|
|
17006
|
+
created_at: string
|
|
17007
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17008
|
+
message: string
|
|
17009
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17010
|
+
warning_code: 'setup_required'
|
|
17011
|
+
}
|
|
16996
17012
|
)[]
|
|
16997
17013
|
/** 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. */
|
|
16998
17014
|
custom_metadata: {
|
|
@@ -17198,6 +17214,14 @@ export type Routes = {
|
|
|
17198
17214
|
* @deprecated this field is deprecated.*/
|
|
17199
17215
|
misconfigured_acs_entrance_ids?: string[] | undefined
|
|
17200
17216
|
}
|
|
17217
|
+
| {
|
|
17218
|
+
/** Date and time at which Seam created the warning. */
|
|
17219
|
+
created_at: string
|
|
17220
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17221
|
+
message: string
|
|
17222
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17223
|
+
warning_code: 'setup_required'
|
|
17224
|
+
}
|
|
17201
17225
|
)[]
|
|
17202
17226
|
}[]
|
|
17203
17227
|
| undefined
|
|
@@ -28951,7 +28975,9 @@ export type Routes = {
|
|
|
28951
28975
|
|
|
28952
28976
|
An access control system generally uses digital means of access to authorize a user trying to get through a specific entrance. Examples of credentials include plastic key cards, mobile keys, biometric identifiers, and PIN codes. The electronic nature of these credentials, as well as the fact that access is centralized, enables both the rapid provisioning and rescinding of access and the ability to compile access audit logs.
|
|
28953
28977
|
|
|
28954
|
-
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
28978
|
+
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
28979
|
+
|
|
28980
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach. Use the lower-level ACS credential API directly only when you specifically need to manage individual credentials. */
|
|
28955
28981
|
acs_credential: {
|
|
28956
28982
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
28957
28983
|
acs_credential_id: string
|
|
@@ -29192,7 +29218,9 @@ export type Routes = {
|
|
|
29192
29218
|
|
|
29193
29219
|
An access control system generally uses digital means of access to authorize a user trying to get through a specific entrance. Examples of credentials include plastic key cards, mobile keys, biometric identifiers, and PIN codes. The electronic nature of these credentials, as well as the fact that access is centralized, enables both the rapid provisioning and rescinding of access and the ability to compile access audit logs.
|
|
29194
29220
|
|
|
29195
|
-
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
29221
|
+
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
29222
|
+
|
|
29223
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach. Use the lower-level ACS credential API directly only when you specifically need to manage individual credentials. */
|
|
29196
29224
|
acs_credential: {
|
|
29197
29225
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29198
29226
|
acs_credential_id: string
|
|
@@ -29380,7 +29408,9 @@ export type Routes = {
|
|
|
29380
29408
|
|
|
29381
29409
|
An access control system generally uses digital means of access to authorize a user trying to get through a specific entrance. Examples of credentials include plastic key cards, mobile keys, biometric identifiers, and PIN codes. The electronic nature of these credentials, as well as the fact that access is centralized, enables both the rapid provisioning and rescinding of access and the ability to compile access audit logs.
|
|
29382
29410
|
|
|
29383
|
-
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
29411
|
+
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
29412
|
+
|
|
29413
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach. Use the lower-level ACS credential API directly only when you specifically need to manage individual credentials. */
|
|
29384
29414
|
acs_credential: {
|
|
29385
29415
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29386
29416
|
acs_credential_id: string
|
|
@@ -29573,7 +29603,9 @@ export type Routes = {
|
|
|
29573
29603
|
|
|
29574
29604
|
An access control system generally uses digital means of access to authorize a user trying to get through a specific entrance. Examples of credentials include plastic key cards, mobile keys, biometric identifiers, and PIN codes. The electronic nature of these credentials, as well as the fact that access is centralized, enables both the rapid provisioning and rescinding of access and the ability to compile access audit logs.
|
|
29575
29605
|
|
|
29576
|
-
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
29606
|
+
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
29607
|
+
|
|
29608
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach. Use the lower-level ACS credential API directly only when you specifically need to manage individual credentials. */
|
|
29577
29609
|
acs_credential: {
|
|
29578
29610
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29579
29611
|
acs_credential_id: string
|
|
@@ -30199,7 +30231,9 @@ export type Routes = {
|
|
|
30199
30231
|
|
|
30200
30232
|
An access control system generally uses digital means of access to authorize a user trying to get through a specific entrance. Examples of credentials include plastic key cards, mobile keys, biometric identifiers, and PIN codes. The electronic nature of these credentials, as well as the fact that access is centralized, enables both the rapid provisioning and rescinding of access and the ability to compile access audit logs.
|
|
30201
30233
|
|
|
30202
|
-
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
30234
|
+
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
30235
|
+
|
|
30236
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach. Use the lower-level ACS credential API directly only when you specifically need to manage individual credentials. */
|
|
30203
30237
|
acs_credential: {
|
|
30204
30238
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30205
30239
|
acs_credential_id: string
|
|
@@ -30753,7 +30787,9 @@ export type Routes = {
|
|
|
30753
30787
|
|
|
30754
30788
|
An access control system generally uses digital means of access to authorize a user trying to get through a specific entrance. Examples of credentials include plastic key cards, mobile keys, biometric identifiers, and PIN codes. The electronic nature of these credentials, as well as the fact that access is centralized, enables both the rapid provisioning and rescinding of access and the ability to compile access audit logs.
|
|
30755
30789
|
|
|
30756
|
-
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
30790
|
+
For each `acs_credential`, you define the access method. You can also specify additional properties, such as a PIN code, depending on the credential type.
|
|
30791
|
+
|
|
30792
|
+
For granting a person access to a space, [Access Grants](https://docs.seam.co/use-cases/granting-access) are the default and recommended approach. Use the lower-level ACS credential API directly only when you specifically need to manage individual credentials. */
|
|
30757
30793
|
acs_credential: {
|
|
30758
30794
|
/** ID of the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30759
30795
|
acs_credential_id: string
|
|
@@ -39768,6 +39804,14 @@ export type Routes = {
|
|
|
39768
39804
|
* @deprecated this field is deprecated.*/
|
|
39769
39805
|
misconfigured_acs_entrance_ids?: string[] | undefined
|
|
39770
39806
|
}
|
|
39807
|
+
| {
|
|
39808
|
+
/** Date and time at which Seam created the warning. */
|
|
39809
|
+
created_at: string
|
|
39810
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39811
|
+
message: string
|
|
39812
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39813
|
+
warning_code: 'setup_required'
|
|
39814
|
+
}
|
|
39771
39815
|
)[]
|
|
39772
39816
|
}
|
|
39773
39817
|
}
|
|
@@ -39961,6 +40005,14 @@ export type Routes = {
|
|
|
39961
40005
|
* @deprecated this field is deprecated.*/
|
|
39962
40006
|
misconfigured_acs_entrance_ids?: string[] | undefined
|
|
39963
40007
|
}
|
|
40008
|
+
| {
|
|
40009
|
+
/** Date and time at which Seam created the warning. */
|
|
40010
|
+
created_at: string
|
|
40011
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40012
|
+
message: string
|
|
40013
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40014
|
+
warning_code: 'setup_required'
|
|
40015
|
+
}
|
|
39964
40016
|
)[]
|
|
39965
40017
|
}[]
|
|
39966
40018
|
}
|
|
@@ -40150,6 +40202,14 @@ export type Routes = {
|
|
|
40150
40202
|
* @deprecated this field is deprecated.*/
|
|
40151
40203
|
misconfigured_acs_entrance_ids?: string[] | undefined
|
|
40152
40204
|
}
|
|
40205
|
+
| {
|
|
40206
|
+
/** Date and time at which Seam created the warning. */
|
|
40207
|
+
created_at: string
|
|
40208
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40209
|
+
message: string
|
|
40210
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40211
|
+
warning_code: 'setup_required'
|
|
40212
|
+
}
|
|
40153
40213
|
)[]
|
|
40154
40214
|
}[]
|
|
40155
40215
|
}
|
|
@@ -46944,6 +47004,14 @@ export type Routes = {
|
|
|
46944
47004
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46945
47005
|
warning_code: 'provider_service_unavailable'
|
|
46946
47006
|
}
|
|
47007
|
+
| {
|
|
47008
|
+
/** Date and time at which Seam created the warning. */
|
|
47009
|
+
created_at: string
|
|
47010
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47011
|
+
message: string
|
|
47012
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47013
|
+
warning_code: 'setup_required'
|
|
47014
|
+
}
|
|
46947
47015
|
)[]
|
|
46948
47016
|
/** 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. */
|
|
46949
47017
|
custom_metadata: {
|
|
@@ -47148,6 +47216,14 @@ export type Routes = {
|
|
|
47148
47216
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47149
47217
|
warning_code: 'provider_service_unavailable'
|
|
47150
47218
|
}
|
|
47219
|
+
| {
|
|
47220
|
+
/** Date and time at which Seam created the warning. */
|
|
47221
|
+
created_at: string
|
|
47222
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47223
|
+
message: string
|
|
47224
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47225
|
+
warning_code: 'setup_required'
|
|
47226
|
+
}
|
|
47151
47227
|
)[]
|
|
47152
47228
|
/** 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. */
|
|
47153
47229
|
custom_metadata: {
|
|
@@ -47394,6 +47470,14 @@ export type Routes = {
|
|
|
47394
47470
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47395
47471
|
warning_code: 'provider_service_unavailable'
|
|
47396
47472
|
}
|
|
47473
|
+
| {
|
|
47474
|
+
/** Date and time at which Seam created the warning. */
|
|
47475
|
+
created_at: string
|
|
47476
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47477
|
+
message: string
|
|
47478
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47479
|
+
warning_code: 'setup_required'
|
|
47480
|
+
}
|
|
47397
47481
|
)[]
|
|
47398
47482
|
/** 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. */
|
|
47399
47483
|
custom_metadata: {
|
|
@@ -99587,6 +99671,14 @@ export type Routes = {
|
|
|
99587
99671
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99588
99672
|
warning_code: 'provider_service_unavailable'
|
|
99589
99673
|
}
|
|
99674
|
+
| {
|
|
99675
|
+
/** Date and time at which Seam created the warning. */
|
|
99676
|
+
created_at: string
|
|
99677
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
99678
|
+
message: string
|
|
99679
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99680
|
+
warning_code: 'setup_required'
|
|
99681
|
+
}
|
|
99590
99682
|
)[]
|
|
99591
99683
|
/** 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. */
|
|
99592
99684
|
custom_metadata: {
|
|
@@ -99792,6 +99884,14 @@ export type Routes = {
|
|
|
99792
99884
|
* @deprecated this field is deprecated.*/
|
|
99793
99885
|
misconfigured_acs_entrance_ids?: string[] | undefined
|
|
99794
99886
|
}
|
|
99887
|
+
| {
|
|
99888
|
+
/** Date and time at which Seam created the warning. */
|
|
99889
|
+
created_at: string
|
|
99890
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
99891
|
+
message: string
|
|
99892
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99893
|
+
warning_code: 'setup_required'
|
|
99894
|
+
}
|
|
99795
99895
|
)[]
|
|
99796
99896
|
}[]
|
|
99797
99897
|
| undefined
|
|
@@ -127699,6 +127799,14 @@ export type Routes = {
|
|
|
127699
127799
|
* @deprecated this field is deprecated.*/
|
|
127700
127800
|
misconfigured_acs_entrance_ids?: string[] | undefined
|
|
127701
127801
|
}
|
|
127802
|
+
| {
|
|
127803
|
+
/** Date and time at which Seam created the warning. */
|
|
127804
|
+
created_at: string
|
|
127805
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127806
|
+
message: string
|
|
127807
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127808
|
+
warning_code: 'setup_required'
|
|
127809
|
+
}
|
|
127702
127810
|
)[]
|
|
127703
127811
|
}[]
|
|
127704
127812
|
}
|
|
@@ -130749,6 +130857,14 @@ export type Routes = {
|
|
|
130749
130857
|
* @deprecated this field is deprecated.*/
|
|
130750
130858
|
misconfigured_acs_entrance_ids?: string[] | undefined
|
|
130751
130859
|
}
|
|
130860
|
+
| {
|
|
130861
|
+
/** Date and time at which Seam created the warning. */
|
|
130862
|
+
created_at: string
|
|
130863
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
130864
|
+
message: string
|
|
130865
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
130866
|
+
warning_code: 'setup_required'
|
|
130867
|
+
}
|
|
130752
130868
|
)[]
|
|
130753
130869
|
}[]
|
|
130754
130870
|
| undefined
|
|
@@ -134863,6 +134979,14 @@ export type Routes = {
|
|
|
134863
134979
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134864
134980
|
warning_code: 'provider_service_unavailable'
|
|
134865
134981
|
}
|
|
134982
|
+
| {
|
|
134983
|
+
/** Date and time at which Seam created the warning. */
|
|
134984
|
+
created_at: string
|
|
134985
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
134986
|
+
message: string
|
|
134987
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134988
|
+
warning_code: 'setup_required'
|
|
134989
|
+
}
|
|
134866
134990
|
)[]
|
|
134867
134991
|
/** 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. */
|
|
134868
134992
|
custom_metadata: {
|