@seamapi/types 1.236.0 → 1.238.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 +173 -42
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +223 -56
- package/lib/seam/connect/models/acs/acs-user.d.ts +178 -14
- package/lib/seam/connect/models/acs/acs-user.js +19 -4
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +55 -42
- package/lib/seam/connect/openapi.js +153 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -2
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-user.ts +21 -5
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +153 -32
- package/src/lib/seam/connect/route-types.ts +128 -35
package/dist/connect.d.cts
CHANGED
|
@@ -963,7 +963,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
963
963
|
user_identity_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
964
964
|
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString>;
|
|
965
965
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
966
|
-
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
966
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
967
967
|
created_at: z.ZodString;
|
|
968
968
|
message: z.ZodString;
|
|
969
969
|
}, {
|
|
@@ -976,7 +976,34 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
976
976
|
message: string;
|
|
977
977
|
warning_code: "being_deleted";
|
|
978
978
|
created_at: string;
|
|
979
|
-
}>,
|
|
979
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
980
|
+
created_at: z.ZodString;
|
|
981
|
+
message: z.ZodString;
|
|
982
|
+
}, {
|
|
983
|
+
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
984
|
+
}>, "strip", z.ZodTypeAny, {
|
|
985
|
+
message: string;
|
|
986
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
987
|
+
created_at: string;
|
|
988
|
+
}, {
|
|
989
|
+
message: string;
|
|
990
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
991
|
+
created_at: string;
|
|
992
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
993
|
+
created_at: z.ZodString;
|
|
994
|
+
message: z.ZodString;
|
|
995
|
+
}, {
|
|
996
|
+
warning_code: z.ZodLiteral<"salto_site_user_suspended">;
|
|
997
|
+
}>, "strip", z.ZodTypeAny, {
|
|
998
|
+
message: string;
|
|
999
|
+
warning_code: "salto_site_user_suspended";
|
|
1000
|
+
created_at: string;
|
|
1001
|
+
}, {
|
|
1002
|
+
message: string;
|
|
1003
|
+
warning_code: "salto_site_user_suspended";
|
|
1004
|
+
created_at: string;
|
|
1005
|
+
}>]>, "many">;
|
|
1006
|
+
errors: z.ZodAny;
|
|
980
1007
|
}, {
|
|
981
1008
|
full_name: z.ZodOptional<z.ZodString>;
|
|
982
1009
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -986,11 +1013,19 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
986
1013
|
is_managed: z.ZodLiteral<true>;
|
|
987
1014
|
}>, "strip", z.ZodTypeAny, {
|
|
988
1015
|
created_at: string;
|
|
989
|
-
warnings: {
|
|
1016
|
+
warnings: ({
|
|
990
1017
|
message: string;
|
|
991
1018
|
warning_code: "being_deleted";
|
|
992
1019
|
created_at: string;
|
|
993
|
-
}
|
|
1020
|
+
} | {
|
|
1021
|
+
message: string;
|
|
1022
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
1023
|
+
created_at: string;
|
|
1024
|
+
} | {
|
|
1025
|
+
message: string;
|
|
1026
|
+
warning_code: "salto_site_user_suspended";
|
|
1027
|
+
created_at: string;
|
|
1028
|
+
})[];
|
|
994
1029
|
display_name: string;
|
|
995
1030
|
workspace_id: string;
|
|
996
1031
|
is_managed: true;
|
|
@@ -998,6 +1033,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
998
1033
|
acs_user_id: string;
|
|
999
1034
|
is_suspended: boolean;
|
|
1000
1035
|
email?: string | undefined;
|
|
1036
|
+
errors?: any;
|
|
1001
1037
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1002
1038
|
external_type_display_name?: string | undefined;
|
|
1003
1039
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
@@ -1016,11 +1052,19 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1016
1052
|
user_identity_phone_number?: string | null | undefined;
|
|
1017
1053
|
}, {
|
|
1018
1054
|
created_at: string;
|
|
1019
|
-
warnings: {
|
|
1055
|
+
warnings: ({
|
|
1020
1056
|
message: string;
|
|
1021
1057
|
warning_code: "being_deleted";
|
|
1022
1058
|
created_at: string;
|
|
1023
|
-
}
|
|
1059
|
+
} | {
|
|
1060
|
+
message: string;
|
|
1061
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
1062
|
+
created_at: string;
|
|
1063
|
+
} | {
|
|
1064
|
+
message: string;
|
|
1065
|
+
warning_code: "salto_site_user_suspended";
|
|
1066
|
+
created_at: string;
|
|
1067
|
+
})[];
|
|
1024
1068
|
display_name: string;
|
|
1025
1069
|
workspace_id: string;
|
|
1026
1070
|
is_managed: true;
|
|
@@ -1028,6 +1072,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1028
1072
|
acs_user_id: string;
|
|
1029
1073
|
is_suspended: boolean;
|
|
1030
1074
|
email?: string | undefined;
|
|
1075
|
+
errors?: any;
|
|
1031
1076
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1032
1077
|
external_type_display_name?: string | undefined;
|
|
1033
1078
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
@@ -1071,7 +1116,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1071
1116
|
user_identity_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1072
1117
|
latest_desired_state_synced_with_provider_at: z.ZodOptional<z.ZodString>;
|
|
1073
1118
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
1074
|
-
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
1119
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1075
1120
|
created_at: z.ZodString;
|
|
1076
1121
|
message: z.ZodString;
|
|
1077
1122
|
}, {
|
|
@@ -1084,7 +1129,34 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1084
1129
|
message: string;
|
|
1085
1130
|
warning_code: "being_deleted";
|
|
1086
1131
|
created_at: string;
|
|
1087
|
-
}>,
|
|
1132
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1133
|
+
created_at: z.ZodString;
|
|
1134
|
+
message: z.ZodString;
|
|
1135
|
+
}, {
|
|
1136
|
+
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
1137
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1138
|
+
message: string;
|
|
1139
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
1140
|
+
created_at: string;
|
|
1141
|
+
}, {
|
|
1142
|
+
message: string;
|
|
1143
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
1144
|
+
created_at: string;
|
|
1145
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1146
|
+
created_at: z.ZodString;
|
|
1147
|
+
message: z.ZodString;
|
|
1148
|
+
}, {
|
|
1149
|
+
warning_code: z.ZodLiteral<"salto_site_user_suspended">;
|
|
1150
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1151
|
+
message: string;
|
|
1152
|
+
warning_code: "salto_site_user_suspended";
|
|
1153
|
+
created_at: string;
|
|
1154
|
+
}, {
|
|
1155
|
+
message: string;
|
|
1156
|
+
warning_code: "salto_site_user_suspended";
|
|
1157
|
+
created_at: string;
|
|
1158
|
+
}>]>, "many">;
|
|
1159
|
+
errors: z.ZodAny;
|
|
1088
1160
|
}, {
|
|
1089
1161
|
full_name: z.ZodOptional<z.ZodString>;
|
|
1090
1162
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1094,11 +1166,19 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1094
1166
|
is_managed: z.ZodLiteral<false>;
|
|
1095
1167
|
}>, "strip", z.ZodTypeAny, {
|
|
1096
1168
|
created_at: string;
|
|
1097
|
-
warnings: {
|
|
1169
|
+
warnings: ({
|
|
1098
1170
|
message: string;
|
|
1099
1171
|
warning_code: "being_deleted";
|
|
1100
1172
|
created_at: string;
|
|
1101
|
-
}
|
|
1173
|
+
} | {
|
|
1174
|
+
message: string;
|
|
1175
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
1176
|
+
created_at: string;
|
|
1177
|
+
} | {
|
|
1178
|
+
message: string;
|
|
1179
|
+
warning_code: "salto_site_user_suspended";
|
|
1180
|
+
created_at: string;
|
|
1181
|
+
})[];
|
|
1102
1182
|
display_name: string;
|
|
1103
1183
|
workspace_id: string;
|
|
1104
1184
|
is_managed: false;
|
|
@@ -1106,6 +1186,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1106
1186
|
acs_user_id: string;
|
|
1107
1187
|
is_suspended: boolean;
|
|
1108
1188
|
email?: string | undefined;
|
|
1189
|
+
errors?: any;
|
|
1109
1190
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1110
1191
|
external_type_display_name?: string | undefined;
|
|
1111
1192
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
@@ -1124,11 +1205,19 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1124
1205
|
user_identity_phone_number?: string | null | undefined;
|
|
1125
1206
|
}, {
|
|
1126
1207
|
created_at: string;
|
|
1127
|
-
warnings: {
|
|
1208
|
+
warnings: ({
|
|
1128
1209
|
message: string;
|
|
1129
1210
|
warning_code: "being_deleted";
|
|
1130
1211
|
created_at: string;
|
|
1131
|
-
}
|
|
1212
|
+
} | {
|
|
1213
|
+
message: string;
|
|
1214
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
1215
|
+
created_at: string;
|
|
1216
|
+
} | {
|
|
1217
|
+
message: string;
|
|
1218
|
+
warning_code: "salto_site_user_suspended";
|
|
1219
|
+
created_at: string;
|
|
1220
|
+
})[];
|
|
1132
1221
|
display_name: string;
|
|
1133
1222
|
workspace_id: string;
|
|
1134
1223
|
is_managed: false;
|
|
@@ -1136,6 +1225,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1136
1225
|
acs_user_id: string;
|
|
1137
1226
|
is_suspended: boolean;
|
|
1138
1227
|
email?: string | undefined;
|
|
1228
|
+
errors?: any;
|
|
1139
1229
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1140
1230
|
external_type_display_name?: string | undefined;
|
|
1141
1231
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
@@ -4859,6 +4949,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
4859
4949
|
readonly TEDEE: "tedee";
|
|
4860
4950
|
readonly HONEYWELL_RESIDEO: "honeywell_resideo";
|
|
4861
4951
|
readonly LATCH: "latch";
|
|
4952
|
+
readonly AKILES: "akiles";
|
|
4862
4953
|
};
|
|
4863
4954
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
4864
4955
|
declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -9217,6 +9308,7 @@ declare const _default: {
|
|
|
9217
9308
|
format: string;
|
|
9218
9309
|
type: string;
|
|
9219
9310
|
};
|
|
9311
|
+
errors: {};
|
|
9220
9312
|
external_type: {
|
|
9221
9313
|
enum: string[];
|
|
9222
9314
|
type: string;
|
|
@@ -9265,21 +9357,23 @@ declare const _default: {
|
|
|
9265
9357
|
};
|
|
9266
9358
|
warnings: {
|
|
9267
9359
|
items: {
|
|
9268
|
-
|
|
9269
|
-
|
|
9270
|
-
|
|
9271
|
-
|
|
9272
|
-
|
|
9273
|
-
|
|
9274
|
-
|
|
9275
|
-
|
|
9276
|
-
|
|
9277
|
-
|
|
9278
|
-
|
|
9360
|
+
oneOf: {
|
|
9361
|
+
properties: {
|
|
9362
|
+
created_at: {
|
|
9363
|
+
format: string;
|
|
9364
|
+
type: string;
|
|
9365
|
+
};
|
|
9366
|
+
message: {
|
|
9367
|
+
type: string;
|
|
9368
|
+
};
|
|
9369
|
+
warning_code: {
|
|
9370
|
+
enum: string[];
|
|
9371
|
+
type: string;
|
|
9372
|
+
};
|
|
9279
9373
|
};
|
|
9280
|
-
|
|
9281
|
-
|
|
9282
|
-
|
|
9374
|
+
required: string[];
|
|
9375
|
+
type: string;
|
|
9376
|
+
}[];
|
|
9283
9377
|
};
|
|
9284
9378
|
type: string;
|
|
9285
9379
|
};
|
|
@@ -17372,6 +17466,9 @@ declare const _default: {
|
|
|
17372
17466
|
format: string;
|
|
17373
17467
|
type: string;
|
|
17374
17468
|
};
|
|
17469
|
+
errors: {
|
|
17470
|
+
$ref: string;
|
|
17471
|
+
};
|
|
17375
17472
|
external_type: {
|
|
17376
17473
|
enum: string[];
|
|
17377
17474
|
type: string;
|
|
@@ -17420,21 +17517,23 @@ declare const _default: {
|
|
|
17420
17517
|
};
|
|
17421
17518
|
warnings: {
|
|
17422
17519
|
items: {
|
|
17423
|
-
|
|
17424
|
-
|
|
17425
|
-
|
|
17426
|
-
|
|
17427
|
-
|
|
17428
|
-
|
|
17429
|
-
|
|
17430
|
-
|
|
17431
|
-
|
|
17432
|
-
|
|
17433
|
-
|
|
17520
|
+
oneOf: {
|
|
17521
|
+
properties: {
|
|
17522
|
+
created_at: {
|
|
17523
|
+
format: string;
|
|
17524
|
+
type: string;
|
|
17525
|
+
};
|
|
17526
|
+
message: {
|
|
17527
|
+
type: string;
|
|
17528
|
+
};
|
|
17529
|
+
warning_code: {
|
|
17530
|
+
enum: string[];
|
|
17531
|
+
type: string;
|
|
17532
|
+
};
|
|
17434
17533
|
};
|
|
17435
|
-
|
|
17436
|
-
|
|
17437
|
-
|
|
17534
|
+
required: string[];
|
|
17535
|
+
type: string;
|
|
17536
|
+
}[];
|
|
17438
17537
|
};
|
|
17439
17538
|
type: string;
|
|
17440
17539
|
};
|
|
@@ -17565,6 +17664,9 @@ declare const _default: {
|
|
|
17565
17664
|
format: string;
|
|
17566
17665
|
type: string;
|
|
17567
17666
|
};
|
|
17667
|
+
errors: {
|
|
17668
|
+
$ref: string;
|
|
17669
|
+
};
|
|
17568
17670
|
external_type: {
|
|
17569
17671
|
enum: string[];
|
|
17570
17672
|
type: string;
|
|
@@ -17613,21 +17715,23 @@ declare const _default: {
|
|
|
17613
17715
|
};
|
|
17614
17716
|
warnings: {
|
|
17615
17717
|
items: {
|
|
17616
|
-
|
|
17617
|
-
|
|
17618
|
-
|
|
17619
|
-
|
|
17620
|
-
|
|
17621
|
-
|
|
17622
|
-
|
|
17623
|
-
|
|
17624
|
-
|
|
17625
|
-
|
|
17626
|
-
|
|
17718
|
+
oneOf: {
|
|
17719
|
+
properties: {
|
|
17720
|
+
created_at: {
|
|
17721
|
+
format: string;
|
|
17722
|
+
type: string;
|
|
17723
|
+
};
|
|
17724
|
+
message: {
|
|
17725
|
+
type: string;
|
|
17726
|
+
};
|
|
17727
|
+
warning_code: {
|
|
17728
|
+
enum: string[];
|
|
17729
|
+
type: string;
|
|
17730
|
+
};
|
|
17627
17731
|
};
|
|
17628
|
-
|
|
17629
|
-
|
|
17630
|
-
|
|
17732
|
+
required: string[];
|
|
17733
|
+
type: string;
|
|
17734
|
+
}[];
|
|
17631
17735
|
};
|
|
17632
17736
|
type: string;
|
|
17633
17737
|
};
|
|
@@ -28375,7 +28479,16 @@ interface Routes {
|
|
|
28375
28479
|
created_at: string;
|
|
28376
28480
|
message: string;
|
|
28377
28481
|
warning_code: 'being_deleted';
|
|
28482
|
+
} | {
|
|
28483
|
+
created_at: string;
|
|
28484
|
+
message: string;
|
|
28485
|
+
warning_code: 'salto_ks_user_not_subscribed';
|
|
28486
|
+
} | {
|
|
28487
|
+
created_at: string;
|
|
28488
|
+
message: string;
|
|
28489
|
+
warning_code: 'salto_site_user_suspended';
|
|
28378
28490
|
}>;
|
|
28491
|
+
errors?: any;
|
|
28379
28492
|
full_name?: string | undefined;
|
|
28380
28493
|
/**
|
|
28381
28494
|
* @deprecated use email_address. */
|
|
@@ -29425,7 +29538,16 @@ interface Routes {
|
|
|
29425
29538
|
created_at: string;
|
|
29426
29539
|
message: string;
|
|
29427
29540
|
warning_code: 'being_deleted';
|
|
29541
|
+
} | {
|
|
29542
|
+
created_at: string;
|
|
29543
|
+
message: string;
|
|
29544
|
+
warning_code: 'salto_ks_user_not_subscribed';
|
|
29545
|
+
} | {
|
|
29546
|
+
created_at: string;
|
|
29547
|
+
message: string;
|
|
29548
|
+
warning_code: 'salto_site_user_suspended';
|
|
29428
29549
|
}>;
|
|
29550
|
+
errors?: any;
|
|
29429
29551
|
full_name?: string | undefined;
|
|
29430
29552
|
/**
|
|
29431
29553
|
* @deprecated use email_address. */
|
|
@@ -29481,7 +29603,16 @@ interface Routes {
|
|
|
29481
29603
|
created_at: string;
|
|
29482
29604
|
message: string;
|
|
29483
29605
|
warning_code: 'being_deleted';
|
|
29606
|
+
} | {
|
|
29607
|
+
created_at: string;
|
|
29608
|
+
message: string;
|
|
29609
|
+
warning_code: 'salto_ks_user_not_subscribed';
|
|
29610
|
+
} | {
|
|
29611
|
+
created_at: string;
|
|
29612
|
+
message: string;
|
|
29613
|
+
warning_code: 'salto_site_user_suspended';
|
|
29484
29614
|
}>;
|
|
29615
|
+
errors?: any;
|
|
29485
29616
|
full_name?: string | undefined;
|
|
29486
29617
|
/**
|
|
29487
29618
|
* @deprecated use email_address. */
|
|
@@ -29531,7 +29662,16 @@ interface Routes {
|
|
|
29531
29662
|
created_at: string;
|
|
29532
29663
|
message: string;
|
|
29533
29664
|
warning_code: 'being_deleted';
|
|
29665
|
+
} | {
|
|
29666
|
+
created_at: string;
|
|
29667
|
+
message: string;
|
|
29668
|
+
warning_code: 'salto_ks_user_not_subscribed';
|
|
29669
|
+
} | {
|
|
29670
|
+
created_at: string;
|
|
29671
|
+
message: string;
|
|
29672
|
+
warning_code: 'salto_site_user_suspended';
|
|
29534
29673
|
}>;
|
|
29674
|
+
errors?: any;
|
|
29535
29675
|
full_name?: string | undefined;
|
|
29536
29676
|
/**
|
|
29537
29677
|
* @deprecated use email_address. */
|
|
@@ -29646,7 +29786,16 @@ interface Routes {
|
|
|
29646
29786
|
created_at: string;
|
|
29647
29787
|
message: string;
|
|
29648
29788
|
warning_code: 'being_deleted';
|
|
29789
|
+
} | {
|
|
29790
|
+
created_at: string;
|
|
29791
|
+
message: string;
|
|
29792
|
+
warning_code: 'salto_ks_user_not_subscribed';
|
|
29793
|
+
} | {
|
|
29794
|
+
created_at: string;
|
|
29795
|
+
message: string;
|
|
29796
|
+
warning_code: 'salto_site_user_suspended';
|
|
29649
29797
|
}>;
|
|
29798
|
+
errors?: any;
|
|
29650
29799
|
full_name?: string | undefined;
|
|
29651
29800
|
/**
|
|
29652
29801
|
* @deprecated use email_address. */
|
|
@@ -29695,7 +29844,16 @@ interface Routes {
|
|
|
29695
29844
|
created_at: string;
|
|
29696
29845
|
message: string;
|
|
29697
29846
|
warning_code: 'being_deleted';
|
|
29847
|
+
} | {
|
|
29848
|
+
created_at: string;
|
|
29849
|
+
message: string;
|
|
29850
|
+
warning_code: 'salto_ks_user_not_subscribed';
|
|
29851
|
+
} | {
|
|
29852
|
+
created_at: string;
|
|
29853
|
+
message: string;
|
|
29854
|
+
warning_code: 'salto_site_user_suspended';
|
|
29698
29855
|
}>;
|
|
29856
|
+
errors?: any;
|
|
29699
29857
|
full_name?: string | undefined;
|
|
29700
29858
|
/**
|
|
29701
29859
|
* @deprecated use email_address. */
|
|
@@ -30647,7 +30805,7 @@ interface Routes {
|
|
|
30647
30805
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
30648
30806
|
custom_redirect_url?: string | undefined;
|
|
30649
30807
|
custom_redirect_failure_url?: string | undefined;
|
|
30650
|
-
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
30808
|
+
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
30651
30809
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
30652
30810
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
30653
30811
|
automatically_manage_new_devices?: boolean;
|
|
@@ -31747,7 +31905,7 @@ interface Routes {
|
|
|
31747
31905
|
formData: {};
|
|
31748
31906
|
jsonResponse: {
|
|
31749
31907
|
device_providers: Array<{
|
|
31750
|
-
device_provider_name: 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch';
|
|
31908
|
+
device_provider_name: 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles';
|
|
31751
31909
|
display_name: string;
|
|
31752
31910
|
image_url: string;
|
|
31753
31911
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -40677,7 +40835,16 @@ interface Routes {
|
|
|
40677
40835
|
created_at: string;
|
|
40678
40836
|
message: string;
|
|
40679
40837
|
warning_code: 'being_deleted';
|
|
40838
|
+
} | {
|
|
40839
|
+
created_at: string;
|
|
40840
|
+
message: string;
|
|
40841
|
+
warning_code: 'salto_ks_user_not_subscribed';
|
|
40842
|
+
} | {
|
|
40843
|
+
created_at: string;
|
|
40844
|
+
message: string;
|
|
40845
|
+
warning_code: 'salto_site_user_suspended';
|
|
40680
40846
|
}>;
|
|
40847
|
+
errors?: any;
|
|
40681
40848
|
full_name?: string | undefined;
|
|
40682
40849
|
/**
|
|
40683
40850
|
* @deprecated use email_address. */
|