@seamapi/types 1.307.0 → 1.308.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 +69 -39
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +137 -113
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +13 -13
- 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-system.d.ts +34 -13
- package/lib/seam/connect/models/acs/acs-system.js +11 -4
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -10
- package/lib/seam/connect/models/devices/device-metadata.js +1 -2
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -14
- package/lib/seam/connect/models/devices/phone.d.ts +5 -10
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -10
- package/lib/seam/connect/openapi.d.ts +20 -21
- package/lib/seam/connect/openapi.js +52 -29
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +59 -44
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +15 -5
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -2
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +58 -32
- package/src/lib/seam/connect/route-types.ts +103 -66
|
@@ -176,7 +176,7 @@ export default {
|
|
|
176
176
|
enum: [
|
|
177
177
|
'pti_unit',
|
|
178
178
|
'pti_access_level',
|
|
179
|
-
'
|
|
179
|
+
'salto_ks_access_group',
|
|
180
180
|
'brivo_group',
|
|
181
181
|
],
|
|
182
182
|
type: 'string',
|
|
@@ -208,7 +208,7 @@ export default {
|
|
|
208
208
|
enum: [
|
|
209
209
|
'pti_unit',
|
|
210
210
|
'pti_access_level',
|
|
211
|
-
'
|
|
211
|
+
'salto_ks_access_group',
|
|
212
212
|
'brivo_group',
|
|
213
213
|
],
|
|
214
214
|
type: 'string',
|
|
@@ -828,6 +828,7 @@ export default {
|
|
|
828
828
|
'pti_site',
|
|
829
829
|
'alta_org',
|
|
830
830
|
'salto_ks_site',
|
|
831
|
+
'salto_space_system',
|
|
831
832
|
'brivo_account',
|
|
832
833
|
'hid_credential_manager_organization',
|
|
833
834
|
'visionline_system',
|
|
@@ -874,6 +875,7 @@ export default {
|
|
|
874
875
|
'pti_site',
|
|
875
876
|
'alta_org',
|
|
876
877
|
'salto_ks_site',
|
|
878
|
+
'salto_space_system',
|
|
877
879
|
'brivo_account',
|
|
878
880
|
'hid_credential_manager_organization',
|
|
879
881
|
'visionline_system',
|
|
@@ -914,24 +916,48 @@ export default {
|
|
|
914
916
|
description: 'Warnings associated with the `acs_system`.',
|
|
915
917
|
items: {
|
|
916
918
|
description: 'Warning associated with the `acs_system`.',
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
919
|
+
oneOf: [
|
|
920
|
+
{
|
|
921
|
+
properties: {
|
|
922
|
+
created_at: {
|
|
923
|
+
description: 'Date and time at which Seam created the warning.',
|
|
924
|
+
format: 'date-time',
|
|
925
|
+
type: 'string',
|
|
926
|
+
},
|
|
927
|
+
message: {
|
|
928
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
929
|
+
type: 'string',
|
|
930
|
+
},
|
|
931
|
+
warning_code: {
|
|
932
|
+
description: 'Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this.',
|
|
933
|
+
enum: ['salto_ks_subscription_limit_almost_reached'],
|
|
934
|
+
type: 'string',
|
|
935
|
+
},
|
|
936
|
+
},
|
|
937
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
938
|
+
type: 'object',
|
|
926
939
|
},
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
940
|
+
{
|
|
941
|
+
properties: {
|
|
942
|
+
created_at: {
|
|
943
|
+
description: 'Date and time at which Seam created the warning.',
|
|
944
|
+
format: 'date-time',
|
|
945
|
+
type: 'string',
|
|
946
|
+
},
|
|
947
|
+
message: {
|
|
948
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
949
|
+
type: 'string',
|
|
950
|
+
},
|
|
951
|
+
warning_code: {
|
|
952
|
+
description: 'Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances.',
|
|
953
|
+
enum: ['time_zone_does_not_match_location'],
|
|
954
|
+
type: 'string',
|
|
955
|
+
},
|
|
956
|
+
},
|
|
957
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
958
|
+
type: 'object',
|
|
931
959
|
},
|
|
932
|
-
|
|
933
|
-
required: ['created_at', 'message', 'warning_code'],
|
|
934
|
-
type: 'object',
|
|
960
|
+
],
|
|
935
961
|
},
|
|
936
962
|
type: 'array',
|
|
937
963
|
},
|
|
@@ -4828,15 +4854,10 @@ export default {
|
|
|
4828
4854
|
},
|
|
4829
4855
|
tado_metadata: {
|
|
4830
4856
|
properties: {
|
|
4831
|
-
device_name: { type: 'string' },
|
|
4832
4857
|
device_type: { type: 'string' },
|
|
4833
|
-
|
|
4858
|
+
serial_no: { type: 'string' },
|
|
4834
4859
|
},
|
|
4835
|
-
required: [
|
|
4836
|
-
'serial_number',
|
|
4837
|
-
'device_name',
|
|
4838
|
-
'device_type',
|
|
4839
|
-
],
|
|
4860
|
+
required: ['serial_no', 'device_type'],
|
|
4840
4861
|
type: 'object',
|
|
4841
4862
|
},
|
|
4842
4863
|
tedee_metadata: {
|
|
@@ -5500,6 +5521,7 @@ export default {
|
|
|
5500
5521
|
'assa_abloy_vostio',
|
|
5501
5522
|
'assa_abloy_vostio_credential_service',
|
|
5502
5523
|
'tado',
|
|
5524
|
+
'salto_space',
|
|
5503
5525
|
],
|
|
5504
5526
|
type: 'string',
|
|
5505
5527
|
},
|
|
@@ -8083,7 +8105,7 @@ export default {
|
|
|
8083
8105
|
enum: [
|
|
8084
8106
|
'pti_unit',
|
|
8085
8107
|
'pti_access_level',
|
|
8086
|
-
'
|
|
8108
|
+
'salto_ks_access_group',
|
|
8087
8109
|
'brivo_group',
|
|
8088
8110
|
],
|
|
8089
8111
|
type: 'string',
|
|
@@ -8115,7 +8137,7 @@ export default {
|
|
|
8115
8137
|
enum: [
|
|
8116
8138
|
'pti_unit',
|
|
8117
8139
|
'pti_access_level',
|
|
8118
|
-
'
|
|
8140
|
+
'salto_ks_access_group',
|
|
8119
8141
|
'brivo_group',
|
|
8120
8142
|
],
|
|
8121
8143
|
type: 'string',
|
|
@@ -8215,7 +8237,7 @@ export default {
|
|
|
8215
8237
|
enum: [
|
|
8216
8238
|
'pti_unit',
|
|
8217
8239
|
'pti_access_level',
|
|
8218
|
-
'
|
|
8240
|
+
'salto_ks_access_group',
|
|
8219
8241
|
'brivo_group',
|
|
8220
8242
|
],
|
|
8221
8243
|
type: 'string',
|
|
@@ -8247,7 +8269,7 @@ export default {
|
|
|
8247
8269
|
enum: [
|
|
8248
8270
|
'pti_unit',
|
|
8249
8271
|
'pti_access_level',
|
|
8250
|
-
'
|
|
8272
|
+
'salto_ks_access_group',
|
|
8251
8273
|
'brivo_group',
|
|
8252
8274
|
],
|
|
8253
8275
|
type: 'string',
|
|
@@ -12825,6 +12847,7 @@ export default {
|
|
|
12825
12847
|
'assa_abloy_vostio',
|
|
12826
12848
|
'assa_abloy_vostio_credential_service',
|
|
12827
12849
|
'tado',
|
|
12850
|
+
'salto_space',
|
|
12828
12851
|
'yale_access',
|
|
12829
12852
|
'hid_cm',
|
|
12830
12853
|
'google_nest',
|