@seamapi/types 1.307.0 → 1.309.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 +72 -39
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +149 -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/client-sessions/client-session.d.ts +3 -0
- package/lib/seam/connect/models/client-sessions/client-session.js +1 -0
- package/lib/seam/connect/models/client-sessions/client-session.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 +24 -21
- package/lib/seam/connect/openapi.js +54 -29
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +64 -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/client-sessions/client-session.ts +1 -0
- 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 +60 -32
- package/src/lib/seam/connect/route-types.ts +108 -66
|
@@ -794,24 +794,26 @@ declare const _default: {
|
|
|
794
794
|
description: string;
|
|
795
795
|
items: {
|
|
796
796
|
description: string;
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
797
|
+
oneOf: {
|
|
798
|
+
properties: {
|
|
799
|
+
created_at: {
|
|
800
|
+
description: string;
|
|
801
|
+
format: string;
|
|
802
|
+
type: string;
|
|
803
|
+
};
|
|
804
|
+
message: {
|
|
805
|
+
description: string;
|
|
806
|
+
type: string;
|
|
807
|
+
};
|
|
808
|
+
warning_code: {
|
|
809
|
+
description: string;
|
|
810
|
+
enum: string[];
|
|
811
|
+
type: string;
|
|
812
|
+
};
|
|
811
813
|
};
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
814
|
+
required: string[];
|
|
815
|
+
type: string;
|
|
816
|
+
}[];
|
|
815
817
|
};
|
|
816
818
|
type: string;
|
|
817
819
|
};
|
|
@@ -1957,6 +1959,10 @@ declare const _default: {
|
|
|
1957
1959
|
format: string;
|
|
1958
1960
|
type: string;
|
|
1959
1961
|
};
|
|
1962
|
+
expires_at: {
|
|
1963
|
+
format: string;
|
|
1964
|
+
type: string;
|
|
1965
|
+
};
|
|
1960
1966
|
token: {
|
|
1961
1967
|
type: string;
|
|
1962
1968
|
};
|
|
@@ -3086,13 +3092,10 @@ declare const _default: {
|
|
|
3086
3092
|
};
|
|
3087
3093
|
tado_metadata: {
|
|
3088
3094
|
properties: {
|
|
3089
|
-
device_name: {
|
|
3090
|
-
type: string;
|
|
3091
|
-
};
|
|
3092
3095
|
device_type: {
|
|
3093
3096
|
type: string;
|
|
3094
3097
|
};
|
|
3095
|
-
|
|
3098
|
+
serial_no: {
|
|
3096
3099
|
type: string;
|
|
3097
3100
|
};
|
|
3098
3101
|
};
|
|
@@ -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
|
},
|
|
@@ -3902,6 +3928,7 @@ export default {
|
|
|
3902
3928
|
},
|
|
3903
3929
|
created_at: { format: 'date-time', type: 'string' },
|
|
3904
3930
|
device_count: { format: 'float', type: 'number' },
|
|
3931
|
+
expires_at: { format: 'date-time', type: 'string' },
|
|
3905
3932
|
token: { type: 'string' },
|
|
3906
3933
|
user_identifier_key: { nullable: true, type: 'string' },
|
|
3907
3934
|
user_identity_ids: {
|
|
@@ -3914,6 +3941,7 @@ export default {
|
|
|
3914
3941
|
'client_session_id',
|
|
3915
3942
|
'workspace_id',
|
|
3916
3943
|
'created_at',
|
|
3944
|
+
'expires_at',
|
|
3917
3945
|
'token',
|
|
3918
3946
|
'user_identifier_key',
|
|
3919
3947
|
'device_count',
|
|
@@ -4828,15 +4856,10 @@ export default {
|
|
|
4828
4856
|
},
|
|
4829
4857
|
tado_metadata: {
|
|
4830
4858
|
properties: {
|
|
4831
|
-
device_name: { type: 'string' },
|
|
4832
4859
|
device_type: { type: 'string' },
|
|
4833
|
-
|
|
4860
|
+
serial_no: { type: 'string' },
|
|
4834
4861
|
},
|
|
4835
|
-
required: [
|
|
4836
|
-
'serial_number',
|
|
4837
|
-
'device_name',
|
|
4838
|
-
'device_type',
|
|
4839
|
-
],
|
|
4862
|
+
required: ['serial_no', 'device_type'],
|
|
4840
4863
|
type: 'object',
|
|
4841
4864
|
},
|
|
4842
4865
|
tedee_metadata: {
|
|
@@ -5500,6 +5523,7 @@ export default {
|
|
|
5500
5523
|
'assa_abloy_vostio',
|
|
5501
5524
|
'assa_abloy_vostio_credential_service',
|
|
5502
5525
|
'tado',
|
|
5526
|
+
'salto_space',
|
|
5503
5527
|
],
|
|
5504
5528
|
type: 'string',
|
|
5505
5529
|
},
|
|
@@ -8083,7 +8107,7 @@ export default {
|
|
|
8083
8107
|
enum: [
|
|
8084
8108
|
'pti_unit',
|
|
8085
8109
|
'pti_access_level',
|
|
8086
|
-
'
|
|
8110
|
+
'salto_ks_access_group',
|
|
8087
8111
|
'brivo_group',
|
|
8088
8112
|
],
|
|
8089
8113
|
type: 'string',
|
|
@@ -8115,7 +8139,7 @@ export default {
|
|
|
8115
8139
|
enum: [
|
|
8116
8140
|
'pti_unit',
|
|
8117
8141
|
'pti_access_level',
|
|
8118
|
-
'
|
|
8142
|
+
'salto_ks_access_group',
|
|
8119
8143
|
'brivo_group',
|
|
8120
8144
|
],
|
|
8121
8145
|
type: 'string',
|
|
@@ -8215,7 +8239,7 @@ export default {
|
|
|
8215
8239
|
enum: [
|
|
8216
8240
|
'pti_unit',
|
|
8217
8241
|
'pti_access_level',
|
|
8218
|
-
'
|
|
8242
|
+
'salto_ks_access_group',
|
|
8219
8243
|
'brivo_group',
|
|
8220
8244
|
],
|
|
8221
8245
|
type: 'string',
|
|
@@ -8247,7 +8271,7 @@ export default {
|
|
|
8247
8271
|
enum: [
|
|
8248
8272
|
'pti_unit',
|
|
8249
8273
|
'pti_access_level',
|
|
8250
|
-
'
|
|
8274
|
+
'salto_ks_access_group',
|
|
8251
8275
|
'brivo_group',
|
|
8252
8276
|
],
|
|
8253
8277
|
type: 'string',
|
|
@@ -12825,6 +12849,7 @@ export default {
|
|
|
12825
12849
|
'assa_abloy_vostio',
|
|
12826
12850
|
'assa_abloy_vostio_credential_service',
|
|
12827
12851
|
'tado',
|
|
12852
|
+
'salto_space',
|
|
12828
12853
|
'yale_access',
|
|
12829
12854
|
'hid_cm',
|
|
12830
12855
|
'google_nest',
|