@seamapi/types 1.1027.0 → 1.1029.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +329 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +61 -0
- 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 +120 -0
- package/lib/seam/connect/models/access-grants/access-method.d.ts +10 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +0 -15
- package/lib/seam/connect/models/devices/device-metadata.js +0 -12
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +0 -21
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -15
- package/lib/seam/connect/models/events/access-codes.d.ts +2327 -463
- package/lib/seam/connect/models/events/access-codes.js +71 -0
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +927 -1
- package/lib/seam/connect/openapi.js +1517 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2195 -134
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +66 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +0 -18
- package/src/lib/seam/connect/models/events/access-codes.ts +99 -0
- package/src/lib/seam/connect/openapi.ts +1715 -31
- package/src/lib/seam/connect/route-types.ts +2493 -284
|
@@ -1948,6 +1948,33 @@ export type Routes = {
|
|
|
1948
1948
|
created_at?: string | undefined;
|
|
1949
1949
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1950
1950
|
error_code: 'code_constraints_violated';
|
|
1951
|
+
} | {
|
|
1952
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1953
|
+
message: string;
|
|
1954
|
+
/** Indicates that this is an access code error. */
|
|
1955
|
+
is_access_code_error: true;
|
|
1956
|
+
/** Date and time at which Seam created the error. */
|
|
1957
|
+
created_at?: string | undefined;
|
|
1958
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1959
|
+
error_code: 'failed_to_issue';
|
|
1960
|
+
} | {
|
|
1961
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1962
|
+
message: string;
|
|
1963
|
+
/** Indicates that this is an access code error. */
|
|
1964
|
+
is_access_code_error: true;
|
|
1965
|
+
/** Date and time at which Seam created the error. */
|
|
1966
|
+
created_at?: string | undefined;
|
|
1967
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1968
|
+
error_code: 'failed_to_apply_mutations';
|
|
1969
|
+
} | {
|
|
1970
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1971
|
+
message: string;
|
|
1972
|
+
/** Indicates that this is an access code error. */
|
|
1973
|
+
is_access_code_error: true;
|
|
1974
|
+
/** Date and time at which Seam created the error. */
|
|
1975
|
+
created_at?: string | undefined;
|
|
1976
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1977
|
+
error_code: 'failed_to_expire';
|
|
1951
1978
|
} | {
|
|
1952
1979
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1953
1980
|
message: string;
|
|
@@ -2132,6 +2159,20 @@ export type Routes = {
|
|
|
2132
2159
|
created_at?: string | undefined;
|
|
2133
2160
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2134
2161
|
warning_code: 'delay_in_removing_from_device';
|
|
2162
|
+
} | {
|
|
2163
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2164
|
+
message: string;
|
|
2165
|
+
/** Date and time at which Seam created the warning. */
|
|
2166
|
+
created_at?: string | undefined;
|
|
2167
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2168
|
+
warning_code: 'delay_in_issuing';
|
|
2169
|
+
} | {
|
|
2170
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2171
|
+
message: string;
|
|
2172
|
+
/** Date and time at which Seam created the warning. */
|
|
2173
|
+
created_at?: string | undefined;
|
|
2174
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2175
|
+
warning_code: 'delay_in_applying_mutations';
|
|
2135
2176
|
} | {
|
|
2136
2177
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2137
2178
|
message: string;
|
|
@@ -2445,6 +2486,33 @@ export type Routes = {
|
|
|
2445
2486
|
created_at?: string | undefined;
|
|
2446
2487
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2447
2488
|
error_code: 'code_constraints_violated';
|
|
2489
|
+
} | {
|
|
2490
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2491
|
+
message: string;
|
|
2492
|
+
/** Indicates that this is an access code error. */
|
|
2493
|
+
is_access_code_error: true;
|
|
2494
|
+
/** Date and time at which Seam created the error. */
|
|
2495
|
+
created_at?: string | undefined;
|
|
2496
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2497
|
+
error_code: 'failed_to_issue';
|
|
2498
|
+
} | {
|
|
2499
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2500
|
+
message: string;
|
|
2501
|
+
/** Indicates that this is an access code error. */
|
|
2502
|
+
is_access_code_error: true;
|
|
2503
|
+
/** Date and time at which Seam created the error. */
|
|
2504
|
+
created_at?: string | undefined;
|
|
2505
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2506
|
+
error_code: 'failed_to_apply_mutations';
|
|
2507
|
+
} | {
|
|
2508
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2509
|
+
message: string;
|
|
2510
|
+
/** Indicates that this is an access code error. */
|
|
2511
|
+
is_access_code_error: true;
|
|
2512
|
+
/** Date and time at which Seam created the error. */
|
|
2513
|
+
created_at?: string | undefined;
|
|
2514
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2515
|
+
error_code: 'failed_to_expire';
|
|
2448
2516
|
} | {
|
|
2449
2517
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2450
2518
|
message: string;
|
|
@@ -2629,6 +2697,20 @@ export type Routes = {
|
|
|
2629
2697
|
created_at?: string | undefined;
|
|
2630
2698
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2631
2699
|
warning_code: 'delay_in_removing_from_device';
|
|
2700
|
+
} | {
|
|
2701
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2702
|
+
message: string;
|
|
2703
|
+
/** Date and time at which Seam created the warning. */
|
|
2704
|
+
created_at?: string | undefined;
|
|
2705
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2706
|
+
warning_code: 'delay_in_issuing';
|
|
2707
|
+
} | {
|
|
2708
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2709
|
+
message: string;
|
|
2710
|
+
/** Date and time at which Seam created the warning. */
|
|
2711
|
+
created_at?: string | undefined;
|
|
2712
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2713
|
+
warning_code: 'delay_in_applying_mutations';
|
|
2632
2714
|
} | {
|
|
2633
2715
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2634
2716
|
message: string;
|
|
@@ -4746,6 +4828,33 @@ export type Routes = {
|
|
|
4746
4828
|
created_at?: string | undefined;
|
|
4747
4829
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4748
4830
|
error_code: 'code_constraints_violated';
|
|
4831
|
+
} | {
|
|
4832
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4833
|
+
message: string;
|
|
4834
|
+
/** Indicates that this is an access code error. */
|
|
4835
|
+
is_access_code_error: true;
|
|
4836
|
+
/** Date and time at which Seam created the error. */
|
|
4837
|
+
created_at?: string | undefined;
|
|
4838
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4839
|
+
error_code: 'failed_to_issue';
|
|
4840
|
+
} | {
|
|
4841
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4842
|
+
message: string;
|
|
4843
|
+
/** Indicates that this is an access code error. */
|
|
4844
|
+
is_access_code_error: true;
|
|
4845
|
+
/** Date and time at which Seam created the error. */
|
|
4846
|
+
created_at?: string | undefined;
|
|
4847
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4848
|
+
error_code: 'failed_to_apply_mutations';
|
|
4849
|
+
} | {
|
|
4850
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4851
|
+
message: string;
|
|
4852
|
+
/** Indicates that this is an access code error. */
|
|
4853
|
+
is_access_code_error: true;
|
|
4854
|
+
/** Date and time at which Seam created the error. */
|
|
4855
|
+
created_at?: string | undefined;
|
|
4856
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4857
|
+
error_code: 'failed_to_expire';
|
|
4749
4858
|
} | {
|
|
4750
4859
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4751
4860
|
message: string;
|
|
@@ -4930,6 +5039,20 @@ export type Routes = {
|
|
|
4930
5039
|
created_at?: string | undefined;
|
|
4931
5040
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4932
5041
|
warning_code: 'delay_in_removing_from_device';
|
|
5042
|
+
} | {
|
|
5043
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5044
|
+
message: string;
|
|
5045
|
+
/** Date and time at which Seam created the warning. */
|
|
5046
|
+
created_at?: string | undefined;
|
|
5047
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5048
|
+
warning_code: 'delay_in_issuing';
|
|
5049
|
+
} | {
|
|
5050
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5051
|
+
message: string;
|
|
5052
|
+
/** Date and time at which Seam created the warning. */
|
|
5053
|
+
created_at?: string | undefined;
|
|
5054
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5055
|
+
warning_code: 'delay_in_applying_mutations';
|
|
4933
5056
|
} | {
|
|
4934
5057
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4935
5058
|
message: string;
|
|
@@ -5291,6 +5414,33 @@ export type Routes = {
|
|
|
5291
5414
|
created_at?: string | undefined;
|
|
5292
5415
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5293
5416
|
error_code: 'code_constraints_violated';
|
|
5417
|
+
} | {
|
|
5418
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5419
|
+
message: string;
|
|
5420
|
+
/** Indicates that this is an access code error. */
|
|
5421
|
+
is_access_code_error: true;
|
|
5422
|
+
/** Date and time at which Seam created the error. */
|
|
5423
|
+
created_at?: string | undefined;
|
|
5424
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5425
|
+
error_code: 'failed_to_issue';
|
|
5426
|
+
} | {
|
|
5427
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5428
|
+
message: string;
|
|
5429
|
+
/** Indicates that this is an access code error. */
|
|
5430
|
+
is_access_code_error: true;
|
|
5431
|
+
/** Date and time at which Seam created the error. */
|
|
5432
|
+
created_at?: string | undefined;
|
|
5433
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5434
|
+
error_code: 'failed_to_apply_mutations';
|
|
5435
|
+
} | {
|
|
5436
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5437
|
+
message: string;
|
|
5438
|
+
/** Indicates that this is an access code error. */
|
|
5439
|
+
is_access_code_error: true;
|
|
5440
|
+
/** Date and time at which Seam created the error. */
|
|
5441
|
+
created_at?: string | undefined;
|
|
5442
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5443
|
+
error_code: 'failed_to_expire';
|
|
5294
5444
|
} | {
|
|
5295
5445
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5296
5446
|
message: string;
|
|
@@ -5475,6 +5625,20 @@ export type Routes = {
|
|
|
5475
5625
|
created_at?: string | undefined;
|
|
5476
5626
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5477
5627
|
warning_code: 'delay_in_removing_from_device';
|
|
5628
|
+
} | {
|
|
5629
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5630
|
+
message: string;
|
|
5631
|
+
/** Date and time at which Seam created the warning. */
|
|
5632
|
+
created_at?: string | undefined;
|
|
5633
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5634
|
+
warning_code: 'delay_in_issuing';
|
|
5635
|
+
} | {
|
|
5636
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5637
|
+
message: string;
|
|
5638
|
+
/** Date and time at which Seam created the warning. */
|
|
5639
|
+
created_at?: string | undefined;
|
|
5640
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5641
|
+
warning_code: 'delay_in_applying_mutations';
|
|
5478
5642
|
} | {
|
|
5479
5643
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5480
5644
|
message: string;
|
|
@@ -5779,6 +5943,33 @@ export type Routes = {
|
|
|
5779
5943
|
created_at?: string | undefined;
|
|
5780
5944
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5781
5945
|
error_code: 'code_constraints_violated';
|
|
5946
|
+
} | {
|
|
5947
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5948
|
+
message: string;
|
|
5949
|
+
/** Indicates that this is an access code error. */
|
|
5950
|
+
is_access_code_error: true;
|
|
5951
|
+
/** Date and time at which Seam created the error. */
|
|
5952
|
+
created_at?: string | undefined;
|
|
5953
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5954
|
+
error_code: 'failed_to_issue';
|
|
5955
|
+
} | {
|
|
5956
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5957
|
+
message: string;
|
|
5958
|
+
/** Indicates that this is an access code error. */
|
|
5959
|
+
is_access_code_error: true;
|
|
5960
|
+
/** Date and time at which Seam created the error. */
|
|
5961
|
+
created_at?: string | undefined;
|
|
5962
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5963
|
+
error_code: 'failed_to_apply_mutations';
|
|
5964
|
+
} | {
|
|
5965
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5966
|
+
message: string;
|
|
5967
|
+
/** Indicates that this is an access code error. */
|
|
5968
|
+
is_access_code_error: true;
|
|
5969
|
+
/** Date and time at which Seam created the error. */
|
|
5970
|
+
created_at?: string | undefined;
|
|
5971
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5972
|
+
error_code: 'failed_to_expire';
|
|
5782
5973
|
} | {
|
|
5783
5974
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5784
5975
|
message: string;
|
|
@@ -5963,6 +6154,20 @@ export type Routes = {
|
|
|
5963
6154
|
created_at?: string | undefined;
|
|
5964
6155
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5965
6156
|
warning_code: 'delay_in_removing_from_device';
|
|
6157
|
+
} | {
|
|
6158
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6159
|
+
message: string;
|
|
6160
|
+
/** Date and time at which Seam created the warning. */
|
|
6161
|
+
created_at?: string | undefined;
|
|
6162
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6163
|
+
warning_code: 'delay_in_issuing';
|
|
6164
|
+
} | {
|
|
6165
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6166
|
+
message: string;
|
|
6167
|
+
/** Date and time at which Seam created the warning. */
|
|
6168
|
+
created_at?: string | undefined;
|
|
6169
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6170
|
+
warning_code: 'delay_in_applying_mutations';
|
|
5966
6171
|
} | {
|
|
5967
6172
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5968
6173
|
message: string;
|
|
@@ -6244,6 +6449,33 @@ export type Routes = {
|
|
|
6244
6449
|
created_at?: string | undefined;
|
|
6245
6450
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6246
6451
|
error_code: 'code_constraints_violated';
|
|
6452
|
+
} | {
|
|
6453
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6454
|
+
message: string;
|
|
6455
|
+
/** Indicates that this is an access code error. */
|
|
6456
|
+
is_access_code_error: true;
|
|
6457
|
+
/** Date and time at which Seam created the error. */
|
|
6458
|
+
created_at?: string | undefined;
|
|
6459
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6460
|
+
error_code: 'failed_to_issue';
|
|
6461
|
+
} | {
|
|
6462
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6463
|
+
message: string;
|
|
6464
|
+
/** Indicates that this is an access code error. */
|
|
6465
|
+
is_access_code_error: true;
|
|
6466
|
+
/** Date and time at which Seam created the error. */
|
|
6467
|
+
created_at?: string | undefined;
|
|
6468
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6469
|
+
error_code: 'failed_to_apply_mutations';
|
|
6470
|
+
} | {
|
|
6471
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6472
|
+
message: string;
|
|
6473
|
+
/** Indicates that this is an access code error. */
|
|
6474
|
+
is_access_code_error: true;
|
|
6475
|
+
/** Date and time at which Seam created the error. */
|
|
6476
|
+
created_at?: string | undefined;
|
|
6477
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6478
|
+
error_code: 'failed_to_expire';
|
|
6247
6479
|
} | {
|
|
6248
6480
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6249
6481
|
message: string;
|
|
@@ -6428,6 +6660,20 @@ export type Routes = {
|
|
|
6428
6660
|
created_at?: string | undefined;
|
|
6429
6661
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6430
6662
|
warning_code: 'delay_in_removing_from_device';
|
|
6663
|
+
} | {
|
|
6664
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6665
|
+
message: string;
|
|
6666
|
+
/** Date and time at which Seam created the warning. */
|
|
6667
|
+
created_at?: string | undefined;
|
|
6668
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6669
|
+
warning_code: 'delay_in_issuing';
|
|
6670
|
+
} | {
|
|
6671
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6672
|
+
message: string;
|
|
6673
|
+
/** Date and time at which Seam created the warning. */
|
|
6674
|
+
created_at?: string | undefined;
|
|
6675
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6676
|
+
warning_code: 'delay_in_applying_mutations';
|
|
6431
6677
|
} | {
|
|
6432
6678
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6433
6679
|
message: string;
|
|
@@ -6742,6 +6988,33 @@ export type Routes = {
|
|
|
6742
6988
|
created_at?: string | undefined;
|
|
6743
6989
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6744
6990
|
error_code: 'code_constraints_violated';
|
|
6991
|
+
} | {
|
|
6992
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6993
|
+
message: string;
|
|
6994
|
+
/** Indicates that this is an access code error. */
|
|
6995
|
+
is_access_code_error: true;
|
|
6996
|
+
/** Date and time at which Seam created the error. */
|
|
6997
|
+
created_at?: string | undefined;
|
|
6998
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6999
|
+
error_code: 'failed_to_issue';
|
|
7000
|
+
} | {
|
|
7001
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7002
|
+
message: string;
|
|
7003
|
+
/** Indicates that this is an access code error. */
|
|
7004
|
+
is_access_code_error: true;
|
|
7005
|
+
/** Date and time at which Seam created the error. */
|
|
7006
|
+
created_at?: string | undefined;
|
|
7007
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7008
|
+
error_code: 'failed_to_apply_mutations';
|
|
7009
|
+
} | {
|
|
7010
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7011
|
+
message: string;
|
|
7012
|
+
/** Indicates that this is an access code error. */
|
|
7013
|
+
is_access_code_error: true;
|
|
7014
|
+
/** Date and time at which Seam created the error. */
|
|
7015
|
+
created_at?: string | undefined;
|
|
7016
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7017
|
+
error_code: 'failed_to_expire';
|
|
6745
7018
|
} | {
|
|
6746
7019
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6747
7020
|
message: string;
|
|
@@ -6926,6 +7199,20 @@ export type Routes = {
|
|
|
6926
7199
|
created_at?: string | undefined;
|
|
6927
7200
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6928
7201
|
warning_code: 'delay_in_removing_from_device';
|
|
7202
|
+
} | {
|
|
7203
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7204
|
+
message: string;
|
|
7205
|
+
/** Date and time at which Seam created the warning. */
|
|
7206
|
+
created_at?: string | undefined;
|
|
7207
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7208
|
+
warning_code: 'delay_in_issuing';
|
|
7209
|
+
} | {
|
|
7210
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7211
|
+
message: string;
|
|
7212
|
+
/** Date and time at which Seam created the warning. */
|
|
7213
|
+
created_at?: string | undefined;
|
|
7214
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7215
|
+
warning_code: 'delay_in_applying_mutations';
|
|
6929
7216
|
} | {
|
|
6930
7217
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6931
7218
|
message: string;
|
|
@@ -8952,6 +9239,33 @@ export type Routes = {
|
|
|
8952
9239
|
created_at?: string | undefined;
|
|
8953
9240
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8954
9241
|
error_code: 'code_constraints_violated';
|
|
9242
|
+
} | {
|
|
9243
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9244
|
+
message: string;
|
|
9245
|
+
/** Indicates that this is an access code error. */
|
|
9246
|
+
is_access_code_error: true;
|
|
9247
|
+
/** Date and time at which Seam created the error. */
|
|
9248
|
+
created_at?: string | undefined;
|
|
9249
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9250
|
+
error_code: 'failed_to_issue';
|
|
9251
|
+
} | {
|
|
9252
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9253
|
+
message: string;
|
|
9254
|
+
/** Indicates that this is an access code error. */
|
|
9255
|
+
is_access_code_error: true;
|
|
9256
|
+
/** Date and time at which Seam created the error. */
|
|
9257
|
+
created_at?: string | undefined;
|
|
9258
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9259
|
+
error_code: 'failed_to_apply_mutations';
|
|
9260
|
+
} | {
|
|
9261
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9262
|
+
message: string;
|
|
9263
|
+
/** Indicates that this is an access code error. */
|
|
9264
|
+
is_access_code_error: true;
|
|
9265
|
+
/** Date and time at which Seam created the error. */
|
|
9266
|
+
created_at?: string | undefined;
|
|
9267
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9268
|
+
error_code: 'failed_to_expire';
|
|
8955
9269
|
} | {
|
|
8956
9270
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8957
9271
|
message: string;
|
|
@@ -9136,6 +9450,20 @@ export type Routes = {
|
|
|
9136
9450
|
created_at?: string | undefined;
|
|
9137
9451
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9138
9452
|
warning_code: 'delay_in_removing_from_device';
|
|
9453
|
+
} | {
|
|
9454
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9455
|
+
message: string;
|
|
9456
|
+
/** Date and time at which Seam created the warning. */
|
|
9457
|
+
created_at?: string | undefined;
|
|
9458
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9459
|
+
warning_code: 'delay_in_issuing';
|
|
9460
|
+
} | {
|
|
9461
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9462
|
+
message: string;
|
|
9463
|
+
/** Date and time at which Seam created the warning. */
|
|
9464
|
+
created_at?: string | undefined;
|
|
9465
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9466
|
+
warning_code: 'delay_in_applying_mutations';
|
|
9139
9467
|
} | {
|
|
9140
9468
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9141
9469
|
message: string;
|
|
@@ -9336,6 +9664,33 @@ export type Routes = {
|
|
|
9336
9664
|
created_at?: string | undefined;
|
|
9337
9665
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9338
9666
|
error_code: 'code_constraints_violated';
|
|
9667
|
+
} | {
|
|
9668
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9669
|
+
message: string;
|
|
9670
|
+
/** Indicates that this is an access code error. */
|
|
9671
|
+
is_access_code_error: true;
|
|
9672
|
+
/** Date and time at which Seam created the error. */
|
|
9673
|
+
created_at?: string | undefined;
|
|
9674
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9675
|
+
error_code: 'failed_to_issue';
|
|
9676
|
+
} | {
|
|
9677
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9678
|
+
message: string;
|
|
9679
|
+
/** Indicates that this is an access code error. */
|
|
9680
|
+
is_access_code_error: true;
|
|
9681
|
+
/** Date and time at which Seam created the error. */
|
|
9682
|
+
created_at?: string | undefined;
|
|
9683
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9684
|
+
error_code: 'failed_to_apply_mutations';
|
|
9685
|
+
} | {
|
|
9686
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9687
|
+
message: string;
|
|
9688
|
+
/** Indicates that this is an access code error. */
|
|
9689
|
+
is_access_code_error: true;
|
|
9690
|
+
/** Date and time at which Seam created the error. */
|
|
9691
|
+
created_at?: string | undefined;
|
|
9692
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9693
|
+
error_code: 'failed_to_expire';
|
|
9339
9694
|
} | {
|
|
9340
9695
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9341
9696
|
message: string;
|
|
@@ -9520,6 +9875,20 @@ export type Routes = {
|
|
|
9520
9875
|
created_at?: string | undefined;
|
|
9521
9876
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9522
9877
|
warning_code: 'delay_in_removing_from_device';
|
|
9878
|
+
} | {
|
|
9879
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9880
|
+
message: string;
|
|
9881
|
+
/** Date and time at which Seam created the warning. */
|
|
9882
|
+
created_at?: string | undefined;
|
|
9883
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9884
|
+
warning_code: 'delay_in_issuing';
|
|
9885
|
+
} | {
|
|
9886
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9887
|
+
message: string;
|
|
9888
|
+
/** Date and time at which Seam created the warning. */
|
|
9889
|
+
created_at?: string | undefined;
|
|
9890
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9891
|
+
warning_code: 'delay_in_applying_mutations';
|
|
9523
9892
|
} | {
|
|
9524
9893
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9525
9894
|
message: string;
|
|
@@ -12574,12 +12943,6 @@ export type Routes = {
|
|
|
12574
12943
|
product_type?: (string | undefined) | undefined;
|
|
12575
12944
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
12576
12945
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
12577
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
12578
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
12579
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
12580
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
12581
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
12582
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
12583
12946
|
} | undefined;
|
|
12584
12947
|
/** Metadata for a KeyNest device. */
|
|
12585
12948
|
keynest_metadata?: {
|
|
@@ -19640,12 +20003,6 @@ export type Routes = {
|
|
|
19640
20003
|
product_type?: (string | undefined) | undefined;
|
|
19641
20004
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
19642
20005
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
19643
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
19644
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
19645
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
19646
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
19647
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
19648
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
19649
20006
|
} | undefined;
|
|
19650
20007
|
/** Metadata for a KeyNest device. */
|
|
19651
20008
|
keynest_metadata?: {
|
|
@@ -43509,12 +43866,6 @@ export type Routes = {
|
|
|
43509
43866
|
product_type?: (string | undefined) | undefined;
|
|
43510
43867
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
43511
43868
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
43512
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
43513
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
43514
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
43515
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
43516
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
43517
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
43518
43869
|
} | undefined;
|
|
43519
43870
|
/** Metadata for a KeyNest device. */
|
|
43520
43871
|
keynest_metadata?: {
|
|
@@ -45054,12 +45405,6 @@ export type Routes = {
|
|
|
45054
45405
|
product_type?: (string | undefined) | undefined;
|
|
45055
45406
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
45056
45407
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
45057
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
45058
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
45059
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
45060
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
45061
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
45062
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
45063
45408
|
} | undefined;
|
|
45064
45409
|
/** Metadata for a KeyNest device. */
|
|
45065
45410
|
keynest_metadata?: {
|
|
@@ -47713,6 +48058,434 @@ export type Routes = {
|
|
|
47713
48058
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47714
48059
|
warning_code: string;
|
|
47715
48060
|
}[];
|
|
48061
|
+
} | {
|
|
48062
|
+
/** ID of the event. */
|
|
48063
|
+
event_id: string;
|
|
48064
|
+
/** ID of the workspace associated with the event. */
|
|
48065
|
+
workspace_id: string;
|
|
48066
|
+
/** Date and time at which the event was created. */
|
|
48067
|
+
created_at: string;
|
|
48068
|
+
/** Date and time at which the event occurred. */
|
|
48069
|
+
occurred_at: string;
|
|
48070
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
48071
|
+
event_description?: string | undefined;
|
|
48072
|
+
/** ID of the affected access code. */
|
|
48073
|
+
access_code_id: string;
|
|
48074
|
+
/** ID of the device associated with the affected access code. */
|
|
48075
|
+
device_id: string;
|
|
48076
|
+
/** ID of the connected account associated with the affected access code. */
|
|
48077
|
+
connected_account_id: string;
|
|
48078
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
48079
|
+
device_custom_metadata?: {
|
|
48080
|
+
[x: string]: string | boolean;
|
|
48081
|
+
} | undefined;
|
|
48082
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
48083
|
+
connected_account_custom_metadata?: {
|
|
48084
|
+
[x: string]: string | boolean;
|
|
48085
|
+
} | undefined;
|
|
48086
|
+
event_type: 'access_code.issued';
|
|
48087
|
+
/** Code for the affected access code. */
|
|
48088
|
+
code: string;
|
|
48089
|
+
} | {
|
|
48090
|
+
/** ID of the event. */
|
|
48091
|
+
event_id: string;
|
|
48092
|
+
/** ID of the workspace associated with the event. */
|
|
48093
|
+
workspace_id: string;
|
|
48094
|
+
/** Date and time at which the event was created. */
|
|
48095
|
+
created_at: string;
|
|
48096
|
+
/** Date and time at which the event occurred. */
|
|
48097
|
+
occurred_at: string;
|
|
48098
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
48099
|
+
event_description?: string | undefined;
|
|
48100
|
+
/** ID of the affected access code. */
|
|
48101
|
+
access_code_id: string;
|
|
48102
|
+
/** ID of the device associated with the affected access code. */
|
|
48103
|
+
device_id: string;
|
|
48104
|
+
/** ID of the connected account associated with the affected access code. */
|
|
48105
|
+
connected_account_id: string;
|
|
48106
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
48107
|
+
device_custom_metadata?: {
|
|
48108
|
+
[x: string]: string | boolean;
|
|
48109
|
+
} | undefined;
|
|
48110
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
48111
|
+
connected_account_custom_metadata?: {
|
|
48112
|
+
[x: string]: string | boolean;
|
|
48113
|
+
} | undefined;
|
|
48114
|
+
event_type: 'access_code.delay_in_issuing';
|
|
48115
|
+
/** Errors associated with the connected account. */
|
|
48116
|
+
connected_account_errors: {
|
|
48117
|
+
/** Date and time at which Seam created the error. */
|
|
48118
|
+
created_at: string;
|
|
48119
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48120
|
+
message: string;
|
|
48121
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48122
|
+
error_code: string;
|
|
48123
|
+
}[];
|
|
48124
|
+
/** Warnings associated with the connected account. */
|
|
48125
|
+
connected_account_warnings: {
|
|
48126
|
+
/** Date and time at which Seam created the warning. */
|
|
48127
|
+
created_at: string;
|
|
48128
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48129
|
+
message: string;
|
|
48130
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48131
|
+
warning_code: string;
|
|
48132
|
+
}[];
|
|
48133
|
+
/** Errors associated with the device. */
|
|
48134
|
+
device_errors: {
|
|
48135
|
+
/** Date and time at which Seam created the error. */
|
|
48136
|
+
created_at: string;
|
|
48137
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48138
|
+
message: string;
|
|
48139
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48140
|
+
error_code: string;
|
|
48141
|
+
}[];
|
|
48142
|
+
/** Warnings associated with the device. */
|
|
48143
|
+
device_warnings: {
|
|
48144
|
+
/** Date and time at which Seam created the warning. */
|
|
48145
|
+
created_at: string;
|
|
48146
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48147
|
+
message: string;
|
|
48148
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48149
|
+
warning_code: string;
|
|
48150
|
+
}[];
|
|
48151
|
+
/** Errors associated with the access code. */
|
|
48152
|
+
access_code_errors: {
|
|
48153
|
+
/** Date and time at which Seam created the error. */
|
|
48154
|
+
created_at: string;
|
|
48155
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48156
|
+
message: string;
|
|
48157
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48158
|
+
error_code: string;
|
|
48159
|
+
}[];
|
|
48160
|
+
/** Warnings associated with the access code. */
|
|
48161
|
+
access_code_warnings: {
|
|
48162
|
+
/** Date and time at which Seam created the warning. */
|
|
48163
|
+
created_at: string;
|
|
48164
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48165
|
+
message: string;
|
|
48166
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48167
|
+
warning_code: string;
|
|
48168
|
+
}[];
|
|
48169
|
+
} | {
|
|
48170
|
+
/** ID of the event. */
|
|
48171
|
+
event_id: string;
|
|
48172
|
+
/** ID of the workspace associated with the event. */
|
|
48173
|
+
workspace_id: string;
|
|
48174
|
+
/** Date and time at which the event was created. */
|
|
48175
|
+
created_at: string;
|
|
48176
|
+
/** Date and time at which the event occurred. */
|
|
48177
|
+
occurred_at: string;
|
|
48178
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
48179
|
+
event_description?: string | undefined;
|
|
48180
|
+
/** ID of the affected access code. */
|
|
48181
|
+
access_code_id: string;
|
|
48182
|
+
/** ID of the device associated with the affected access code. */
|
|
48183
|
+
device_id: string;
|
|
48184
|
+
/** ID of the connected account associated with the affected access code. */
|
|
48185
|
+
connected_account_id: string;
|
|
48186
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
48187
|
+
device_custom_metadata?: {
|
|
48188
|
+
[x: string]: string | boolean;
|
|
48189
|
+
} | undefined;
|
|
48190
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
48191
|
+
connected_account_custom_metadata?: {
|
|
48192
|
+
[x: string]: string | boolean;
|
|
48193
|
+
} | undefined;
|
|
48194
|
+
event_type: 'access_code.failed_to_issue';
|
|
48195
|
+
/** Errors associated with the connected account. */
|
|
48196
|
+
connected_account_errors: {
|
|
48197
|
+
/** Date and time at which Seam created the error. */
|
|
48198
|
+
created_at: string;
|
|
48199
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48200
|
+
message: string;
|
|
48201
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48202
|
+
error_code: string;
|
|
48203
|
+
}[];
|
|
48204
|
+
/** Warnings associated with the connected account. */
|
|
48205
|
+
connected_account_warnings: {
|
|
48206
|
+
/** Date and time at which Seam created the warning. */
|
|
48207
|
+
created_at: string;
|
|
48208
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48209
|
+
message: string;
|
|
48210
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48211
|
+
warning_code: string;
|
|
48212
|
+
}[];
|
|
48213
|
+
/** Errors associated with the device. */
|
|
48214
|
+
device_errors: {
|
|
48215
|
+
/** Date and time at which Seam created the error. */
|
|
48216
|
+
created_at: string;
|
|
48217
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48218
|
+
message: string;
|
|
48219
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48220
|
+
error_code: string;
|
|
48221
|
+
}[];
|
|
48222
|
+
/** Warnings associated with the device. */
|
|
48223
|
+
device_warnings: {
|
|
48224
|
+
/** Date and time at which Seam created the warning. */
|
|
48225
|
+
created_at: string;
|
|
48226
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48227
|
+
message: string;
|
|
48228
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48229
|
+
warning_code: string;
|
|
48230
|
+
}[];
|
|
48231
|
+
/** Errors associated with the access code. */
|
|
48232
|
+
access_code_errors: {
|
|
48233
|
+
/** Date and time at which Seam created the error. */
|
|
48234
|
+
created_at: string;
|
|
48235
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48236
|
+
message: string;
|
|
48237
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48238
|
+
error_code: string;
|
|
48239
|
+
}[];
|
|
48240
|
+
/** Warnings associated with the access code. */
|
|
48241
|
+
access_code_warnings: {
|
|
48242
|
+
/** Date and time at which Seam created the warning. */
|
|
48243
|
+
created_at: string;
|
|
48244
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48245
|
+
message: string;
|
|
48246
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48247
|
+
warning_code: string;
|
|
48248
|
+
}[];
|
|
48249
|
+
} | {
|
|
48250
|
+
/** ID of the event. */
|
|
48251
|
+
event_id: string;
|
|
48252
|
+
/** ID of the workspace associated with the event. */
|
|
48253
|
+
workspace_id: string;
|
|
48254
|
+
/** Date and time at which the event was created. */
|
|
48255
|
+
created_at: string;
|
|
48256
|
+
/** Date and time at which the event occurred. */
|
|
48257
|
+
occurred_at: string;
|
|
48258
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
48259
|
+
event_description?: string | undefined;
|
|
48260
|
+
/** ID of the affected access code. */
|
|
48261
|
+
access_code_id: string;
|
|
48262
|
+
/** ID of the device associated with the affected access code. */
|
|
48263
|
+
device_id: string;
|
|
48264
|
+
/** ID of the connected account associated with the affected access code. */
|
|
48265
|
+
connected_account_id: string;
|
|
48266
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
48267
|
+
device_custom_metadata?: {
|
|
48268
|
+
[x: string]: string | boolean;
|
|
48269
|
+
} | undefined;
|
|
48270
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
48271
|
+
connected_account_custom_metadata?: {
|
|
48272
|
+
[x: string]: string | boolean;
|
|
48273
|
+
} | undefined;
|
|
48274
|
+
event_type: 'access_code.delay_in_applying_mutations';
|
|
48275
|
+
/** Errors associated with the connected account. */
|
|
48276
|
+
connected_account_errors: {
|
|
48277
|
+
/** Date and time at which Seam created the error. */
|
|
48278
|
+
created_at: string;
|
|
48279
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48280
|
+
message: string;
|
|
48281
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48282
|
+
error_code: string;
|
|
48283
|
+
}[];
|
|
48284
|
+
/** Warnings associated with the connected account. */
|
|
48285
|
+
connected_account_warnings: {
|
|
48286
|
+
/** Date and time at which Seam created the warning. */
|
|
48287
|
+
created_at: string;
|
|
48288
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48289
|
+
message: string;
|
|
48290
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48291
|
+
warning_code: string;
|
|
48292
|
+
}[];
|
|
48293
|
+
/** Errors associated with the device. */
|
|
48294
|
+
device_errors: {
|
|
48295
|
+
/** Date and time at which Seam created the error. */
|
|
48296
|
+
created_at: string;
|
|
48297
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48298
|
+
message: string;
|
|
48299
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48300
|
+
error_code: string;
|
|
48301
|
+
}[];
|
|
48302
|
+
/** Warnings associated with the device. */
|
|
48303
|
+
device_warnings: {
|
|
48304
|
+
/** Date and time at which Seam created the warning. */
|
|
48305
|
+
created_at: string;
|
|
48306
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48307
|
+
message: string;
|
|
48308
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48309
|
+
warning_code: string;
|
|
48310
|
+
}[];
|
|
48311
|
+
/** Errors associated with the access code. */
|
|
48312
|
+
access_code_errors: {
|
|
48313
|
+
/** Date and time at which Seam created the error. */
|
|
48314
|
+
created_at: string;
|
|
48315
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48316
|
+
message: string;
|
|
48317
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48318
|
+
error_code: string;
|
|
48319
|
+
}[];
|
|
48320
|
+
/** Warnings associated with the access code. */
|
|
48321
|
+
access_code_warnings: {
|
|
48322
|
+
/** Date and time at which Seam created the warning. */
|
|
48323
|
+
created_at: string;
|
|
48324
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48325
|
+
message: string;
|
|
48326
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48327
|
+
warning_code: string;
|
|
48328
|
+
}[];
|
|
48329
|
+
} | {
|
|
48330
|
+
/** ID of the event. */
|
|
48331
|
+
event_id: string;
|
|
48332
|
+
/** ID of the workspace associated with the event. */
|
|
48333
|
+
workspace_id: string;
|
|
48334
|
+
/** Date and time at which the event was created. */
|
|
48335
|
+
created_at: string;
|
|
48336
|
+
/** Date and time at which the event occurred. */
|
|
48337
|
+
occurred_at: string;
|
|
48338
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
48339
|
+
event_description?: string | undefined;
|
|
48340
|
+
/** ID of the affected access code. */
|
|
48341
|
+
access_code_id: string;
|
|
48342
|
+
/** ID of the device associated with the affected access code. */
|
|
48343
|
+
device_id: string;
|
|
48344
|
+
/** ID of the connected account associated with the affected access code. */
|
|
48345
|
+
connected_account_id: string;
|
|
48346
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
48347
|
+
device_custom_metadata?: {
|
|
48348
|
+
[x: string]: string | boolean;
|
|
48349
|
+
} | undefined;
|
|
48350
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
48351
|
+
connected_account_custom_metadata?: {
|
|
48352
|
+
[x: string]: string | boolean;
|
|
48353
|
+
} | undefined;
|
|
48354
|
+
event_type: 'access_code.failed_to_apply_mutations';
|
|
48355
|
+
/** Errors associated with the connected account. */
|
|
48356
|
+
connected_account_errors: {
|
|
48357
|
+
/** Date and time at which Seam created the error. */
|
|
48358
|
+
created_at: string;
|
|
48359
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48360
|
+
message: string;
|
|
48361
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48362
|
+
error_code: string;
|
|
48363
|
+
}[];
|
|
48364
|
+
/** Warnings associated with the connected account. */
|
|
48365
|
+
connected_account_warnings: {
|
|
48366
|
+
/** Date and time at which Seam created the warning. */
|
|
48367
|
+
created_at: string;
|
|
48368
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48369
|
+
message: string;
|
|
48370
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48371
|
+
warning_code: string;
|
|
48372
|
+
}[];
|
|
48373
|
+
/** Errors associated with the device. */
|
|
48374
|
+
device_errors: {
|
|
48375
|
+
/** Date and time at which Seam created the error. */
|
|
48376
|
+
created_at: string;
|
|
48377
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48378
|
+
message: string;
|
|
48379
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48380
|
+
error_code: string;
|
|
48381
|
+
}[];
|
|
48382
|
+
/** Warnings associated with the device. */
|
|
48383
|
+
device_warnings: {
|
|
48384
|
+
/** Date and time at which Seam created the warning. */
|
|
48385
|
+
created_at: string;
|
|
48386
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48387
|
+
message: string;
|
|
48388
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48389
|
+
warning_code: string;
|
|
48390
|
+
}[];
|
|
48391
|
+
/** Errors associated with the access code. */
|
|
48392
|
+
access_code_errors: {
|
|
48393
|
+
/** Date and time at which Seam created the error. */
|
|
48394
|
+
created_at: string;
|
|
48395
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48396
|
+
message: string;
|
|
48397
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48398
|
+
error_code: string;
|
|
48399
|
+
}[];
|
|
48400
|
+
/** Warnings associated with the access code. */
|
|
48401
|
+
access_code_warnings: {
|
|
48402
|
+
/** Date and time at which Seam created the warning. */
|
|
48403
|
+
created_at: string;
|
|
48404
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48405
|
+
message: string;
|
|
48406
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48407
|
+
warning_code: string;
|
|
48408
|
+
}[];
|
|
48409
|
+
} | {
|
|
48410
|
+
/** ID of the event. */
|
|
48411
|
+
event_id: string;
|
|
48412
|
+
/** ID of the workspace associated with the event. */
|
|
48413
|
+
workspace_id: string;
|
|
48414
|
+
/** Date and time at which the event was created. */
|
|
48415
|
+
created_at: string;
|
|
48416
|
+
/** Date and time at which the event occurred. */
|
|
48417
|
+
occurred_at: string;
|
|
48418
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
48419
|
+
event_description?: string | undefined;
|
|
48420
|
+
/** ID of the affected access code. */
|
|
48421
|
+
access_code_id: string;
|
|
48422
|
+
/** ID of the device associated with the affected access code. */
|
|
48423
|
+
device_id: string;
|
|
48424
|
+
/** ID of the connected account associated with the affected access code. */
|
|
48425
|
+
connected_account_id: string;
|
|
48426
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
48427
|
+
device_custom_metadata?: {
|
|
48428
|
+
[x: string]: string | boolean;
|
|
48429
|
+
} | undefined;
|
|
48430
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
48431
|
+
connected_account_custom_metadata?: {
|
|
48432
|
+
[x: string]: string | boolean;
|
|
48433
|
+
} | undefined;
|
|
48434
|
+
event_type: 'access_code.failed_to_expire';
|
|
48435
|
+
/** Errors associated with the connected account. */
|
|
48436
|
+
connected_account_errors: {
|
|
48437
|
+
/** Date and time at which Seam created the error. */
|
|
48438
|
+
created_at: string;
|
|
48439
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48440
|
+
message: string;
|
|
48441
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48442
|
+
error_code: string;
|
|
48443
|
+
}[];
|
|
48444
|
+
/** Warnings associated with the connected account. */
|
|
48445
|
+
connected_account_warnings: {
|
|
48446
|
+
/** Date and time at which Seam created the warning. */
|
|
48447
|
+
created_at: string;
|
|
48448
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48449
|
+
message: string;
|
|
48450
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48451
|
+
warning_code: string;
|
|
48452
|
+
}[];
|
|
48453
|
+
/** Errors associated with the device. */
|
|
48454
|
+
device_errors: {
|
|
48455
|
+
/** Date and time at which Seam created the error. */
|
|
48456
|
+
created_at: string;
|
|
48457
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48458
|
+
message: string;
|
|
48459
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48460
|
+
error_code: string;
|
|
48461
|
+
}[];
|
|
48462
|
+
/** Warnings associated with the device. */
|
|
48463
|
+
device_warnings: {
|
|
48464
|
+
/** Date and time at which Seam created the warning. */
|
|
48465
|
+
created_at: string;
|
|
48466
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48467
|
+
message: string;
|
|
48468
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48469
|
+
warning_code: string;
|
|
48470
|
+
}[];
|
|
48471
|
+
/** Errors associated with the access code. */
|
|
48472
|
+
access_code_errors: {
|
|
48473
|
+
/** Date and time at which Seam created the error. */
|
|
48474
|
+
created_at: string;
|
|
48475
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48476
|
+
message: string;
|
|
48477
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48478
|
+
error_code: string;
|
|
48479
|
+
}[];
|
|
48480
|
+
/** Warnings associated with the access code. */
|
|
48481
|
+
access_code_warnings: {
|
|
48482
|
+
/** Date and time at which Seam created the warning. */
|
|
48483
|
+
created_at: string;
|
|
48484
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
48485
|
+
message: string;
|
|
48486
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48487
|
+
warning_code: string;
|
|
48488
|
+
}[];
|
|
47716
48489
|
} | {
|
|
47717
48490
|
/** ID of the event. */
|
|
47718
48491
|
event_id: string;
|
|
@@ -50491,9 +51264,9 @@ export type Routes = {
|
|
|
50491
51264
|
/** IDs of the access codes for which you want to list events. */
|
|
50492
51265
|
access_code_ids?: string[] | undefined;
|
|
50493
51266
|
/** Type of the events that you want to list. */
|
|
50494
|
-
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted') | undefined;
|
|
51267
|
+
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.issued' | 'access_code.delay_in_issuing' | 'access_code.failed_to_issue' | 'access_code.delay_in_applying_mutations' | 'access_code.failed_to_apply_mutations' | 'access_code.failed_to_expire' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted') | undefined;
|
|
50495
51268
|
/** Types of the events that you want to list. */
|
|
50496
|
-
event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted')[] | undefined;
|
|
51269
|
+
event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.issued' | 'access_code.delay_in_issuing' | 'access_code.failed_to_issue' | 'access_code.delay_in_applying_mutations' | 'access_code.failed_to_apply_mutations' | 'access_code.failed_to_expire' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted')[] | undefined;
|
|
50497
51270
|
/** ID of the connected account for which you want to list events. */
|
|
50498
51271
|
connected_account_id?: string | undefined;
|
|
50499
51272
|
/** ID of the Connect Webview for which you want to list events. */
|
|
@@ -51016,9 +51789,9 @@ export type Routes = {
|
|
|
51016
51789
|
connected_account_custom_metadata?: {
|
|
51017
51790
|
[x: string]: string | boolean;
|
|
51018
51791
|
} | undefined;
|
|
51019
|
-
event_type: 'access_code.
|
|
51792
|
+
event_type: 'access_code.issued';
|
|
51020
51793
|
/** Code for the affected access code. */
|
|
51021
|
-
code: string
|
|
51794
|
+
code: string;
|
|
51022
51795
|
} | {
|
|
51023
51796
|
/** ID of the event. */
|
|
51024
51797
|
event_id: string;
|
|
@@ -51044,7 +51817,7 @@ export type Routes = {
|
|
|
51044
51817
|
connected_account_custom_metadata?: {
|
|
51045
51818
|
[x: string]: string | boolean;
|
|
51046
51819
|
} | undefined;
|
|
51047
|
-
event_type: 'access_code.
|
|
51820
|
+
event_type: 'access_code.delay_in_issuing';
|
|
51048
51821
|
/** Errors associated with the connected account. */
|
|
51049
51822
|
connected_account_errors: {
|
|
51050
51823
|
/** Date and time at which Seam created the error. */
|
|
@@ -51124,7 +51897,7 @@ export type Routes = {
|
|
|
51124
51897
|
connected_account_custom_metadata?: {
|
|
51125
51898
|
[x: string]: string | boolean;
|
|
51126
51899
|
} | undefined;
|
|
51127
|
-
event_type: 'access_code.
|
|
51900
|
+
event_type: 'access_code.failed_to_issue';
|
|
51128
51901
|
/** Errors associated with the connected account. */
|
|
51129
51902
|
connected_account_errors: {
|
|
51130
51903
|
/** Date and time at which Seam created the error. */
|
|
@@ -51204,7 +51977,435 @@ export type Routes = {
|
|
|
51204
51977
|
connected_account_custom_metadata?: {
|
|
51205
51978
|
[x: string]: string | boolean;
|
|
51206
51979
|
} | undefined;
|
|
51207
|
-
event_type: 'access_code.
|
|
51980
|
+
event_type: 'access_code.delay_in_applying_mutations';
|
|
51981
|
+
/** Errors associated with the connected account. */
|
|
51982
|
+
connected_account_errors: {
|
|
51983
|
+
/** Date and time at which Seam created the error. */
|
|
51984
|
+
created_at: string;
|
|
51985
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51986
|
+
message: string;
|
|
51987
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51988
|
+
error_code: string;
|
|
51989
|
+
}[];
|
|
51990
|
+
/** Warnings associated with the connected account. */
|
|
51991
|
+
connected_account_warnings: {
|
|
51992
|
+
/** Date and time at which Seam created the warning. */
|
|
51993
|
+
created_at: string;
|
|
51994
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51995
|
+
message: string;
|
|
51996
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51997
|
+
warning_code: string;
|
|
51998
|
+
}[];
|
|
51999
|
+
/** Errors associated with the device. */
|
|
52000
|
+
device_errors: {
|
|
52001
|
+
/** Date and time at which Seam created the error. */
|
|
52002
|
+
created_at: string;
|
|
52003
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52004
|
+
message: string;
|
|
52005
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52006
|
+
error_code: string;
|
|
52007
|
+
}[];
|
|
52008
|
+
/** Warnings associated with the device. */
|
|
52009
|
+
device_warnings: {
|
|
52010
|
+
/** Date and time at which Seam created the warning. */
|
|
52011
|
+
created_at: string;
|
|
52012
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52013
|
+
message: string;
|
|
52014
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52015
|
+
warning_code: string;
|
|
52016
|
+
}[];
|
|
52017
|
+
/** Errors associated with the access code. */
|
|
52018
|
+
access_code_errors: {
|
|
52019
|
+
/** Date and time at which Seam created the error. */
|
|
52020
|
+
created_at: string;
|
|
52021
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52022
|
+
message: string;
|
|
52023
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52024
|
+
error_code: string;
|
|
52025
|
+
}[];
|
|
52026
|
+
/** Warnings associated with the access code. */
|
|
52027
|
+
access_code_warnings: {
|
|
52028
|
+
/** Date and time at which Seam created the warning. */
|
|
52029
|
+
created_at: string;
|
|
52030
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52031
|
+
message: string;
|
|
52032
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52033
|
+
warning_code: string;
|
|
52034
|
+
}[];
|
|
52035
|
+
} | {
|
|
52036
|
+
/** ID of the event. */
|
|
52037
|
+
event_id: string;
|
|
52038
|
+
/** ID of the workspace associated with the event. */
|
|
52039
|
+
workspace_id: string;
|
|
52040
|
+
/** Date and time at which the event was created. */
|
|
52041
|
+
created_at: string;
|
|
52042
|
+
/** Date and time at which the event occurred. */
|
|
52043
|
+
occurred_at: string;
|
|
52044
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
52045
|
+
event_description?: string | undefined;
|
|
52046
|
+
/** ID of the affected access code. */
|
|
52047
|
+
access_code_id: string;
|
|
52048
|
+
/** ID of the device associated with the affected access code. */
|
|
52049
|
+
device_id: string;
|
|
52050
|
+
/** ID of the connected account associated with the affected access code. */
|
|
52051
|
+
connected_account_id: string;
|
|
52052
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
52053
|
+
device_custom_metadata?: {
|
|
52054
|
+
[x: string]: string | boolean;
|
|
52055
|
+
} | undefined;
|
|
52056
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
52057
|
+
connected_account_custom_metadata?: {
|
|
52058
|
+
[x: string]: string | boolean;
|
|
52059
|
+
} | undefined;
|
|
52060
|
+
event_type: 'access_code.failed_to_apply_mutations';
|
|
52061
|
+
/** Errors associated with the connected account. */
|
|
52062
|
+
connected_account_errors: {
|
|
52063
|
+
/** Date and time at which Seam created the error. */
|
|
52064
|
+
created_at: string;
|
|
52065
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52066
|
+
message: string;
|
|
52067
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52068
|
+
error_code: string;
|
|
52069
|
+
}[];
|
|
52070
|
+
/** Warnings associated with the connected account. */
|
|
52071
|
+
connected_account_warnings: {
|
|
52072
|
+
/** Date and time at which Seam created the warning. */
|
|
52073
|
+
created_at: string;
|
|
52074
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52075
|
+
message: string;
|
|
52076
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52077
|
+
warning_code: string;
|
|
52078
|
+
}[];
|
|
52079
|
+
/** Errors associated with the device. */
|
|
52080
|
+
device_errors: {
|
|
52081
|
+
/** Date and time at which Seam created the error. */
|
|
52082
|
+
created_at: string;
|
|
52083
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52084
|
+
message: string;
|
|
52085
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52086
|
+
error_code: string;
|
|
52087
|
+
}[];
|
|
52088
|
+
/** Warnings associated with the device. */
|
|
52089
|
+
device_warnings: {
|
|
52090
|
+
/** Date and time at which Seam created the warning. */
|
|
52091
|
+
created_at: string;
|
|
52092
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52093
|
+
message: string;
|
|
52094
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52095
|
+
warning_code: string;
|
|
52096
|
+
}[];
|
|
52097
|
+
/** Errors associated with the access code. */
|
|
52098
|
+
access_code_errors: {
|
|
52099
|
+
/** Date and time at which Seam created the error. */
|
|
52100
|
+
created_at: string;
|
|
52101
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52102
|
+
message: string;
|
|
52103
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52104
|
+
error_code: string;
|
|
52105
|
+
}[];
|
|
52106
|
+
/** Warnings associated with the access code. */
|
|
52107
|
+
access_code_warnings: {
|
|
52108
|
+
/** Date and time at which Seam created the warning. */
|
|
52109
|
+
created_at: string;
|
|
52110
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52111
|
+
message: string;
|
|
52112
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52113
|
+
warning_code: string;
|
|
52114
|
+
}[];
|
|
52115
|
+
} | {
|
|
52116
|
+
/** ID of the event. */
|
|
52117
|
+
event_id: string;
|
|
52118
|
+
/** ID of the workspace associated with the event. */
|
|
52119
|
+
workspace_id: string;
|
|
52120
|
+
/** Date and time at which the event was created. */
|
|
52121
|
+
created_at: string;
|
|
52122
|
+
/** Date and time at which the event occurred. */
|
|
52123
|
+
occurred_at: string;
|
|
52124
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
52125
|
+
event_description?: string | undefined;
|
|
52126
|
+
/** ID of the affected access code. */
|
|
52127
|
+
access_code_id: string;
|
|
52128
|
+
/** ID of the device associated with the affected access code. */
|
|
52129
|
+
device_id: string;
|
|
52130
|
+
/** ID of the connected account associated with the affected access code. */
|
|
52131
|
+
connected_account_id: string;
|
|
52132
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
52133
|
+
device_custom_metadata?: {
|
|
52134
|
+
[x: string]: string | boolean;
|
|
52135
|
+
} | undefined;
|
|
52136
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
52137
|
+
connected_account_custom_metadata?: {
|
|
52138
|
+
[x: string]: string | boolean;
|
|
52139
|
+
} | undefined;
|
|
52140
|
+
event_type: 'access_code.failed_to_expire';
|
|
52141
|
+
/** Errors associated with the connected account. */
|
|
52142
|
+
connected_account_errors: {
|
|
52143
|
+
/** Date and time at which Seam created the error. */
|
|
52144
|
+
created_at: string;
|
|
52145
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52146
|
+
message: string;
|
|
52147
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52148
|
+
error_code: string;
|
|
52149
|
+
}[];
|
|
52150
|
+
/** Warnings associated with the connected account. */
|
|
52151
|
+
connected_account_warnings: {
|
|
52152
|
+
/** Date and time at which Seam created the warning. */
|
|
52153
|
+
created_at: string;
|
|
52154
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52155
|
+
message: string;
|
|
52156
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52157
|
+
warning_code: string;
|
|
52158
|
+
}[];
|
|
52159
|
+
/** Errors associated with the device. */
|
|
52160
|
+
device_errors: {
|
|
52161
|
+
/** Date and time at which Seam created the error. */
|
|
52162
|
+
created_at: string;
|
|
52163
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52164
|
+
message: string;
|
|
52165
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52166
|
+
error_code: string;
|
|
52167
|
+
}[];
|
|
52168
|
+
/** Warnings associated with the device. */
|
|
52169
|
+
device_warnings: {
|
|
52170
|
+
/** Date and time at which Seam created the warning. */
|
|
52171
|
+
created_at: string;
|
|
52172
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52173
|
+
message: string;
|
|
52174
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52175
|
+
warning_code: string;
|
|
52176
|
+
}[];
|
|
52177
|
+
/** Errors associated with the access code. */
|
|
52178
|
+
access_code_errors: {
|
|
52179
|
+
/** Date and time at which Seam created the error. */
|
|
52180
|
+
created_at: string;
|
|
52181
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52182
|
+
message: string;
|
|
52183
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52184
|
+
error_code: string;
|
|
52185
|
+
}[];
|
|
52186
|
+
/** Warnings associated with the access code. */
|
|
52187
|
+
access_code_warnings: {
|
|
52188
|
+
/** Date and time at which Seam created the warning. */
|
|
52189
|
+
created_at: string;
|
|
52190
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52191
|
+
message: string;
|
|
52192
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52193
|
+
warning_code: string;
|
|
52194
|
+
}[];
|
|
52195
|
+
} | {
|
|
52196
|
+
/** ID of the event. */
|
|
52197
|
+
event_id: string;
|
|
52198
|
+
/** ID of the workspace associated with the event. */
|
|
52199
|
+
workspace_id: string;
|
|
52200
|
+
/** Date and time at which the event was created. */
|
|
52201
|
+
created_at: string;
|
|
52202
|
+
/** Date and time at which the event occurred. */
|
|
52203
|
+
occurred_at: string;
|
|
52204
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
52205
|
+
event_description?: string | undefined;
|
|
52206
|
+
/** ID of the affected access code. */
|
|
52207
|
+
access_code_id: string;
|
|
52208
|
+
/** ID of the device associated with the affected access code. */
|
|
52209
|
+
device_id: string;
|
|
52210
|
+
/** ID of the connected account associated with the affected access code. */
|
|
52211
|
+
connected_account_id: string;
|
|
52212
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
52213
|
+
device_custom_metadata?: {
|
|
52214
|
+
[x: string]: string | boolean;
|
|
52215
|
+
} | undefined;
|
|
52216
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
52217
|
+
connected_account_custom_metadata?: {
|
|
52218
|
+
[x: string]: string | boolean;
|
|
52219
|
+
} | undefined;
|
|
52220
|
+
event_type: 'access_code.deleted';
|
|
52221
|
+
/** Code for the affected access code. */
|
|
52222
|
+
code: string | null;
|
|
52223
|
+
} | {
|
|
52224
|
+
/** ID of the event. */
|
|
52225
|
+
event_id: string;
|
|
52226
|
+
/** ID of the workspace associated with the event. */
|
|
52227
|
+
workspace_id: string;
|
|
52228
|
+
/** Date and time at which the event was created. */
|
|
52229
|
+
created_at: string;
|
|
52230
|
+
/** Date and time at which the event occurred. */
|
|
52231
|
+
occurred_at: string;
|
|
52232
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
52233
|
+
event_description?: string | undefined;
|
|
52234
|
+
/** ID of the affected access code. */
|
|
52235
|
+
access_code_id: string;
|
|
52236
|
+
/** ID of the device associated with the affected access code. */
|
|
52237
|
+
device_id: string;
|
|
52238
|
+
/** ID of the connected account associated with the affected access code. */
|
|
52239
|
+
connected_account_id: string;
|
|
52240
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
52241
|
+
device_custom_metadata?: {
|
|
52242
|
+
[x: string]: string | boolean;
|
|
52243
|
+
} | undefined;
|
|
52244
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
52245
|
+
connected_account_custom_metadata?: {
|
|
52246
|
+
[x: string]: string | boolean;
|
|
52247
|
+
} | undefined;
|
|
52248
|
+
event_type: 'access_code.delay_in_removing_from_device';
|
|
52249
|
+
/** Errors associated with the connected account. */
|
|
52250
|
+
connected_account_errors: {
|
|
52251
|
+
/** Date and time at which Seam created the error. */
|
|
52252
|
+
created_at: string;
|
|
52253
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52254
|
+
message: string;
|
|
52255
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52256
|
+
error_code: string;
|
|
52257
|
+
}[];
|
|
52258
|
+
/** Warnings associated with the connected account. */
|
|
52259
|
+
connected_account_warnings: {
|
|
52260
|
+
/** Date and time at which Seam created the warning. */
|
|
52261
|
+
created_at: string;
|
|
52262
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52263
|
+
message: string;
|
|
52264
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52265
|
+
warning_code: string;
|
|
52266
|
+
}[];
|
|
52267
|
+
/** Errors associated with the device. */
|
|
52268
|
+
device_errors: {
|
|
52269
|
+
/** Date and time at which Seam created the error. */
|
|
52270
|
+
created_at: string;
|
|
52271
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52272
|
+
message: string;
|
|
52273
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52274
|
+
error_code: string;
|
|
52275
|
+
}[];
|
|
52276
|
+
/** Warnings associated with the device. */
|
|
52277
|
+
device_warnings: {
|
|
52278
|
+
/** Date and time at which Seam created the warning. */
|
|
52279
|
+
created_at: string;
|
|
52280
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52281
|
+
message: string;
|
|
52282
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52283
|
+
warning_code: string;
|
|
52284
|
+
}[];
|
|
52285
|
+
/** Errors associated with the access code. */
|
|
52286
|
+
access_code_errors: {
|
|
52287
|
+
/** Date and time at which Seam created the error. */
|
|
52288
|
+
created_at: string;
|
|
52289
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52290
|
+
message: string;
|
|
52291
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52292
|
+
error_code: string;
|
|
52293
|
+
}[];
|
|
52294
|
+
/** Warnings associated with the access code. */
|
|
52295
|
+
access_code_warnings: {
|
|
52296
|
+
/** Date and time at which Seam created the warning. */
|
|
52297
|
+
created_at: string;
|
|
52298
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52299
|
+
message: string;
|
|
52300
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52301
|
+
warning_code: string;
|
|
52302
|
+
}[];
|
|
52303
|
+
} | {
|
|
52304
|
+
/** ID of the event. */
|
|
52305
|
+
event_id: string;
|
|
52306
|
+
/** ID of the workspace associated with the event. */
|
|
52307
|
+
workspace_id: string;
|
|
52308
|
+
/** Date and time at which the event was created. */
|
|
52309
|
+
created_at: string;
|
|
52310
|
+
/** Date and time at which the event occurred. */
|
|
52311
|
+
occurred_at: string;
|
|
52312
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
52313
|
+
event_description?: string | undefined;
|
|
52314
|
+
/** ID of the affected access code. */
|
|
52315
|
+
access_code_id: string;
|
|
52316
|
+
/** ID of the device associated with the affected access code. */
|
|
52317
|
+
device_id: string;
|
|
52318
|
+
/** ID of the connected account associated with the affected access code. */
|
|
52319
|
+
connected_account_id: string;
|
|
52320
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
52321
|
+
device_custom_metadata?: {
|
|
52322
|
+
[x: string]: string | boolean;
|
|
52323
|
+
} | undefined;
|
|
52324
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
52325
|
+
connected_account_custom_metadata?: {
|
|
52326
|
+
[x: string]: string | boolean;
|
|
52327
|
+
} | undefined;
|
|
52328
|
+
event_type: 'access_code.failed_to_remove_from_device';
|
|
52329
|
+
/** Errors associated with the connected account. */
|
|
52330
|
+
connected_account_errors: {
|
|
52331
|
+
/** Date and time at which Seam created the error. */
|
|
52332
|
+
created_at: string;
|
|
52333
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52334
|
+
message: string;
|
|
52335
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52336
|
+
error_code: string;
|
|
52337
|
+
}[];
|
|
52338
|
+
/** Warnings associated with the connected account. */
|
|
52339
|
+
connected_account_warnings: {
|
|
52340
|
+
/** Date and time at which Seam created the warning. */
|
|
52341
|
+
created_at: string;
|
|
52342
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52343
|
+
message: string;
|
|
52344
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52345
|
+
warning_code: string;
|
|
52346
|
+
}[];
|
|
52347
|
+
/** Errors associated with the device. */
|
|
52348
|
+
device_errors: {
|
|
52349
|
+
/** Date and time at which Seam created the error. */
|
|
52350
|
+
created_at: string;
|
|
52351
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52352
|
+
message: string;
|
|
52353
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52354
|
+
error_code: string;
|
|
52355
|
+
}[];
|
|
52356
|
+
/** Warnings associated with the device. */
|
|
52357
|
+
device_warnings: {
|
|
52358
|
+
/** Date and time at which Seam created the warning. */
|
|
52359
|
+
created_at: string;
|
|
52360
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52361
|
+
message: string;
|
|
52362
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52363
|
+
warning_code: string;
|
|
52364
|
+
}[];
|
|
52365
|
+
/** Errors associated with the access code. */
|
|
52366
|
+
access_code_errors: {
|
|
52367
|
+
/** Date and time at which Seam created the error. */
|
|
52368
|
+
created_at: string;
|
|
52369
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52370
|
+
message: string;
|
|
52371
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52372
|
+
error_code: string;
|
|
52373
|
+
}[];
|
|
52374
|
+
/** Warnings associated with the access code. */
|
|
52375
|
+
access_code_warnings: {
|
|
52376
|
+
/** Date and time at which Seam created the warning. */
|
|
52377
|
+
created_at: string;
|
|
52378
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52379
|
+
message: string;
|
|
52380
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52381
|
+
warning_code: string;
|
|
52382
|
+
}[];
|
|
52383
|
+
} | {
|
|
52384
|
+
/** ID of the event. */
|
|
52385
|
+
event_id: string;
|
|
52386
|
+
/** ID of the workspace associated with the event. */
|
|
52387
|
+
workspace_id: string;
|
|
52388
|
+
/** Date and time at which the event was created. */
|
|
52389
|
+
created_at: string;
|
|
52390
|
+
/** Date and time at which the event occurred. */
|
|
52391
|
+
occurred_at: string;
|
|
52392
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
52393
|
+
event_description?: string | undefined;
|
|
52394
|
+
/** ID of the affected access code. */
|
|
52395
|
+
access_code_id: string;
|
|
52396
|
+
/** ID of the device associated with the affected access code. */
|
|
52397
|
+
device_id: string;
|
|
52398
|
+
/** ID of the connected account associated with the affected access code. */
|
|
52399
|
+
connected_account_id: string;
|
|
52400
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
52401
|
+
device_custom_metadata?: {
|
|
52402
|
+
[x: string]: string | boolean;
|
|
52403
|
+
} | undefined;
|
|
52404
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
52405
|
+
connected_account_custom_metadata?: {
|
|
52406
|
+
[x: string]: string | boolean;
|
|
52407
|
+
} | undefined;
|
|
52408
|
+
event_type: 'access_code.modified_external_to_seam';
|
|
51208
52409
|
} | {
|
|
51209
52410
|
/** ID of the event. */
|
|
51210
52411
|
event_id: string;
|
|
@@ -56231,12 +57432,6 @@ export type Routes = {
|
|
|
56231
57432
|
product_type?: (string | undefined) | undefined;
|
|
56232
57433
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
56233
57434
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
56234
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
56235
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
56236
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
56237
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
56238
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
56239
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
56240
57435
|
} | undefined;
|
|
56241
57436
|
/** Metadata for a KeyNest device. */
|
|
56242
57437
|
keynest_metadata?: {
|
|
@@ -57726,12 +58921,6 @@ export type Routes = {
|
|
|
57726
58921
|
product_type?: (string | undefined) | undefined;
|
|
57727
58922
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
57728
58923
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
57729
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
57730
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
57731
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
57732
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
57733
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
57734
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
57735
58924
|
} | undefined;
|
|
57736
58925
|
/** Metadata for a KeyNest device. */
|
|
57737
58926
|
keynest_metadata?: {
|
|
@@ -59244,12 +60433,6 @@ export type Routes = {
|
|
|
59244
60433
|
product_type?: (string | undefined) | undefined;
|
|
59245
60434
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
59246
60435
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
59247
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
59248
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
59249
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
59250
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
59251
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
59252
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
59253
60436
|
} | undefined;
|
|
59254
60437
|
/** Metadata for a KeyNest device. */
|
|
59255
60438
|
keynest_metadata?: {
|
|
@@ -60738,12 +61921,6 @@ export type Routes = {
|
|
|
60738
61921
|
product_type?: (string | undefined) | undefined;
|
|
60739
61922
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
60740
61923
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
60741
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
60742
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
60743
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
60744
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
60745
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
60746
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
60747
61924
|
} | undefined;
|
|
60748
61925
|
/** Metadata for a KeyNest device. */
|
|
60749
61926
|
keynest_metadata?: {
|
|
@@ -69446,12 +70623,6 @@ export type Routes = {
|
|
|
69446
70623
|
product_type?: (string | undefined) | undefined;
|
|
69447
70624
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
69448
70625
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
69449
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
69450
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
69451
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
69452
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
69453
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
69454
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
69455
70626
|
} | undefined;
|
|
69456
70627
|
/** Metadata for a KeyNest device. */
|
|
69457
70628
|
keynest_metadata?: {
|
|
@@ -70940,12 +72111,6 @@ export type Routes = {
|
|
|
70940
72111
|
product_type?: (string | undefined) | undefined;
|
|
70941
72112
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
70942
72113
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
70943
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
70944
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
70945
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
70946
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
70947
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
70948
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
70949
72114
|
} | undefined;
|
|
70950
72115
|
/** Metadata for a KeyNest device. */
|
|
70951
72116
|
keynest_metadata?: {
|
|
@@ -81861,9 +83026,9 @@ export type Routes = {
|
|
|
81861
83026
|
/** Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`. */
|
|
81862
83027
|
between?: string[] | undefined;
|
|
81863
83028
|
/** Type of the events that you want to list. */
|
|
81864
|
-
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted') | undefined;
|
|
83029
|
+
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.issued' | 'access_code.delay_in_issuing' | 'access_code.failed_to_issue' | 'access_code.delay_in_applying_mutations' | 'access_code.failed_to_apply_mutations' | 'access_code.failed_to_expire' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted') | undefined;
|
|
81865
83030
|
/** Types of the events that you want to list. */
|
|
81866
|
-
event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted')[] | undefined;
|
|
83031
|
+
event_types?: ('access_code.created' | 'access_code.changed' | 'access_code.name_changed' | 'access_code.code_changed' | 'access_code.time_frame_changed' | 'access_code.mutations_requested' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.issued' | 'access_code.delay_in_issuing' | 'access_code.failed_to_issue' | 'access_code.delay_in_applying_mutations' | 'access_code.failed_to_apply_mutations' | 'access_code.failed_to_expire' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'access_grant.created' | 'access_grant.deleted' | 'access_grant.access_granted_to_all_doors' | 'access_grant.access_granted_to_door' | 'access_grant.access_to_door_lost' | 'access_grant.access_times_changed' | 'access_grant.could_not_create_requested_access_methods' | 'access_method.issued' | 'access_method.revoked' | 'access_method.card_encoding_required' | 'access_method.deleted' | 'access_method.reissued' | 'access_method.created' | 'access_method.delay_in_issuing' | 'access_method.failed_to_issue' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.created' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'connected_account.reauthorization_requested' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'action_attempt.simulate_keypad_code_entry.succeeded' | 'action_attempt.simulate_keypad_code_entry.failed' | 'action_attempt.simulate_manual_lock_via_keypad.succeeded' | 'action_attempt.simulate_manual_lock_via_keypad.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'camera.activated' | 'device.doorbell_rang' | 'enrollment_automation.deleted' | 'phone.deactivated' | 'space.device_membership_changed' | 'space.created' | 'space.deleted')[] | undefined;
|
|
81867
83032
|
/** Numerical limit on the number of events to return. */
|
|
81868
83033
|
limit?: number;
|
|
81869
83034
|
};
|
|
@@ -82331,6 +83496,434 @@ export type Routes = {
|
|
|
82331
83496
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82332
83497
|
warning_code: string;
|
|
82333
83498
|
}[];
|
|
83499
|
+
} | {
|
|
83500
|
+
/** ID of the event. */
|
|
83501
|
+
event_id: string;
|
|
83502
|
+
/** ID of the workspace associated with the event. */
|
|
83503
|
+
workspace_id: string;
|
|
83504
|
+
/** Date and time at which the event was created. */
|
|
83505
|
+
created_at: string;
|
|
83506
|
+
/** Date and time at which the event occurred. */
|
|
83507
|
+
occurred_at: string;
|
|
83508
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
83509
|
+
event_description?: string | undefined;
|
|
83510
|
+
/** ID of the affected access code. */
|
|
83511
|
+
access_code_id: string;
|
|
83512
|
+
/** ID of the device associated with the affected access code. */
|
|
83513
|
+
device_id: string;
|
|
83514
|
+
/** ID of the connected account associated with the affected access code. */
|
|
83515
|
+
connected_account_id: string;
|
|
83516
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
83517
|
+
device_custom_metadata?: {
|
|
83518
|
+
[x: string]: string | boolean;
|
|
83519
|
+
} | undefined;
|
|
83520
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
83521
|
+
connected_account_custom_metadata?: {
|
|
83522
|
+
[x: string]: string | boolean;
|
|
83523
|
+
} | undefined;
|
|
83524
|
+
event_type: 'access_code.issued';
|
|
83525
|
+
/** Code for the affected access code. */
|
|
83526
|
+
code: string;
|
|
83527
|
+
} | {
|
|
83528
|
+
/** ID of the event. */
|
|
83529
|
+
event_id: string;
|
|
83530
|
+
/** ID of the workspace associated with the event. */
|
|
83531
|
+
workspace_id: string;
|
|
83532
|
+
/** Date and time at which the event was created. */
|
|
83533
|
+
created_at: string;
|
|
83534
|
+
/** Date and time at which the event occurred. */
|
|
83535
|
+
occurred_at: string;
|
|
83536
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
83537
|
+
event_description?: string | undefined;
|
|
83538
|
+
/** ID of the affected access code. */
|
|
83539
|
+
access_code_id: string;
|
|
83540
|
+
/** ID of the device associated with the affected access code. */
|
|
83541
|
+
device_id: string;
|
|
83542
|
+
/** ID of the connected account associated with the affected access code. */
|
|
83543
|
+
connected_account_id: string;
|
|
83544
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
83545
|
+
device_custom_metadata?: {
|
|
83546
|
+
[x: string]: string | boolean;
|
|
83547
|
+
} | undefined;
|
|
83548
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
83549
|
+
connected_account_custom_metadata?: {
|
|
83550
|
+
[x: string]: string | boolean;
|
|
83551
|
+
} | undefined;
|
|
83552
|
+
event_type: 'access_code.delay_in_issuing';
|
|
83553
|
+
/** Errors associated with the connected account. */
|
|
83554
|
+
connected_account_errors: {
|
|
83555
|
+
/** Date and time at which Seam created the error. */
|
|
83556
|
+
created_at: string;
|
|
83557
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83558
|
+
message: string;
|
|
83559
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83560
|
+
error_code: string;
|
|
83561
|
+
}[];
|
|
83562
|
+
/** Warnings associated with the connected account. */
|
|
83563
|
+
connected_account_warnings: {
|
|
83564
|
+
/** Date and time at which Seam created the warning. */
|
|
83565
|
+
created_at: string;
|
|
83566
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83567
|
+
message: string;
|
|
83568
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83569
|
+
warning_code: string;
|
|
83570
|
+
}[];
|
|
83571
|
+
/** Errors associated with the device. */
|
|
83572
|
+
device_errors: {
|
|
83573
|
+
/** Date and time at which Seam created the error. */
|
|
83574
|
+
created_at: string;
|
|
83575
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83576
|
+
message: string;
|
|
83577
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83578
|
+
error_code: string;
|
|
83579
|
+
}[];
|
|
83580
|
+
/** Warnings associated with the device. */
|
|
83581
|
+
device_warnings: {
|
|
83582
|
+
/** Date and time at which Seam created the warning. */
|
|
83583
|
+
created_at: string;
|
|
83584
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83585
|
+
message: string;
|
|
83586
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83587
|
+
warning_code: string;
|
|
83588
|
+
}[];
|
|
83589
|
+
/** Errors associated with the access code. */
|
|
83590
|
+
access_code_errors: {
|
|
83591
|
+
/** Date and time at which Seam created the error. */
|
|
83592
|
+
created_at: string;
|
|
83593
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83594
|
+
message: string;
|
|
83595
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83596
|
+
error_code: string;
|
|
83597
|
+
}[];
|
|
83598
|
+
/** Warnings associated with the access code. */
|
|
83599
|
+
access_code_warnings: {
|
|
83600
|
+
/** Date and time at which Seam created the warning. */
|
|
83601
|
+
created_at: string;
|
|
83602
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83603
|
+
message: string;
|
|
83604
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83605
|
+
warning_code: string;
|
|
83606
|
+
}[];
|
|
83607
|
+
} | {
|
|
83608
|
+
/** ID of the event. */
|
|
83609
|
+
event_id: string;
|
|
83610
|
+
/** ID of the workspace associated with the event. */
|
|
83611
|
+
workspace_id: string;
|
|
83612
|
+
/** Date and time at which the event was created. */
|
|
83613
|
+
created_at: string;
|
|
83614
|
+
/** Date and time at which the event occurred. */
|
|
83615
|
+
occurred_at: string;
|
|
83616
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
83617
|
+
event_description?: string | undefined;
|
|
83618
|
+
/** ID of the affected access code. */
|
|
83619
|
+
access_code_id: string;
|
|
83620
|
+
/** ID of the device associated with the affected access code. */
|
|
83621
|
+
device_id: string;
|
|
83622
|
+
/** ID of the connected account associated with the affected access code. */
|
|
83623
|
+
connected_account_id: string;
|
|
83624
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
83625
|
+
device_custom_metadata?: {
|
|
83626
|
+
[x: string]: string | boolean;
|
|
83627
|
+
} | undefined;
|
|
83628
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
83629
|
+
connected_account_custom_metadata?: {
|
|
83630
|
+
[x: string]: string | boolean;
|
|
83631
|
+
} | undefined;
|
|
83632
|
+
event_type: 'access_code.failed_to_issue';
|
|
83633
|
+
/** Errors associated with the connected account. */
|
|
83634
|
+
connected_account_errors: {
|
|
83635
|
+
/** Date and time at which Seam created the error. */
|
|
83636
|
+
created_at: string;
|
|
83637
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83638
|
+
message: string;
|
|
83639
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83640
|
+
error_code: string;
|
|
83641
|
+
}[];
|
|
83642
|
+
/** Warnings associated with the connected account. */
|
|
83643
|
+
connected_account_warnings: {
|
|
83644
|
+
/** Date and time at which Seam created the warning. */
|
|
83645
|
+
created_at: string;
|
|
83646
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83647
|
+
message: string;
|
|
83648
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83649
|
+
warning_code: string;
|
|
83650
|
+
}[];
|
|
83651
|
+
/** Errors associated with the device. */
|
|
83652
|
+
device_errors: {
|
|
83653
|
+
/** Date and time at which Seam created the error. */
|
|
83654
|
+
created_at: string;
|
|
83655
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83656
|
+
message: string;
|
|
83657
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83658
|
+
error_code: string;
|
|
83659
|
+
}[];
|
|
83660
|
+
/** Warnings associated with the device. */
|
|
83661
|
+
device_warnings: {
|
|
83662
|
+
/** Date and time at which Seam created the warning. */
|
|
83663
|
+
created_at: string;
|
|
83664
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83665
|
+
message: string;
|
|
83666
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83667
|
+
warning_code: string;
|
|
83668
|
+
}[];
|
|
83669
|
+
/** Errors associated with the access code. */
|
|
83670
|
+
access_code_errors: {
|
|
83671
|
+
/** Date and time at which Seam created the error. */
|
|
83672
|
+
created_at: string;
|
|
83673
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83674
|
+
message: string;
|
|
83675
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83676
|
+
error_code: string;
|
|
83677
|
+
}[];
|
|
83678
|
+
/** Warnings associated with the access code. */
|
|
83679
|
+
access_code_warnings: {
|
|
83680
|
+
/** Date and time at which Seam created the warning. */
|
|
83681
|
+
created_at: string;
|
|
83682
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83683
|
+
message: string;
|
|
83684
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83685
|
+
warning_code: string;
|
|
83686
|
+
}[];
|
|
83687
|
+
} | {
|
|
83688
|
+
/** ID of the event. */
|
|
83689
|
+
event_id: string;
|
|
83690
|
+
/** ID of the workspace associated with the event. */
|
|
83691
|
+
workspace_id: string;
|
|
83692
|
+
/** Date and time at which the event was created. */
|
|
83693
|
+
created_at: string;
|
|
83694
|
+
/** Date and time at which the event occurred. */
|
|
83695
|
+
occurred_at: string;
|
|
83696
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
83697
|
+
event_description?: string | undefined;
|
|
83698
|
+
/** ID of the affected access code. */
|
|
83699
|
+
access_code_id: string;
|
|
83700
|
+
/** ID of the device associated with the affected access code. */
|
|
83701
|
+
device_id: string;
|
|
83702
|
+
/** ID of the connected account associated with the affected access code. */
|
|
83703
|
+
connected_account_id: string;
|
|
83704
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
83705
|
+
device_custom_metadata?: {
|
|
83706
|
+
[x: string]: string | boolean;
|
|
83707
|
+
} | undefined;
|
|
83708
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
83709
|
+
connected_account_custom_metadata?: {
|
|
83710
|
+
[x: string]: string | boolean;
|
|
83711
|
+
} | undefined;
|
|
83712
|
+
event_type: 'access_code.delay_in_applying_mutations';
|
|
83713
|
+
/** Errors associated with the connected account. */
|
|
83714
|
+
connected_account_errors: {
|
|
83715
|
+
/** Date and time at which Seam created the error. */
|
|
83716
|
+
created_at: string;
|
|
83717
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83718
|
+
message: string;
|
|
83719
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83720
|
+
error_code: string;
|
|
83721
|
+
}[];
|
|
83722
|
+
/** Warnings associated with the connected account. */
|
|
83723
|
+
connected_account_warnings: {
|
|
83724
|
+
/** Date and time at which Seam created the warning. */
|
|
83725
|
+
created_at: string;
|
|
83726
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83727
|
+
message: string;
|
|
83728
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83729
|
+
warning_code: string;
|
|
83730
|
+
}[];
|
|
83731
|
+
/** Errors associated with the device. */
|
|
83732
|
+
device_errors: {
|
|
83733
|
+
/** Date and time at which Seam created the error. */
|
|
83734
|
+
created_at: string;
|
|
83735
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83736
|
+
message: string;
|
|
83737
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83738
|
+
error_code: string;
|
|
83739
|
+
}[];
|
|
83740
|
+
/** Warnings associated with the device. */
|
|
83741
|
+
device_warnings: {
|
|
83742
|
+
/** Date and time at which Seam created the warning. */
|
|
83743
|
+
created_at: string;
|
|
83744
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83745
|
+
message: string;
|
|
83746
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83747
|
+
warning_code: string;
|
|
83748
|
+
}[];
|
|
83749
|
+
/** Errors associated with the access code. */
|
|
83750
|
+
access_code_errors: {
|
|
83751
|
+
/** Date and time at which Seam created the error. */
|
|
83752
|
+
created_at: string;
|
|
83753
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83754
|
+
message: string;
|
|
83755
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83756
|
+
error_code: string;
|
|
83757
|
+
}[];
|
|
83758
|
+
/** Warnings associated with the access code. */
|
|
83759
|
+
access_code_warnings: {
|
|
83760
|
+
/** Date and time at which Seam created the warning. */
|
|
83761
|
+
created_at: string;
|
|
83762
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83763
|
+
message: string;
|
|
83764
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83765
|
+
warning_code: string;
|
|
83766
|
+
}[];
|
|
83767
|
+
} | {
|
|
83768
|
+
/** ID of the event. */
|
|
83769
|
+
event_id: string;
|
|
83770
|
+
/** ID of the workspace associated with the event. */
|
|
83771
|
+
workspace_id: string;
|
|
83772
|
+
/** Date and time at which the event was created. */
|
|
83773
|
+
created_at: string;
|
|
83774
|
+
/** Date and time at which the event occurred. */
|
|
83775
|
+
occurred_at: string;
|
|
83776
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
83777
|
+
event_description?: string | undefined;
|
|
83778
|
+
/** ID of the affected access code. */
|
|
83779
|
+
access_code_id: string;
|
|
83780
|
+
/** ID of the device associated with the affected access code. */
|
|
83781
|
+
device_id: string;
|
|
83782
|
+
/** ID of the connected account associated with the affected access code. */
|
|
83783
|
+
connected_account_id: string;
|
|
83784
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
83785
|
+
device_custom_metadata?: {
|
|
83786
|
+
[x: string]: string | boolean;
|
|
83787
|
+
} | undefined;
|
|
83788
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
83789
|
+
connected_account_custom_metadata?: {
|
|
83790
|
+
[x: string]: string | boolean;
|
|
83791
|
+
} | undefined;
|
|
83792
|
+
event_type: 'access_code.failed_to_apply_mutations';
|
|
83793
|
+
/** Errors associated with the connected account. */
|
|
83794
|
+
connected_account_errors: {
|
|
83795
|
+
/** Date and time at which Seam created the error. */
|
|
83796
|
+
created_at: string;
|
|
83797
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83798
|
+
message: string;
|
|
83799
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83800
|
+
error_code: string;
|
|
83801
|
+
}[];
|
|
83802
|
+
/** Warnings associated with the connected account. */
|
|
83803
|
+
connected_account_warnings: {
|
|
83804
|
+
/** Date and time at which Seam created the warning. */
|
|
83805
|
+
created_at: string;
|
|
83806
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83807
|
+
message: string;
|
|
83808
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83809
|
+
warning_code: string;
|
|
83810
|
+
}[];
|
|
83811
|
+
/** Errors associated with the device. */
|
|
83812
|
+
device_errors: {
|
|
83813
|
+
/** Date and time at which Seam created the error. */
|
|
83814
|
+
created_at: string;
|
|
83815
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83816
|
+
message: string;
|
|
83817
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83818
|
+
error_code: string;
|
|
83819
|
+
}[];
|
|
83820
|
+
/** Warnings associated with the device. */
|
|
83821
|
+
device_warnings: {
|
|
83822
|
+
/** Date and time at which Seam created the warning. */
|
|
83823
|
+
created_at: string;
|
|
83824
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83825
|
+
message: string;
|
|
83826
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83827
|
+
warning_code: string;
|
|
83828
|
+
}[];
|
|
83829
|
+
/** Errors associated with the access code. */
|
|
83830
|
+
access_code_errors: {
|
|
83831
|
+
/** Date and time at which Seam created the error. */
|
|
83832
|
+
created_at: string;
|
|
83833
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83834
|
+
message: string;
|
|
83835
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83836
|
+
error_code: string;
|
|
83837
|
+
}[];
|
|
83838
|
+
/** Warnings associated with the access code. */
|
|
83839
|
+
access_code_warnings: {
|
|
83840
|
+
/** Date and time at which Seam created the warning. */
|
|
83841
|
+
created_at: string;
|
|
83842
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83843
|
+
message: string;
|
|
83844
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83845
|
+
warning_code: string;
|
|
83846
|
+
}[];
|
|
83847
|
+
} | {
|
|
83848
|
+
/** ID of the event. */
|
|
83849
|
+
event_id: string;
|
|
83850
|
+
/** ID of the workspace associated with the event. */
|
|
83851
|
+
workspace_id: string;
|
|
83852
|
+
/** Date and time at which the event was created. */
|
|
83853
|
+
created_at: string;
|
|
83854
|
+
/** Date and time at which the event occurred. */
|
|
83855
|
+
occurred_at: string;
|
|
83856
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
83857
|
+
event_description?: string | undefined;
|
|
83858
|
+
/** ID of the affected access code. */
|
|
83859
|
+
access_code_id: string;
|
|
83860
|
+
/** ID of the device associated with the affected access code. */
|
|
83861
|
+
device_id: string;
|
|
83862
|
+
/** ID of the connected account associated with the affected access code. */
|
|
83863
|
+
connected_account_id: string;
|
|
83864
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
83865
|
+
device_custom_metadata?: {
|
|
83866
|
+
[x: string]: string | boolean;
|
|
83867
|
+
} | undefined;
|
|
83868
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
83869
|
+
connected_account_custom_metadata?: {
|
|
83870
|
+
[x: string]: string | boolean;
|
|
83871
|
+
} | undefined;
|
|
83872
|
+
event_type: 'access_code.failed_to_expire';
|
|
83873
|
+
/** Errors associated with the connected account. */
|
|
83874
|
+
connected_account_errors: {
|
|
83875
|
+
/** Date and time at which Seam created the error. */
|
|
83876
|
+
created_at: string;
|
|
83877
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83878
|
+
message: string;
|
|
83879
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83880
|
+
error_code: string;
|
|
83881
|
+
}[];
|
|
83882
|
+
/** Warnings associated with the connected account. */
|
|
83883
|
+
connected_account_warnings: {
|
|
83884
|
+
/** Date and time at which Seam created the warning. */
|
|
83885
|
+
created_at: string;
|
|
83886
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83887
|
+
message: string;
|
|
83888
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83889
|
+
warning_code: string;
|
|
83890
|
+
}[];
|
|
83891
|
+
/** Errors associated with the device. */
|
|
83892
|
+
device_errors: {
|
|
83893
|
+
/** Date and time at which Seam created the error. */
|
|
83894
|
+
created_at: string;
|
|
83895
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83896
|
+
message: string;
|
|
83897
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83898
|
+
error_code: string;
|
|
83899
|
+
}[];
|
|
83900
|
+
/** Warnings associated with the device. */
|
|
83901
|
+
device_warnings: {
|
|
83902
|
+
/** Date and time at which Seam created the warning. */
|
|
83903
|
+
created_at: string;
|
|
83904
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83905
|
+
message: string;
|
|
83906
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83907
|
+
warning_code: string;
|
|
83908
|
+
}[];
|
|
83909
|
+
/** Errors associated with the access code. */
|
|
83910
|
+
access_code_errors: {
|
|
83911
|
+
/** Date and time at which Seam created the error. */
|
|
83912
|
+
created_at: string;
|
|
83913
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83914
|
+
message: string;
|
|
83915
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83916
|
+
error_code: string;
|
|
83917
|
+
}[];
|
|
83918
|
+
/** Warnings associated with the access code. */
|
|
83919
|
+
access_code_warnings: {
|
|
83920
|
+
/** Date and time at which Seam created the warning. */
|
|
83921
|
+
created_at: string;
|
|
83922
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83923
|
+
message: string;
|
|
83924
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83925
|
+
warning_code: string;
|
|
83926
|
+
}[];
|
|
82334
83927
|
} | {
|
|
82335
83928
|
/** ID of the event. */
|
|
82336
83929
|
event_id: string;
|
|
@@ -87946,12 +89539,6 @@ export type Routes = {
|
|
|
87946
89539
|
product_type?: (string | undefined) | undefined;
|
|
87947
89540
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
87948
89541
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
87949
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
87950
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
87951
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
87952
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
87953
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
87954
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
87955
89542
|
} | undefined;
|
|
87956
89543
|
/** Metadata for a KeyNest device. */
|
|
87957
89544
|
keynest_metadata?: {
|
|
@@ -95853,12 +97440,6 @@ export type Routes = {
|
|
|
95853
97440
|
product_type?: (string | undefined) | undefined;
|
|
95854
97441
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
95855
97442
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
95856
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
95857
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
95858
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
95859
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
95860
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
95861
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
95862
97443
|
} | undefined;
|
|
95863
97444
|
/** Metadata for a KeyNest device. */
|
|
95864
97445
|
keynest_metadata?: {
|
|
@@ -100979,12 +102560,6 @@ export type Routes = {
|
|
|
100979
102560
|
product_type?: (string | undefined) | undefined;
|
|
100980
102561
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
100981
102562
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
100982
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
100983
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
100984
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
100985
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
100986
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
100987
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
100988
102563
|
} | undefined;
|
|
100989
102564
|
/** Metadata for a KeyNest device. */
|
|
100990
102565
|
keynest_metadata?: {
|
|
@@ -102473,12 +104048,6 @@ export type Routes = {
|
|
|
102473
104048
|
product_type?: (string | undefined) | undefined;
|
|
102474
104049
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
102475
104050
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
102476
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
102477
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
102478
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
102479
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
102480
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
102481
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
102482
104051
|
} | undefined;
|
|
102483
104052
|
/** Metadata for a KeyNest device. */
|
|
102484
104053
|
keynest_metadata?: {
|
|
@@ -112165,12 +113734,6 @@ export type Routes = {
|
|
|
112165
113734
|
product_type?: (string | undefined) | undefined;
|
|
112166
113735
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
112167
113736
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
112168
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
112169
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
112170
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
112171
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
112172
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
112173
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
112174
113737
|
} | undefined;
|
|
112175
113738
|
/** Metadata for a KeyNest device. */
|
|
112176
113739
|
keynest_metadata?: {
|
|
@@ -113661,12 +115224,6 @@ export type Routes = {
|
|
|
113661
115224
|
product_type?: (string | undefined) | undefined;
|
|
113662
115225
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
113663
115226
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
113664
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
113665
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
113666
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
113667
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
113668
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
113669
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
113670
115227
|
} | undefined;
|
|
113671
115228
|
/** Metadata for a KeyNest device. */
|
|
113672
115229
|
keynest_metadata?: {
|
|
@@ -116494,12 +118051,6 @@ export type Routes = {
|
|
|
116494
118051
|
product_type?: (string | undefined) | undefined;
|
|
116495
118052
|
/** Set to true when the device does not support the /dual-setpoints API endpoint. */
|
|
116496
118053
|
dual_setpoints_not_supported?: (boolean | undefined) | undefined;
|
|
116497
|
-
/** Legacy combined enforced setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. Read as a fallback for the per-mode ranges below; no longer written. */
|
|
116498
|
-
enforced_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
116499
|
-
/** Enforced heating setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
116500
|
-
enforced_heating_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
116501
|
-
/** Enforced cooling setpoint range in Celsius for a Sensi device, derived from an OutOfRange API error. */
|
|
116502
|
-
enforced_cooling_setpoint_range_celsius?: ([number, number] | undefined) | undefined;
|
|
116503
118054
|
} | undefined;
|
|
116504
118055
|
/** Metadata for a KeyNest device. */
|
|
116505
118056
|
keynest_metadata?: {
|
|
@@ -121726,20 +123277,290 @@ export type Routes = {
|
|
|
121726
123277
|
connected_account_custom_metadata?: {
|
|
121727
123278
|
[x: string]: string | boolean;
|
|
121728
123279
|
} | undefined;
|
|
121729
|
-
event_type: 'access_code.mutations_requested';
|
|
121730
|
-
/** Array of mutations requested on the access code, each containing the mutation type and from/to values. */
|
|
121731
|
-
requested_mutations: {
|
|
121732
|
-
/** Code identifying the type of mutation requested, such as `updating_name`, `updating_code`, `updating_time_frame`, or `deleting`. */
|
|
121733
|
-
mutation_code: 'updating_name' | 'updating_code' | 'updating_time_frame' | 'deleting' | 'creating' | 'deferring_creation';
|
|
121734
|
-
/** Previous property values before the requested change. Keys depend on the mutation type. Absent for non-property mutations like `deleting`. */
|
|
121735
|
-
from?: {
|
|
121736
|
-
[x: string]: unknown;
|
|
121737
|
-
} | undefined;
|
|
121738
|
-
/** New property values after the requested change. Keys depend on the mutation type. Absent for non-property mutations like `deleting`. */
|
|
121739
|
-
to?: {
|
|
121740
|
-
[x: string]: unknown;
|
|
121741
|
-
} | undefined;
|
|
121742
|
-
}[];
|
|
123280
|
+
event_type: 'access_code.mutations_requested';
|
|
123281
|
+
/** Array of mutations requested on the access code, each containing the mutation type and from/to values. */
|
|
123282
|
+
requested_mutations: {
|
|
123283
|
+
/** Code identifying the type of mutation requested, such as `updating_name`, `updating_code`, `updating_time_frame`, or `deleting`. */
|
|
123284
|
+
mutation_code: 'updating_name' | 'updating_code' | 'updating_time_frame' | 'deleting' | 'creating' | 'deferring_creation';
|
|
123285
|
+
/** Previous property values before the requested change. Keys depend on the mutation type. Absent for non-property mutations like `deleting`. */
|
|
123286
|
+
from?: {
|
|
123287
|
+
[x: string]: unknown;
|
|
123288
|
+
} | undefined;
|
|
123289
|
+
/** New property values after the requested change. Keys depend on the mutation type. Absent for non-property mutations like `deleting`. */
|
|
123290
|
+
to?: {
|
|
123291
|
+
[x: string]: unknown;
|
|
123292
|
+
} | undefined;
|
|
123293
|
+
}[];
|
|
123294
|
+
} | {
|
|
123295
|
+
/** ID of the event. */
|
|
123296
|
+
event_id: string;
|
|
123297
|
+
/** ID of the workspace associated with the event. */
|
|
123298
|
+
workspace_id: string;
|
|
123299
|
+
/** Date and time at which the event was created. */
|
|
123300
|
+
created_at: string;
|
|
123301
|
+
/** Date and time at which the event occurred. */
|
|
123302
|
+
occurred_at: string;
|
|
123303
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
123304
|
+
event_description?: string | undefined;
|
|
123305
|
+
/** ID of the affected access code. */
|
|
123306
|
+
access_code_id: string;
|
|
123307
|
+
/** ID of the device associated with the affected access code. */
|
|
123308
|
+
device_id: string;
|
|
123309
|
+
/** ID of the connected account associated with the affected access code. */
|
|
123310
|
+
connected_account_id: string;
|
|
123311
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
123312
|
+
device_custom_metadata?: {
|
|
123313
|
+
[x: string]: string | boolean;
|
|
123314
|
+
} | undefined;
|
|
123315
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
123316
|
+
connected_account_custom_metadata?: {
|
|
123317
|
+
[x: string]: string | boolean;
|
|
123318
|
+
} | undefined;
|
|
123319
|
+
event_type: 'access_code.scheduled_on_device';
|
|
123320
|
+
/** Code for the affected access code. */
|
|
123321
|
+
code: string;
|
|
123322
|
+
} | {
|
|
123323
|
+
/** ID of the event. */
|
|
123324
|
+
event_id: string;
|
|
123325
|
+
/** ID of the workspace associated with the event. */
|
|
123326
|
+
workspace_id: string;
|
|
123327
|
+
/** Date and time at which the event was created. */
|
|
123328
|
+
created_at: string;
|
|
123329
|
+
/** Date and time at which the event occurred. */
|
|
123330
|
+
occurred_at: string;
|
|
123331
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
123332
|
+
event_description?: string | undefined;
|
|
123333
|
+
/** ID of the affected access code. */
|
|
123334
|
+
access_code_id: string;
|
|
123335
|
+
/** ID of the device associated with the affected access code. */
|
|
123336
|
+
device_id: string;
|
|
123337
|
+
/** ID of the connected account associated with the affected access code. */
|
|
123338
|
+
connected_account_id: string;
|
|
123339
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
123340
|
+
device_custom_metadata?: {
|
|
123341
|
+
[x: string]: string | boolean;
|
|
123342
|
+
} | undefined;
|
|
123343
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
123344
|
+
connected_account_custom_metadata?: {
|
|
123345
|
+
[x: string]: string | boolean;
|
|
123346
|
+
} | undefined;
|
|
123347
|
+
event_type: 'access_code.set_on_device';
|
|
123348
|
+
/** Code for the affected access code. */
|
|
123349
|
+
code: string;
|
|
123350
|
+
} | {
|
|
123351
|
+
/** ID of the event. */
|
|
123352
|
+
event_id: string;
|
|
123353
|
+
/** ID of the workspace associated with the event. */
|
|
123354
|
+
workspace_id: string;
|
|
123355
|
+
/** Date and time at which the event was created. */
|
|
123356
|
+
created_at: string;
|
|
123357
|
+
/** Date and time at which the event occurred. */
|
|
123358
|
+
occurred_at: string;
|
|
123359
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
123360
|
+
event_description?: string | undefined;
|
|
123361
|
+
/** ID of the affected access code. */
|
|
123362
|
+
access_code_id: string;
|
|
123363
|
+
/** ID of the device associated with the affected access code. */
|
|
123364
|
+
device_id: string;
|
|
123365
|
+
/** ID of the connected account associated with the affected access code. */
|
|
123366
|
+
connected_account_id: string;
|
|
123367
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
123368
|
+
device_custom_metadata?: {
|
|
123369
|
+
[x: string]: string | boolean;
|
|
123370
|
+
} | undefined;
|
|
123371
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
123372
|
+
connected_account_custom_metadata?: {
|
|
123373
|
+
[x: string]: string | boolean;
|
|
123374
|
+
} | undefined;
|
|
123375
|
+
event_type: 'access_code.removed_from_device';
|
|
123376
|
+
} | {
|
|
123377
|
+
/** ID of the event. */
|
|
123378
|
+
event_id: string;
|
|
123379
|
+
/** ID of the workspace associated with the event. */
|
|
123380
|
+
workspace_id: string;
|
|
123381
|
+
/** Date and time at which the event was created. */
|
|
123382
|
+
created_at: string;
|
|
123383
|
+
/** Date and time at which the event occurred. */
|
|
123384
|
+
occurred_at: string;
|
|
123385
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
123386
|
+
event_description?: string | undefined;
|
|
123387
|
+
/** ID of the affected access code. */
|
|
123388
|
+
access_code_id: string;
|
|
123389
|
+
/** ID of the device associated with the affected access code. */
|
|
123390
|
+
device_id: string;
|
|
123391
|
+
/** ID of the connected account associated with the affected access code. */
|
|
123392
|
+
connected_account_id: string;
|
|
123393
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
123394
|
+
device_custom_metadata?: {
|
|
123395
|
+
[x: string]: string | boolean;
|
|
123396
|
+
} | undefined;
|
|
123397
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
123398
|
+
connected_account_custom_metadata?: {
|
|
123399
|
+
[x: string]: string | boolean;
|
|
123400
|
+
} | undefined;
|
|
123401
|
+
event_type: 'access_code.delay_in_setting_on_device';
|
|
123402
|
+
/** Errors associated with the connected account. */
|
|
123403
|
+
connected_account_errors: {
|
|
123404
|
+
/** Date and time at which Seam created the error. */
|
|
123405
|
+
created_at: string;
|
|
123406
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123407
|
+
message: string;
|
|
123408
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123409
|
+
error_code: string;
|
|
123410
|
+
}[];
|
|
123411
|
+
/** Warnings associated with the connected account. */
|
|
123412
|
+
connected_account_warnings: {
|
|
123413
|
+
/** Date and time at which Seam created the warning. */
|
|
123414
|
+
created_at: string;
|
|
123415
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123416
|
+
message: string;
|
|
123417
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123418
|
+
warning_code: string;
|
|
123419
|
+
}[];
|
|
123420
|
+
/** Errors associated with the device. */
|
|
123421
|
+
device_errors: {
|
|
123422
|
+
/** Date and time at which Seam created the error. */
|
|
123423
|
+
created_at: string;
|
|
123424
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123425
|
+
message: string;
|
|
123426
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123427
|
+
error_code: string;
|
|
123428
|
+
}[];
|
|
123429
|
+
/** Warnings associated with the device. */
|
|
123430
|
+
device_warnings: {
|
|
123431
|
+
/** Date and time at which Seam created the warning. */
|
|
123432
|
+
created_at: string;
|
|
123433
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123434
|
+
message: string;
|
|
123435
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123436
|
+
warning_code: string;
|
|
123437
|
+
}[];
|
|
123438
|
+
/** Errors associated with the access code. */
|
|
123439
|
+
access_code_errors: {
|
|
123440
|
+
/** Date and time at which Seam created the error. */
|
|
123441
|
+
created_at: string;
|
|
123442
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123443
|
+
message: string;
|
|
123444
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123445
|
+
error_code: string;
|
|
123446
|
+
}[];
|
|
123447
|
+
/** Warnings associated with the access code. */
|
|
123448
|
+
access_code_warnings: {
|
|
123449
|
+
/** Date and time at which Seam created the warning. */
|
|
123450
|
+
created_at: string;
|
|
123451
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123452
|
+
message: string;
|
|
123453
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123454
|
+
warning_code: string;
|
|
123455
|
+
}[];
|
|
123456
|
+
} | {
|
|
123457
|
+
/** ID of the event. */
|
|
123458
|
+
event_id: string;
|
|
123459
|
+
/** ID of the workspace associated with the event. */
|
|
123460
|
+
workspace_id: string;
|
|
123461
|
+
/** Date and time at which the event was created. */
|
|
123462
|
+
created_at: string;
|
|
123463
|
+
/** Date and time at which the event occurred. */
|
|
123464
|
+
occurred_at: string;
|
|
123465
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
123466
|
+
event_description?: string | undefined;
|
|
123467
|
+
/** ID of the affected access code. */
|
|
123468
|
+
access_code_id: string;
|
|
123469
|
+
/** ID of the device associated with the affected access code. */
|
|
123470
|
+
device_id: string;
|
|
123471
|
+
/** ID of the connected account associated with the affected access code. */
|
|
123472
|
+
connected_account_id: string;
|
|
123473
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
123474
|
+
device_custom_metadata?: {
|
|
123475
|
+
[x: string]: string | boolean;
|
|
123476
|
+
} | undefined;
|
|
123477
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
123478
|
+
connected_account_custom_metadata?: {
|
|
123479
|
+
[x: string]: string | boolean;
|
|
123480
|
+
} | undefined;
|
|
123481
|
+
event_type: 'access_code.failed_to_set_on_device';
|
|
123482
|
+
/** Errors associated with the connected account. */
|
|
123483
|
+
connected_account_errors: {
|
|
123484
|
+
/** Date and time at which Seam created the error. */
|
|
123485
|
+
created_at: string;
|
|
123486
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123487
|
+
message: string;
|
|
123488
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123489
|
+
error_code: string;
|
|
123490
|
+
}[];
|
|
123491
|
+
/** Warnings associated with the connected account. */
|
|
123492
|
+
connected_account_warnings: {
|
|
123493
|
+
/** Date and time at which Seam created the warning. */
|
|
123494
|
+
created_at: string;
|
|
123495
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123496
|
+
message: string;
|
|
123497
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123498
|
+
warning_code: string;
|
|
123499
|
+
}[];
|
|
123500
|
+
/** Errors associated with the device. */
|
|
123501
|
+
device_errors: {
|
|
123502
|
+
/** Date and time at which Seam created the error. */
|
|
123503
|
+
created_at: string;
|
|
123504
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123505
|
+
message: string;
|
|
123506
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123507
|
+
error_code: string;
|
|
123508
|
+
}[];
|
|
123509
|
+
/** Warnings associated with the device. */
|
|
123510
|
+
device_warnings: {
|
|
123511
|
+
/** Date and time at which Seam created the warning. */
|
|
123512
|
+
created_at: string;
|
|
123513
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123514
|
+
message: string;
|
|
123515
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123516
|
+
warning_code: string;
|
|
123517
|
+
}[];
|
|
123518
|
+
/** Errors associated with the access code. */
|
|
123519
|
+
access_code_errors: {
|
|
123520
|
+
/** Date and time at which Seam created the error. */
|
|
123521
|
+
created_at: string;
|
|
123522
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123523
|
+
message: string;
|
|
123524
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123525
|
+
error_code: string;
|
|
123526
|
+
}[];
|
|
123527
|
+
/** Warnings associated with the access code. */
|
|
123528
|
+
access_code_warnings: {
|
|
123529
|
+
/** Date and time at which Seam created the warning. */
|
|
123530
|
+
created_at: string;
|
|
123531
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123532
|
+
message: string;
|
|
123533
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123534
|
+
warning_code: string;
|
|
123535
|
+
}[];
|
|
123536
|
+
} | {
|
|
123537
|
+
/** ID of the event. */
|
|
123538
|
+
event_id: string;
|
|
123539
|
+
/** ID of the workspace associated with the event. */
|
|
123540
|
+
workspace_id: string;
|
|
123541
|
+
/** Date and time at which the event was created. */
|
|
123542
|
+
created_at: string;
|
|
123543
|
+
/** Date and time at which the event occurred. */
|
|
123544
|
+
occurred_at: string;
|
|
123545
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
123546
|
+
event_description?: string | undefined;
|
|
123547
|
+
/** ID of the affected access code. */
|
|
123548
|
+
access_code_id: string;
|
|
123549
|
+
/** ID of the device associated with the affected access code. */
|
|
123550
|
+
device_id: string;
|
|
123551
|
+
/** ID of the connected account associated with the affected access code. */
|
|
123552
|
+
connected_account_id: string;
|
|
123553
|
+
/** Custom metadata of the device, present when device_id is provided. */
|
|
123554
|
+
device_custom_metadata?: {
|
|
123555
|
+
[x: string]: string | boolean;
|
|
123556
|
+
} | undefined;
|
|
123557
|
+
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
123558
|
+
connected_account_custom_metadata?: {
|
|
123559
|
+
[x: string]: string | boolean;
|
|
123560
|
+
} | undefined;
|
|
123561
|
+
event_type: 'access_code.issued';
|
|
123562
|
+
/** Code for the affected access code. */
|
|
123563
|
+
code: string;
|
|
121743
123564
|
} | {
|
|
121744
123565
|
/** ID of the event. */
|
|
121745
123566
|
event_id: string;
|
|
@@ -121765,9 +123586,61 @@ export type Routes = {
|
|
|
121765
123586
|
connected_account_custom_metadata?: {
|
|
121766
123587
|
[x: string]: string | boolean;
|
|
121767
123588
|
} | undefined;
|
|
121768
|
-
event_type: 'access_code.
|
|
121769
|
-
/**
|
|
121770
|
-
|
|
123589
|
+
event_type: 'access_code.delay_in_issuing';
|
|
123590
|
+
/** Errors associated with the connected account. */
|
|
123591
|
+
connected_account_errors: {
|
|
123592
|
+
/** Date and time at which Seam created the error. */
|
|
123593
|
+
created_at: string;
|
|
123594
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123595
|
+
message: string;
|
|
123596
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123597
|
+
error_code: string;
|
|
123598
|
+
}[];
|
|
123599
|
+
/** Warnings associated with the connected account. */
|
|
123600
|
+
connected_account_warnings: {
|
|
123601
|
+
/** Date and time at which Seam created the warning. */
|
|
123602
|
+
created_at: string;
|
|
123603
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123604
|
+
message: string;
|
|
123605
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123606
|
+
warning_code: string;
|
|
123607
|
+
}[];
|
|
123608
|
+
/** Errors associated with the device. */
|
|
123609
|
+
device_errors: {
|
|
123610
|
+
/** Date and time at which Seam created the error. */
|
|
123611
|
+
created_at: string;
|
|
123612
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123613
|
+
message: string;
|
|
123614
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123615
|
+
error_code: string;
|
|
123616
|
+
}[];
|
|
123617
|
+
/** Warnings associated with the device. */
|
|
123618
|
+
device_warnings: {
|
|
123619
|
+
/** Date and time at which Seam created the warning. */
|
|
123620
|
+
created_at: string;
|
|
123621
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123622
|
+
message: string;
|
|
123623
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123624
|
+
warning_code: string;
|
|
123625
|
+
}[];
|
|
123626
|
+
/** Errors associated with the access code. */
|
|
123627
|
+
access_code_errors: {
|
|
123628
|
+
/** Date and time at which Seam created the error. */
|
|
123629
|
+
created_at: string;
|
|
123630
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123631
|
+
message: string;
|
|
123632
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123633
|
+
error_code: string;
|
|
123634
|
+
}[];
|
|
123635
|
+
/** Warnings associated with the access code. */
|
|
123636
|
+
access_code_warnings: {
|
|
123637
|
+
/** Date and time at which Seam created the warning. */
|
|
123638
|
+
created_at: string;
|
|
123639
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123640
|
+
message: string;
|
|
123641
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123642
|
+
warning_code: string;
|
|
123643
|
+
}[];
|
|
121771
123644
|
} | {
|
|
121772
123645
|
/** ID of the event. */
|
|
121773
123646
|
event_id: string;
|
|
@@ -121793,9 +123666,61 @@ export type Routes = {
|
|
|
121793
123666
|
connected_account_custom_metadata?: {
|
|
121794
123667
|
[x: string]: string | boolean;
|
|
121795
123668
|
} | undefined;
|
|
121796
|
-
event_type: 'access_code.
|
|
121797
|
-
/**
|
|
121798
|
-
|
|
123669
|
+
event_type: 'access_code.failed_to_issue';
|
|
123670
|
+
/** Errors associated with the connected account. */
|
|
123671
|
+
connected_account_errors: {
|
|
123672
|
+
/** Date and time at which Seam created the error. */
|
|
123673
|
+
created_at: string;
|
|
123674
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123675
|
+
message: string;
|
|
123676
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123677
|
+
error_code: string;
|
|
123678
|
+
}[];
|
|
123679
|
+
/** Warnings associated with the connected account. */
|
|
123680
|
+
connected_account_warnings: {
|
|
123681
|
+
/** Date and time at which Seam created the warning. */
|
|
123682
|
+
created_at: string;
|
|
123683
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123684
|
+
message: string;
|
|
123685
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123686
|
+
warning_code: string;
|
|
123687
|
+
}[];
|
|
123688
|
+
/** Errors associated with the device. */
|
|
123689
|
+
device_errors: {
|
|
123690
|
+
/** Date and time at which Seam created the error. */
|
|
123691
|
+
created_at: string;
|
|
123692
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123693
|
+
message: string;
|
|
123694
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123695
|
+
error_code: string;
|
|
123696
|
+
}[];
|
|
123697
|
+
/** Warnings associated with the device. */
|
|
123698
|
+
device_warnings: {
|
|
123699
|
+
/** Date and time at which Seam created the warning. */
|
|
123700
|
+
created_at: string;
|
|
123701
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123702
|
+
message: string;
|
|
123703
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123704
|
+
warning_code: string;
|
|
123705
|
+
}[];
|
|
123706
|
+
/** Errors associated with the access code. */
|
|
123707
|
+
access_code_errors: {
|
|
123708
|
+
/** Date and time at which Seam created the error. */
|
|
123709
|
+
created_at: string;
|
|
123710
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123711
|
+
message: string;
|
|
123712
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123713
|
+
error_code: string;
|
|
123714
|
+
}[];
|
|
123715
|
+
/** Warnings associated with the access code. */
|
|
123716
|
+
access_code_warnings: {
|
|
123717
|
+
/** Date and time at which Seam created the warning. */
|
|
123718
|
+
created_at: string;
|
|
123719
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123720
|
+
message: string;
|
|
123721
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123722
|
+
warning_code: string;
|
|
123723
|
+
}[];
|
|
121799
123724
|
} | {
|
|
121800
123725
|
/** ID of the event. */
|
|
121801
123726
|
event_id: string;
|
|
@@ -121821,7 +123746,61 @@ export type Routes = {
|
|
|
121821
123746
|
connected_account_custom_metadata?: {
|
|
121822
123747
|
[x: string]: string | boolean;
|
|
121823
123748
|
} | undefined;
|
|
121824
|
-
event_type: 'access_code.
|
|
123749
|
+
event_type: 'access_code.delay_in_applying_mutations';
|
|
123750
|
+
/** Errors associated with the connected account. */
|
|
123751
|
+
connected_account_errors: {
|
|
123752
|
+
/** Date and time at which Seam created the error. */
|
|
123753
|
+
created_at: string;
|
|
123754
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123755
|
+
message: string;
|
|
123756
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123757
|
+
error_code: string;
|
|
123758
|
+
}[];
|
|
123759
|
+
/** Warnings associated with the connected account. */
|
|
123760
|
+
connected_account_warnings: {
|
|
123761
|
+
/** Date and time at which Seam created the warning. */
|
|
123762
|
+
created_at: string;
|
|
123763
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123764
|
+
message: string;
|
|
123765
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123766
|
+
warning_code: string;
|
|
123767
|
+
}[];
|
|
123768
|
+
/** Errors associated with the device. */
|
|
123769
|
+
device_errors: {
|
|
123770
|
+
/** Date and time at which Seam created the error. */
|
|
123771
|
+
created_at: string;
|
|
123772
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123773
|
+
message: string;
|
|
123774
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123775
|
+
error_code: string;
|
|
123776
|
+
}[];
|
|
123777
|
+
/** Warnings associated with the device. */
|
|
123778
|
+
device_warnings: {
|
|
123779
|
+
/** Date and time at which Seam created the warning. */
|
|
123780
|
+
created_at: string;
|
|
123781
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123782
|
+
message: string;
|
|
123783
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123784
|
+
warning_code: string;
|
|
123785
|
+
}[];
|
|
123786
|
+
/** Errors associated with the access code. */
|
|
123787
|
+
access_code_errors: {
|
|
123788
|
+
/** Date and time at which Seam created the error. */
|
|
123789
|
+
created_at: string;
|
|
123790
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123791
|
+
message: string;
|
|
123792
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123793
|
+
error_code: string;
|
|
123794
|
+
}[];
|
|
123795
|
+
/** Warnings associated with the access code. */
|
|
123796
|
+
access_code_warnings: {
|
|
123797
|
+
/** Date and time at which Seam created the warning. */
|
|
123798
|
+
created_at: string;
|
|
123799
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
123800
|
+
message: string;
|
|
123801
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
123802
|
+
warning_code: string;
|
|
123803
|
+
}[];
|
|
121825
123804
|
} | {
|
|
121826
123805
|
/** ID of the event. */
|
|
121827
123806
|
event_id: string;
|
|
@@ -121847,7 +123826,7 @@ export type Routes = {
|
|
|
121847
123826
|
connected_account_custom_metadata?: {
|
|
121848
123827
|
[x: string]: string | boolean;
|
|
121849
123828
|
} | undefined;
|
|
121850
|
-
event_type: 'access_code.
|
|
123829
|
+
event_type: 'access_code.failed_to_apply_mutations';
|
|
121851
123830
|
/** Errors associated with the connected account. */
|
|
121852
123831
|
connected_account_errors: {
|
|
121853
123832
|
/** Date and time at which Seam created the error. */
|
|
@@ -121927,7 +123906,7 @@ export type Routes = {
|
|
|
121927
123906
|
connected_account_custom_metadata?: {
|
|
121928
123907
|
[x: string]: string | boolean;
|
|
121929
123908
|
} | undefined;
|
|
121930
|
-
event_type: 'access_code.
|
|
123909
|
+
event_type: 'access_code.failed_to_expire';
|
|
121931
123910
|
/** Errors associated with the connected account. */
|
|
121932
123911
|
connected_account_errors: {
|
|
121933
123912
|
/** Date and time at which Seam created the error. */
|
|
@@ -125160,6 +127139,33 @@ export type Routes = {
|
|
|
125160
127139
|
created_at?: string | undefined;
|
|
125161
127140
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
125162
127141
|
error_code: 'code_constraints_violated';
|
|
127142
|
+
} | {
|
|
127143
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127144
|
+
message: string;
|
|
127145
|
+
/** Indicates that this is an access code error. */
|
|
127146
|
+
is_access_code_error: true;
|
|
127147
|
+
/** Date and time at which Seam created the error. */
|
|
127148
|
+
created_at?: string | undefined;
|
|
127149
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127150
|
+
error_code: 'failed_to_issue';
|
|
127151
|
+
} | {
|
|
127152
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127153
|
+
message: string;
|
|
127154
|
+
/** Indicates that this is an access code error. */
|
|
127155
|
+
is_access_code_error: true;
|
|
127156
|
+
/** Date and time at which Seam created the error. */
|
|
127157
|
+
created_at?: string | undefined;
|
|
127158
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127159
|
+
error_code: 'failed_to_apply_mutations';
|
|
127160
|
+
} | {
|
|
127161
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127162
|
+
message: string;
|
|
127163
|
+
/** Indicates that this is an access code error. */
|
|
127164
|
+
is_access_code_error: true;
|
|
127165
|
+
/** Date and time at which Seam created the error. */
|
|
127166
|
+
created_at?: string | undefined;
|
|
127167
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127168
|
+
error_code: 'failed_to_expire';
|
|
125163
127169
|
} | {
|
|
125164
127170
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
125165
127171
|
message: string;
|
|
@@ -125344,6 +127350,20 @@ export type Routes = {
|
|
|
125344
127350
|
created_at?: string | undefined;
|
|
125345
127351
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125346
127352
|
warning_code: 'delay_in_removing_from_device';
|
|
127353
|
+
} | {
|
|
127354
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127355
|
+
message: string;
|
|
127356
|
+
/** Date and time at which Seam created the warning. */
|
|
127357
|
+
created_at?: string | undefined;
|
|
127358
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127359
|
+
warning_code: 'delay_in_issuing';
|
|
127360
|
+
} | {
|
|
127361
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127362
|
+
message: string;
|
|
127363
|
+
/** Date and time at which Seam created the warning. */
|
|
127364
|
+
created_at?: string | undefined;
|
|
127365
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127366
|
+
warning_code: 'delay_in_applying_mutations';
|
|
125347
127367
|
} | {
|
|
125348
127368
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
125349
127369
|
message: string;
|
|
@@ -125528,6 +127548,33 @@ export type Routes = {
|
|
|
125528
127548
|
created_at?: string | undefined;
|
|
125529
127549
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
125530
127550
|
error_code: 'code_constraints_violated';
|
|
127551
|
+
} | {
|
|
127552
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127553
|
+
message: string;
|
|
127554
|
+
/** Indicates that this is an access code error. */
|
|
127555
|
+
is_access_code_error: true;
|
|
127556
|
+
/** Date and time at which Seam created the error. */
|
|
127557
|
+
created_at?: string | undefined;
|
|
127558
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127559
|
+
error_code: 'failed_to_issue';
|
|
127560
|
+
} | {
|
|
127561
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127562
|
+
message: string;
|
|
127563
|
+
/** Indicates that this is an access code error. */
|
|
127564
|
+
is_access_code_error: true;
|
|
127565
|
+
/** Date and time at which Seam created the error. */
|
|
127566
|
+
created_at?: string | undefined;
|
|
127567
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127568
|
+
error_code: 'failed_to_apply_mutations';
|
|
127569
|
+
} | {
|
|
127570
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127571
|
+
message: string;
|
|
127572
|
+
/** Indicates that this is an access code error. */
|
|
127573
|
+
is_access_code_error: true;
|
|
127574
|
+
/** Date and time at which Seam created the error. */
|
|
127575
|
+
created_at?: string | undefined;
|
|
127576
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127577
|
+
error_code: 'failed_to_expire';
|
|
125531
127578
|
} | {
|
|
125532
127579
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
125533
127580
|
message: string;
|
|
@@ -125712,6 +127759,20 @@ export type Routes = {
|
|
|
125712
127759
|
created_at?: string | undefined;
|
|
125713
127760
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125714
127761
|
warning_code: 'delay_in_removing_from_device';
|
|
127762
|
+
} | {
|
|
127763
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127764
|
+
message: string;
|
|
127765
|
+
/** Date and time at which Seam created the warning. */
|
|
127766
|
+
created_at?: string | undefined;
|
|
127767
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127768
|
+
warning_code: 'delay_in_issuing';
|
|
127769
|
+
} | {
|
|
127770
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127771
|
+
message: string;
|
|
127772
|
+
/** Date and time at which Seam created the warning. */
|
|
127773
|
+
created_at?: string | undefined;
|
|
127774
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127775
|
+
warning_code: 'delay_in_applying_mutations';
|
|
125715
127776
|
} | {
|
|
125716
127777
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
125717
127778
|
message: string;
|