@seamapi/types 1.892.0 → 1.894.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 +192 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +660 -2
- package/dist/index.cjs +192 -7
- 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: (
|
|
@@ -46529,6 +46681,7 @@ export type Routes = {
|
|
|
46529
46681
|
| 'ultraloq'
|
|
46530
46682
|
| 'dusaw'
|
|
46531
46683
|
| 'sifely'
|
|
46684
|
+
| 'thirty_three_lock'
|
|
46532
46685
|
| 'ring'
|
|
46533
46686
|
| 'ical'
|
|
46534
46687
|
| 'lodgify'
|
|
@@ -46942,6 +47095,18 @@ export type Routes = {
|
|
|
46942
47095
|
}[]
|
|
46943
47096
|
}
|
|
46944
47097
|
}
|
|
47098
|
+
| {
|
|
47099
|
+
/** Date and time at which Seam created the error. */
|
|
47100
|
+
created_at: string
|
|
47101
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47102
|
+
message: string
|
|
47103
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
47104
|
+
is_connected_account_error?: boolean | undefined
|
|
47105
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
47106
|
+
is_bridge_error?: boolean | undefined
|
|
47107
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47108
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
47109
|
+
}
|
|
46945
47110
|
)[]
|
|
46946
47111
|
/** Warnings associated with the connected account. */
|
|
46947
47112
|
warnings: (
|
|
@@ -47015,6 +47180,14 @@ export type Routes = {
|
|
|
47015
47180
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47016
47181
|
warning_code: 'setup_required'
|
|
47017
47182
|
}
|
|
47183
|
+
| {
|
|
47184
|
+
/** Date and time at which Seam created the warning. */
|
|
47185
|
+
created_at: string
|
|
47186
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47187
|
+
message: string
|
|
47188
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47189
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
47190
|
+
}
|
|
47018
47191
|
)[]
|
|
47019
47192
|
/** 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. */
|
|
47020
47193
|
custom_metadata: {
|
|
@@ -47154,6 +47327,18 @@ export type Routes = {
|
|
|
47154
47327
|
}[]
|
|
47155
47328
|
}
|
|
47156
47329
|
}
|
|
47330
|
+
| {
|
|
47331
|
+
/** Date and time at which Seam created the error. */
|
|
47332
|
+
created_at: string
|
|
47333
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47334
|
+
message: string
|
|
47335
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
47336
|
+
is_connected_account_error?: boolean | undefined
|
|
47337
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
47338
|
+
is_bridge_error?: boolean | undefined
|
|
47339
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47340
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
47341
|
+
}
|
|
47157
47342
|
)[]
|
|
47158
47343
|
/** Warnings associated with the connected account. */
|
|
47159
47344
|
warnings: (
|
|
@@ -47227,6 +47412,14 @@ export type Routes = {
|
|
|
47227
47412
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47228
47413
|
warning_code: 'setup_required'
|
|
47229
47414
|
}
|
|
47415
|
+
| {
|
|
47416
|
+
/** Date and time at which Seam created the warning. */
|
|
47417
|
+
created_at: string
|
|
47418
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47419
|
+
message: string
|
|
47420
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47421
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
47422
|
+
}
|
|
47230
47423
|
)[]
|
|
47231
47424
|
/** 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. */
|
|
47232
47425
|
custom_metadata: {
|
|
@@ -47408,6 +47601,18 @@ export type Routes = {
|
|
|
47408
47601
|
}[]
|
|
47409
47602
|
}
|
|
47410
47603
|
}
|
|
47604
|
+
| {
|
|
47605
|
+
/** Date and time at which Seam created the error. */
|
|
47606
|
+
created_at: string
|
|
47607
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47608
|
+
message: string
|
|
47609
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
47610
|
+
is_connected_account_error?: boolean | undefined
|
|
47611
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
47612
|
+
is_bridge_error?: boolean | undefined
|
|
47613
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
47614
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
47615
|
+
}
|
|
47411
47616
|
)[]
|
|
47412
47617
|
/** Warnings associated with the connected account. */
|
|
47413
47618
|
warnings: (
|
|
@@ -47481,6 +47686,14 @@ export type Routes = {
|
|
|
47481
47686
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47482
47687
|
warning_code: 'setup_required'
|
|
47483
47688
|
}
|
|
47689
|
+
| {
|
|
47690
|
+
/** Date and time at which Seam created the warning. */
|
|
47691
|
+
created_at: string
|
|
47692
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
47693
|
+
message: string
|
|
47694
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47695
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
47696
|
+
}
|
|
47484
47697
|
)[]
|
|
47485
47698
|
/** 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. */
|
|
47486
47699
|
custom_metadata: {
|
|
@@ -49901,6 +50114,18 @@ export type Routes = {
|
|
|
49901
50114
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49902
50115
|
error_code: 'bridge_disconnected'
|
|
49903
50116
|
}
|
|
50117
|
+
| {
|
|
50118
|
+
/** Date and time at which Seam created the error. */
|
|
50119
|
+
created_at: string
|
|
50120
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50121
|
+
message: string
|
|
50122
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
50123
|
+
is_connected_account_error?: boolean | undefined
|
|
50124
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
50125
|
+
is_bridge_error?: boolean | undefined
|
|
50126
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50127
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
50128
|
+
}
|
|
49904
50129
|
)[]
|
|
49905
50130
|
/** 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. */
|
|
49906
50131
|
warnings: (
|
|
@@ -51832,6 +52057,18 @@ export type Routes = {
|
|
|
51832
52057
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51833
52058
|
error_code: 'bridge_disconnected'
|
|
51834
52059
|
}
|
|
52060
|
+
| {
|
|
52061
|
+
/** Date and time at which Seam created the error. */
|
|
52062
|
+
created_at: string
|
|
52063
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52064
|
+
message: string
|
|
52065
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
52066
|
+
is_connected_account_error?: boolean | undefined
|
|
52067
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
52068
|
+
is_bridge_error?: boolean | undefined
|
|
52069
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52070
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
52071
|
+
}
|
|
51835
52072
|
)[]
|
|
51836
52073
|
/** 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. */
|
|
51837
52074
|
warnings: (
|
|
@@ -52191,6 +52428,7 @@ export type Routes = {
|
|
|
52191
52428
|
| 'ultraloq'
|
|
52192
52429
|
| 'dusaw'
|
|
52193
52430
|
| 'sifely'
|
|
52431
|
+
| 'thirty_three_lock'
|
|
52194
52432
|
| 'ring'
|
|
52195
52433
|
| 'ical'
|
|
52196
52434
|
| 'lodgify'
|
|
@@ -53886,6 +54124,18 @@ export type Routes = {
|
|
|
53886
54124
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53887
54125
|
error_code: 'bridge_disconnected'
|
|
53888
54126
|
}
|
|
54127
|
+
| {
|
|
54128
|
+
/** Date and time at which Seam created the error. */
|
|
54129
|
+
created_at: string
|
|
54130
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54131
|
+
message: string
|
|
54132
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
54133
|
+
is_connected_account_error?: boolean | undefined
|
|
54134
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
54135
|
+
is_bridge_error?: boolean | undefined
|
|
54136
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54137
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
54138
|
+
}
|
|
53889
54139
|
)[]
|
|
53890
54140
|
/** 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. */
|
|
53891
54141
|
warnings: (
|
|
@@ -54682,6 +54932,18 @@ export type Routes = {
|
|
|
54682
54932
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54683
54933
|
error_code: 'bridge_disconnected'
|
|
54684
54934
|
}
|
|
54935
|
+
| {
|
|
54936
|
+
/** Date and time at which Seam created the error. */
|
|
54937
|
+
created_at: string
|
|
54938
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54939
|
+
message: string
|
|
54940
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
54941
|
+
is_connected_account_error?: boolean | undefined
|
|
54942
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
54943
|
+
is_bridge_error?: boolean | undefined
|
|
54944
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54945
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
54946
|
+
}
|
|
54685
54947
|
)[]
|
|
54686
54948
|
/** 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. */
|
|
54687
54949
|
warnings: (
|
|
@@ -65112,6 +65374,18 @@ export type Routes = {
|
|
|
65112
65374
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
65113
65375
|
error_code: 'bridge_disconnected'
|
|
65114
65376
|
}
|
|
65377
|
+
| {
|
|
65378
|
+
/** Date and time at which Seam created the error. */
|
|
65379
|
+
created_at: string
|
|
65380
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
65381
|
+
message: string
|
|
65382
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
65383
|
+
is_connected_account_error?: boolean | undefined
|
|
65384
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
65385
|
+
is_bridge_error?: boolean | undefined
|
|
65386
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
65387
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
65388
|
+
}
|
|
65115
65389
|
)[]
|
|
65116
65390
|
/** 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. */
|
|
65117
65391
|
warnings: (
|
|
@@ -66804,6 +67078,18 @@ export type Routes = {
|
|
|
66804
67078
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66805
67079
|
error_code: 'bridge_disconnected'
|
|
66806
67080
|
}
|
|
67081
|
+
| {
|
|
67082
|
+
/** Date and time at which Seam created the error. */
|
|
67083
|
+
created_at: string
|
|
67084
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67085
|
+
message: string
|
|
67086
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
67087
|
+
is_connected_account_error?: boolean | undefined
|
|
67088
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
67089
|
+
is_bridge_error?: boolean | undefined
|
|
67090
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
67091
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
67092
|
+
}
|
|
66807
67093
|
)[]
|
|
66808
67094
|
/** 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. */
|
|
66809
67095
|
warnings: (
|
|
@@ -68689,6 +68975,18 @@ export type Routes = {
|
|
|
68689
68975
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68690
68976
|
error_code: 'bridge_disconnected'
|
|
68691
68977
|
}
|
|
68978
|
+
| {
|
|
68979
|
+
/** Date and time at which Seam created the error. */
|
|
68980
|
+
created_at: string
|
|
68981
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68982
|
+
message: string
|
|
68983
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
68984
|
+
is_connected_account_error?: boolean | undefined
|
|
68985
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
68986
|
+
is_bridge_error?: boolean | undefined
|
|
68987
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68988
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
68989
|
+
}
|
|
68692
68990
|
)[]
|
|
68693
68991
|
/** 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. */
|
|
68694
68992
|
warnings: (
|
|
@@ -70380,6 +70678,18 @@ export type Routes = {
|
|
|
70380
70678
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70381
70679
|
error_code: 'bridge_disconnected'
|
|
70382
70680
|
}
|
|
70681
|
+
| {
|
|
70682
|
+
/** Date and time at which Seam created the error. */
|
|
70683
|
+
created_at: string
|
|
70684
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70685
|
+
message: string
|
|
70686
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
70687
|
+
is_connected_account_error?: boolean | undefined
|
|
70688
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
70689
|
+
is_bridge_error?: boolean | undefined
|
|
70690
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70691
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
70692
|
+
}
|
|
70383
70693
|
)[]
|
|
70384
70694
|
/** 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. */
|
|
70385
70695
|
warnings: (
|
|
@@ -79924,6 +80234,18 @@ export type Routes = {
|
|
|
79924
80234
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79925
80235
|
error_code: 'bridge_disconnected'
|
|
79926
80236
|
}
|
|
80237
|
+
| {
|
|
80238
|
+
/** Date and time at which Seam created the error. */
|
|
80239
|
+
created_at: string
|
|
80240
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80241
|
+
message: string
|
|
80242
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
80243
|
+
is_connected_account_error?: boolean | undefined
|
|
80244
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
80245
|
+
is_bridge_error?: boolean | undefined
|
|
80246
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
80247
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
80248
|
+
}
|
|
79927
80249
|
)[]
|
|
79928
80250
|
/** 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. */
|
|
79929
80251
|
warnings: (
|
|
@@ -81615,6 +81937,18 @@ export type Routes = {
|
|
|
81615
81937
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
81616
81938
|
error_code: 'bridge_disconnected'
|
|
81617
81939
|
}
|
|
81940
|
+
| {
|
|
81941
|
+
/** Date and time at which Seam created the error. */
|
|
81942
|
+
created_at: string
|
|
81943
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81944
|
+
message: string
|
|
81945
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
81946
|
+
is_connected_account_error?: boolean | undefined
|
|
81947
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
81948
|
+
is_bridge_error?: boolean | undefined
|
|
81949
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
81950
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
81951
|
+
}
|
|
81618
81952
|
)[]
|
|
81619
81953
|
/** 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. */
|
|
81620
81954
|
warnings: (
|
|
@@ -99037,6 +99371,18 @@ export type Routes = {
|
|
|
99037
99371
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99038
99372
|
error_code: 'bridge_disconnected'
|
|
99039
99373
|
}
|
|
99374
|
+
| {
|
|
99375
|
+
/** Date and time at which Seam created the error. */
|
|
99376
|
+
created_at: string
|
|
99377
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99378
|
+
message: string
|
|
99379
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
99380
|
+
is_connected_account_error?: boolean | undefined
|
|
99381
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
99382
|
+
is_bridge_error?: boolean | undefined
|
|
99383
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99384
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
99385
|
+
}
|
|
99040
99386
|
)[]
|
|
99041
99387
|
/** 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. */
|
|
99042
99388
|
warnings: (
|
|
@@ -99616,6 +99962,18 @@ export type Routes = {
|
|
|
99616
99962
|
}[]
|
|
99617
99963
|
}
|
|
99618
99964
|
}
|
|
99965
|
+
| {
|
|
99966
|
+
/** Date and time at which Seam created the error. */
|
|
99967
|
+
created_at: string
|
|
99968
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99969
|
+
message: string
|
|
99970
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
99971
|
+
is_connected_account_error?: boolean | undefined
|
|
99972
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
99973
|
+
is_bridge_error?: boolean | undefined
|
|
99974
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99975
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
99976
|
+
}
|
|
99619
99977
|
)[]
|
|
99620
99978
|
/** Warnings associated with the connected account. */
|
|
99621
99979
|
warnings: (
|
|
@@ -99689,6 +100047,14 @@ export type Routes = {
|
|
|
99689
100047
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99690
100048
|
warning_code: 'setup_required'
|
|
99691
100049
|
}
|
|
100050
|
+
| {
|
|
100051
|
+
/** Date and time at which Seam created the warning. */
|
|
100052
|
+
created_at: string
|
|
100053
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100054
|
+
message: string
|
|
100055
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100056
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
100057
|
+
}
|
|
99692
100058
|
)[]
|
|
99693
100059
|
/** 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. */
|
|
99694
100060
|
custom_metadata: {
|
|
@@ -107605,6 +107971,18 @@ export type Routes = {
|
|
|
107605
107971
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107606
107972
|
error_code: 'bridge_disconnected'
|
|
107607
107973
|
}
|
|
107974
|
+
| {
|
|
107975
|
+
/** Date and time at which Seam created the error. */
|
|
107976
|
+
created_at: string
|
|
107977
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107978
|
+
message: string
|
|
107979
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
107980
|
+
is_connected_account_error?: boolean | undefined
|
|
107981
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
107982
|
+
is_bridge_error?: boolean | undefined
|
|
107983
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107984
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
107985
|
+
}
|
|
107608
107986
|
)[]
|
|
107609
107987
|
/** 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. */
|
|
107610
107988
|
warnings: (
|
|
@@ -113312,6 +113690,18 @@ export type Routes = {
|
|
|
113312
113690
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113313
113691
|
error_code: 'bridge_disconnected'
|
|
113314
113692
|
}
|
|
113693
|
+
| {
|
|
113694
|
+
/** Date and time at which Seam created the error. */
|
|
113695
|
+
created_at: string
|
|
113696
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113697
|
+
message: string
|
|
113698
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
113699
|
+
is_connected_account_error?: boolean | undefined
|
|
113700
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
113701
|
+
is_bridge_error?: boolean | undefined
|
|
113702
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113703
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
113704
|
+
}
|
|
113315
113705
|
)[]
|
|
113316
113706
|
/** 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. */
|
|
113317
113707
|
warnings: (
|
|
@@ -115003,6 +115393,18 @@ export type Routes = {
|
|
|
115003
115393
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115004
115394
|
error_code: 'bridge_disconnected'
|
|
115005
115395
|
}
|
|
115396
|
+
| {
|
|
115397
|
+
/** Date and time at which Seam created the error. */
|
|
115398
|
+
created_at: string
|
|
115399
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115400
|
+
message: string
|
|
115401
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
115402
|
+
is_connected_account_error?: boolean | undefined
|
|
115403
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
115404
|
+
is_bridge_error?: boolean | undefined
|
|
115405
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115406
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
115407
|
+
}
|
|
115006
115408
|
)[]
|
|
115007
115409
|
/** 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. */
|
|
115008
115410
|
warnings: (
|
|
@@ -125432,6 +125834,18 @@ export type Routes = {
|
|
|
125432
125834
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
125433
125835
|
error_code: 'bridge_disconnected'
|
|
125434
125836
|
}
|
|
125837
|
+
| {
|
|
125838
|
+
/** Date and time at which Seam created the error. */
|
|
125839
|
+
created_at: string
|
|
125840
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
125841
|
+
message: string
|
|
125842
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
125843
|
+
is_connected_account_error?: boolean | undefined
|
|
125844
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
125845
|
+
is_bridge_error?: boolean | undefined
|
|
125846
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
125847
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
125848
|
+
}
|
|
125435
125849
|
)[]
|
|
125436
125850
|
/** 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. */
|
|
125437
125851
|
warnings: (
|
|
@@ -127125,6 +127539,18 @@ export type Routes = {
|
|
|
127125
127539
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127126
127540
|
error_code: 'bridge_disconnected'
|
|
127127
127541
|
}
|
|
127542
|
+
| {
|
|
127543
|
+
/** Date and time at which Seam created the error. */
|
|
127544
|
+
created_at: string
|
|
127545
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127546
|
+
message: string
|
|
127547
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
127548
|
+
is_connected_account_error?: boolean | undefined
|
|
127549
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
127550
|
+
is_bridge_error?: boolean | undefined
|
|
127551
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127552
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
127553
|
+
}
|
|
127128
127554
|
)[]
|
|
127129
127555
|
/** 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. */
|
|
127130
127556
|
warnings: (
|
|
@@ -130198,6 +130624,18 @@ export type Routes = {
|
|
|
130198
130624
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
130199
130625
|
error_code: 'bridge_disconnected'
|
|
130200
130626
|
}
|
|
130627
|
+
| {
|
|
130628
|
+
/** Date and time at which Seam created the error. */
|
|
130629
|
+
created_at: string
|
|
130630
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
130631
|
+
message: string
|
|
130632
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
130633
|
+
is_connected_account_error?: boolean | undefined
|
|
130634
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
130635
|
+
is_bridge_error?: boolean | undefined
|
|
130636
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
130637
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
130638
|
+
}
|
|
130201
130639
|
)[]
|
|
130202
130640
|
/** 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. */
|
|
130203
130641
|
warnings: (
|
|
@@ -134106,6 +134544,18 @@ export type Routes = {
|
|
|
134106
134544
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134107
134545
|
error_code: 'bridge_disconnected'
|
|
134108
134546
|
}
|
|
134547
|
+
| {
|
|
134548
|
+
/** Date and time at which Seam created the error. */
|
|
134549
|
+
created_at: string
|
|
134550
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
134551
|
+
message: string
|
|
134552
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
134553
|
+
is_connected_account_error?: boolean | undefined
|
|
134554
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
134555
|
+
is_bridge_error?: boolean | undefined
|
|
134556
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134557
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
134558
|
+
}
|
|
134109
134559
|
)[]
|
|
134110
134560
|
/** 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. */
|
|
134111
134561
|
warnings: (
|
|
@@ -134928,6 +135378,18 @@ export type Routes = {
|
|
|
134928
135378
|
}[]
|
|
134929
135379
|
}
|
|
134930
135380
|
}
|
|
135381
|
+
| {
|
|
135382
|
+
/** Date and time at which Seam created the error. */
|
|
135383
|
+
created_at: string
|
|
135384
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
135385
|
+
message: string
|
|
135386
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
135387
|
+
is_connected_account_error?: boolean | undefined
|
|
135388
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
135389
|
+
is_bridge_error?: boolean | undefined
|
|
135390
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
135391
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
135392
|
+
}
|
|
134931
135393
|
)[]
|
|
134932
135394
|
/** Warnings associated with the connected account. */
|
|
134933
135395
|
warnings: (
|
|
@@ -135001,6 +135463,14 @@ export type Routes = {
|
|
|
135001
135463
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135002
135464
|
warning_code: 'setup_required'
|
|
135003
135465
|
}
|
|
135466
|
+
| {
|
|
135467
|
+
/** Date and time at which Seam created the warning. */
|
|
135468
|
+
created_at: string
|
|
135469
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
135470
|
+
message: string
|
|
135471
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135472
|
+
warning_code: 'dormakaba_sites_unapproved'
|
|
135473
|
+
}
|
|
135004
135474
|
)[]
|
|
135005
135475
|
/** 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. */
|
|
135006
135476
|
custom_metadata: {
|
|
@@ -138952,6 +139422,18 @@ export type Routes = {
|
|
|
138952
139422
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138953
139423
|
error_code: 'bridge_disconnected'
|
|
138954
139424
|
}
|
|
139425
|
+
| {
|
|
139426
|
+
/** Date and time at which Seam created the error. */
|
|
139427
|
+
created_at: string
|
|
139428
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
139429
|
+
message: string
|
|
139430
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
139431
|
+
is_connected_account_error?: boolean | undefined
|
|
139432
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
139433
|
+
is_bridge_error?: boolean | undefined
|
|
139434
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
139435
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
139436
|
+
}
|
|
138955
139437
|
)[]
|
|
138956
139438
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
138957
139439
|
warnings: (
|
|
@@ -139567,6 +140049,18 @@ export type Routes = {
|
|
|
139567
140049
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
139568
140050
|
error_code: 'bridge_disconnected'
|
|
139569
140051
|
}
|
|
140052
|
+
| {
|
|
140053
|
+
/** Date and time at which Seam created the error. */
|
|
140054
|
+
created_at: string
|
|
140055
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140056
|
+
message: string
|
|
140057
|
+
/** Indicates whether the error is related specifically to the connected account. */
|
|
140058
|
+
is_connected_account_error?: boolean | undefined
|
|
140059
|
+
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
140060
|
+
is_bridge_error?: boolean | undefined
|
|
140061
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140062
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
140063
|
+
}
|
|
139570
140064
|
)[]
|
|
139571
140065
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
139572
140066
|
warnings: (
|