@seamapi/types 1.891.0 → 1.893.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 +191 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +660 -2
- package/dist/index.cjs +191 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +31 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +162 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +20 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -2
- package/lib/seam/connect/models/devices/device-provider.js +3 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +50 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +8 -8
- package/lib/seam/connect/models/user-identities/user-identity.js +1 -3
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.js +168 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +451 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +26 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +3 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +1 -3
- package/src/lib/seam/connect/openapi.ts +202 -0
- package/src/lib/seam/connect/route-types.ts +494 -0
|
@@ -2406,6 +2406,18 @@ export type Routes = {
|
|
|
2406
2406
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2407
2407
|
error_code: 'bridge_disconnected'
|
|
2408
2408
|
}
|
|
2409
|
+
| {
|
|
2410
|
+
/** Date and time at which Seam created the error. */
|
|
2411
|
+
created_at: string
|
|
2412
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2413
|
+
message: string
|
|
2414
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
2415
|
+
is_connected_account_error?: boolean | undefined
|
|
2416
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
2417
|
+
is_bridge_error?: boolean | undefined
|
|
2418
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2419
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
2420
|
+
}
|
|
2409
2421
|
)[]
|
|
2410
2422
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
2411
2423
|
warnings: (
|
|
@@ -3155,6 +3167,18 @@ export type Routes = {
|
|
|
3155
3167
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3156
3168
|
error_code: 'bridge_disconnected'
|
|
3157
3169
|
}
|
|
3170
|
+
| {
|
|
3171
|
+
/** Date and time at which Seam created the error. */
|
|
3172
|
+
created_at: string
|
|
3173
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3174
|
+
message: string
|
|
3175
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
3176
|
+
is_connected_account_error?: boolean | undefined
|
|
3177
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
3178
|
+
is_bridge_error?: boolean | undefined
|
|
3179
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3180
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
3181
|
+
}
|
|
3158
3182
|
)[]
|
|
3159
3183
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
3160
3184
|
warnings: (
|
|
@@ -5849,6 +5873,18 @@ export type Routes = {
|
|
|
5849
5873
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5850
5874
|
error_code: 'bridge_disconnected'
|
|
5851
5875
|
}
|
|
5876
|
+
| {
|
|
5877
|
+
/** Date and time at which Seam created the error. */
|
|
5878
|
+
created_at: string
|
|
5879
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5880
|
+
message: string
|
|
5881
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
5882
|
+
is_connected_account_error?: boolean | undefined
|
|
5883
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
5884
|
+
is_bridge_error?: boolean | undefined
|
|
5885
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5886
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
5887
|
+
}
|
|
5852
5888
|
)[]
|
|
5853
5889
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
5854
5890
|
warnings: (
|
|
@@ -6685,6 +6721,18 @@ export type Routes = {
|
|
|
6685
6721
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6686
6722
|
error_code: 'bridge_disconnected'
|
|
6687
6723
|
}
|
|
6724
|
+
| {
|
|
6725
|
+
/** Date and time at which Seam created the error. */
|
|
6726
|
+
created_at: string
|
|
6727
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6728
|
+
message: string
|
|
6729
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
6730
|
+
is_connected_account_error?: boolean | undefined
|
|
6731
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
6732
|
+
is_bridge_error?: boolean | undefined
|
|
6733
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6734
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
6735
|
+
}
|
|
6688
6736
|
)[]
|
|
6689
6737
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
6690
6738
|
warnings: (
|
|
@@ -7425,6 +7473,18 @@ export type Routes = {
|
|
|
7425
7473
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7426
7474
|
error_code: 'bridge_disconnected'
|
|
7427
7475
|
}
|
|
7476
|
+
| {
|
|
7477
|
+
/** Date and time at which Seam created the error. */
|
|
7478
|
+
created_at: string
|
|
7479
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7480
|
+
message: string
|
|
7481
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
7482
|
+
is_connected_account_error?: boolean | undefined
|
|
7483
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
7484
|
+
is_bridge_error?: boolean | undefined
|
|
7485
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7486
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
7487
|
+
}
|
|
7428
7488
|
)[]
|
|
7429
7489
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
7430
7490
|
warnings: (
|
|
@@ -8142,6 +8202,18 @@ export type Routes = {
|
|
|
8142
8202
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8143
8203
|
error_code: 'bridge_disconnected'
|
|
8144
8204
|
}
|
|
8205
|
+
| {
|
|
8206
|
+
/** Date and time at which Seam created the error. */
|
|
8207
|
+
created_at: string
|
|
8208
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8209
|
+
message: string
|
|
8210
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
8211
|
+
is_connected_account_error?: boolean | undefined
|
|
8212
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
8213
|
+
is_bridge_error?: boolean | undefined
|
|
8214
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8215
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
8216
|
+
}
|
|
8145
8217
|
)[]
|
|
8146
8218
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
8147
8219
|
warnings: (
|
|
@@ -8892,6 +8964,18 @@ export type Routes = {
|
|
|
8892
8964
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8893
8965
|
error_code: 'bridge_disconnected'
|
|
8894
8966
|
}
|
|
8967
|
+
| {
|
|
8968
|
+
/** Date and time at which Seam created the error. */
|
|
8969
|
+
created_at: string
|
|
8970
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8971
|
+
message: string
|
|
8972
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
8973
|
+
is_connected_account_error?: boolean | undefined
|
|
8974
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
8975
|
+
is_bridge_error?: boolean | undefined
|
|
8976
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8977
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
8978
|
+
}
|
|
8895
8979
|
)[]
|
|
8896
8980
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
8897
8981
|
warnings: (
|
|
@@ -11488,6 +11572,18 @@ export type Routes = {
|
|
|
11488
11572
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11489
11573
|
error_code: 'bridge_disconnected'
|
|
11490
11574
|
}
|
|
11575
|
+
| {
|
|
11576
|
+
/** Date and time at which Seam created the error. */
|
|
11577
|
+
created_at: string
|
|
11578
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11579
|
+
message: string
|
|
11580
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
11581
|
+
is_connected_account_error?: boolean | undefined
|
|
11582
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
11583
|
+
is_bridge_error?: boolean | undefined
|
|
11584
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11585
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
11586
|
+
}
|
|
11491
11587
|
)[]
|
|
11492
11588
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
11493
11589
|
warnings: (
|
|
@@ -12117,6 +12213,18 @@ export type Routes = {
|
|
|
12117
12213
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12118
12214
|
error_code: 'bridge_disconnected'
|
|
12119
12215
|
}
|
|
12216
|
+
| {
|
|
12217
|
+
/** Date and time at which Seam created the error. */
|
|
12218
|
+
created_at: string
|
|
12219
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
12220
|
+
message: string
|
|
12221
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
12222
|
+
is_connected_account_error?: boolean | undefined
|
|
12223
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
12224
|
+
is_bridge_error?: boolean | undefined
|
|
12225
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
12226
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
12227
|
+
}
|
|
12120
12228
|
)[]
|
|
12121
12229
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
12122
12230
|
warnings: (
|
|
@@ -16357,6 +16465,18 @@ export type Routes = {
|
|
|
16357
16465
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16358
16466
|
error_code: 'bridge_disconnected'
|
|
16359
16467
|
}
|
|
16468
|
+
| {
|
|
16469
|
+
/** Date and time at which Seam created the error. */
|
|
16470
|
+
created_at: string
|
|
16471
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
16472
|
+
message: string
|
|
16473
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
16474
|
+
is_connected_account_error?: boolean | undefined
|
|
16475
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
16476
|
+
is_bridge_error?: boolean | undefined
|
|
16477
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
16478
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
16479
|
+
}
|
|
16360
16480
|
)[]
|
|
16361
16481
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
16362
16482
|
warnings: (
|
|
@@ -16936,6 +17056,18 @@ export type Routes = {
|
|
|
16936
17056
|
}[]
|
|
16937
17057
|
}
|
|
16938
17058
|
}
|
|
17059
|
+
| {
|
|
17060
|
+
/** Date and time at which Seam created the error. */
|
|
17061
|
+
created_at: string
|
|
17062
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
17063
|
+
message: string
|
|
17064
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
17065
|
+
is_connected_account_error?: boolean | undefined
|
|
17066
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
17067
|
+
is_bridge_error?: boolean | undefined
|
|
17068
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
17069
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
17070
|
+
}
|
|
16939
17071
|
)[]
|
|
16940
17072
|
/** Warnings associated with the connected account. */
|
|
16941
17073
|
warnings: (
|
|
@@ -17009,6 +17141,14 @@ export type Routes = {
|
|
|
17009
17141
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17010
17142
|
warning_code: 'setup_required'
|
|
17011
17143
|
}
|
|
17144
|
+
| {
|
|
17145
|
+
/** Date and time at which Seam created the warning. */
|
|
17146
|
+
created_at: string
|
|
17147
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17148
|
+
message: string
|
|
17149
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17150
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
17151
|
+
}
|
|
17012
17152
|
)[]
|
|
17013
17153
|
/** 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. */
|
|
17014
17154
|
custom_metadata: {
|
|
@@ -24075,6 +24215,18 @@ export type Routes = {
|
|
|
24075
24215
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24076
24216
|
error_code: 'bridge_disconnected'
|
|
24077
24217
|
}
|
|
24218
|
+
| {
|
|
24219
|
+
/** Date and time at which Seam created the error. */
|
|
24220
|
+
created_at: string
|
|
24221
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24222
|
+
message: string
|
|
24223
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
24224
|
+
is_connected_account_error?: boolean | undefined
|
|
24225
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
24226
|
+
is_bridge_error?: boolean | undefined
|
|
24227
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24228
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
24229
|
+
}
|
|
24078
24230
|
)[]
|
|
24079
24231
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
24080
24232
|
warnings: (
|
|
@@ -46527,6 +46679,7 @@ export type Routes = {
|
|
|
46527
46679
|
| 'keyincode'
|
|
46528
46680
|
| 'dormakaba_ambiance'
|
|
46529
46681
|
| 'ultraloq'
|
|
46682
|
+
| 'dusaw'
|
|
46530
46683
|
| 'sifely'
|
|
46531
46684
|
| 'ring'
|
|
46532
46685
|
| 'ical'
|
|
@@ -46941,6 +47094,18 @@ export type Routes = {
|
|
|
46941
47094
|
}[]
|
|
46942
47095
|
}
|
|
46943
47096
|
}
|
|
47097
|
+
| {
|
|
47098
|
+
/** Date and time at which Seam created the error. */
|
|
47099
|
+
created_at: string
|
|
47100
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47101
|
+
message: string
|
|
47102
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
47103
|
+
is_connected_account_error?: boolean | undefined
|
|
47104
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
47105
|
+
is_bridge_error?: boolean | undefined
|
|
47106
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47107
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
47108
|
+
}
|
|
46944
47109
|
)[]
|
|
46945
47110
|
/** Warnings associated with the connected account. */
|
|
46946
47111
|
warnings: (
|
|
@@ -47014,6 +47179,14 @@ export type Routes = {
|
|
|
47014
47179
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47015
47180
|
warning_code: 'setup_required'
|
|
47016
47181
|
}
|
|
47182
|
+
| {
|
|
47183
|
+
/** Date and time at which Seam created the warning. */
|
|
47184
|
+
created_at: string
|
|
47185
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47186
|
+
message: string
|
|
47187
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47188
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
47189
|
+
}
|
|
47017
47190
|
)[]
|
|
47018
47191
|
/** 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. */
|
|
47019
47192
|
custom_metadata: {
|
|
@@ -47153,6 +47326,18 @@ export type Routes = {
|
|
|
47153
47326
|
}[]
|
|
47154
47327
|
}
|
|
47155
47328
|
}
|
|
47329
|
+
| {
|
|
47330
|
+
/** Date and time at which Seam created the error. */
|
|
47331
|
+
created_at: string
|
|
47332
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47333
|
+
message: string
|
|
47334
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
47335
|
+
is_connected_account_error?: boolean | undefined
|
|
47336
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
47337
|
+
is_bridge_error?: boolean | undefined
|
|
47338
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47339
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
47340
|
+
}
|
|
47156
47341
|
)[]
|
|
47157
47342
|
/** Warnings associated with the connected account. */
|
|
47158
47343
|
warnings: (
|
|
@@ -47226,6 +47411,14 @@ export type Routes = {
|
|
|
47226
47411
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47227
47412
|
warning_code: 'setup_required'
|
|
47228
47413
|
}
|
|
47414
|
+
| {
|
|
47415
|
+
/** Date and time at which Seam created the warning. */
|
|
47416
|
+
created_at: string
|
|
47417
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47418
|
+
message: string
|
|
47419
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47420
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
47421
|
+
}
|
|
47229
47422
|
)[]
|
|
47230
47423
|
/** 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. */
|
|
47231
47424
|
custom_metadata: {
|
|
@@ -47407,6 +47600,18 @@ export type Routes = {
|
|
|
47407
47600
|
}[]
|
|
47408
47601
|
}
|
|
47409
47602
|
}
|
|
47603
|
+
| {
|
|
47604
|
+
/** Date and time at which Seam created the error. */
|
|
47605
|
+
created_at: string
|
|
47606
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47607
|
+
message: string
|
|
47608
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
47609
|
+
is_connected_account_error?: boolean | undefined
|
|
47610
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
47611
|
+
is_bridge_error?: boolean | undefined
|
|
47612
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47613
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
47614
|
+
}
|
|
47410
47615
|
)[]
|
|
47411
47616
|
/** Warnings associated with the connected account. */
|
|
47412
47617
|
warnings: (
|
|
@@ -47480,6 +47685,14 @@ export type Routes = {
|
|
|
47480
47685
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47481
47686
|
warning_code: 'setup_required'
|
|
47482
47687
|
}
|
|
47688
|
+
| {
|
|
47689
|
+
/** Date and time at which Seam created the warning. */
|
|
47690
|
+
created_at: string
|
|
47691
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47692
|
+
message: string
|
|
47693
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47694
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
47695
|
+
}
|
|
47483
47696
|
)[]
|
|
47484
47697
|
/** 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. */
|
|
47485
47698
|
custom_metadata: {
|
|
@@ -49900,6 +50113,18 @@ export type Routes = {
|
|
|
49900
50113
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49901
50114
|
error_code: 'bridge_disconnected'
|
|
49902
50115
|
}
|
|
50116
|
+
| {
|
|
50117
|
+
/** Date and time at which Seam created the error. */
|
|
50118
|
+
created_at: string
|
|
50119
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50120
|
+
message: string
|
|
50121
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
50122
|
+
is_connected_account_error?: boolean | undefined
|
|
50123
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
50124
|
+
is_bridge_error?: boolean | undefined
|
|
50125
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50126
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
50127
|
+
}
|
|
49903
50128
|
)[]
|
|
49904
50129
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
49905
50130
|
warnings: (
|
|
@@ -51831,6 +52056,18 @@ export type Routes = {
|
|
|
51831
52056
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51832
52057
|
error_code: 'bridge_disconnected'
|
|
51833
52058
|
}
|
|
52059
|
+
| {
|
|
52060
|
+
/** Date and time at which Seam created the error. */
|
|
52061
|
+
created_at: string
|
|
52062
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52063
|
+
message: string
|
|
52064
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
52065
|
+
is_connected_account_error?: boolean | undefined
|
|
52066
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
52067
|
+
is_bridge_error?: boolean | undefined
|
|
52068
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52069
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
52070
|
+
}
|
|
51834
52071
|
)[]
|
|
51835
52072
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
51836
52073
|
warnings: (
|
|
@@ -52188,6 +52425,7 @@ export type Routes = {
|
|
|
52188
52425
|
| 'keyincode'
|
|
52189
52426
|
| 'dormakaba_ambiance'
|
|
52190
52427
|
| 'ultraloq'
|
|
52428
|
+
| 'dusaw'
|
|
52191
52429
|
| 'sifely'
|
|
52192
52430
|
| 'ring'
|
|
52193
52431
|
| 'ical'
|
|
@@ -53884,6 +54122,18 @@ export type Routes = {
|
|
|
53884
54122
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53885
54123
|
error_code: 'bridge_disconnected'
|
|
53886
54124
|
}
|
|
54125
|
+
| {
|
|
54126
|
+
/** Date and time at which Seam created the error. */
|
|
54127
|
+
created_at: string
|
|
54128
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54129
|
+
message: string
|
|
54130
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
54131
|
+
is_connected_account_error?: boolean | undefined
|
|
54132
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
54133
|
+
is_bridge_error?: boolean | undefined
|
|
54134
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54135
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
54136
|
+
}
|
|
53887
54137
|
)[]
|
|
53888
54138
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
53889
54139
|
warnings: (
|
|
@@ -54680,6 +54930,18 @@ export type Routes = {
|
|
|
54680
54930
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54681
54931
|
error_code: 'bridge_disconnected'
|
|
54682
54932
|
}
|
|
54933
|
+
| {
|
|
54934
|
+
/** Date and time at which Seam created the error. */
|
|
54935
|
+
created_at: string
|
|
54936
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54937
|
+
message: string
|
|
54938
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
54939
|
+
is_connected_account_error?: boolean | undefined
|
|
54940
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
54941
|
+
is_bridge_error?: boolean | undefined
|
|
54942
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54943
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
54944
|
+
}
|
|
54683
54945
|
)[]
|
|
54684
54946
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
54685
54947
|
warnings: (
|
|
@@ -65110,6 +65372,18 @@ export type Routes = {
|
|
|
65110
65372
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
65111
65373
|
error_code: 'bridge_disconnected'
|
|
65112
65374
|
}
|
|
65375
|
+
| {
|
|
65376
|
+
/** Date and time at which Seam created the error. */
|
|
65377
|
+
created_at: string
|
|
65378
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
65379
|
+
message: string
|
|
65380
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
65381
|
+
is_connected_account_error?: boolean | undefined
|
|
65382
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
65383
|
+
is_bridge_error?: boolean | undefined
|
|
65384
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
65385
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
65386
|
+
}
|
|
65113
65387
|
)[]
|
|
65114
65388
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
65115
65389
|
warnings: (
|
|
@@ -66802,6 +67076,18 @@ export type Routes = {
|
|
|
66802
67076
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66803
67077
|
error_code: 'bridge_disconnected'
|
|
66804
67078
|
}
|
|
67079
|
+
| {
|
|
67080
|
+
/** Date and time at which Seam created the error. */
|
|
67081
|
+
created_at: string
|
|
67082
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67083
|
+
message: string
|
|
67084
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
67085
|
+
is_connected_account_error?: boolean | undefined
|
|
67086
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
67087
|
+
is_bridge_error?: boolean | undefined
|
|
67088
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
67089
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
67090
|
+
}
|
|
66805
67091
|
)[]
|
|
66806
67092
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
66807
67093
|
warnings: (
|
|
@@ -68687,6 +68973,18 @@ export type Routes = {
|
|
|
68687
68973
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68688
68974
|
error_code: 'bridge_disconnected'
|
|
68689
68975
|
}
|
|
68976
|
+
| {
|
|
68977
|
+
/** Date and time at which Seam created the error. */
|
|
68978
|
+
created_at: string
|
|
68979
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68980
|
+
message: string
|
|
68981
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
68982
|
+
is_connected_account_error?: boolean | undefined
|
|
68983
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
68984
|
+
is_bridge_error?: boolean | undefined
|
|
68985
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68986
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
68987
|
+
}
|
|
68690
68988
|
)[]
|
|
68691
68989
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
68692
68990
|
warnings: (
|
|
@@ -70378,6 +70676,18 @@ export type Routes = {
|
|
|
70378
70676
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70379
70677
|
error_code: 'bridge_disconnected'
|
|
70380
70678
|
}
|
|
70679
|
+
| {
|
|
70680
|
+
/** Date and time at which Seam created the error. */
|
|
70681
|
+
created_at: string
|
|
70682
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70683
|
+
message: string
|
|
70684
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
70685
|
+
is_connected_account_error?: boolean | undefined
|
|
70686
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
70687
|
+
is_bridge_error?: boolean | undefined
|
|
70688
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70689
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
70690
|
+
}
|
|
70381
70691
|
)[]
|
|
70382
70692
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
70383
70693
|
warnings: (
|
|
@@ -79922,6 +80232,18 @@ export type Routes = {
|
|
|
79922
80232
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79923
80233
|
error_code: 'bridge_disconnected'
|
|
79924
80234
|
}
|
|
80235
|
+
| {
|
|
80236
|
+
/** Date and time at which Seam created the error. */
|
|
80237
|
+
created_at: string
|
|
80238
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80239
|
+
message: string
|
|
80240
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
80241
|
+
is_connected_account_error?: boolean | undefined
|
|
80242
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
80243
|
+
is_bridge_error?: boolean | undefined
|
|
80244
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
80245
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
80246
|
+
}
|
|
79925
80247
|
)[]
|
|
79926
80248
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
79927
80249
|
warnings: (
|
|
@@ -81613,6 +81935,18 @@ export type Routes = {
|
|
|
81613
81935
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
81614
81936
|
error_code: 'bridge_disconnected'
|
|
81615
81937
|
}
|
|
81938
|
+
| {
|
|
81939
|
+
/** Date and time at which Seam created the error. */
|
|
81940
|
+
created_at: string
|
|
81941
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81942
|
+
message: string
|
|
81943
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
81944
|
+
is_connected_account_error?: boolean | undefined
|
|
81945
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
81946
|
+
is_bridge_error?: boolean | undefined
|
|
81947
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
81948
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
81949
|
+
}
|
|
81616
81950
|
)[]
|
|
81617
81951
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
81618
81952
|
warnings: (
|
|
@@ -99035,6 +99369,18 @@ export type Routes = {
|
|
|
99035
99369
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99036
99370
|
error_code: 'bridge_disconnected'
|
|
99037
99371
|
}
|
|
99372
|
+
| {
|
|
99373
|
+
/** Date and time at which Seam created the error. */
|
|
99374
|
+
created_at: string
|
|
99375
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99376
|
+
message: string
|
|
99377
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
99378
|
+
is_connected_account_error?: boolean | undefined
|
|
99379
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
99380
|
+
is_bridge_error?: boolean | undefined
|
|
99381
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99382
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
99383
|
+
}
|
|
99038
99384
|
)[]
|
|
99039
99385
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
99040
99386
|
warnings: (
|
|
@@ -99614,6 +99960,18 @@ export type Routes = {
|
|
|
99614
99960
|
}[]
|
|
99615
99961
|
}
|
|
99616
99962
|
}
|
|
99963
|
+
| {
|
|
99964
|
+
/** Date and time at which Seam created the error. */
|
|
99965
|
+
created_at: string
|
|
99966
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99967
|
+
message: string
|
|
99968
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
99969
|
+
is_connected_account_error?: boolean | undefined
|
|
99970
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
99971
|
+
is_bridge_error?: boolean | undefined
|
|
99972
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99973
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
99974
|
+
}
|
|
99617
99975
|
)[]
|
|
99618
99976
|
/** Warnings associated with the connected account. */
|
|
99619
99977
|
warnings: (
|
|
@@ -99687,6 +100045,14 @@ export type Routes = {
|
|
|
99687
100045
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99688
100046
|
warning_code: 'setup_required'
|
|
99689
100047
|
}
|
|
100048
|
+
| {
|
|
100049
|
+
/** Date and time at which Seam created the warning. */
|
|
100050
|
+
created_at: string
|
|
100051
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100052
|
+
message: string
|
|
100053
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100054
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
100055
|
+
}
|
|
99690
100056
|
)[]
|
|
99691
100057
|
/** 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. */
|
|
99692
100058
|
custom_metadata: {
|
|
@@ -107603,6 +107969,18 @@ export type Routes = {
|
|
|
107603
107969
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107604
107970
|
error_code: 'bridge_disconnected'
|
|
107605
107971
|
}
|
|
107972
|
+
| {
|
|
107973
|
+
/** Date and time at which Seam created the error. */
|
|
107974
|
+
created_at: string
|
|
107975
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107976
|
+
message: string
|
|
107977
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
107978
|
+
is_connected_account_error?: boolean | undefined
|
|
107979
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
107980
|
+
is_bridge_error?: boolean | undefined
|
|
107981
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107982
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
107983
|
+
}
|
|
107606
107984
|
)[]
|
|
107607
107985
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
107608
107986
|
warnings: (
|
|
@@ -113310,6 +113688,18 @@ export type Routes = {
|
|
|
113310
113688
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113311
113689
|
error_code: 'bridge_disconnected'
|
|
113312
113690
|
}
|
|
113691
|
+
| {
|
|
113692
|
+
/** Date and time at which Seam created the error. */
|
|
113693
|
+
created_at: string
|
|
113694
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113695
|
+
message: string
|
|
113696
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
113697
|
+
is_connected_account_error?: boolean | undefined
|
|
113698
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
113699
|
+
is_bridge_error?: boolean | undefined
|
|
113700
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113701
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
113702
|
+
}
|
|
113313
113703
|
)[]
|
|
113314
113704
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
113315
113705
|
warnings: (
|
|
@@ -115001,6 +115391,18 @@ export type Routes = {
|
|
|
115001
115391
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115002
115392
|
error_code: 'bridge_disconnected'
|
|
115003
115393
|
}
|
|
115394
|
+
| {
|
|
115395
|
+
/** Date and time at which Seam created the error. */
|
|
115396
|
+
created_at: string
|
|
115397
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115398
|
+
message: string
|
|
115399
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
115400
|
+
is_connected_account_error?: boolean | undefined
|
|
115401
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
115402
|
+
is_bridge_error?: boolean | undefined
|
|
115403
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115404
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
115405
|
+
}
|
|
115004
115406
|
)[]
|
|
115005
115407
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
115006
115408
|
warnings: (
|
|
@@ -125430,6 +125832,18 @@ export type Routes = {
|
|
|
125430
125832
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
125431
125833
|
error_code: 'bridge_disconnected'
|
|
125432
125834
|
}
|
|
125835
|
+
| {
|
|
125836
|
+
/** Date and time at which Seam created the error. */
|
|
125837
|
+
created_at: string
|
|
125838
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
125839
|
+
message: string
|
|
125840
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
125841
|
+
is_connected_account_error?: boolean | undefined
|
|
125842
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
125843
|
+
is_bridge_error?: boolean | undefined
|
|
125844
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
125845
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
125846
|
+
}
|
|
125433
125847
|
)[]
|
|
125434
125848
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
125435
125849
|
warnings: (
|
|
@@ -127123,6 +127537,18 @@ export type Routes = {
|
|
|
127123
127537
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127124
127538
|
error_code: 'bridge_disconnected'
|
|
127125
127539
|
}
|
|
127540
|
+
| {
|
|
127541
|
+
/** Date and time at which Seam created the error. */
|
|
127542
|
+
created_at: string
|
|
127543
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127544
|
+
message: string
|
|
127545
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
127546
|
+
is_connected_account_error?: boolean | undefined
|
|
127547
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
127548
|
+
is_bridge_error?: boolean | undefined
|
|
127549
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127550
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
127551
|
+
}
|
|
127126
127552
|
)[]
|
|
127127
127553
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
127128
127554
|
warnings: (
|
|
@@ -130196,6 +130622,18 @@ export type Routes = {
|
|
|
130196
130622
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
130197
130623
|
error_code: 'bridge_disconnected'
|
|
130198
130624
|
}
|
|
130625
|
+
| {
|
|
130626
|
+
/** Date and time at which Seam created the error. */
|
|
130627
|
+
created_at: string
|
|
130628
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
130629
|
+
message: string
|
|
130630
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
130631
|
+
is_connected_account_error?: boolean | undefined
|
|
130632
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
130633
|
+
is_bridge_error?: boolean | undefined
|
|
130634
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
130635
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
130636
|
+
}
|
|
130199
130637
|
)[]
|
|
130200
130638
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
130201
130639
|
warnings: (
|
|
@@ -134104,6 +134542,18 @@ export type Routes = {
|
|
|
134104
134542
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134105
134543
|
error_code: 'bridge_disconnected'
|
|
134106
134544
|
}
|
|
134545
|
+
| {
|
|
134546
|
+
/** Date and time at which Seam created the error. */
|
|
134547
|
+
created_at: string
|
|
134548
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
134549
|
+
message: string
|
|
134550
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
134551
|
+
is_connected_account_error?: boolean | undefined
|
|
134552
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
134553
|
+
is_bridge_error?: boolean | undefined
|
|
134554
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134555
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
134556
|
+
}
|
|
134107
134557
|
)[]
|
|
134108
134558
|
/** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
134109
134559
|
warnings: (
|
|
@@ -134926,6 +135376,18 @@ export type Routes = {
|
|
|
134926
135376
|
}[]
|
|
134927
135377
|
}
|
|
134928
135378
|
}
|
|
135379
|
+
| {
|
|
135380
|
+
/** Date and time at which Seam created the error. */
|
|
135381
|
+
created_at: string
|
|
135382
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
135383
|
+
message: string
|
|
135384
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
135385
|
+
is_connected_account_error?: boolean | undefined
|
|
135386
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
135387
|
+
is_bridge_error?: boolean | undefined
|
|
135388
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
135389
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
135390
|
+
}
|
|
134929
135391
|
)[]
|
|
134930
135392
|
/** Warnings associated with the connected account. */
|
|
134931
135393
|
warnings: (
|
|
@@ -134999,6 +135461,14 @@ export type Routes = {
|
|
|
134999
135461
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135000
135462
|
warning_code: 'setup_required'
|
|
135001
135463
|
}
|
|
135464
|
+
| {
|
|
135465
|
+
/** Date and time at which Seam created the warning. */
|
|
135466
|
+
created_at: string
|
|
135467
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
135468
|
+
message: string
|
|
135469
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135470
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
135471
|
+
}
|
|
135002
135472
|
)[]
|
|
135003
135473
|
/** 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. */
|
|
135004
135474
|
custom_metadata: {
|
|
@@ -138950,6 +139420,18 @@ export type Routes = {
|
|
|
138950
139420
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138951
139421
|
error_code: 'bridge_disconnected'
|
|
138952
139422
|
}
|
|
139423
|
+
| {
|
|
139424
|
+
/** Date and time at which Seam created the error. */
|
|
139425
|
+
created_at: string
|
|
139426
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
139427
|
+
message: string
|
|
139428
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
139429
|
+
is_connected_account_error?: boolean | undefined
|
|
139430
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
139431
|
+
is_bridge_error?: boolean | undefined
|
|
139432
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
139433
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
139434
|
+
}
|
|
138953
139435
|
)[]
|
|
138954
139436
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
138955
139437
|
warnings: (
|
|
@@ -139565,6 +140047,18 @@ export type Routes = {
|
|
|
139565
140047
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
139566
140048
|
error_code: 'bridge_disconnected'
|
|
139567
140049
|
}
|
|
140050
|
+
| {
|
|
140051
|
+
/** Date and time at which Seam created the error. */
|
|
140052
|
+
created_at: string
|
|
140053
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140054
|
+
message: string
|
|
140055
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
140056
|
+
is_connected_account_error?: boolean | undefined
|
|
140057
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
140058
|
+
is_bridge_error?: boolean | undefined
|
|
140059
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140060
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
140061
|
+
}
|
|
139568
140062
|
)[]
|
|
139569
140063
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
139570
140064
|
warnings: (
|