@seamapi/types 1.463.0 → 1.464.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +57 -55
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +91 -279
- package/dist/index.cjs +57 -55
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +4 -4
- package/lib/seam/connect/models/access-codes/managed-access-code.js +2 -2
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +6 -6
- package/lib/seam/connect/models/access-grants/access-grant.js +1 -2
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-access-group.js +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-credential.js +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-encoder.js +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +5 -4
- package/lib/seam/connect/models/acs/acs-system.js +2 -2
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +5 -4
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +2 -2
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +3 -2
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +1 -1
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +0 -203
- package/lib/seam/connect/models/bridges/bridge-client-session.d.ts +2 -2
- package/lib/seam/connect/models/bridges/bridge-client-session.js +1 -1
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +4 -4
- package/lib/seam/connect/models/connected-accounts/connected-account.js +2 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +34 -0
- package/lib/seam/connect/models/customer/customer-portal.js +18 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +4 -62
- package/lib/seam/connect/models/devices/device.js +2 -16
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -21
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +5 -4
- package/lib/seam/connect/models/user-identities/user-identity.js +2 -2
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +58 -0
- package/lib/seam/connect/openapi.js +56 -44
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +27 -160
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +4 -4
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +1 -2
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -2
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-system.ts +4 -4
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +4 -4
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +2 -2
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +2 -2
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +4 -4
- package/src/lib/seam/connect/models/customer/customer-portal.ts +23 -0
- package/src/lib/seam/connect/models/devices/device.ts +4 -19
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +4 -4
- package/src/lib/seam/connect/openapi.ts +60 -52
- package/src/lib/seam/connect/route-types.ts +31 -181
package/dist/connect.d.cts
CHANGED
|
@@ -3629,13 +3629,15 @@ declare const access_grant: z.ZodObject<{
|
|
|
3629
3629
|
display_name: z.ZodString;
|
|
3630
3630
|
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
3631
3631
|
created_at: z.ZodString;
|
|
3632
|
-
starts_at: z.
|
|
3633
|
-
ends_at: z.
|
|
3632
|
+
starts_at: z.ZodString;
|
|
3633
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
3634
3634
|
}, "strip", z.ZodTypeAny, {
|
|
3635
3635
|
name: string | null;
|
|
3636
3636
|
display_name: string;
|
|
3637
3637
|
workspace_id: string;
|
|
3638
3638
|
created_at: string;
|
|
3639
|
+
starts_at: string;
|
|
3640
|
+
ends_at: string | null;
|
|
3639
3641
|
access_grant_id: string;
|
|
3640
3642
|
user_identity_id: string;
|
|
3641
3643
|
location_ids: string[];
|
|
@@ -3647,8 +3649,6 @@ declare const access_grant: z.ZodObject<{
|
|
|
3647
3649
|
created_access_method_ids: string[];
|
|
3648
3650
|
}[];
|
|
3649
3651
|
access_method_ids: string[];
|
|
3650
|
-
starts_at?: string | undefined;
|
|
3651
|
-
ends_at?: string | undefined;
|
|
3652
3652
|
access_grant_key?: string | undefined;
|
|
3653
3653
|
client_session_token?: string | undefined;
|
|
3654
3654
|
instant_key_url?: string | undefined;
|
|
@@ -3657,6 +3657,8 @@ declare const access_grant: z.ZodObject<{
|
|
|
3657
3657
|
display_name: string;
|
|
3658
3658
|
workspace_id: string;
|
|
3659
3659
|
created_at: string;
|
|
3660
|
+
starts_at: string;
|
|
3661
|
+
ends_at: string | null;
|
|
3660
3662
|
access_grant_id: string;
|
|
3661
3663
|
user_identity_id: string;
|
|
3662
3664
|
location_ids: string[];
|
|
@@ -3668,8 +3670,6 @@ declare const access_grant: z.ZodObject<{
|
|
|
3668
3670
|
created_access_method_ids: string[];
|
|
3669
3671
|
}[];
|
|
3670
3672
|
access_method_ids: string[];
|
|
3671
|
-
starts_at?: string | undefined;
|
|
3672
|
-
ends_at?: string | undefined;
|
|
3673
3673
|
access_grant_key?: string | undefined;
|
|
3674
3674
|
client_session_token?: string | undefined;
|
|
3675
3675
|
instant_key_url?: string | undefined;
|
|
@@ -13008,19 +13008,6 @@ declare const batch: z.ZodObject<{
|
|
|
13008
13008
|
}>, z.ZodObject<{
|
|
13009
13009
|
message: z.ZodString;
|
|
13010
13010
|
created_at: z.ZodString;
|
|
13011
|
-
} & {
|
|
13012
|
-
warning_code: z.ZodLiteral<"nest_thermostat_in_manual_eco_mode">;
|
|
13013
|
-
}, "strip", z.ZodTypeAny, {
|
|
13014
|
-
message: string;
|
|
13015
|
-
created_at: string;
|
|
13016
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
13017
|
-
}, {
|
|
13018
|
-
message: string;
|
|
13019
|
-
created_at: string;
|
|
13020
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
13021
|
-
}>, z.ZodObject<{
|
|
13022
|
-
message: z.ZodString;
|
|
13023
|
-
created_at: z.ZodString;
|
|
13024
13011
|
} & {
|
|
13025
13012
|
warning_code: z.ZodLiteral<"ttlock_lock_gateway_unlocking_not_enabled">;
|
|
13026
13013
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13334,10 +13321,6 @@ declare const batch: z.ZodObject<{
|
|
|
13334
13321
|
message: string;
|
|
13335
13322
|
created_at: string;
|
|
13336
13323
|
warning_code: "third_party_integration_detected";
|
|
13337
|
-
} | {
|
|
13338
|
-
message: string;
|
|
13339
|
-
created_at: string;
|
|
13340
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
13341
13324
|
} | {
|
|
13342
13325
|
message: string;
|
|
13343
13326
|
created_at: string;
|
|
@@ -13991,10 +13974,6 @@ declare const batch: z.ZodObject<{
|
|
|
13991
13974
|
message: string;
|
|
13992
13975
|
created_at: string;
|
|
13993
13976
|
warning_code: "third_party_integration_detected";
|
|
13994
|
-
} | {
|
|
13995
|
-
message: string;
|
|
13996
|
-
created_at: string;
|
|
13997
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
13998
13977
|
} | {
|
|
13999
13978
|
message: string;
|
|
14000
13979
|
created_at: string;
|
|
@@ -22964,19 +22943,6 @@ declare const batch: z.ZodObject<{
|
|
|
22964
22943
|
}>, z.ZodObject<{
|
|
22965
22944
|
message: z.ZodString;
|
|
22966
22945
|
created_at: z.ZodString;
|
|
22967
|
-
} & {
|
|
22968
|
-
warning_code: z.ZodLiteral<"nest_thermostat_in_manual_eco_mode">;
|
|
22969
|
-
}, "strip", z.ZodTypeAny, {
|
|
22970
|
-
message: string;
|
|
22971
|
-
created_at: string;
|
|
22972
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
22973
|
-
}, {
|
|
22974
|
-
message: string;
|
|
22975
|
-
created_at: string;
|
|
22976
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
22977
|
-
}>, z.ZodObject<{
|
|
22978
|
-
message: z.ZodString;
|
|
22979
|
-
created_at: z.ZodString;
|
|
22980
22946
|
} & {
|
|
22981
22947
|
warning_code: z.ZodLiteral<"ttlock_lock_gateway_unlocking_not_enabled">;
|
|
22982
22948
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23438,10 +23404,6 @@ declare const batch: z.ZodObject<{
|
|
|
23438
23404
|
message: string;
|
|
23439
23405
|
created_at: string;
|
|
23440
23406
|
warning_code: "third_party_integration_detected";
|
|
23441
|
-
} | {
|
|
23442
|
-
message: string;
|
|
23443
|
-
created_at: string;
|
|
23444
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
23445
23407
|
} | {
|
|
23446
23408
|
message: string;
|
|
23447
23409
|
created_at: string;
|
|
@@ -23669,10 +23631,6 @@ declare const batch: z.ZodObject<{
|
|
|
23669
23631
|
message: string;
|
|
23670
23632
|
created_at: string;
|
|
23671
23633
|
warning_code: "third_party_integration_detected";
|
|
23672
|
-
} | {
|
|
23673
|
-
message: string;
|
|
23674
|
-
created_at: string;
|
|
23675
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
23676
23634
|
} | {
|
|
23677
23635
|
message: string;
|
|
23678
23636
|
created_at: string;
|
|
@@ -23981,10 +23939,6 @@ declare const batch: z.ZodObject<{
|
|
|
23981
23939
|
message: string;
|
|
23982
23940
|
created_at: string;
|
|
23983
23941
|
warning_code: "third_party_integration_detected";
|
|
23984
|
-
} | {
|
|
23985
|
-
message: string;
|
|
23986
|
-
created_at: string;
|
|
23987
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
23988
23942
|
} | {
|
|
23989
23943
|
message: string;
|
|
23990
23944
|
created_at: string;
|
|
@@ -25833,10 +25787,6 @@ declare const batch: z.ZodObject<{
|
|
|
25833
25787
|
message: string;
|
|
25834
25788
|
created_at: string;
|
|
25835
25789
|
warning_code: "third_party_integration_detected";
|
|
25836
|
-
} | {
|
|
25837
|
-
message: string;
|
|
25838
|
-
created_at: string;
|
|
25839
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
25840
25790
|
} | {
|
|
25841
25791
|
message: string;
|
|
25842
25792
|
created_at: string;
|
|
@@ -26101,10 +26051,6 @@ declare const batch: z.ZodObject<{
|
|
|
26101
26051
|
message: string;
|
|
26102
26052
|
created_at: string;
|
|
26103
26053
|
warning_code: "third_party_integration_detected";
|
|
26104
|
-
} | {
|
|
26105
|
-
message: string;
|
|
26106
|
-
created_at: string;
|
|
26107
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
26108
26054
|
} | {
|
|
26109
26055
|
message: string;
|
|
26110
26056
|
created_at: string;
|
|
@@ -27953,10 +27899,6 @@ declare const batch: z.ZodObject<{
|
|
|
27953
27899
|
message: string;
|
|
27954
27900
|
created_at: string;
|
|
27955
27901
|
warning_code: "third_party_integration_detected";
|
|
27956
|
-
} | {
|
|
27957
|
-
message: string;
|
|
27958
|
-
created_at: string;
|
|
27959
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
27960
27902
|
} | {
|
|
27961
27903
|
message: string;
|
|
27962
27904
|
created_at: string;
|
|
@@ -29211,19 +29153,6 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
29211
29153
|
}>, z.ZodObject<{
|
|
29212
29154
|
message: z.ZodString;
|
|
29213
29155
|
created_at: z.ZodString;
|
|
29214
|
-
} & {
|
|
29215
|
-
warning_code: z.ZodLiteral<"nest_thermostat_in_manual_eco_mode">;
|
|
29216
|
-
}, "strip", z.ZodTypeAny, {
|
|
29217
|
-
message: string;
|
|
29218
|
-
created_at: string;
|
|
29219
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
29220
|
-
}, {
|
|
29221
|
-
message: string;
|
|
29222
|
-
created_at: string;
|
|
29223
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
29224
|
-
}>, z.ZodObject<{
|
|
29225
|
-
message: z.ZodString;
|
|
29226
|
-
created_at: z.ZodString;
|
|
29227
29156
|
} & {
|
|
29228
29157
|
warning_code: z.ZodLiteral<"ttlock_lock_gateway_unlocking_not_enabled">;
|
|
29229
29158
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -32043,19 +31972,6 @@ declare const device: z.ZodObject<{
|
|
|
32043
31972
|
}>, z.ZodObject<{
|
|
32044
31973
|
message: z.ZodString;
|
|
32045
31974
|
created_at: z.ZodString;
|
|
32046
|
-
} & {
|
|
32047
|
-
warning_code: z.ZodLiteral<"nest_thermostat_in_manual_eco_mode">;
|
|
32048
|
-
}, "strip", z.ZodTypeAny, {
|
|
32049
|
-
message: string;
|
|
32050
|
-
created_at: string;
|
|
32051
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
32052
|
-
}, {
|
|
32053
|
-
message: string;
|
|
32054
|
-
created_at: string;
|
|
32055
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
32056
|
-
}>, z.ZodObject<{
|
|
32057
|
-
message: z.ZodString;
|
|
32058
|
-
created_at: z.ZodString;
|
|
32059
31975
|
} & {
|
|
32060
31976
|
warning_code: z.ZodLiteral<"ttlock_lock_gateway_unlocking_not_enabled">;
|
|
32061
31977
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -32369,10 +32285,6 @@ declare const device: z.ZodObject<{
|
|
|
32369
32285
|
message: string;
|
|
32370
32286
|
created_at: string;
|
|
32371
32287
|
warning_code: "third_party_integration_detected";
|
|
32372
|
-
} | {
|
|
32373
|
-
message: string;
|
|
32374
|
-
created_at: string;
|
|
32375
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
32376
32288
|
} | {
|
|
32377
32289
|
message: string;
|
|
32378
32290
|
created_at: string;
|
|
@@ -33026,10 +32938,6 @@ declare const device: z.ZodObject<{
|
|
|
33026
32938
|
message: string;
|
|
33027
32939
|
created_at: string;
|
|
33028
32940
|
warning_code: "third_party_integration_detected";
|
|
33029
|
-
} | {
|
|
33030
|
-
message: string;
|
|
33031
|
-
created_at: string;
|
|
33032
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
33033
32941
|
} | {
|
|
33034
32942
|
message: string;
|
|
33035
32943
|
created_at: string;
|
|
@@ -36313,19 +36221,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
36313
36221
|
}>, z.ZodObject<{
|
|
36314
36222
|
message: z.ZodString;
|
|
36315
36223
|
created_at: z.ZodString;
|
|
36316
|
-
} & {
|
|
36317
|
-
warning_code: z.ZodLiteral<"nest_thermostat_in_manual_eco_mode">;
|
|
36318
|
-
}, "strip", z.ZodTypeAny, {
|
|
36319
|
-
message: string;
|
|
36320
|
-
created_at: string;
|
|
36321
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
36322
|
-
}, {
|
|
36323
|
-
message: string;
|
|
36324
|
-
created_at: string;
|
|
36325
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
36326
|
-
}>, z.ZodObject<{
|
|
36327
|
-
message: z.ZodString;
|
|
36328
|
-
created_at: z.ZodString;
|
|
36329
36224
|
} & {
|
|
36330
36225
|
warning_code: z.ZodLiteral<"ttlock_lock_gateway_unlocking_not_enabled">;
|
|
36331
36226
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -36787,10 +36682,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
36787
36682
|
message: string;
|
|
36788
36683
|
created_at: string;
|
|
36789
36684
|
warning_code: "third_party_integration_detected";
|
|
36790
|
-
} | {
|
|
36791
|
-
message: string;
|
|
36792
|
-
created_at: string;
|
|
36793
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
36794
36685
|
} | {
|
|
36795
36686
|
message: string;
|
|
36796
36687
|
created_at: string;
|
|
@@ -37018,10 +36909,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
37018
36909
|
message: string;
|
|
37019
36910
|
created_at: string;
|
|
37020
36911
|
warning_code: "third_party_integration_detected";
|
|
37021
|
-
} | {
|
|
37022
|
-
message: string;
|
|
37023
|
-
created_at: string;
|
|
37024
|
-
warning_code: "nest_thermostat_in_manual_eco_mode";
|
|
37025
36912
|
} | {
|
|
37026
36913
|
message: string;
|
|
37027
36914
|
created_at: string;
|
|
@@ -40971,6 +40858,7 @@ declare const _default: {
|
|
|
40971
40858
|
ends_at: {
|
|
40972
40859
|
description: string;
|
|
40973
40860
|
format: string;
|
|
40861
|
+
nullable: boolean;
|
|
40974
40862
|
type: string;
|
|
40975
40863
|
};
|
|
40976
40864
|
instant_key_url: {
|
|
@@ -57221,7 +57109,9 @@ declare const _default: {
|
|
|
57221
57109
|
type: string;
|
|
57222
57110
|
};
|
|
57223
57111
|
ends_at: {
|
|
57112
|
+
default: null;
|
|
57224
57113
|
description: string;
|
|
57114
|
+
nullable: boolean;
|
|
57225
57115
|
type: string;
|
|
57226
57116
|
};
|
|
57227
57117
|
location: {
|
|
@@ -68992,6 +68882,11 @@ declare const _default: {
|
|
|
68992
68882
|
allOf: ({
|
|
68993
68883
|
default: {
|
|
68994
68884
|
features: {
|
|
68885
|
+
configure: {
|
|
68886
|
+
allow_access_automation_rule_customization: boolean;
|
|
68887
|
+
allow_instant_key_customization: boolean;
|
|
68888
|
+
exclude: boolean;
|
|
68889
|
+
};
|
|
68995
68890
|
connect: {
|
|
68996
68891
|
exclude: boolean;
|
|
68997
68892
|
};
|
|
@@ -69009,6 +68904,28 @@ declare const _default: {
|
|
|
69009
68904
|
features: {
|
|
69010
68905
|
default: {};
|
|
69011
68906
|
properties: {
|
|
68907
|
+
configure: {
|
|
68908
|
+
default: {};
|
|
68909
|
+
description: string;
|
|
68910
|
+
properties: {
|
|
68911
|
+
allow_access_automation_rule_customization: {
|
|
68912
|
+
default: boolean;
|
|
68913
|
+
description: string;
|
|
68914
|
+
type: string;
|
|
68915
|
+
};
|
|
68916
|
+
allow_instant_key_customization: {
|
|
68917
|
+
default: boolean;
|
|
68918
|
+
description: string;
|
|
68919
|
+
type: string;
|
|
68920
|
+
};
|
|
68921
|
+
exclude: {
|
|
68922
|
+
default: boolean;
|
|
68923
|
+
description: string;
|
|
68924
|
+
type: string;
|
|
68925
|
+
};
|
|
68926
|
+
};
|
|
68927
|
+
type: string;
|
|
68928
|
+
};
|
|
69012
68929
|
connect: {
|
|
69013
68930
|
default: {};
|
|
69014
68931
|
description: string;
|
|
@@ -78135,6 +78052,20 @@ declare const _default: {
|
|
|
78135
78052
|
};
|
|
78136
78053
|
features: {
|
|
78137
78054
|
properties: {
|
|
78055
|
+
configure: {
|
|
78056
|
+
properties: {
|
|
78057
|
+
allow_access_automation_rule_customization: {
|
|
78058
|
+
type: string;
|
|
78059
|
+
};
|
|
78060
|
+
allow_instant_key_customization: {
|
|
78061
|
+
type: string;
|
|
78062
|
+
};
|
|
78063
|
+
exclude: {
|
|
78064
|
+
type: string;
|
|
78065
|
+
};
|
|
78066
|
+
};
|
|
78067
|
+
type: string;
|
|
78068
|
+
};
|
|
78138
78069
|
connect: {
|
|
78139
78070
|
properties: {
|
|
78140
78071
|
exclude: {
|
|
@@ -78232,6 +78163,20 @@ declare const _default: {
|
|
|
78232
78163
|
};
|
|
78233
78164
|
features: {
|
|
78234
78165
|
properties: {
|
|
78166
|
+
configure: {
|
|
78167
|
+
properties: {
|
|
78168
|
+
allow_access_automation_rule_customization: {
|
|
78169
|
+
type: string;
|
|
78170
|
+
};
|
|
78171
|
+
allow_instant_key_customization: {
|
|
78172
|
+
type: string;
|
|
78173
|
+
};
|
|
78174
|
+
exclude: {
|
|
78175
|
+
type: string;
|
|
78176
|
+
};
|
|
78177
|
+
};
|
|
78178
|
+
type: string;
|
|
78179
|
+
};
|
|
78235
78180
|
connect: {
|
|
78236
78181
|
properties: {
|
|
78237
78182
|
exclude: {
|
|
@@ -100927,7 +100872,7 @@ interface Routes {
|
|
|
100927
100872
|
/** Date and time at which the validity of the new grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
100928
100873
|
starts_at?: string | undefined;
|
|
100929
100874
|
/** Date and time at which the validity of the new grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
100930
|
-
ends_at?: string | undefined;
|
|
100875
|
+
ends_at?: (string | undefined) | null;
|
|
100931
100876
|
};
|
|
100932
100877
|
formData: {};
|
|
100933
100878
|
jsonResponse: {
|
|
@@ -100970,9 +100915,9 @@ interface Routes {
|
|
|
100970
100915
|
/** Date and time at which the Access Grant was created. */
|
|
100971
100916
|
created_at: string;
|
|
100972
100917
|
/** Date and time at which the Access Grant starts. */
|
|
100973
|
-
starts_at
|
|
100918
|
+
starts_at: string;
|
|
100974
100919
|
/** Date and time at which the Access Grant ends. */
|
|
100975
|
-
ends_at
|
|
100920
|
+
ends_at: string | null;
|
|
100976
100921
|
};
|
|
100977
100922
|
};
|
|
100978
100923
|
};
|
|
@@ -101041,9 +100986,9 @@ interface Routes {
|
|
|
101041
100986
|
/** Date and time at which the Access Grant was created. */
|
|
101042
100987
|
created_at: string;
|
|
101043
100988
|
/** Date and time at which the Access Grant starts. */
|
|
101044
|
-
starts_at
|
|
100989
|
+
starts_at: string;
|
|
101045
100990
|
/** Date and time at which the Access Grant ends. */
|
|
101046
|
-
ends_at
|
|
100991
|
+
ends_at: string | null;
|
|
101047
100992
|
};
|
|
101048
100993
|
};
|
|
101049
100994
|
};
|
|
@@ -102172,13 +102117,6 @@ interface Routes {
|
|
|
102172
102117
|
created_at: string;
|
|
102173
102118
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102174
102119
|
warning_code: 'third_party_integration_detected';
|
|
102175
|
-
} | {
|
|
102176
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
102177
|
-
message: string;
|
|
102178
|
-
/** Date and time at which Seam created the warning. */
|
|
102179
|
-
created_at: string;
|
|
102180
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102181
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
102182
102120
|
} | {
|
|
102183
102121
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
102184
102122
|
message: string;
|
|
@@ -102742,9 +102680,9 @@ interface Routes {
|
|
|
102742
102680
|
/** Date and time at which the Access Grant was created. */
|
|
102743
102681
|
created_at: string;
|
|
102744
102682
|
/** Date and time at which the Access Grant starts. */
|
|
102745
|
-
starts_at
|
|
102683
|
+
starts_at: string;
|
|
102746
102684
|
/** Date and time at which the Access Grant ends. */
|
|
102747
|
-
ends_at
|
|
102685
|
+
ends_at: string | null;
|
|
102748
102686
|
}>;
|
|
102749
102687
|
};
|
|
102750
102688
|
};
|
|
@@ -105276,13 +105214,6 @@ interface Routes {
|
|
|
105276
105214
|
created_at: string;
|
|
105277
105215
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105278
105216
|
warning_code: 'third_party_integration_detected';
|
|
105279
|
-
} | {
|
|
105280
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105281
|
-
message: string;
|
|
105282
|
-
/** Date and time at which Seam created the warning. */
|
|
105283
|
-
created_at: string;
|
|
105284
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105285
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
105286
105217
|
} | {
|
|
105287
105218
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
105288
105219
|
message: string;
|
|
@@ -107596,13 +107527,6 @@ interface Routes {
|
|
|
107596
107527
|
created_at: string;
|
|
107597
107528
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107598
107529
|
warning_code: 'third_party_integration_detected';
|
|
107599
|
-
} | {
|
|
107600
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107601
|
-
message: string;
|
|
107602
|
-
/** Date and time at which Seam created the warning. */
|
|
107603
|
-
created_at: string;
|
|
107604
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107605
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
107606
107530
|
} | {
|
|
107607
107531
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107608
107532
|
message: string;
|
|
@@ -118565,6 +118489,15 @@ interface Routes {
|
|
|
118565
118489
|
/** Whether to exclude this feature from the portal. */
|
|
118566
118490
|
exclude?: boolean;
|
|
118567
118491
|
};
|
|
118492
|
+
/** Configuration for the configure feature. */
|
|
118493
|
+
configure?: {
|
|
118494
|
+
/** Whether to exclude this feature from the portal. */
|
|
118495
|
+
exclude?: boolean;
|
|
118496
|
+
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
118497
|
+
allow_access_automation_rule_customization?: boolean;
|
|
118498
|
+
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
118499
|
+
allow_instant_key_customization?: boolean;
|
|
118500
|
+
};
|
|
118568
118501
|
};
|
|
118569
118502
|
/** Whether the portal is embedded in another application. */
|
|
118570
118503
|
is_embedded?: boolean;
|
|
@@ -120183,13 +120116,6 @@ interface Routes {
|
|
|
120183
120116
|
created_at: string;
|
|
120184
120117
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120185
120118
|
warning_code: 'third_party_integration_detected';
|
|
120186
|
-
} | {
|
|
120187
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
120188
|
-
message: string;
|
|
120189
|
-
/** Date and time at which Seam created the warning. */
|
|
120190
|
-
created_at: string;
|
|
120191
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120192
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
120193
120119
|
} | {
|
|
120194
120120
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
120195
120121
|
message: string;
|
|
@@ -121435,13 +121361,6 @@ interface Routes {
|
|
|
121435
121361
|
created_at: string;
|
|
121436
121362
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121437
121363
|
warning_code: 'third_party_integration_detected';
|
|
121438
|
-
} | {
|
|
121439
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121440
|
-
message: string;
|
|
121441
|
-
/** Date and time at which Seam created the warning. */
|
|
121442
|
-
created_at: string;
|
|
121443
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121444
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
121445
121364
|
} | {
|
|
121446
121365
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121447
121366
|
message: string;
|
|
@@ -121874,13 +121793,6 @@ interface Routes {
|
|
|
121874
121793
|
created_at: string;
|
|
121875
121794
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121876
121795
|
warning_code: 'third_party_integration_detected';
|
|
121877
|
-
} | {
|
|
121878
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121879
|
-
message: string;
|
|
121880
|
-
/** Date and time at which Seam created the warning. */
|
|
121881
|
-
created_at: string;
|
|
121882
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121883
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
121884
121796
|
} | {
|
|
121885
121797
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121886
121798
|
message: string;
|
|
@@ -122311,13 +122223,6 @@ interface Routes {
|
|
|
122311
122223
|
created_at: string;
|
|
122312
122224
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122313
122225
|
warning_code: 'third_party_integration_detected';
|
|
122314
|
-
} | {
|
|
122315
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
122316
|
-
message: string;
|
|
122317
|
-
/** Date and time at which Seam created the warning. */
|
|
122318
|
-
created_at: string;
|
|
122319
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122320
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
122321
122226
|
} | {
|
|
122322
122227
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
122323
122228
|
message: string;
|
|
@@ -126972,13 +126877,6 @@ interface Routes {
|
|
|
126972
126877
|
created_at: string;
|
|
126973
126878
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126974
126879
|
warning_code: 'third_party_integration_detected';
|
|
126975
|
-
} | {
|
|
126976
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126977
|
-
message: string;
|
|
126978
|
-
/** Date and time at which Seam created the warning. */
|
|
126979
|
-
created_at: string;
|
|
126980
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126981
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
126982
126880
|
} | {
|
|
126983
126881
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126984
126882
|
message: string;
|
|
@@ -128176,13 +128074,6 @@ interface Routes {
|
|
|
128176
128074
|
created_at: string;
|
|
128177
128075
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128178
128076
|
warning_code: 'third_party_integration_detected';
|
|
128179
|
-
} | {
|
|
128180
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128181
|
-
message: string;
|
|
128182
|
-
/** Date and time at which Seam created the warning. */
|
|
128183
|
-
created_at: string;
|
|
128184
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128185
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
128186
128077
|
} | {
|
|
128187
128078
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128188
128079
|
message: string;
|
|
@@ -129428,13 +129319,6 @@ interface Routes {
|
|
|
129428
129319
|
created_at: string;
|
|
129429
129320
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129430
129321
|
warning_code: 'third_party_integration_detected';
|
|
129431
|
-
} | {
|
|
129432
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129433
|
-
message: string;
|
|
129434
|
-
/** Date and time at which Seam created the warning. */
|
|
129435
|
-
created_at: string;
|
|
129436
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129437
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
129438
129322
|
} | {
|
|
129439
129323
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129440
129324
|
message: string;
|
|
@@ -130631,13 +130515,6 @@ interface Routes {
|
|
|
130631
130515
|
created_at: string;
|
|
130632
130516
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
130633
130517
|
warning_code: 'third_party_integration_detected';
|
|
130634
|
-
} | {
|
|
130635
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
130636
|
-
message: string;
|
|
130637
|
-
/** Date and time at which Seam created the warning. */
|
|
130638
|
-
created_at: string;
|
|
130639
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
130640
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
130641
130518
|
} | {
|
|
130642
130519
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
130643
130520
|
message: string;
|
|
@@ -136921,13 +136798,6 @@ interface Routes {
|
|
|
136921
136798
|
created_at: string;
|
|
136922
136799
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
136923
136800
|
warning_code: 'third_party_integration_detected';
|
|
136924
|
-
} | {
|
|
136925
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
136926
|
-
message: string;
|
|
136927
|
-
/** Date and time at which Seam created the warning. */
|
|
136928
|
-
created_at: string;
|
|
136929
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
136930
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
136931
136801
|
} | {
|
|
136932
136802
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
136933
136803
|
message: string;
|
|
@@ -138124,13 +137994,6 @@ interface Routes {
|
|
|
138124
137994
|
created_at: string;
|
|
138125
137995
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
138126
137996
|
warning_code: 'third_party_integration_detected';
|
|
138127
|
-
} | {
|
|
138128
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138129
|
-
message: string;
|
|
138130
|
-
/** Date and time at which Seam created the warning. */
|
|
138131
|
-
created_at: string;
|
|
138132
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
138133
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
138134
137997
|
} | {
|
|
138135
137998
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138136
137999
|
message: string;
|
|
@@ -142842,6 +142705,11 @@ interface Routes {
|
|
|
142842
142705
|
organize?: {
|
|
142843
142706
|
exclude?: boolean | undefined;
|
|
142844
142707
|
} | undefined;
|
|
142708
|
+
configure?: {
|
|
142709
|
+
exclude?: boolean | undefined;
|
|
142710
|
+
allow_access_automation_rule_customization?: boolean | undefined;
|
|
142711
|
+
allow_instant_key_customization?: boolean | undefined;
|
|
142712
|
+
} | undefined;
|
|
142845
142713
|
} | undefined;
|
|
142846
142714
|
is_embedded?: boolean | undefined;
|
|
142847
142715
|
/** Business vertical of the customer portal. */
|
|
@@ -144640,13 +144508,6 @@ interface Routes {
|
|
|
144640
144508
|
created_at: string;
|
|
144641
144509
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144642
144510
|
warning_code: 'third_party_integration_detected';
|
|
144643
|
-
} | {
|
|
144644
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
144645
|
-
message: string;
|
|
144646
|
-
/** Date and time at which Seam created the warning. */
|
|
144647
|
-
created_at: string;
|
|
144648
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144649
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
144650
144511
|
} | {
|
|
144651
144512
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
144652
144513
|
message: string;
|
|
@@ -150217,13 +150078,6 @@ interface Routes {
|
|
|
150217
150078
|
created_at: string;
|
|
150218
150079
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150219
150080
|
warning_code: 'third_party_integration_detected';
|
|
150220
|
-
} | {
|
|
150221
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
150222
|
-
message: string;
|
|
150223
|
-
/** Date and time at which Seam created the warning. */
|
|
150224
|
-
created_at: string;
|
|
150225
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150226
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
150227
150081
|
} | {
|
|
150228
150082
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
150229
150083
|
message: string;
|
|
@@ -154001,13 +153855,6 @@ interface Routes {
|
|
|
154001
153855
|
created_at: string;
|
|
154002
153856
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
154003
153857
|
warning_code: 'third_party_integration_detected';
|
|
154004
|
-
} | {
|
|
154005
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
154006
|
-
message: string;
|
|
154007
|
-
/** Date and time at which Seam created the warning. */
|
|
154008
|
-
created_at: string;
|
|
154009
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
154010
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
154011
153858
|
} | {
|
|
154012
153859
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
154013
153860
|
message: string;
|
|
@@ -155204,13 +155051,6 @@ interface Routes {
|
|
|
155204
155051
|
created_at: string;
|
|
155205
155052
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
155206
155053
|
warning_code: 'third_party_integration_detected';
|
|
155207
|
-
} | {
|
|
155208
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
155209
|
-
message: string;
|
|
155210
|
-
/** Date and time at which Seam created the warning. */
|
|
155211
|
-
created_at: string;
|
|
155212
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
155213
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
155214
155054
|
} | {
|
|
155215
155055
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
155216
155056
|
message: string;
|
|
@@ -160812,9 +160652,9 @@ interface Routes {
|
|
|
160812
160652
|
/** Date and time at which the Access Grant was created. */
|
|
160813
160653
|
created_at: string;
|
|
160814
160654
|
/** Date and time at which the Access Grant starts. */
|
|
160815
|
-
starts_at
|
|
160655
|
+
starts_at: string;
|
|
160816
160656
|
/** Date and time at which the Access Grant ends. */
|
|
160817
|
-
ends_at
|
|
160657
|
+
ends_at: string | null;
|
|
160818
160658
|
};
|
|
160819
160659
|
};
|
|
160820
160660
|
};
|
|
@@ -160880,9 +160720,9 @@ interface Routes {
|
|
|
160880
160720
|
/** Date and time at which the Access Grant was created. */
|
|
160881
160721
|
created_at: string;
|
|
160882
160722
|
/** Date and time at which the Access Grant starts. */
|
|
160883
|
-
starts_at
|
|
160723
|
+
starts_at: string;
|
|
160884
160724
|
/** Date and time at which the Access Grant ends. */
|
|
160885
|
-
ends_at
|
|
160725
|
+
ends_at: string | null;
|
|
160886
160726
|
};
|
|
160887
160727
|
};
|
|
160888
160728
|
};
|
|
@@ -160944,9 +160784,9 @@ interface Routes {
|
|
|
160944
160784
|
/** Date and time at which the Access Grant was created. */
|
|
160945
160785
|
created_at: string;
|
|
160946
160786
|
/** Date and time at which the Access Grant starts. */
|
|
160947
|
-
starts_at
|
|
160787
|
+
starts_at: string;
|
|
160948
160788
|
/** Date and time at which the Access Grant ends. */
|
|
160949
|
-
ends_at
|
|
160789
|
+
ends_at: string | null;
|
|
160950
160790
|
}>;
|
|
160951
160791
|
};
|
|
160952
160792
|
};
|
|
@@ -162867,13 +162707,6 @@ interface Routes {
|
|
|
162867
162707
|
created_at: string;
|
|
162868
162708
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
162869
162709
|
warning_code: 'third_party_integration_detected';
|
|
162870
|
-
} | {
|
|
162871
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
162872
|
-
message: string;
|
|
162873
|
-
/** Date and time at which Seam created the warning. */
|
|
162874
|
-
created_at: string;
|
|
162875
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
162876
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
162877
162710
|
} | {
|
|
162878
162711
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
162879
162712
|
message: string;
|
|
@@ -164072,13 +163905,6 @@ interface Routes {
|
|
|
164072
163905
|
created_at: string;
|
|
164073
163906
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
164074
163907
|
warning_code: 'third_party_integration_detected';
|
|
164075
|
-
} | {
|
|
164076
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
164077
|
-
message: string;
|
|
164078
|
-
/** Date and time at which Seam created the warning. */
|
|
164079
|
-
created_at: string;
|
|
164080
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
164081
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
164082
163908
|
} | {
|
|
164083
163909
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
164084
163910
|
message: string;
|
|
@@ -165948,13 +165774,6 @@ interface Routes {
|
|
|
165948
165774
|
created_at: string;
|
|
165949
165775
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
165950
165776
|
warning_code: 'third_party_integration_detected';
|
|
165951
|
-
} | {
|
|
165952
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
165953
|
-
message: string;
|
|
165954
|
-
/** Date and time at which Seam created the warning. */
|
|
165955
|
-
created_at: string;
|
|
165956
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
165957
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
165958
165777
|
} | {
|
|
165959
165778
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
165960
165779
|
message: string;
|
|
@@ -168268,13 +168087,6 @@ interface Routes {
|
|
|
168268
168087
|
created_at: string;
|
|
168269
168088
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
168270
168089
|
warning_code: 'third_party_integration_detected';
|
|
168271
|
-
} | {
|
|
168272
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
168273
|
-
message: string;
|
|
168274
|
-
/** Date and time at which Seam created the warning. */
|
|
168275
|
-
created_at: string;
|
|
168276
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
168277
|
-
warning_code: 'nest_thermostat_in_manual_eco_mode';
|
|
168278
168090
|
} | {
|
|
168279
168091
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
168280
168092
|
message: string;
|