@seamapi/types 1.59.0 → 1.60.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 +38 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +164 -4
- package/lib/seam/connect/openapi.d.ts +43 -0
- package/lib/seam/connect/openapi.js +38 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +121 -4
- package/lib/seam/connect/unstable/models/acs/system.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/system.js +2 -2
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +121 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +18 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +139 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +38 -2
- package/src/lib/seam/connect/route-types.ts +139 -4
- package/src/lib/seam/connect/unstable/models/acs/system.ts +2 -2
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +21 -0
package/dist/connect.d.cts
CHANGED
|
@@ -967,6 +967,49 @@ declare const _default: {
|
|
|
967
967
|
door_name: {
|
|
968
968
|
type: string;
|
|
969
969
|
};
|
|
970
|
+
iana_timezone: {
|
|
971
|
+
type: string;
|
|
972
|
+
};
|
|
973
|
+
predefined_time_slots: {
|
|
974
|
+
items: {
|
|
975
|
+
properties: {
|
|
976
|
+
check_in_time: {
|
|
977
|
+
type: string;
|
|
978
|
+
};
|
|
979
|
+
check_out_time: {
|
|
980
|
+
type: string;
|
|
981
|
+
};
|
|
982
|
+
dormakaba_oracode_user_level_id: {
|
|
983
|
+
format: string;
|
|
984
|
+
type: string;
|
|
985
|
+
};
|
|
986
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
987
|
+
type: string;
|
|
988
|
+
};
|
|
989
|
+
is_24_hour: {
|
|
990
|
+
type: string;
|
|
991
|
+
};
|
|
992
|
+
is_biweekly_mode: {
|
|
993
|
+
type: string;
|
|
994
|
+
};
|
|
995
|
+
is_master: {
|
|
996
|
+
type: string;
|
|
997
|
+
};
|
|
998
|
+
is_one_shot: {
|
|
999
|
+
type: string;
|
|
1000
|
+
};
|
|
1001
|
+
name: {
|
|
1002
|
+
type: string;
|
|
1003
|
+
};
|
|
1004
|
+
prefix: {
|
|
1005
|
+
type: string;
|
|
1006
|
+
};
|
|
1007
|
+
};
|
|
1008
|
+
required: string[];
|
|
1009
|
+
type: string;
|
|
1010
|
+
};
|
|
1011
|
+
type: string;
|
|
1012
|
+
};
|
|
970
1013
|
site_id: {
|
|
971
1014
|
type: string;
|
|
972
1015
|
};
|
|
@@ -14789,10 +14832,10 @@ interface Routes {
|
|
|
14789
14832
|
jsonResponse: {
|
|
14790
14833
|
acs_system: {
|
|
14791
14834
|
acs_system_id: string;
|
|
14792
|
-
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | '
|
|
14835
|
+
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service_user';
|
|
14793
14836
|
external_type_display_name: string;
|
|
14794
14837
|
/** deprecated: use external_type */
|
|
14795
|
-
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | '
|
|
14838
|
+
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service_user';
|
|
14796
14839
|
/** deprecated: use external_type_display_name */
|
|
14797
14840
|
system_type_display_name: string;
|
|
14798
14841
|
name: string;
|
|
@@ -14814,10 +14857,10 @@ interface Routes {
|
|
|
14814
14857
|
jsonResponse: {
|
|
14815
14858
|
acs_systems: Array<{
|
|
14816
14859
|
acs_system_id: string;
|
|
14817
|
-
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | '
|
|
14860
|
+
external_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service_user';
|
|
14818
14861
|
external_type_display_name: string;
|
|
14819
14862
|
/** deprecated: use external_type */
|
|
14820
|
-
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | '
|
|
14863
|
+
system_type: 'pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service_user';
|
|
14821
14864
|
/** deprecated: use external_type_display_name */
|
|
14822
14865
|
system_type_display_name: string;
|
|
14823
14866
|
name: string;
|
|
@@ -15619,6 +15662,19 @@ interface Routes {
|
|
|
15619
15662
|
device_id?: number | undefined;
|
|
15620
15663
|
site_id: number;
|
|
15621
15664
|
site_name: string;
|
|
15665
|
+
iana_timezone?: string | undefined;
|
|
15666
|
+
predefined_time_slots?: Array<{
|
|
15667
|
+
name: string;
|
|
15668
|
+
prefix: number;
|
|
15669
|
+
check_in_time: string;
|
|
15670
|
+
check_out_time: string;
|
|
15671
|
+
is_24_hour: boolean;
|
|
15672
|
+
is_biweekly_mode: boolean;
|
|
15673
|
+
is_one_shot: boolean;
|
|
15674
|
+
is_master: boolean;
|
|
15675
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
15676
|
+
dormakaba_oracode_user_level_id: string;
|
|
15677
|
+
}> | undefined;
|
|
15622
15678
|
} | undefined;
|
|
15623
15679
|
wyze_metadata?: {
|
|
15624
15680
|
device_id: string;
|
|
@@ -16065,6 +16121,19 @@ interface Routes {
|
|
|
16065
16121
|
device_id?: number | undefined;
|
|
16066
16122
|
site_id: number;
|
|
16067
16123
|
site_name: string;
|
|
16124
|
+
iana_timezone?: string | undefined;
|
|
16125
|
+
predefined_time_slots?: Array<{
|
|
16126
|
+
name: string;
|
|
16127
|
+
prefix: number;
|
|
16128
|
+
check_in_time: string;
|
|
16129
|
+
check_out_time: string;
|
|
16130
|
+
is_24_hour: boolean;
|
|
16131
|
+
is_biweekly_mode: boolean;
|
|
16132
|
+
is_one_shot: boolean;
|
|
16133
|
+
is_master: boolean;
|
|
16134
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
16135
|
+
dormakaba_oracode_user_level_id: string;
|
|
16136
|
+
}> | undefined;
|
|
16068
16137
|
} | undefined;
|
|
16069
16138
|
wyze_metadata?: {
|
|
16070
16139
|
device_id: string;
|
|
@@ -16790,6 +16859,19 @@ interface Routes {
|
|
|
16790
16859
|
device_id?: number | undefined;
|
|
16791
16860
|
site_id: number;
|
|
16792
16861
|
site_name: string;
|
|
16862
|
+
iana_timezone?: string | undefined;
|
|
16863
|
+
predefined_time_slots?: Array<{
|
|
16864
|
+
name: string;
|
|
16865
|
+
prefix: number;
|
|
16866
|
+
check_in_time: string;
|
|
16867
|
+
check_out_time: string;
|
|
16868
|
+
is_24_hour: boolean;
|
|
16869
|
+
is_biweekly_mode: boolean;
|
|
16870
|
+
is_one_shot: boolean;
|
|
16871
|
+
is_master: boolean;
|
|
16872
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
16873
|
+
dormakaba_oracode_user_level_id: string;
|
|
16874
|
+
}> | undefined;
|
|
16793
16875
|
} | undefined;
|
|
16794
16876
|
wyze_metadata?: {
|
|
16795
16877
|
device_id: string;
|
|
@@ -17214,6 +17296,19 @@ interface Routes {
|
|
|
17214
17296
|
device_id?: number | undefined;
|
|
17215
17297
|
site_id: number;
|
|
17216
17298
|
site_name: string;
|
|
17299
|
+
iana_timezone?: string | undefined;
|
|
17300
|
+
predefined_time_slots?: Array<{
|
|
17301
|
+
name: string;
|
|
17302
|
+
prefix: number;
|
|
17303
|
+
check_in_time: string;
|
|
17304
|
+
check_out_time: string;
|
|
17305
|
+
is_24_hour: boolean;
|
|
17306
|
+
is_biweekly_mode: boolean;
|
|
17307
|
+
is_one_shot: boolean;
|
|
17308
|
+
is_master: boolean;
|
|
17309
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
17310
|
+
dormakaba_oracode_user_level_id: string;
|
|
17311
|
+
}> | undefined;
|
|
17217
17312
|
} | undefined;
|
|
17218
17313
|
wyze_metadata?: {
|
|
17219
17314
|
device_id: string;
|
|
@@ -17660,6 +17755,19 @@ interface Routes {
|
|
|
17660
17755
|
device_id?: number | undefined;
|
|
17661
17756
|
site_id: number;
|
|
17662
17757
|
site_name: string;
|
|
17758
|
+
iana_timezone?: string | undefined;
|
|
17759
|
+
predefined_time_slots?: Array<{
|
|
17760
|
+
name: string;
|
|
17761
|
+
prefix: number;
|
|
17762
|
+
check_in_time: string;
|
|
17763
|
+
check_out_time: string;
|
|
17764
|
+
is_24_hour: boolean;
|
|
17765
|
+
is_biweekly_mode: boolean;
|
|
17766
|
+
is_one_shot: boolean;
|
|
17767
|
+
is_master: boolean;
|
|
17768
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
17769
|
+
dormakaba_oracode_user_level_id: string;
|
|
17770
|
+
}> | undefined;
|
|
17663
17771
|
} | undefined;
|
|
17664
17772
|
wyze_metadata?: {
|
|
17665
17773
|
device_id: string;
|
|
@@ -18084,6 +18192,19 @@ interface Routes {
|
|
|
18084
18192
|
device_id?: number | undefined;
|
|
18085
18193
|
site_id: number;
|
|
18086
18194
|
site_name: string;
|
|
18195
|
+
iana_timezone?: string | undefined;
|
|
18196
|
+
predefined_time_slots?: Array<{
|
|
18197
|
+
name: string;
|
|
18198
|
+
prefix: number;
|
|
18199
|
+
check_in_time: string;
|
|
18200
|
+
check_out_time: string;
|
|
18201
|
+
is_24_hour: boolean;
|
|
18202
|
+
is_biweekly_mode: boolean;
|
|
18203
|
+
is_one_shot: boolean;
|
|
18204
|
+
is_master: boolean;
|
|
18205
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
18206
|
+
dormakaba_oracode_user_level_id: string;
|
|
18207
|
+
}> | undefined;
|
|
18087
18208
|
} | undefined;
|
|
18088
18209
|
wyze_metadata?: {
|
|
18089
18210
|
device_id: string;
|
|
@@ -18938,6 +19059,19 @@ interface Routes {
|
|
|
18938
19059
|
device_id?: number | undefined;
|
|
18939
19060
|
site_id: number;
|
|
18940
19061
|
site_name: string;
|
|
19062
|
+
iana_timezone?: string | undefined;
|
|
19063
|
+
predefined_time_slots?: Array<{
|
|
19064
|
+
name: string;
|
|
19065
|
+
prefix: number;
|
|
19066
|
+
check_in_time: string;
|
|
19067
|
+
check_out_time: string;
|
|
19068
|
+
is_24_hour: boolean;
|
|
19069
|
+
is_biweekly_mode: boolean;
|
|
19070
|
+
is_one_shot: boolean;
|
|
19071
|
+
is_master: boolean;
|
|
19072
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
19073
|
+
dormakaba_oracode_user_level_id: string;
|
|
19074
|
+
}> | undefined;
|
|
18941
19075
|
} | undefined;
|
|
18942
19076
|
wyze_metadata?: {
|
|
18943
19077
|
device_id: string;
|
|
@@ -19414,6 +19548,19 @@ interface Routes {
|
|
|
19414
19548
|
device_id?: number | undefined;
|
|
19415
19549
|
site_id: number;
|
|
19416
19550
|
site_name: string;
|
|
19551
|
+
iana_timezone?: string | undefined;
|
|
19552
|
+
predefined_time_slots?: Array<{
|
|
19553
|
+
name: string;
|
|
19554
|
+
prefix: number;
|
|
19555
|
+
check_in_time: string;
|
|
19556
|
+
check_out_time: string;
|
|
19557
|
+
is_24_hour: boolean;
|
|
19558
|
+
is_biweekly_mode: boolean;
|
|
19559
|
+
is_one_shot: boolean;
|
|
19560
|
+
is_master: boolean;
|
|
19561
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
19562
|
+
dormakaba_oracode_user_level_id: string;
|
|
19563
|
+
}> | undefined;
|
|
19417
19564
|
} | undefined;
|
|
19418
19565
|
wyze_metadata?: {
|
|
19419
19566
|
device_id: string;
|
|
@@ -19987,6 +20134,19 @@ interface Routes {
|
|
|
19987
20134
|
device_id?: number | undefined;
|
|
19988
20135
|
site_id: number;
|
|
19989
20136
|
site_name: string;
|
|
20137
|
+
iana_timezone?: string | undefined;
|
|
20138
|
+
predefined_time_slots?: Array<{
|
|
20139
|
+
name: string;
|
|
20140
|
+
prefix: number;
|
|
20141
|
+
check_in_time: string;
|
|
20142
|
+
check_out_time: string;
|
|
20143
|
+
is_24_hour: boolean;
|
|
20144
|
+
is_biweekly_mode: boolean;
|
|
20145
|
+
is_one_shot: boolean;
|
|
20146
|
+
is_master: boolean;
|
|
20147
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
20148
|
+
dormakaba_oracode_user_level_id: string;
|
|
20149
|
+
}> | undefined;
|
|
19990
20150
|
} | undefined;
|
|
19991
20151
|
wyze_metadata?: {
|
|
19992
20152
|
device_id: string;
|
|
@@ -890,6 +890,49 @@ declare const _default: {
|
|
|
890
890
|
door_name: {
|
|
891
891
|
type: string;
|
|
892
892
|
};
|
|
893
|
+
iana_timezone: {
|
|
894
|
+
type: string;
|
|
895
|
+
};
|
|
896
|
+
predefined_time_slots: {
|
|
897
|
+
items: {
|
|
898
|
+
properties: {
|
|
899
|
+
check_in_time: {
|
|
900
|
+
type: string;
|
|
901
|
+
};
|
|
902
|
+
check_out_time: {
|
|
903
|
+
type: string;
|
|
904
|
+
};
|
|
905
|
+
dormakaba_oracode_user_level_id: {
|
|
906
|
+
format: string;
|
|
907
|
+
type: string;
|
|
908
|
+
};
|
|
909
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
910
|
+
type: string;
|
|
911
|
+
};
|
|
912
|
+
is_24_hour: {
|
|
913
|
+
type: string;
|
|
914
|
+
};
|
|
915
|
+
is_biweekly_mode: {
|
|
916
|
+
type: string;
|
|
917
|
+
};
|
|
918
|
+
is_master: {
|
|
919
|
+
type: string;
|
|
920
|
+
};
|
|
921
|
+
is_one_shot: {
|
|
922
|
+
type: string;
|
|
923
|
+
};
|
|
924
|
+
name: {
|
|
925
|
+
type: string;
|
|
926
|
+
};
|
|
927
|
+
prefix: {
|
|
928
|
+
type: string;
|
|
929
|
+
};
|
|
930
|
+
};
|
|
931
|
+
required: string[];
|
|
932
|
+
type: string;
|
|
933
|
+
};
|
|
934
|
+
type: string;
|
|
935
|
+
};
|
|
893
936
|
site_id: {
|
|
894
937
|
type: string;
|
|
895
938
|
};
|
|
@@ -176,7 +176,7 @@ export default {
|
|
|
176
176
|
'alta_org',
|
|
177
177
|
'salto_site',
|
|
178
178
|
'brivo_account',
|
|
179
|
-
'
|
|
179
|
+
'hid_credential_manager_organization',
|
|
180
180
|
'visionline_system',
|
|
181
181
|
'assa_abloy_credential_service_user',
|
|
182
182
|
],
|
|
@@ -191,7 +191,7 @@ export default {
|
|
|
191
191
|
'alta_org',
|
|
192
192
|
'salto_site',
|
|
193
193
|
'brivo_account',
|
|
194
|
-
'
|
|
194
|
+
'hid_credential_manager_organization',
|
|
195
195
|
'visionline_system',
|
|
196
196
|
'assa_abloy_credential_service_user',
|
|
197
197
|
],
|
|
@@ -740,6 +740,42 @@ export default {
|
|
|
740
740
|
device_id: { type: 'number' },
|
|
741
741
|
door_id: { type: 'number' },
|
|
742
742
|
door_name: { type: 'string' },
|
|
743
|
+
iana_timezone: { type: 'string' },
|
|
744
|
+
predefined_time_slots: {
|
|
745
|
+
items: {
|
|
746
|
+
properties: {
|
|
747
|
+
check_in_time: { type: 'string' },
|
|
748
|
+
check_out_time: { type: 'string' },
|
|
749
|
+
dormakaba_oracode_user_level_id: {
|
|
750
|
+
format: 'uuid',
|
|
751
|
+
type: 'string',
|
|
752
|
+
},
|
|
753
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
754
|
+
type: 'number',
|
|
755
|
+
},
|
|
756
|
+
is_24_hour: { type: 'boolean' },
|
|
757
|
+
is_biweekly_mode: { type: 'boolean' },
|
|
758
|
+
is_master: { type: 'boolean' },
|
|
759
|
+
is_one_shot: { type: 'boolean' },
|
|
760
|
+
name: { type: 'string' },
|
|
761
|
+
prefix: { type: 'number' },
|
|
762
|
+
},
|
|
763
|
+
required: [
|
|
764
|
+
'name',
|
|
765
|
+
'prefix',
|
|
766
|
+
'check_in_time',
|
|
767
|
+
'check_out_time',
|
|
768
|
+
'is_24_hour',
|
|
769
|
+
'is_biweekly_mode',
|
|
770
|
+
'is_one_shot',
|
|
771
|
+
'is_master',
|
|
772
|
+
'ext_dormakaba_oracode_user_level_prefix',
|
|
773
|
+
'dormakaba_oracode_user_level_id',
|
|
774
|
+
],
|
|
775
|
+
type: 'object',
|
|
776
|
+
},
|
|
777
|
+
type: 'array',
|
|
778
|
+
},
|
|
743
779
|
site_id: { type: 'number' },
|
|
744
780
|
site_name: { type: 'string' },
|
|
745
781
|
},
|