@seamapi/types 1.242.1 → 1.243.1
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 +106 -124
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +427 -273
- package/lib/seam/connect/models/acs/acs-user.d.ts +45 -100
- package/lib/seam/connect/models/acs/acs-user.js +4 -8
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +78 -0
- package/lib/seam/connect/models/devices/device-metadata.js +14 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +102 -0
- package/lib/seam/connect/models/devices/phone.d.ts +78 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +78 -0
- package/lib/seam/connect/openapi.d.ts +52 -138
- package/lib/seam/connect/openapi.js +86 -114
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +165 -63
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +4 -8
- package/src/lib/seam/connect/models/devices/device-metadata.ts +16 -0
- package/src/lib/seam/connect/openapi.ts +86 -123
- package/src/lib/seam/connect/route-types.ts +189 -70
|
@@ -804,14 +804,68 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
804
804
|
lock_id: z.ZodNumber;
|
|
805
805
|
lock_alias: z.ZodString;
|
|
806
806
|
feature_value: z.ZodString;
|
|
807
|
+
features: z.ZodObject<{
|
|
808
|
+
passcode: z.ZodBoolean;
|
|
809
|
+
passcode_management: z.ZodBoolean;
|
|
810
|
+
unlock_via_gateway: z.ZodBoolean;
|
|
811
|
+
lock_command: z.ZodBoolean;
|
|
812
|
+
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
813
|
+
}, "strip", z.ZodTypeAny, {
|
|
814
|
+
passcode: boolean;
|
|
815
|
+
passcode_management: boolean;
|
|
816
|
+
unlock_via_gateway: boolean;
|
|
817
|
+
lock_command: boolean;
|
|
818
|
+
incomplete_keyboard_passcode: boolean;
|
|
819
|
+
}, {
|
|
820
|
+
passcode: boolean;
|
|
821
|
+
passcode_management: boolean;
|
|
822
|
+
unlock_via_gateway: boolean;
|
|
823
|
+
lock_command: boolean;
|
|
824
|
+
incomplete_keyboard_passcode: boolean;
|
|
825
|
+
}>;
|
|
826
|
+
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
827
|
+
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
828
|
+
wireless_keypad_id: z.ZodNumber;
|
|
829
|
+
wireless_keypad_name: z.ZodString;
|
|
830
|
+
}, "strip", z.ZodTypeAny, {
|
|
831
|
+
wireless_keypad_id: number;
|
|
832
|
+
wireless_keypad_name: string;
|
|
833
|
+
}, {
|
|
834
|
+
wireless_keypad_id: number;
|
|
835
|
+
wireless_keypad_name: string;
|
|
836
|
+
}>, "many">>;
|
|
807
837
|
}, "strip", z.ZodTypeAny, {
|
|
808
838
|
lock_id: number;
|
|
809
839
|
lock_alias: string;
|
|
810
840
|
feature_value: string;
|
|
841
|
+
features: {
|
|
842
|
+
passcode: boolean;
|
|
843
|
+
passcode_management: boolean;
|
|
844
|
+
unlock_via_gateway: boolean;
|
|
845
|
+
lock_command: boolean;
|
|
846
|
+
incomplete_keyboard_passcode: boolean;
|
|
847
|
+
};
|
|
848
|
+
has_gateway?: boolean | undefined;
|
|
849
|
+
wireless_keypads?: {
|
|
850
|
+
wireless_keypad_id: number;
|
|
851
|
+
wireless_keypad_name: string;
|
|
852
|
+
}[] | undefined;
|
|
811
853
|
}, {
|
|
812
854
|
lock_id: number;
|
|
813
855
|
lock_alias: string;
|
|
814
856
|
feature_value: string;
|
|
857
|
+
features: {
|
|
858
|
+
passcode: boolean;
|
|
859
|
+
passcode_management: boolean;
|
|
860
|
+
unlock_via_gateway: boolean;
|
|
861
|
+
lock_command: boolean;
|
|
862
|
+
incomplete_keyboard_passcode: boolean;
|
|
863
|
+
};
|
|
864
|
+
has_gateway?: boolean | undefined;
|
|
865
|
+
wireless_keypads?: {
|
|
866
|
+
wireless_keypad_id: number;
|
|
867
|
+
wireless_keypad_name: string;
|
|
868
|
+
}[] | undefined;
|
|
815
869
|
}>>;
|
|
816
870
|
seam_bridge_metadata: z.ZodOptional<z.ZodObject<{
|
|
817
871
|
unlock_method: z.ZodOptional<z.ZodEnum<["bridge", "doorking"]>>;
|
|
@@ -1146,6 +1200,18 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1146
1200
|
lock_id: number;
|
|
1147
1201
|
lock_alias: string;
|
|
1148
1202
|
feature_value: string;
|
|
1203
|
+
features: {
|
|
1204
|
+
passcode: boolean;
|
|
1205
|
+
passcode_management: boolean;
|
|
1206
|
+
unlock_via_gateway: boolean;
|
|
1207
|
+
lock_command: boolean;
|
|
1208
|
+
incomplete_keyboard_passcode: boolean;
|
|
1209
|
+
};
|
|
1210
|
+
has_gateway?: boolean | undefined;
|
|
1211
|
+
wireless_keypads?: {
|
|
1212
|
+
wireless_keypad_id: number;
|
|
1213
|
+
wireless_keypad_name: string;
|
|
1214
|
+
}[] | undefined;
|
|
1149
1215
|
} | undefined;
|
|
1150
1216
|
seam_bridge_metadata?: {
|
|
1151
1217
|
name: string;
|
|
@@ -1336,6 +1402,18 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1336
1402
|
lock_id: number;
|
|
1337
1403
|
lock_alias: string;
|
|
1338
1404
|
feature_value: string;
|
|
1405
|
+
features: {
|
|
1406
|
+
passcode: boolean;
|
|
1407
|
+
passcode_management: boolean;
|
|
1408
|
+
unlock_via_gateway: boolean;
|
|
1409
|
+
lock_command: boolean;
|
|
1410
|
+
incomplete_keyboard_passcode: boolean;
|
|
1411
|
+
};
|
|
1412
|
+
has_gateway?: boolean | undefined;
|
|
1413
|
+
wireless_keypads?: {
|
|
1414
|
+
wireless_keypad_id: number;
|
|
1415
|
+
wireless_keypad_name: string;
|
|
1416
|
+
}[] | undefined;
|
|
1339
1417
|
} | undefined;
|
|
1340
1418
|
seam_bridge_metadata?: {
|
|
1341
1419
|
name: string;
|
|
@@ -2054,6 +2132,18 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2054
2132
|
lock_id: number;
|
|
2055
2133
|
lock_alias: string;
|
|
2056
2134
|
feature_value: string;
|
|
2135
|
+
features: {
|
|
2136
|
+
passcode: boolean;
|
|
2137
|
+
passcode_management: boolean;
|
|
2138
|
+
unlock_via_gateway: boolean;
|
|
2139
|
+
lock_command: boolean;
|
|
2140
|
+
incomplete_keyboard_passcode: boolean;
|
|
2141
|
+
};
|
|
2142
|
+
has_gateway?: boolean | undefined;
|
|
2143
|
+
wireless_keypads?: {
|
|
2144
|
+
wireless_keypad_id: number;
|
|
2145
|
+
wireless_keypad_name: string;
|
|
2146
|
+
}[] | undefined;
|
|
2057
2147
|
} | undefined;
|
|
2058
2148
|
seam_bridge_metadata?: {
|
|
2059
2149
|
name: string;
|
|
@@ -2421,6 +2511,18 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2421
2511
|
lock_id: number;
|
|
2422
2512
|
lock_alias: string;
|
|
2423
2513
|
feature_value: string;
|
|
2514
|
+
features: {
|
|
2515
|
+
passcode: boolean;
|
|
2516
|
+
passcode_management: boolean;
|
|
2517
|
+
unlock_via_gateway: boolean;
|
|
2518
|
+
lock_command: boolean;
|
|
2519
|
+
incomplete_keyboard_passcode: boolean;
|
|
2520
|
+
};
|
|
2521
|
+
has_gateway?: boolean | undefined;
|
|
2522
|
+
wireless_keypads?: {
|
|
2523
|
+
wireless_keypad_id: number;
|
|
2524
|
+
wireless_keypad_name: string;
|
|
2525
|
+
}[] | undefined;
|
|
2424
2526
|
} | undefined;
|
|
2425
2527
|
seam_bridge_metadata?: {
|
|
2426
2528
|
name: string;
|
|
@@ -586,14 +586,68 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
586
586
|
lock_id: z.ZodNumber;
|
|
587
587
|
lock_alias: z.ZodString;
|
|
588
588
|
feature_value: z.ZodString;
|
|
589
|
+
features: z.ZodObject<{
|
|
590
|
+
passcode: z.ZodBoolean;
|
|
591
|
+
passcode_management: z.ZodBoolean;
|
|
592
|
+
unlock_via_gateway: z.ZodBoolean;
|
|
593
|
+
lock_command: z.ZodBoolean;
|
|
594
|
+
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
595
|
+
}, "strip", z.ZodTypeAny, {
|
|
596
|
+
passcode: boolean;
|
|
597
|
+
passcode_management: boolean;
|
|
598
|
+
unlock_via_gateway: boolean;
|
|
599
|
+
lock_command: boolean;
|
|
600
|
+
incomplete_keyboard_passcode: boolean;
|
|
601
|
+
}, {
|
|
602
|
+
passcode: boolean;
|
|
603
|
+
passcode_management: boolean;
|
|
604
|
+
unlock_via_gateway: boolean;
|
|
605
|
+
lock_command: boolean;
|
|
606
|
+
incomplete_keyboard_passcode: boolean;
|
|
607
|
+
}>;
|
|
608
|
+
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
609
|
+
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
610
|
+
wireless_keypad_id: z.ZodNumber;
|
|
611
|
+
wireless_keypad_name: z.ZodString;
|
|
612
|
+
}, "strip", z.ZodTypeAny, {
|
|
613
|
+
wireless_keypad_id: number;
|
|
614
|
+
wireless_keypad_name: string;
|
|
615
|
+
}, {
|
|
616
|
+
wireless_keypad_id: number;
|
|
617
|
+
wireless_keypad_name: string;
|
|
618
|
+
}>, "many">>;
|
|
589
619
|
}, "strip", z.ZodTypeAny, {
|
|
590
620
|
lock_id: number;
|
|
591
621
|
lock_alias: string;
|
|
592
622
|
feature_value: string;
|
|
623
|
+
features: {
|
|
624
|
+
passcode: boolean;
|
|
625
|
+
passcode_management: boolean;
|
|
626
|
+
unlock_via_gateway: boolean;
|
|
627
|
+
lock_command: boolean;
|
|
628
|
+
incomplete_keyboard_passcode: boolean;
|
|
629
|
+
};
|
|
630
|
+
has_gateway?: boolean | undefined;
|
|
631
|
+
wireless_keypads?: {
|
|
632
|
+
wireless_keypad_id: number;
|
|
633
|
+
wireless_keypad_name: string;
|
|
634
|
+
}[] | undefined;
|
|
593
635
|
}, {
|
|
594
636
|
lock_id: number;
|
|
595
637
|
lock_alias: string;
|
|
596
638
|
feature_value: string;
|
|
639
|
+
features: {
|
|
640
|
+
passcode: boolean;
|
|
641
|
+
passcode_management: boolean;
|
|
642
|
+
unlock_via_gateway: boolean;
|
|
643
|
+
lock_command: boolean;
|
|
644
|
+
incomplete_keyboard_passcode: boolean;
|
|
645
|
+
};
|
|
646
|
+
has_gateway?: boolean | undefined;
|
|
647
|
+
wireless_keypads?: {
|
|
648
|
+
wireless_keypad_id: number;
|
|
649
|
+
wireless_keypad_name: string;
|
|
650
|
+
}[] | undefined;
|
|
597
651
|
}>>;
|
|
598
652
|
seam_bridge_metadata: z.ZodOptional<z.ZodObject<{
|
|
599
653
|
unlock_method: z.ZodOptional<z.ZodEnum<["bridge", "doorking"]>>;
|
|
@@ -928,6 +982,18 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
928
982
|
lock_id: number;
|
|
929
983
|
lock_alias: string;
|
|
930
984
|
feature_value: string;
|
|
985
|
+
features: {
|
|
986
|
+
passcode: boolean;
|
|
987
|
+
passcode_management: boolean;
|
|
988
|
+
unlock_via_gateway: boolean;
|
|
989
|
+
lock_command: boolean;
|
|
990
|
+
incomplete_keyboard_passcode: boolean;
|
|
991
|
+
};
|
|
992
|
+
has_gateway?: boolean | undefined;
|
|
993
|
+
wireless_keypads?: {
|
|
994
|
+
wireless_keypad_id: number;
|
|
995
|
+
wireless_keypad_name: string;
|
|
996
|
+
}[] | undefined;
|
|
931
997
|
} | undefined;
|
|
932
998
|
seam_bridge_metadata?: {
|
|
933
999
|
name: string;
|
|
@@ -1118,6 +1184,18 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1118
1184
|
lock_id: number;
|
|
1119
1185
|
lock_alias: string;
|
|
1120
1186
|
feature_value: string;
|
|
1187
|
+
features: {
|
|
1188
|
+
passcode: boolean;
|
|
1189
|
+
passcode_management: boolean;
|
|
1190
|
+
unlock_via_gateway: boolean;
|
|
1191
|
+
lock_command: boolean;
|
|
1192
|
+
incomplete_keyboard_passcode: boolean;
|
|
1193
|
+
};
|
|
1194
|
+
has_gateway?: boolean | undefined;
|
|
1195
|
+
wireless_keypads?: {
|
|
1196
|
+
wireless_keypad_id: number;
|
|
1197
|
+
wireless_keypad_name: string;
|
|
1198
|
+
}[] | undefined;
|
|
1121
1199
|
} | undefined;
|
|
1122
1200
|
seam_bridge_metadata?: {
|
|
1123
1201
|
name: string;
|
|
@@ -585,14 +585,68 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
585
585
|
lock_id: z.ZodNumber;
|
|
586
586
|
lock_alias: z.ZodString;
|
|
587
587
|
feature_value: z.ZodString;
|
|
588
|
+
features: z.ZodObject<{
|
|
589
|
+
passcode: z.ZodBoolean;
|
|
590
|
+
passcode_management: z.ZodBoolean;
|
|
591
|
+
unlock_via_gateway: z.ZodBoolean;
|
|
592
|
+
lock_command: z.ZodBoolean;
|
|
593
|
+
incomplete_keyboard_passcode: z.ZodBoolean;
|
|
594
|
+
}, "strip", z.ZodTypeAny, {
|
|
595
|
+
passcode: boolean;
|
|
596
|
+
passcode_management: boolean;
|
|
597
|
+
unlock_via_gateway: boolean;
|
|
598
|
+
lock_command: boolean;
|
|
599
|
+
incomplete_keyboard_passcode: boolean;
|
|
600
|
+
}, {
|
|
601
|
+
passcode: boolean;
|
|
602
|
+
passcode_management: boolean;
|
|
603
|
+
unlock_via_gateway: boolean;
|
|
604
|
+
lock_command: boolean;
|
|
605
|
+
incomplete_keyboard_passcode: boolean;
|
|
606
|
+
}>;
|
|
607
|
+
has_gateway: z.ZodOptional<z.ZodBoolean>;
|
|
608
|
+
wireless_keypads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
609
|
+
wireless_keypad_id: z.ZodNumber;
|
|
610
|
+
wireless_keypad_name: z.ZodString;
|
|
611
|
+
}, "strip", z.ZodTypeAny, {
|
|
612
|
+
wireless_keypad_id: number;
|
|
613
|
+
wireless_keypad_name: string;
|
|
614
|
+
}, {
|
|
615
|
+
wireless_keypad_id: number;
|
|
616
|
+
wireless_keypad_name: string;
|
|
617
|
+
}>, "many">>;
|
|
588
618
|
}, "strip", z.ZodTypeAny, {
|
|
589
619
|
lock_id: number;
|
|
590
620
|
lock_alias: string;
|
|
591
621
|
feature_value: string;
|
|
622
|
+
features: {
|
|
623
|
+
passcode: boolean;
|
|
624
|
+
passcode_management: boolean;
|
|
625
|
+
unlock_via_gateway: boolean;
|
|
626
|
+
lock_command: boolean;
|
|
627
|
+
incomplete_keyboard_passcode: boolean;
|
|
628
|
+
};
|
|
629
|
+
has_gateway?: boolean | undefined;
|
|
630
|
+
wireless_keypads?: {
|
|
631
|
+
wireless_keypad_id: number;
|
|
632
|
+
wireless_keypad_name: string;
|
|
633
|
+
}[] | undefined;
|
|
592
634
|
}, {
|
|
593
635
|
lock_id: number;
|
|
594
636
|
lock_alias: string;
|
|
595
637
|
feature_value: string;
|
|
638
|
+
features: {
|
|
639
|
+
passcode: boolean;
|
|
640
|
+
passcode_management: boolean;
|
|
641
|
+
unlock_via_gateway: boolean;
|
|
642
|
+
lock_command: boolean;
|
|
643
|
+
incomplete_keyboard_passcode: boolean;
|
|
644
|
+
};
|
|
645
|
+
has_gateway?: boolean | undefined;
|
|
646
|
+
wireless_keypads?: {
|
|
647
|
+
wireless_keypad_id: number;
|
|
648
|
+
wireless_keypad_name: string;
|
|
649
|
+
}[] | undefined;
|
|
596
650
|
}>>;
|
|
597
651
|
seam_bridge_metadata: z.ZodOptional<z.ZodObject<{
|
|
598
652
|
unlock_method: z.ZodOptional<z.ZodEnum<["bridge", "doorking"]>>;
|
|
@@ -927,6 +981,18 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
927
981
|
lock_id: number;
|
|
928
982
|
lock_alias: string;
|
|
929
983
|
feature_value: string;
|
|
984
|
+
features: {
|
|
985
|
+
passcode: boolean;
|
|
986
|
+
passcode_management: boolean;
|
|
987
|
+
unlock_via_gateway: boolean;
|
|
988
|
+
lock_command: boolean;
|
|
989
|
+
incomplete_keyboard_passcode: boolean;
|
|
990
|
+
};
|
|
991
|
+
has_gateway?: boolean | undefined;
|
|
992
|
+
wireless_keypads?: {
|
|
993
|
+
wireless_keypad_id: number;
|
|
994
|
+
wireless_keypad_name: string;
|
|
995
|
+
}[] | undefined;
|
|
930
996
|
} | undefined;
|
|
931
997
|
seam_bridge_metadata?: {
|
|
932
998
|
name: string;
|
|
@@ -1117,6 +1183,18 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1117
1183
|
lock_id: number;
|
|
1118
1184
|
lock_alias: string;
|
|
1119
1185
|
feature_value: string;
|
|
1186
|
+
features: {
|
|
1187
|
+
passcode: boolean;
|
|
1188
|
+
passcode_management: boolean;
|
|
1189
|
+
unlock_via_gateway: boolean;
|
|
1190
|
+
lock_command: boolean;
|
|
1191
|
+
incomplete_keyboard_passcode: boolean;
|
|
1192
|
+
};
|
|
1193
|
+
has_gateway?: boolean | undefined;
|
|
1194
|
+
wireless_keypads?: {
|
|
1195
|
+
wireless_keypad_id: number;
|
|
1196
|
+
wireless_keypad_name: string;
|
|
1197
|
+
}[] | undefined;
|
|
1120
1198
|
} | undefined;
|
|
1121
1199
|
seam_bridge_metadata?: {
|
|
1122
1200
|
name: string;
|
|
@@ -717,7 +717,7 @@ declare const _default: {
|
|
|
717
717
|
errors: {
|
|
718
718
|
items: {
|
|
719
719
|
description: string;
|
|
720
|
-
oneOf:
|
|
720
|
+
oneOf: {
|
|
721
721
|
description: string;
|
|
722
722
|
properties: {
|
|
723
723
|
created_at: {
|
|
@@ -733,31 +733,10 @@ declare const _default: {
|
|
|
733
733
|
description: string;
|
|
734
734
|
type: string;
|
|
735
735
|
};
|
|
736
|
-
warning_code?: never;
|
|
737
736
|
};
|
|
738
737
|
required: string[];
|
|
739
738
|
type: string;
|
|
740
|
-
}
|
|
741
|
-
description: string;
|
|
742
|
-
properties: {
|
|
743
|
-
created_at: {
|
|
744
|
-
description: string;
|
|
745
|
-
format: string;
|
|
746
|
-
type: string;
|
|
747
|
-
};
|
|
748
|
-
message: {
|
|
749
|
-
description: string;
|
|
750
|
-
type: string;
|
|
751
|
-
};
|
|
752
|
-
warning_code: {
|
|
753
|
-
enum: string[];
|
|
754
|
-
type: string;
|
|
755
|
-
};
|
|
756
|
-
error_code?: never;
|
|
757
|
-
};
|
|
758
|
-
required: string[];
|
|
759
|
-
type: string;
|
|
760
|
-
})[];
|
|
739
|
+
}[];
|
|
761
740
|
};
|
|
762
741
|
type: string;
|
|
763
742
|
};
|
|
@@ -810,35 +789,14 @@ declare const _default: {
|
|
|
810
789
|
warnings: {
|
|
811
790
|
items: {
|
|
812
791
|
description: string;
|
|
813
|
-
oneOf:
|
|
814
|
-
description: string;
|
|
815
|
-
properties: {
|
|
816
|
-
created_at: {
|
|
817
|
-
format: string;
|
|
818
|
-
type: string;
|
|
819
|
-
description?: never;
|
|
820
|
-
};
|
|
821
|
-
message: {
|
|
822
|
-
type: string;
|
|
823
|
-
description?: never;
|
|
824
|
-
};
|
|
825
|
-
warning_code: {
|
|
826
|
-
enum: string[];
|
|
827
|
-
type: string;
|
|
828
|
-
};
|
|
829
|
-
};
|
|
830
|
-
required: string[];
|
|
831
|
-
type: string;
|
|
832
|
-
} | {
|
|
792
|
+
oneOf: {
|
|
833
793
|
description: string;
|
|
834
794
|
properties: {
|
|
835
795
|
created_at: {
|
|
836
|
-
description: string;
|
|
837
796
|
format: string;
|
|
838
797
|
type: string;
|
|
839
798
|
};
|
|
840
799
|
message: {
|
|
841
|
-
description: string;
|
|
842
800
|
type: string;
|
|
843
801
|
};
|
|
844
802
|
warning_code: {
|
|
@@ -848,7 +806,7 @@ declare const _default: {
|
|
|
848
806
|
};
|
|
849
807
|
required: string[];
|
|
850
808
|
type: string;
|
|
851
|
-
}
|
|
809
|
+
}[];
|
|
852
810
|
};
|
|
853
811
|
type: string;
|
|
854
812
|
};
|
|
@@ -2198,6 +2156,30 @@ declare const _default: {
|
|
|
2198
2156
|
feature_value: {
|
|
2199
2157
|
type: string;
|
|
2200
2158
|
};
|
|
2159
|
+
features: {
|
|
2160
|
+
properties: {
|
|
2161
|
+
incomplete_keyboard_passcode: {
|
|
2162
|
+
type: string;
|
|
2163
|
+
};
|
|
2164
|
+
lock_command: {
|
|
2165
|
+
type: string;
|
|
2166
|
+
};
|
|
2167
|
+
passcode: {
|
|
2168
|
+
type: string;
|
|
2169
|
+
};
|
|
2170
|
+
passcode_management: {
|
|
2171
|
+
type: string;
|
|
2172
|
+
};
|
|
2173
|
+
unlock_via_gateway: {
|
|
2174
|
+
type: string;
|
|
2175
|
+
};
|
|
2176
|
+
};
|
|
2177
|
+
required: string[];
|
|
2178
|
+
type: string;
|
|
2179
|
+
};
|
|
2180
|
+
has_gateway: {
|
|
2181
|
+
type: string;
|
|
2182
|
+
};
|
|
2201
2183
|
lock_alias: {
|
|
2202
2184
|
type: string;
|
|
2203
2185
|
};
|
|
@@ -2205,6 +2187,22 @@ declare const _default: {
|
|
|
2205
2187
|
format: string;
|
|
2206
2188
|
type: string;
|
|
2207
2189
|
};
|
|
2190
|
+
wireless_keypads: {
|
|
2191
|
+
items: {
|
|
2192
|
+
properties: {
|
|
2193
|
+
wireless_keypad_id: {
|
|
2194
|
+
format: string;
|
|
2195
|
+
type: string;
|
|
2196
|
+
};
|
|
2197
|
+
wireless_keypad_name: {
|
|
2198
|
+
type: string;
|
|
2199
|
+
};
|
|
2200
|
+
};
|
|
2201
|
+
required: string[];
|
|
2202
|
+
type: string;
|
|
2203
|
+
};
|
|
2204
|
+
type: string;
|
|
2205
|
+
};
|
|
2208
2206
|
};
|
|
2209
2207
|
required: string[];
|
|
2210
2208
|
type: string;
|
|
@@ -9002,7 +9000,7 @@ declare const _default: {
|
|
|
9002
9000
|
errors: {
|
|
9003
9001
|
items: {
|
|
9004
9002
|
description: string;
|
|
9005
|
-
oneOf:
|
|
9003
|
+
oneOf: {
|
|
9006
9004
|
description: string;
|
|
9007
9005
|
properties: {
|
|
9008
9006
|
created_at: {
|
|
@@ -9018,31 +9016,10 @@ declare const _default: {
|
|
|
9018
9016
|
description: string;
|
|
9019
9017
|
type: string;
|
|
9020
9018
|
};
|
|
9021
|
-
warning_code?: never;
|
|
9022
9019
|
};
|
|
9023
9020
|
required: string[];
|
|
9024
9021
|
type: string;
|
|
9025
|
-
}
|
|
9026
|
-
description: string;
|
|
9027
|
-
properties: {
|
|
9028
|
-
created_at: {
|
|
9029
|
-
description: string;
|
|
9030
|
-
format: string;
|
|
9031
|
-
type: string;
|
|
9032
|
-
};
|
|
9033
|
-
message: {
|
|
9034
|
-
description: string;
|
|
9035
|
-
type: string;
|
|
9036
|
-
};
|
|
9037
|
-
warning_code: {
|
|
9038
|
-
enum: string[];
|
|
9039
|
-
type: string;
|
|
9040
|
-
};
|
|
9041
|
-
error_code?: never;
|
|
9042
|
-
};
|
|
9043
|
-
required: string[];
|
|
9044
|
-
type: string;
|
|
9045
|
-
})[];
|
|
9022
|
+
}[];
|
|
9046
9023
|
};
|
|
9047
9024
|
type: string;
|
|
9048
9025
|
};
|
|
@@ -9095,35 +9072,14 @@ declare const _default: {
|
|
|
9095
9072
|
warnings: {
|
|
9096
9073
|
items: {
|
|
9097
9074
|
description: string;
|
|
9098
|
-
oneOf:
|
|
9099
|
-
description: string;
|
|
9100
|
-
properties: {
|
|
9101
|
-
created_at: {
|
|
9102
|
-
format: string;
|
|
9103
|
-
type: string;
|
|
9104
|
-
description?: never;
|
|
9105
|
-
};
|
|
9106
|
-
message: {
|
|
9107
|
-
type: string;
|
|
9108
|
-
description?: never;
|
|
9109
|
-
};
|
|
9110
|
-
warning_code: {
|
|
9111
|
-
enum: string[];
|
|
9112
|
-
type: string;
|
|
9113
|
-
};
|
|
9114
|
-
};
|
|
9115
|
-
required: string[];
|
|
9116
|
-
type: string;
|
|
9117
|
-
} | {
|
|
9075
|
+
oneOf: {
|
|
9118
9076
|
description: string;
|
|
9119
9077
|
properties: {
|
|
9120
9078
|
created_at: {
|
|
9121
|
-
description: string;
|
|
9122
9079
|
format: string;
|
|
9123
9080
|
type: string;
|
|
9124
9081
|
};
|
|
9125
9082
|
message: {
|
|
9126
|
-
description: string;
|
|
9127
9083
|
type: string;
|
|
9128
9084
|
};
|
|
9129
9085
|
warning_code: {
|
|
@@ -9133,7 +9089,7 @@ declare const _default: {
|
|
|
9133
9089
|
};
|
|
9134
9090
|
required: string[];
|
|
9135
9091
|
type: string;
|
|
9136
|
-
}
|
|
9092
|
+
}[];
|
|
9137
9093
|
};
|
|
9138
9094
|
type: string;
|
|
9139
9095
|
};
|
|
@@ -9256,7 +9212,7 @@ declare const _default: {
|
|
|
9256
9212
|
errors: {
|
|
9257
9213
|
items: {
|
|
9258
9214
|
description: string;
|
|
9259
|
-
oneOf:
|
|
9215
|
+
oneOf: {
|
|
9260
9216
|
description: string;
|
|
9261
9217
|
properties: {
|
|
9262
9218
|
created_at: {
|
|
@@ -9272,31 +9228,10 @@ declare const _default: {
|
|
|
9272
9228
|
description: string;
|
|
9273
9229
|
type: string;
|
|
9274
9230
|
};
|
|
9275
|
-
warning_code?: never;
|
|
9276
|
-
};
|
|
9277
|
-
required: string[];
|
|
9278
|
-
type: string;
|
|
9279
|
-
} | {
|
|
9280
|
-
description: string;
|
|
9281
|
-
properties: {
|
|
9282
|
-
created_at: {
|
|
9283
|
-
description: string;
|
|
9284
|
-
format: string;
|
|
9285
|
-
type: string;
|
|
9286
|
-
};
|
|
9287
|
-
message: {
|
|
9288
|
-
description: string;
|
|
9289
|
-
type: string;
|
|
9290
|
-
};
|
|
9291
|
-
warning_code: {
|
|
9292
|
-
enum: string[];
|
|
9293
|
-
type: string;
|
|
9294
|
-
};
|
|
9295
|
-
error_code?: never;
|
|
9296
9231
|
};
|
|
9297
9232
|
required: string[];
|
|
9298
9233
|
type: string;
|
|
9299
|
-
}
|
|
9234
|
+
}[];
|
|
9300
9235
|
};
|
|
9301
9236
|
type: string;
|
|
9302
9237
|
};
|
|
@@ -9349,36 +9284,15 @@ declare const _default: {
|
|
|
9349
9284
|
warnings: {
|
|
9350
9285
|
items: {
|
|
9351
9286
|
description: string;
|
|
9352
|
-
oneOf:
|
|
9287
|
+
oneOf: {
|
|
9353
9288
|
description: string;
|
|
9354
9289
|
properties: {
|
|
9355
9290
|
created_at: {
|
|
9356
9291
|
format: string;
|
|
9357
9292
|
type: string;
|
|
9358
|
-
description?: never;
|
|
9359
9293
|
};
|
|
9360
9294
|
message: {
|
|
9361
9295
|
type: string;
|
|
9362
|
-
description?: never;
|
|
9363
|
-
};
|
|
9364
|
-
warning_code: {
|
|
9365
|
-
enum: string[];
|
|
9366
|
-
type: string;
|
|
9367
|
-
};
|
|
9368
|
-
};
|
|
9369
|
-
required: string[];
|
|
9370
|
-
type: string;
|
|
9371
|
-
} | {
|
|
9372
|
-
description: string;
|
|
9373
|
-
properties: {
|
|
9374
|
-
created_at: {
|
|
9375
|
-
description: string;
|
|
9376
|
-
format: string;
|
|
9377
|
-
type: string;
|
|
9378
|
-
};
|
|
9379
|
-
message: {
|
|
9380
|
-
description: string;
|
|
9381
|
-
type: string;
|
|
9382
9296
|
};
|
|
9383
9297
|
warning_code: {
|
|
9384
9298
|
enum: string[];
|
|
@@ -9387,7 +9301,7 @@ declare const _default: {
|
|
|
9387
9301
|
};
|
|
9388
9302
|
required: string[];
|
|
9389
9303
|
type: string;
|
|
9390
|
-
}
|
|
9304
|
+
}[];
|
|
9391
9305
|
};
|
|
9392
9306
|
type: string;
|
|
9393
9307
|
};
|