@seamapi/types 1.922.0 → 1.924.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 +247 -214
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +484 -473
- package/dist/index.cjs +247 -214
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -58
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -14
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +31 -21
- package/lib/seam/connect/models/devices/device.d.ts +103 -0
- package/lib/seam/connect/models/devices/device.js +55 -16
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
- package/lib/seam/connect/openapi.js +178 -168
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -418
- package/package.json +2 -2
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -17
- package/src/lib/seam/connect/models/devices/device.ts +69 -33
- package/src/lib/seam/connect/openapi.ts +202 -202
- package/src/lib/seam/connect/route-types.ts +372 -460
|
@@ -1890,6 +1890,17 @@ export type Routes = {
|
|
|
1890
1890
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
1891
1891
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
1892
1892
|
is_connected_account_error: true;
|
|
1893
|
+
} | {
|
|
1894
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1895
|
+
message: string;
|
|
1896
|
+
/** Indicates that the error is not a device error. */
|
|
1897
|
+
is_device_error: false;
|
|
1898
|
+
/** Date and time at which Seam created the error. */
|
|
1899
|
+
created_at: string;
|
|
1900
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1901
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
1902
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
1903
|
+
is_connected_account_error: true;
|
|
1893
1904
|
} | {
|
|
1894
1905
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1895
1906
|
message: string;
|
|
@@ -2009,17 +2020,6 @@ export type Routes = {
|
|
|
2009
2020
|
is_bridge_error?: boolean | undefined;
|
|
2010
2021
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2011
2022
|
error_code: 'bridge_disconnected';
|
|
2012
|
-
} | {
|
|
2013
|
-
/** Date and time at which Seam created the error. */
|
|
2014
|
-
created_at: string;
|
|
2015
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2016
|
-
message: string;
|
|
2017
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
2018
|
-
is_connected_account_error?: boolean | undefined;
|
|
2019
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
2020
|
-
is_bridge_error?: boolean | undefined;
|
|
2021
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2022
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
2023
2023
|
})[];
|
|
2024
2024
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
2025
2025
|
warnings: ({
|
|
@@ -2029,13 +2029,6 @@ export type Routes = {
|
|
|
2029
2029
|
created_at?: string | undefined;
|
|
2030
2030
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2031
2031
|
warning_code: 'provider_issue';
|
|
2032
|
-
} | {
|
|
2033
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2034
|
-
message: string;
|
|
2035
|
-
/** Date and time at which Seam created the warning. */
|
|
2036
|
-
created_at?: string | undefined;
|
|
2037
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2038
|
-
warning_code: 'schlage_detected_duplicate';
|
|
2039
2032
|
} | {
|
|
2040
2033
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2041
2034
|
message: string;
|
|
@@ -2446,6 +2439,17 @@ export type Routes = {
|
|
|
2446
2439
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
2447
2440
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
2448
2441
|
is_connected_account_error: true;
|
|
2442
|
+
} | {
|
|
2443
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2444
|
+
message: string;
|
|
2445
|
+
/** Indicates that the error is not a device error. */
|
|
2446
|
+
is_device_error: false;
|
|
2447
|
+
/** Date and time at which Seam created the error. */
|
|
2448
|
+
created_at: string;
|
|
2449
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2450
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
2451
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
2452
|
+
is_connected_account_error: true;
|
|
2449
2453
|
} | {
|
|
2450
2454
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2451
2455
|
message: string;
|
|
@@ -2565,17 +2569,6 @@ export type Routes = {
|
|
|
2565
2569
|
is_bridge_error?: boolean | undefined;
|
|
2566
2570
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2567
2571
|
error_code: 'bridge_disconnected';
|
|
2568
|
-
} | {
|
|
2569
|
-
/** Date and time at which Seam created the error. */
|
|
2570
|
-
created_at: string;
|
|
2571
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2572
|
-
message: string;
|
|
2573
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
2574
|
-
is_connected_account_error?: boolean | undefined;
|
|
2575
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
2576
|
-
is_bridge_error?: boolean | undefined;
|
|
2577
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2578
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
2579
2572
|
})[];
|
|
2580
2573
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
2581
2574
|
warnings: ({
|
|
@@ -2585,13 +2578,6 @@ export type Routes = {
|
|
|
2585
2578
|
created_at?: string | undefined;
|
|
2586
2579
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2587
2580
|
warning_code: 'provider_issue';
|
|
2588
|
-
} | {
|
|
2589
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2590
|
-
message: string;
|
|
2591
|
-
/** Date and time at which Seam created the warning. */
|
|
2592
|
-
created_at?: string | undefined;
|
|
2593
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2594
|
-
warning_code: 'schlage_detected_duplicate';
|
|
2595
2581
|
} | {
|
|
2596
2582
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2597
2583
|
message: string;
|
|
@@ -4690,6 +4676,17 @@ export type Routes = {
|
|
|
4690
4676
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
4691
4677
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
4692
4678
|
is_connected_account_error: true;
|
|
4679
|
+
} | {
|
|
4680
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4681
|
+
message: string;
|
|
4682
|
+
/** Indicates that the error is not a device error. */
|
|
4683
|
+
is_device_error: false;
|
|
4684
|
+
/** Date and time at which Seam created the error. */
|
|
4685
|
+
created_at: string;
|
|
4686
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4687
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
4688
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
4689
|
+
is_connected_account_error: true;
|
|
4693
4690
|
} | {
|
|
4694
4691
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4695
4692
|
message: string;
|
|
@@ -4809,17 +4806,6 @@ export type Routes = {
|
|
|
4809
4806
|
is_bridge_error?: boolean | undefined;
|
|
4810
4807
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4811
4808
|
error_code: 'bridge_disconnected';
|
|
4812
|
-
} | {
|
|
4813
|
-
/** Date and time at which Seam created the error. */
|
|
4814
|
-
created_at: string;
|
|
4815
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4816
|
-
message: string;
|
|
4817
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
4818
|
-
is_connected_account_error?: boolean | undefined;
|
|
4819
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
4820
|
-
is_bridge_error?: boolean | undefined;
|
|
4821
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4822
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
4823
4809
|
})[];
|
|
4824
4810
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
4825
4811
|
warnings: ({
|
|
@@ -4829,13 +4815,6 @@ export type Routes = {
|
|
|
4829
4815
|
created_at?: string | undefined;
|
|
4830
4816
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4831
4817
|
warning_code: 'provider_issue';
|
|
4832
|
-
} | {
|
|
4833
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4834
|
-
message: string;
|
|
4835
|
-
/** Date and time at which Seam created the warning. */
|
|
4836
|
-
created_at?: string | undefined;
|
|
4837
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4838
|
-
warning_code: 'schlage_detected_duplicate';
|
|
4839
4818
|
} | {
|
|
4840
4819
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4841
4820
|
message: string;
|
|
@@ -5292,6 +5271,17 @@ export type Routes = {
|
|
|
5292
5271
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
5293
5272
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5294
5273
|
is_connected_account_error: true;
|
|
5274
|
+
} | {
|
|
5275
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5276
|
+
message: string;
|
|
5277
|
+
/** Indicates that the error is not a device error. */
|
|
5278
|
+
is_device_error: false;
|
|
5279
|
+
/** Date and time at which Seam created the error. */
|
|
5280
|
+
created_at: string;
|
|
5281
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5282
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
5283
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5284
|
+
is_connected_account_error: true;
|
|
5295
5285
|
} | {
|
|
5296
5286
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5297
5287
|
message: string;
|
|
@@ -5411,17 +5401,6 @@ export type Routes = {
|
|
|
5411
5401
|
is_bridge_error?: boolean | undefined;
|
|
5412
5402
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5413
5403
|
error_code: 'bridge_disconnected';
|
|
5414
|
-
} | {
|
|
5415
|
-
/** Date and time at which Seam created the error. */
|
|
5416
|
-
created_at: string;
|
|
5417
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5418
|
-
message: string;
|
|
5419
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
5420
|
-
is_connected_account_error?: boolean | undefined;
|
|
5421
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
5422
|
-
is_bridge_error?: boolean | undefined;
|
|
5423
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5424
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
5425
5404
|
})[];
|
|
5426
5405
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
5427
5406
|
warnings: ({
|
|
@@ -5431,13 +5410,6 @@ export type Routes = {
|
|
|
5431
5410
|
created_at?: string | undefined;
|
|
5432
5411
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5433
5412
|
warning_code: 'provider_issue';
|
|
5434
|
-
} | {
|
|
5435
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5436
|
-
message: string;
|
|
5437
|
-
/** Date and time at which Seam created the warning. */
|
|
5438
|
-
created_at?: string | undefined;
|
|
5439
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5440
|
-
warning_code: 'schlage_detected_duplicate';
|
|
5441
5413
|
} | {
|
|
5442
5414
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5443
5415
|
message: string;
|
|
@@ -5839,6 +5811,17 @@ export type Routes = {
|
|
|
5839
5811
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
5840
5812
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5841
5813
|
is_connected_account_error: true;
|
|
5814
|
+
} | {
|
|
5815
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5816
|
+
message: string;
|
|
5817
|
+
/** Indicates that the error is not a device error. */
|
|
5818
|
+
is_device_error: false;
|
|
5819
|
+
/** Date and time at which Seam created the error. */
|
|
5820
|
+
created_at: string;
|
|
5821
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5822
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
5823
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5824
|
+
is_connected_account_error: true;
|
|
5842
5825
|
} | {
|
|
5843
5826
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5844
5827
|
message: string;
|
|
@@ -5958,17 +5941,6 @@ export type Routes = {
|
|
|
5958
5941
|
is_bridge_error?: boolean | undefined;
|
|
5959
5942
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5960
5943
|
error_code: 'bridge_disconnected';
|
|
5961
|
-
} | {
|
|
5962
|
-
/** Date and time at which Seam created the error. */
|
|
5963
|
-
created_at: string;
|
|
5964
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5965
|
-
message: string;
|
|
5966
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
5967
|
-
is_connected_account_error?: boolean | undefined;
|
|
5968
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
5969
|
-
is_bridge_error?: boolean | undefined;
|
|
5970
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5971
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
5972
5944
|
})[];
|
|
5973
5945
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
5974
5946
|
warnings: ({
|
|
@@ -5978,13 +5950,6 @@ export type Routes = {
|
|
|
5978
5950
|
created_at?: string | undefined;
|
|
5979
5951
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5980
5952
|
warning_code: 'provider_issue';
|
|
5981
|
-
} | {
|
|
5982
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5983
|
-
message: string;
|
|
5984
|
-
/** Date and time at which Seam created the warning. */
|
|
5985
|
-
created_at?: string | undefined;
|
|
5986
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5987
|
-
warning_code: 'schlage_detected_duplicate';
|
|
5988
5953
|
} | {
|
|
5989
5954
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5990
5955
|
message: string;
|
|
@@ -6363,6 +6328,17 @@ export type Routes = {
|
|
|
6363
6328
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
6364
6329
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6365
6330
|
is_connected_account_error: true;
|
|
6331
|
+
} | {
|
|
6332
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6333
|
+
message: string;
|
|
6334
|
+
/** Indicates that the error is not a device error. */
|
|
6335
|
+
is_device_error: false;
|
|
6336
|
+
/** Date and time at which Seam created the error. */
|
|
6337
|
+
created_at: string;
|
|
6338
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6339
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
6340
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6341
|
+
is_connected_account_error: true;
|
|
6366
6342
|
} | {
|
|
6367
6343
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6368
6344
|
message: string;
|
|
@@ -6482,17 +6458,6 @@ export type Routes = {
|
|
|
6482
6458
|
is_bridge_error?: boolean | undefined;
|
|
6483
6459
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6484
6460
|
error_code: 'bridge_disconnected';
|
|
6485
|
-
} | {
|
|
6486
|
-
/** Date and time at which Seam created the error. */
|
|
6487
|
-
created_at: string;
|
|
6488
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6489
|
-
message: string;
|
|
6490
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
6491
|
-
is_connected_account_error?: boolean | undefined;
|
|
6492
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
6493
|
-
is_bridge_error?: boolean | undefined;
|
|
6494
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6495
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
6496
6461
|
})[];
|
|
6497
6462
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
6498
6463
|
warnings: ({
|
|
@@ -6502,13 +6467,6 @@ export type Routes = {
|
|
|
6502
6467
|
created_at?: string | undefined;
|
|
6503
6468
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6504
6469
|
warning_code: 'provider_issue';
|
|
6505
|
-
} | {
|
|
6506
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6507
|
-
message: string;
|
|
6508
|
-
/** Date and time at which Seam created the warning. */
|
|
6509
|
-
created_at?: string | undefined;
|
|
6510
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6511
|
-
warning_code: 'schlage_detected_duplicate';
|
|
6512
6470
|
} | {
|
|
6513
6471
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6514
6472
|
message: string;
|
|
@@ -6920,6 +6878,17 @@ export type Routes = {
|
|
|
6920
6878
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
6921
6879
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6922
6880
|
is_connected_account_error: true;
|
|
6881
|
+
} | {
|
|
6882
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6883
|
+
message: string;
|
|
6884
|
+
/** Indicates that the error is not a device error. */
|
|
6885
|
+
is_device_error: false;
|
|
6886
|
+
/** Date and time at which Seam created the error. */
|
|
6887
|
+
created_at: string;
|
|
6888
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6889
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
6890
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6891
|
+
is_connected_account_error: true;
|
|
6923
6892
|
} | {
|
|
6924
6893
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6925
6894
|
message: string;
|
|
@@ -7039,17 +7008,6 @@ export type Routes = {
|
|
|
7039
7008
|
is_bridge_error?: boolean | undefined;
|
|
7040
7009
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7041
7010
|
error_code: 'bridge_disconnected';
|
|
7042
|
-
} | {
|
|
7043
|
-
/** Date and time at which Seam created the error. */
|
|
7044
|
-
created_at: string;
|
|
7045
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7046
|
-
message: string;
|
|
7047
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
7048
|
-
is_connected_account_error?: boolean | undefined;
|
|
7049
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
7050
|
-
is_bridge_error?: boolean | undefined;
|
|
7051
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7052
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
7053
7011
|
})[];
|
|
7054
7012
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
7055
7013
|
warnings: ({
|
|
@@ -7059,13 +7017,6 @@ export type Routes = {
|
|
|
7059
7017
|
created_at?: string | undefined;
|
|
7060
7018
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7061
7019
|
warning_code: 'provider_issue';
|
|
7062
|
-
} | {
|
|
7063
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7064
|
-
message: string;
|
|
7065
|
-
/** Date and time at which Seam created the warning. */
|
|
7066
|
-
created_at?: string | undefined;
|
|
7067
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7068
|
-
warning_code: 'schlage_detected_duplicate';
|
|
7069
7020
|
} | {
|
|
7070
7021
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7071
7022
|
message: string;
|
|
@@ -9073,6 +9024,17 @@ export type Routes = {
|
|
|
9073
9024
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
9074
9025
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
9075
9026
|
is_connected_account_error: true;
|
|
9027
|
+
} | {
|
|
9028
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9029
|
+
message: string;
|
|
9030
|
+
/** Indicates that the error is not a device error. */
|
|
9031
|
+
is_device_error: false;
|
|
9032
|
+
/** Date and time at which Seam created the error. */
|
|
9033
|
+
created_at: string;
|
|
9034
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9035
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
9036
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
9037
|
+
is_connected_account_error: true;
|
|
9076
9038
|
} | {
|
|
9077
9039
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9078
9040
|
message: string;
|
|
@@ -9192,17 +9154,6 @@ export type Routes = {
|
|
|
9192
9154
|
is_bridge_error?: boolean | undefined;
|
|
9193
9155
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9194
9156
|
error_code: 'bridge_disconnected';
|
|
9195
|
-
} | {
|
|
9196
|
-
/** Date and time at which Seam created the error. */
|
|
9197
|
-
created_at: string;
|
|
9198
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9199
|
-
message: string;
|
|
9200
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
9201
|
-
is_connected_account_error?: boolean | undefined;
|
|
9202
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
9203
|
-
is_bridge_error?: boolean | undefined;
|
|
9204
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9205
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
9206
9157
|
})[];
|
|
9207
9158
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
9208
9159
|
warnings: ({
|
|
@@ -9212,13 +9163,6 @@ export type Routes = {
|
|
|
9212
9163
|
created_at?: string | undefined;
|
|
9213
9164
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9214
9165
|
warning_code: 'provider_issue';
|
|
9215
|
-
} | {
|
|
9216
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9217
|
-
message: string;
|
|
9218
|
-
/** Date and time at which Seam created the warning. */
|
|
9219
|
-
created_at?: string | undefined;
|
|
9220
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9221
|
-
warning_code: 'schlage_detected_duplicate';
|
|
9222
9166
|
} | {
|
|
9223
9167
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9224
9168
|
message: string;
|
|
@@ -9516,6 +9460,17 @@ export type Routes = {
|
|
|
9516
9460
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
9517
9461
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
9518
9462
|
is_connected_account_error: true;
|
|
9463
|
+
} | {
|
|
9464
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9465
|
+
message: string;
|
|
9466
|
+
/** Indicates that the error is not a device error. */
|
|
9467
|
+
is_device_error: false;
|
|
9468
|
+
/** Date and time at which Seam created the error. */
|
|
9469
|
+
created_at: string;
|
|
9470
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9471
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
9472
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
9473
|
+
is_connected_account_error: true;
|
|
9519
9474
|
} | {
|
|
9520
9475
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9521
9476
|
message: string;
|
|
@@ -9635,17 +9590,6 @@ export type Routes = {
|
|
|
9635
9590
|
is_bridge_error?: boolean | undefined;
|
|
9636
9591
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9637
9592
|
error_code: 'bridge_disconnected';
|
|
9638
|
-
} | {
|
|
9639
|
-
/** Date and time at which Seam created the error. */
|
|
9640
|
-
created_at: string;
|
|
9641
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9642
|
-
message: string;
|
|
9643
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
9644
|
-
is_connected_account_error?: boolean | undefined;
|
|
9645
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
9646
|
-
is_bridge_error?: boolean | undefined;
|
|
9647
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9648
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
9649
9593
|
})[];
|
|
9650
9594
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
9651
9595
|
warnings: ({
|
|
@@ -9655,13 +9599,6 @@ export type Routes = {
|
|
|
9655
9599
|
created_at?: string | undefined;
|
|
9656
9600
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9657
9601
|
warning_code: 'provider_issue';
|
|
9658
|
-
} | {
|
|
9659
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9660
|
-
message: string;
|
|
9661
|
-
/** Date and time at which Seam created the warning. */
|
|
9662
|
-
created_at?: string | undefined;
|
|
9663
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9664
|
-
warning_code: 'schlage_detected_duplicate';
|
|
9665
9602
|
} | {
|
|
9666
9603
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9667
9604
|
message: string;
|
|
@@ -13077,6 +13014,17 @@ export type Routes = {
|
|
|
13077
13014
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
13078
13015
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
13079
13016
|
is_connected_account_error: true;
|
|
13017
|
+
} | {
|
|
13018
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
13019
|
+
message: string;
|
|
13020
|
+
/** Indicates that the error is not a device error. */
|
|
13021
|
+
is_device_error: false;
|
|
13022
|
+
/** Date and time at which Seam created the error. */
|
|
13023
|
+
created_at: string;
|
|
13024
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13025
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
13026
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
13027
|
+
is_connected_account_error: true;
|
|
13080
13028
|
} | {
|
|
13081
13029
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
13082
13030
|
message: string;
|
|
@@ -13196,17 +13144,6 @@ export type Routes = {
|
|
|
13196
13144
|
is_bridge_error?: boolean | undefined;
|
|
13197
13145
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13198
13146
|
error_code: 'bridge_disconnected';
|
|
13199
|
-
} | {
|
|
13200
|
-
/** Date and time at which Seam created the error. */
|
|
13201
|
-
created_at: string;
|
|
13202
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
13203
|
-
message: string;
|
|
13204
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
13205
|
-
is_connected_account_error?: boolean | undefined;
|
|
13206
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
13207
|
-
is_bridge_error?: boolean | undefined;
|
|
13208
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
13209
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
13210
13147
|
})[];
|
|
13211
13148
|
/** 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. */
|
|
13212
13149
|
warnings: ({
|
|
@@ -19725,6 +19662,17 @@ export type Routes = {
|
|
|
19725
19662
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
19726
19663
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
19727
19664
|
is_connected_account_error: true;
|
|
19665
|
+
} | {
|
|
19666
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19667
|
+
message: string;
|
|
19668
|
+
/** Indicates that the error is not a device error. */
|
|
19669
|
+
is_device_error: false;
|
|
19670
|
+
/** Date and time at which Seam created the error. */
|
|
19671
|
+
created_at: string;
|
|
19672
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19673
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
19674
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
19675
|
+
is_connected_account_error: true;
|
|
19728
19676
|
} | {
|
|
19729
19677
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19730
19678
|
message: string;
|
|
@@ -19844,17 +19792,6 @@ export type Routes = {
|
|
|
19844
19792
|
is_bridge_error?: boolean | undefined;
|
|
19845
19793
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19846
19794
|
error_code: 'bridge_disconnected';
|
|
19847
|
-
} | {
|
|
19848
|
-
/** Date and time at which Seam created the error. */
|
|
19849
|
-
created_at: string;
|
|
19850
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
19851
|
-
message: string;
|
|
19852
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
19853
|
-
is_connected_account_error?: boolean | undefined;
|
|
19854
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
19855
|
-
is_bridge_error?: boolean | undefined;
|
|
19856
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
19857
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
19858
19795
|
})[];
|
|
19859
19796
|
/** 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. */
|
|
19860
19797
|
warnings: ({
|
|
@@ -42145,6 +42082,17 @@ export type Routes = {
|
|
|
42145
42082
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
42146
42083
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
42147
42084
|
is_connected_account_error: true;
|
|
42085
|
+
} | {
|
|
42086
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
42087
|
+
message: string;
|
|
42088
|
+
/** Indicates that the error is not a device error. */
|
|
42089
|
+
is_device_error: false;
|
|
42090
|
+
/** Date and time at which Seam created the error. */
|
|
42091
|
+
created_at: string;
|
|
42092
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42093
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
42094
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
42095
|
+
is_connected_account_error: true;
|
|
42148
42096
|
} | {
|
|
42149
42097
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
42150
42098
|
message: string;
|
|
@@ -42264,17 +42212,6 @@ export type Routes = {
|
|
|
42264
42212
|
is_bridge_error?: boolean | undefined;
|
|
42265
42213
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42266
42214
|
error_code: 'bridge_disconnected';
|
|
42267
|
-
} | {
|
|
42268
|
-
/** Date and time at which Seam created the error. */
|
|
42269
|
-
created_at: string;
|
|
42270
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
42271
|
-
message: string;
|
|
42272
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
42273
|
-
is_connected_account_error?: boolean | undefined;
|
|
42274
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
42275
|
-
is_bridge_error?: boolean | undefined;
|
|
42276
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42277
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
42278
42215
|
})[];
|
|
42279
42216
|
/** 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. */
|
|
42280
42217
|
warnings: ({
|
|
@@ -43587,6 +43524,17 @@ export type Routes = {
|
|
|
43587
43524
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
43588
43525
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
43589
43526
|
is_connected_account_error: true;
|
|
43527
|
+
} | {
|
|
43528
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43529
|
+
message: string;
|
|
43530
|
+
/** Indicates that the error is not a device error. */
|
|
43531
|
+
is_device_error: false;
|
|
43532
|
+
/** Date and time at which Seam created the error. */
|
|
43533
|
+
created_at: string;
|
|
43534
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43535
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
43536
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
43537
|
+
is_connected_account_error: true;
|
|
43590
43538
|
} | {
|
|
43591
43539
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43592
43540
|
message: string;
|
|
@@ -43706,17 +43654,6 @@ export type Routes = {
|
|
|
43706
43654
|
is_bridge_error?: boolean | undefined;
|
|
43707
43655
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43708
43656
|
error_code: 'bridge_disconnected';
|
|
43709
|
-
} | {
|
|
43710
|
-
/** Date and time at which Seam created the error. */
|
|
43711
|
-
created_at: string;
|
|
43712
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
43713
|
-
message: string;
|
|
43714
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
43715
|
-
is_connected_account_error?: boolean | undefined;
|
|
43716
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
43717
|
-
is_bridge_error?: boolean | undefined;
|
|
43718
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
43719
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
43720
43657
|
})[];
|
|
43721
43658
|
/** 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. */
|
|
43722
43659
|
warnings: ({
|
|
@@ -44222,6 +44159,17 @@ export type Routes = {
|
|
|
44222
44159
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
44223
44160
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
44224
44161
|
is_connected_account_error: true;
|
|
44162
|
+
} | {
|
|
44163
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44164
|
+
message: string;
|
|
44165
|
+
/** Indicates that the error is not a device error. */
|
|
44166
|
+
is_device_error: false;
|
|
44167
|
+
/** Date and time at which Seam created the error. */
|
|
44168
|
+
created_at: string;
|
|
44169
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44170
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
44171
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
44172
|
+
is_connected_account_error: true;
|
|
44225
44173
|
} | {
|
|
44226
44174
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44227
44175
|
message: string;
|
|
@@ -44341,17 +44289,6 @@ export type Routes = {
|
|
|
44341
44289
|
is_bridge_error?: boolean | undefined;
|
|
44342
44290
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44343
44291
|
error_code: 'bridge_disconnected';
|
|
44344
|
-
} | {
|
|
44345
|
-
/** Date and time at which Seam created the error. */
|
|
44346
|
-
created_at: string;
|
|
44347
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44348
|
-
message: string;
|
|
44349
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
44350
|
-
is_connected_account_error?: boolean | undefined;
|
|
44351
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
44352
|
-
is_bridge_error?: boolean | undefined;
|
|
44353
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44354
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
44355
44292
|
})[];
|
|
44356
44293
|
/** 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. */
|
|
44357
44294
|
warnings: ({
|
|
@@ -44759,6 +44696,17 @@ export type Routes = {
|
|
|
44759
44696
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
44760
44697
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
44761
44698
|
is_connected_account_error: true;
|
|
44699
|
+
} | {
|
|
44700
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44701
|
+
message: string;
|
|
44702
|
+
/** Indicates that the error is not a device error. */
|
|
44703
|
+
is_device_error: false;
|
|
44704
|
+
/** Date and time at which Seam created the error. */
|
|
44705
|
+
created_at: string;
|
|
44706
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44707
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
44708
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
44709
|
+
is_connected_account_error: true;
|
|
44762
44710
|
} | {
|
|
44763
44711
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44764
44712
|
message: string;
|
|
@@ -44878,17 +44826,6 @@ export type Routes = {
|
|
|
44878
44826
|
is_bridge_error?: boolean | undefined;
|
|
44879
44827
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44880
44828
|
error_code: 'bridge_disconnected';
|
|
44881
|
-
} | {
|
|
44882
|
-
/** Date and time at which Seam created the error. */
|
|
44883
|
-
created_at: string;
|
|
44884
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
44885
|
-
message: string;
|
|
44886
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
44887
|
-
is_connected_account_error?: boolean | undefined;
|
|
44888
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
44889
|
-
is_bridge_error?: boolean | undefined;
|
|
44890
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44891
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
44892
44829
|
})[];
|
|
44893
44830
|
/** 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. */
|
|
44894
44831
|
warnings: ({
|
|
@@ -54080,6 +54017,17 @@ export type Routes = {
|
|
|
54080
54017
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
54081
54018
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
54082
54019
|
is_connected_account_error: true;
|
|
54020
|
+
} | {
|
|
54021
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54022
|
+
message: string;
|
|
54023
|
+
/** Indicates that the error is not a device error. */
|
|
54024
|
+
is_device_error: false;
|
|
54025
|
+
/** Date and time at which Seam created the error. */
|
|
54026
|
+
created_at: string;
|
|
54027
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54028
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
54029
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
54030
|
+
is_connected_account_error: true;
|
|
54083
54031
|
} | {
|
|
54084
54032
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54085
54033
|
message: string;
|
|
@@ -54199,17 +54147,6 @@ export type Routes = {
|
|
|
54199
54147
|
is_bridge_error?: boolean | undefined;
|
|
54200
54148
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54201
54149
|
error_code: 'bridge_disconnected';
|
|
54202
|
-
} | {
|
|
54203
|
-
/** Date and time at which Seam created the error. */
|
|
54204
|
-
created_at: string;
|
|
54205
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54206
|
-
message: string;
|
|
54207
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
54208
|
-
is_connected_account_error?: boolean | undefined;
|
|
54209
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
54210
|
-
is_bridge_error?: boolean | undefined;
|
|
54211
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54212
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
54213
54150
|
})[];
|
|
54214
54151
|
/** 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. */
|
|
54215
54152
|
warnings: ({
|
|
@@ -55472,6 +55409,17 @@ export type Routes = {
|
|
|
55472
55409
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
55473
55410
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
55474
55411
|
is_connected_account_error: true;
|
|
55412
|
+
} | {
|
|
55413
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55414
|
+
message: string;
|
|
55415
|
+
/** Indicates that the error is not a device error. */
|
|
55416
|
+
is_device_error: false;
|
|
55417
|
+
/** Date and time at which Seam created the error. */
|
|
55418
|
+
created_at: string;
|
|
55419
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55420
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
55421
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
55422
|
+
is_connected_account_error: true;
|
|
55475
55423
|
} | {
|
|
55476
55424
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55477
55425
|
message: string;
|
|
@@ -55591,17 +55539,6 @@ export type Routes = {
|
|
|
55591
55539
|
is_bridge_error?: boolean | undefined;
|
|
55592
55540
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55593
55541
|
error_code: 'bridge_disconnected';
|
|
55594
|
-
} | {
|
|
55595
|
-
/** Date and time at which Seam created the error. */
|
|
55596
|
-
created_at: string;
|
|
55597
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55598
|
-
message: string;
|
|
55599
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
55600
|
-
is_connected_account_error?: boolean | undefined;
|
|
55601
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
55602
|
-
is_bridge_error?: boolean | undefined;
|
|
55603
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55604
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
55605
55542
|
})[];
|
|
55606
55543
|
/** 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. */
|
|
55607
55544
|
warnings: ({
|
|
@@ -56914,6 +56851,17 @@ export type Routes = {
|
|
|
56914
56851
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
56915
56852
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
56916
56853
|
is_connected_account_error: true;
|
|
56854
|
+
} | {
|
|
56855
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56856
|
+
message: string;
|
|
56857
|
+
/** Indicates that the error is not a device error. */
|
|
56858
|
+
is_device_error: false;
|
|
56859
|
+
/** Date and time at which Seam created the error. */
|
|
56860
|
+
created_at: string;
|
|
56861
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
56862
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
56863
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
56864
|
+
is_connected_account_error: true;
|
|
56917
56865
|
} | {
|
|
56918
56866
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56919
56867
|
message: string;
|
|
@@ -57033,17 +56981,6 @@ export type Routes = {
|
|
|
57033
56981
|
is_bridge_error?: boolean | undefined;
|
|
57034
56982
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
57035
56983
|
error_code: 'bridge_disconnected';
|
|
57036
|
-
} | {
|
|
57037
|
-
/** Date and time at which Seam created the error. */
|
|
57038
|
-
created_at: string;
|
|
57039
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57040
|
-
message: string;
|
|
57041
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
57042
|
-
is_connected_account_error?: boolean | undefined;
|
|
57043
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
57044
|
-
is_bridge_error?: boolean | undefined;
|
|
57045
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
57046
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
57047
56984
|
})[];
|
|
57048
56985
|
/** 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. */
|
|
57049
56986
|
warnings: ({
|
|
@@ -58305,6 +58242,17 @@ export type Routes = {
|
|
|
58305
58242
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
58306
58243
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
58307
58244
|
is_connected_account_error: true;
|
|
58245
|
+
} | {
|
|
58246
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58247
|
+
message: string;
|
|
58248
|
+
/** Indicates that the error is not a device error. */
|
|
58249
|
+
is_device_error: false;
|
|
58250
|
+
/** Date and time at which Seam created the error. */
|
|
58251
|
+
created_at: string;
|
|
58252
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58253
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
58254
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
58255
|
+
is_connected_account_error: true;
|
|
58308
58256
|
} | {
|
|
58309
58257
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58310
58258
|
message: string;
|
|
@@ -58424,17 +58372,6 @@ export type Routes = {
|
|
|
58424
58372
|
is_bridge_error?: boolean | undefined;
|
|
58425
58373
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58426
58374
|
error_code: 'bridge_disconnected';
|
|
58427
|
-
} | {
|
|
58428
|
-
/** Date and time at which Seam created the error. */
|
|
58429
|
-
created_at: string;
|
|
58430
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58431
|
-
message: string;
|
|
58432
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
58433
|
-
is_connected_account_error?: boolean | undefined;
|
|
58434
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
58435
|
-
is_bridge_error?: boolean | undefined;
|
|
58436
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58437
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
58438
58375
|
})[];
|
|
58439
58376
|
/** 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. */
|
|
58440
58377
|
warnings: ({
|
|
@@ -66473,6 +66410,17 @@ export type Routes = {
|
|
|
66473
66410
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
66474
66411
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
66475
66412
|
is_connected_account_error: true;
|
|
66413
|
+
} | {
|
|
66414
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66415
|
+
message: string;
|
|
66416
|
+
/** Indicates that the error is not a device error. */
|
|
66417
|
+
is_device_error: false;
|
|
66418
|
+
/** Date and time at which Seam created the error. */
|
|
66419
|
+
created_at: string;
|
|
66420
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66421
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
66422
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
66423
|
+
is_connected_account_error: true;
|
|
66476
66424
|
} | {
|
|
66477
66425
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66478
66426
|
message: string;
|
|
@@ -66592,17 +66540,6 @@ export type Routes = {
|
|
|
66592
66540
|
is_bridge_error?: boolean | undefined;
|
|
66593
66541
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66594
66542
|
error_code: 'bridge_disconnected';
|
|
66595
|
-
} | {
|
|
66596
|
-
/** Date and time at which Seam created the error. */
|
|
66597
|
-
created_at: string;
|
|
66598
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66599
|
-
message: string;
|
|
66600
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
66601
|
-
is_connected_account_error?: boolean | undefined;
|
|
66602
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
66603
|
-
is_bridge_error?: boolean | undefined;
|
|
66604
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66605
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
66606
66543
|
})[];
|
|
66607
66544
|
/** 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. */
|
|
66608
66545
|
warnings: ({
|
|
@@ -67864,6 +67801,17 @@ export type Routes = {
|
|
|
67864
67801
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
67865
67802
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
67866
67803
|
is_connected_account_error: true;
|
|
67804
|
+
} | {
|
|
67805
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67806
|
+
message: string;
|
|
67807
|
+
/** Indicates that the error is not a device error. */
|
|
67808
|
+
is_device_error: false;
|
|
67809
|
+
/** Date and time at which Seam created the error. */
|
|
67810
|
+
created_at: string;
|
|
67811
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
67812
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
67813
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
67814
|
+
is_connected_account_error: true;
|
|
67867
67815
|
} | {
|
|
67868
67816
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67869
67817
|
message: string;
|
|
@@ -67983,17 +67931,6 @@ export type Routes = {
|
|
|
67983
67931
|
is_bridge_error?: boolean | undefined;
|
|
67984
67932
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
67985
67933
|
error_code: 'bridge_disconnected';
|
|
67986
|
-
} | {
|
|
67987
|
-
/** Date and time at which Seam created the error. */
|
|
67988
|
-
created_at: string;
|
|
67989
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
67990
|
-
message: string;
|
|
67991
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
67992
|
-
is_connected_account_error?: boolean | undefined;
|
|
67993
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
67994
|
-
is_bridge_error?: boolean | undefined;
|
|
67995
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
67996
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
67997
67934
|
})[];
|
|
67998
67935
|
/** 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. */
|
|
67999
67936
|
warnings: ({
|
|
@@ -83316,6 +83253,17 @@ export type Routes = {
|
|
|
83316
83253
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
83317
83254
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
83318
83255
|
is_connected_account_error: true;
|
|
83256
|
+
} | {
|
|
83257
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83258
|
+
message: string;
|
|
83259
|
+
/** Indicates that the error is not a device error. */
|
|
83260
|
+
is_device_error: false;
|
|
83261
|
+
/** Date and time at which Seam created the error. */
|
|
83262
|
+
created_at: string;
|
|
83263
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83264
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
83265
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
83266
|
+
is_connected_account_error: true;
|
|
83319
83267
|
} | {
|
|
83320
83268
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83321
83269
|
message: string;
|
|
@@ -83435,17 +83383,6 @@ export type Routes = {
|
|
|
83435
83383
|
is_bridge_error?: boolean | undefined;
|
|
83436
83384
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83437
83385
|
error_code: 'bridge_disconnected';
|
|
83438
|
-
} | {
|
|
83439
|
-
/** Date and time at which Seam created the error. */
|
|
83440
|
-
created_at: string;
|
|
83441
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83442
|
-
message: string;
|
|
83443
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
83444
|
-
is_connected_account_error?: boolean | undefined;
|
|
83445
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
83446
|
-
is_bridge_error?: boolean | undefined;
|
|
83447
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83448
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
83449
83386
|
})[];
|
|
83450
83387
|
/** 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. */
|
|
83451
83388
|
warnings: ({
|
|
@@ -90715,6 +90652,17 @@ export type Routes = {
|
|
|
90715
90652
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
90716
90653
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
90717
90654
|
is_connected_account_error: true;
|
|
90655
|
+
} | {
|
|
90656
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90657
|
+
message: string;
|
|
90658
|
+
/** Indicates that the error is not a device error. */
|
|
90659
|
+
is_device_error: false;
|
|
90660
|
+
/** Date and time at which Seam created the error. */
|
|
90661
|
+
created_at: string;
|
|
90662
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
90663
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
90664
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
90665
|
+
is_connected_account_error: true;
|
|
90718
90666
|
} | {
|
|
90719
90667
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90720
90668
|
message: string;
|
|
@@ -90834,17 +90782,6 @@ export type Routes = {
|
|
|
90834
90782
|
is_bridge_error?: boolean | undefined;
|
|
90835
90783
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
90836
90784
|
error_code: 'bridge_disconnected';
|
|
90837
|
-
} | {
|
|
90838
|
-
/** Date and time at which Seam created the error. */
|
|
90839
|
-
created_at: string;
|
|
90840
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90841
|
-
message: string;
|
|
90842
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
90843
|
-
is_connected_account_error?: boolean | undefined;
|
|
90844
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
90845
|
-
is_bridge_error?: boolean | undefined;
|
|
90846
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
90847
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
90848
90785
|
})[];
|
|
90849
90786
|
/** 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. */
|
|
90850
90787
|
warnings: ({
|
|
@@ -95533,6 +95470,17 @@ export type Routes = {
|
|
|
95533
95470
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
95534
95471
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
95535
95472
|
is_connected_account_error: true;
|
|
95473
|
+
} | {
|
|
95474
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
95475
|
+
message: string;
|
|
95476
|
+
/** Indicates that the error is not a device error. */
|
|
95477
|
+
is_device_error: false;
|
|
95478
|
+
/** Date and time at which Seam created the error. */
|
|
95479
|
+
created_at: string;
|
|
95480
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
95481
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
95482
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
95483
|
+
is_connected_account_error: true;
|
|
95536
95484
|
} | {
|
|
95537
95485
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
95538
95486
|
message: string;
|
|
@@ -95652,17 +95600,6 @@ export type Routes = {
|
|
|
95652
95600
|
is_bridge_error?: boolean | undefined;
|
|
95653
95601
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
95654
95602
|
error_code: 'bridge_disconnected';
|
|
95655
|
-
} | {
|
|
95656
|
-
/** Date and time at which Seam created the error. */
|
|
95657
|
-
created_at: string;
|
|
95658
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
95659
|
-
message: string;
|
|
95660
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
95661
|
-
is_connected_account_error?: boolean | undefined;
|
|
95662
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
95663
|
-
is_bridge_error?: boolean | undefined;
|
|
95664
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
95665
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
95666
95603
|
})[];
|
|
95667
95604
|
/** 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. */
|
|
95668
95605
|
warnings: ({
|
|
@@ -96924,6 +96861,17 @@ export type Routes = {
|
|
|
96924
96861
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
96925
96862
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
96926
96863
|
is_connected_account_error: true;
|
|
96864
|
+
} | {
|
|
96865
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
96866
|
+
message: string;
|
|
96867
|
+
/** Indicates that the error is not a device error. */
|
|
96868
|
+
is_device_error: false;
|
|
96869
|
+
/** Date and time at which Seam created the error. */
|
|
96870
|
+
created_at: string;
|
|
96871
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
96872
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
96873
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
96874
|
+
is_connected_account_error: true;
|
|
96927
96875
|
} | {
|
|
96928
96876
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
96929
96877
|
message: string;
|
|
@@ -97043,17 +96991,6 @@ export type Routes = {
|
|
|
97043
96991
|
is_bridge_error?: boolean | undefined;
|
|
97044
96992
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97045
96993
|
error_code: 'bridge_disconnected';
|
|
97046
|
-
} | {
|
|
97047
|
-
/** Date and time at which Seam created the error. */
|
|
97048
|
-
created_at: string;
|
|
97049
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
97050
|
-
message: string;
|
|
97051
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
97052
|
-
is_connected_account_error?: boolean | undefined;
|
|
97053
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
97054
|
-
is_bridge_error?: boolean | undefined;
|
|
97055
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
97056
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
97057
96994
|
})[];
|
|
97058
96995
|
/** 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. */
|
|
97059
96996
|
warnings: ({
|
|
@@ -106031,6 +105968,17 @@ export type Routes = {
|
|
|
106031
105968
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
106032
105969
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
106033
105970
|
is_connected_account_error: true;
|
|
105971
|
+
} | {
|
|
105972
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105973
|
+
message: string;
|
|
105974
|
+
/** Indicates that the error is not a device error. */
|
|
105975
|
+
is_device_error: false;
|
|
105976
|
+
/** Date and time at which Seam created the error. */
|
|
105977
|
+
created_at: string;
|
|
105978
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
105979
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
105980
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
105981
|
+
is_connected_account_error: true;
|
|
106034
105982
|
} | {
|
|
106035
105983
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
106036
105984
|
message: string;
|
|
@@ -106150,17 +106098,6 @@ export type Routes = {
|
|
|
106150
106098
|
is_bridge_error?: boolean | undefined;
|
|
106151
106099
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
106152
106100
|
error_code: 'bridge_disconnected';
|
|
106153
|
-
} | {
|
|
106154
|
-
/** Date and time at which Seam created the error. */
|
|
106155
|
-
created_at: string;
|
|
106156
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
106157
|
-
message: string;
|
|
106158
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
106159
|
-
is_connected_account_error?: boolean | undefined;
|
|
106160
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
106161
|
-
is_bridge_error?: boolean | undefined;
|
|
106162
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
106163
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
106164
106101
|
})[];
|
|
106165
106102
|
/** 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. */
|
|
106166
106103
|
warnings: ({
|
|
@@ -107424,6 +107361,17 @@ export type Routes = {
|
|
|
107424
107361
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
107425
107362
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
107426
107363
|
is_connected_account_error: true;
|
|
107364
|
+
} | {
|
|
107365
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107366
|
+
message: string;
|
|
107367
|
+
/** Indicates that the error is not a device error. */
|
|
107368
|
+
is_device_error: false;
|
|
107369
|
+
/** Date and time at which Seam created the error. */
|
|
107370
|
+
created_at: string;
|
|
107371
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107372
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
107373
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
107374
|
+
is_connected_account_error: true;
|
|
107427
107375
|
} | {
|
|
107428
107376
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107429
107377
|
message: string;
|
|
@@ -107543,17 +107491,6 @@ export type Routes = {
|
|
|
107543
107491
|
is_bridge_error?: boolean | undefined;
|
|
107544
107492
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107545
107493
|
error_code: 'bridge_disconnected';
|
|
107546
|
-
} | {
|
|
107547
|
-
/** Date and time at which Seam created the error. */
|
|
107548
|
-
created_at: string;
|
|
107549
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107550
|
-
message: string;
|
|
107551
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
107552
|
-
is_connected_account_error?: boolean | undefined;
|
|
107553
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
107554
|
-
is_bridge_error?: boolean | undefined;
|
|
107555
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107556
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
107557
107494
|
})[];
|
|
107558
107495
|
/** 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. */
|
|
107559
107496
|
warnings: ({
|
|
@@ -110072,6 +110009,17 @@ export type Routes = {
|
|
|
110072
110009
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
110073
110010
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
110074
110011
|
is_connected_account_error: true;
|
|
110012
|
+
} | {
|
|
110013
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110014
|
+
message: string;
|
|
110015
|
+
/** Indicates that the error is not a device error. */
|
|
110016
|
+
is_device_error: false;
|
|
110017
|
+
/** Date and time at which Seam created the error. */
|
|
110018
|
+
created_at: string;
|
|
110019
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110020
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
110021
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
110022
|
+
is_connected_account_error: true;
|
|
110075
110023
|
} | {
|
|
110076
110024
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110077
110025
|
message: string;
|
|
@@ -110191,17 +110139,6 @@ export type Routes = {
|
|
|
110191
110139
|
is_bridge_error?: boolean | undefined;
|
|
110192
110140
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110193
110141
|
error_code: 'bridge_disconnected';
|
|
110194
|
-
} | {
|
|
110195
|
-
/** Date and time at which Seam created the error. */
|
|
110196
|
-
created_at: string;
|
|
110197
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110198
|
-
message: string;
|
|
110199
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
110200
|
-
is_connected_account_error?: boolean | undefined;
|
|
110201
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
110202
|
-
is_bridge_error?: boolean | undefined;
|
|
110203
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
110204
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
110205
110142
|
})[];
|
|
110206
110143
|
/** 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. */
|
|
110207
110144
|
warnings: ({
|
|
@@ -113374,6 +113311,17 @@ export type Routes = {
|
|
|
113374
113311
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
113375
113312
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
113376
113313
|
is_connected_account_error: true;
|
|
113314
|
+
} | {
|
|
113315
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113316
|
+
message: string;
|
|
113317
|
+
/** Indicates that the error is not a device error. */
|
|
113318
|
+
is_device_error: false;
|
|
113319
|
+
/** Date and time at which Seam created the error. */
|
|
113320
|
+
created_at: string;
|
|
113321
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113322
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
113323
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
113324
|
+
is_connected_account_error: true;
|
|
113377
113325
|
} | {
|
|
113378
113326
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113379
113327
|
message: string;
|
|
@@ -113493,17 +113441,6 @@ export type Routes = {
|
|
|
113493
113441
|
is_bridge_error?: boolean | undefined;
|
|
113494
113442
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113495
113443
|
error_code: 'bridge_disconnected';
|
|
113496
|
-
} | {
|
|
113497
|
-
/** Date and time at which Seam created the error. */
|
|
113498
|
-
created_at: string;
|
|
113499
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113500
|
-
message: string;
|
|
113501
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
113502
|
-
is_connected_account_error?: boolean | undefined;
|
|
113503
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
113504
|
-
is_bridge_error?: boolean | undefined;
|
|
113505
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113506
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
113507
113444
|
})[];
|
|
113508
113445
|
/** 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. */
|
|
113509
113446
|
warnings: ({
|
|
@@ -117796,6 +117733,17 @@ export type Routes = {
|
|
|
117796
117733
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
117797
117734
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
117798
117735
|
is_connected_account_error: true;
|
|
117736
|
+
} | {
|
|
117737
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117738
|
+
message: string;
|
|
117739
|
+
/** Indicates that the error is not a device error. */
|
|
117740
|
+
is_device_error: false;
|
|
117741
|
+
/** Date and time at which Seam created the error. */
|
|
117742
|
+
created_at: string;
|
|
117743
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
117744
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
117745
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
117746
|
+
is_connected_account_error: true;
|
|
117799
117747
|
} | {
|
|
117800
117748
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117801
117749
|
message: string;
|
|
@@ -117915,17 +117863,6 @@ export type Routes = {
|
|
|
117915
117863
|
is_bridge_error?: boolean | undefined;
|
|
117916
117864
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
117917
117865
|
error_code: 'bridge_disconnected';
|
|
117918
|
-
} | {
|
|
117919
|
-
/** Date and time at which Seam created the error. */
|
|
117920
|
-
created_at: string;
|
|
117921
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117922
|
-
message: string;
|
|
117923
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
117924
|
-
is_connected_account_error?: boolean | undefined;
|
|
117925
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
117926
|
-
is_bridge_error?: boolean | undefined;
|
|
117927
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
117928
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
117929
117866
|
})[];
|
|
117930
117867
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
117931
117868
|
warnings: ({
|
|
@@ -117935,13 +117872,6 @@ export type Routes = {
|
|
|
117935
117872
|
created_at?: string | undefined;
|
|
117936
117873
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117937
117874
|
warning_code: 'provider_issue';
|
|
117938
|
-
} | {
|
|
117939
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
117940
|
-
message: string;
|
|
117941
|
-
/** Date and time at which Seam created the warning. */
|
|
117942
|
-
created_at?: string | undefined;
|
|
117943
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117944
|
-
warning_code: 'schlage_detected_duplicate';
|
|
117945
117875
|
} | {
|
|
117946
117876
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
117947
117877
|
message: string;
|
|
@@ -118223,6 +118153,17 @@ export type Routes = {
|
|
|
118223
118153
|
error_code: 'salto_ks_subscription_limit_exceeded';
|
|
118224
118154
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
118225
118155
|
is_connected_account_error: true;
|
|
118156
|
+
} | {
|
|
118157
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
118158
|
+
message: string;
|
|
118159
|
+
/** Indicates that the error is not a device error. */
|
|
118160
|
+
is_device_error: false;
|
|
118161
|
+
/** Date and time at which Seam created the error. */
|
|
118162
|
+
created_at: string;
|
|
118163
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
118164
|
+
error_code: 'dormakaba_sites_disconnected';
|
|
118165
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
118166
|
+
is_connected_account_error: true;
|
|
118226
118167
|
} | {
|
|
118227
118168
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
118228
118169
|
message: string;
|
|
@@ -118342,17 +118283,6 @@ export type Routes = {
|
|
|
118342
118283
|
is_bridge_error?: boolean | undefined;
|
|
118343
118284
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
118344
118285
|
error_code: 'bridge_disconnected';
|
|
118345
|
-
} | {
|
|
118346
|
-
/** Date and time at which Seam created the error. */
|
|
118347
|
-
created_at: string;
|
|
118348
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
118349
|
-
message: string;
|
|
118350
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
118351
|
-
is_connected_account_error?: boolean | undefined;
|
|
118352
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
118353
|
-
is_bridge_error?: boolean | undefined;
|
|
118354
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
118355
|
-
error_code: 'dormakaba_sites_disconnected';
|
|
118356
118286
|
})[];
|
|
118357
118287
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
118358
118288
|
warnings: ({
|
|
@@ -118362,13 +118292,6 @@ export type Routes = {
|
|
|
118362
118292
|
created_at?: string | undefined;
|
|
118363
118293
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118364
118294
|
warning_code: 'provider_issue';
|
|
118365
|
-
} | {
|
|
118366
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118367
|
-
message: string;
|
|
118368
|
-
/** Date and time at which Seam created the warning. */
|
|
118369
|
-
created_at?: string | undefined;
|
|
118370
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118371
|
-
warning_code: 'schlage_detected_duplicate';
|
|
118372
118295
|
} | {
|
|
118373
118296
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118374
118297
|
message: string;
|