@seamapi/types 1.65.0 → 1.67.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 +123 -80
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +317 -320
- package/lib/seam/connect/openapi.d.ts +254 -276
- package/lib/seam/connect/openapi.js +114 -71
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +62 -43
- package/lib/seam/connect/unstable/models/acs/access_group.js +1 -1
- package/lib/seam/connect/unstable/models/acs/access_group.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/user.d.ts +15 -6
- package/lib/seam/connect/unstable/models/acs/user.js +5 -2
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/capabilities-supported.d.ts +1 -1
- package/lib/seam/connect/unstable/models/devices/capabilities-supported.js +1 -0
- package/lib/seam/connect/unstable/models/devices/capabilities-supported.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-type.d.ts +10 -1
- package/lib/seam/connect/unstable/models/devices/device-type.js +8 -0
- package/lib/seam/connect/unstable/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +6 -6
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +6 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +114 -71
- package/src/lib/seam/connect/route-types.ts +129 -43
- package/src/lib/seam/connect/unstable/models/acs/access_group.ts +1 -1
- package/src/lib/seam/connect/unstable/models/acs/user.ts +5 -2
- package/src/lib/seam/connect/unstable/models/devices/capabilities-supported.ts +1 -0
- package/src/lib/seam/connect/unstable/models/devices/device-type.ts +20 -0
|
@@ -4,8 +4,8 @@ export declare const unmanaged_device: z.ZodObject<{
|
|
|
4
4
|
workspace_id: z.ZodString;
|
|
5
5
|
created_at: z.ZodString;
|
|
6
6
|
device_id: z.ZodString;
|
|
7
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat"]>]>;
|
|
8
|
-
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery"]>, "many">;
|
|
7
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
8
|
+
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
9
9
|
errors: z.ZodArray<z.ZodObject<{
|
|
10
10
|
error_code: z.ZodString;
|
|
11
11
|
message: z.ZodString;
|
|
@@ -137,8 +137,8 @@ export declare const unmanaged_device: z.ZodObject<{
|
|
|
137
137
|
online_access_codes_enabled?: boolean | undefined;
|
|
138
138
|
offline_access_codes_enabled?: boolean | undefined;
|
|
139
139
|
};
|
|
140
|
-
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat";
|
|
141
|
-
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
140
|
+
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat" | "ios_phone" | "android_phone";
|
|
141
|
+
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
142
142
|
errors: {
|
|
143
143
|
message: string;
|
|
144
144
|
error_code: string;
|
|
@@ -174,8 +174,8 @@ export declare const unmanaged_device: z.ZodObject<{
|
|
|
174
174
|
online_access_codes_enabled?: boolean | undefined;
|
|
175
175
|
offline_access_codes_enabled?: boolean | undefined;
|
|
176
176
|
};
|
|
177
|
-
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat";
|
|
178
|
-
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
177
|
+
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat" | "ios_phone" | "android_phone";
|
|
178
|
+
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
179
179
|
errors: {
|
|
180
180
|
message: string;
|
|
181
181
|
error_code: string;
|
package/package.json
CHANGED
|
@@ -245,6 +245,7 @@ export default {
|
|
|
245
245
|
type: 'string',
|
|
246
246
|
},
|
|
247
247
|
email_address: { format: 'email', type: 'string' },
|
|
248
|
+
ends_at: { format: 'date-time', type: 'string' },
|
|
248
249
|
external_type: {
|
|
249
250
|
enum: ['pti_user', 'brivo_user', 'hid_cm_user', 'salto_site_user'],
|
|
250
251
|
type: 'string',
|
|
@@ -253,7 +254,9 @@ export default {
|
|
|
253
254
|
full_name: { type: 'string' },
|
|
254
255
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
255
256
|
is_suspended: { type: 'boolean' },
|
|
257
|
+
is_virtual: { type: 'boolean' },
|
|
256
258
|
phone_number: { nullable: true, type: 'string' },
|
|
259
|
+
starts_at: { format: 'date-time', type: 'string' },
|
|
257
260
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
258
261
|
},
|
|
259
262
|
required: [
|
|
@@ -262,9 +265,8 @@ export default {
|
|
|
262
265
|
'workspace_id',
|
|
263
266
|
'created_at',
|
|
264
267
|
'display_name',
|
|
265
|
-
'external_type',
|
|
266
|
-
'external_type_display_name',
|
|
267
268
|
'is_suspended',
|
|
269
|
+
'is_virtual',
|
|
268
270
|
],
|
|
269
271
|
type: 'object',
|
|
270
272
|
},
|
|
@@ -515,6 +517,7 @@ export default {
|
|
|
515
517
|
'noise_detection',
|
|
516
518
|
'thermostat',
|
|
517
519
|
'battery',
|
|
520
|
+
'phone',
|
|
518
521
|
],
|
|
519
522
|
type: 'string',
|
|
520
523
|
},
|
|
@@ -578,6 +581,7 @@ export default {
|
|
|
578
581
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
579
582
|
type: 'string',
|
|
580
583
|
},
|
|
584
|
+
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
581
585
|
],
|
|
582
586
|
},
|
|
583
587
|
errors: {
|
|
@@ -1770,6 +1774,7 @@ export default {
|
|
|
1770
1774
|
'noise_detection',
|
|
1771
1775
|
'thermostat',
|
|
1772
1776
|
'battery',
|
|
1777
|
+
'phone',
|
|
1773
1778
|
],
|
|
1774
1779
|
type: 'string',
|
|
1775
1780
|
},
|
|
@@ -1833,6 +1838,7 @@ export default {
|
|
|
1833
1838
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
1834
1839
|
type: 'string',
|
|
1835
1840
|
},
|
|
1841
|
+
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
1836
1842
|
],
|
|
1837
1843
|
},
|
|
1838
1844
|
errors: {
|
|
@@ -2076,6 +2082,7 @@ export default {
|
|
|
2076
2082
|
is_offline_access_code: { type: 'boolean' },
|
|
2077
2083
|
is_one_time_use: { type: 'boolean' },
|
|
2078
2084
|
max_time_rounding: {
|
|
2085
|
+
default: '1hour',
|
|
2079
2086
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
2080
2087
|
type: 'string',
|
|
2081
2088
|
},
|
|
@@ -2160,6 +2167,7 @@ export default {
|
|
|
2160
2167
|
is_offline_access_code: { type: 'boolean' },
|
|
2161
2168
|
is_one_time_use: { type: 'boolean' },
|
|
2162
2169
|
max_time_rounding: {
|
|
2170
|
+
default: '1hour',
|
|
2163
2171
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
2164
2172
|
type: 'string',
|
|
2165
2173
|
},
|
|
@@ -2241,6 +2249,7 @@ export default {
|
|
|
2241
2249
|
is_offline_access_code: { type: 'boolean' },
|
|
2242
2250
|
is_one_time_use: { type: 'boolean' },
|
|
2243
2251
|
max_time_rounding: {
|
|
2252
|
+
default: '1hour',
|
|
2244
2253
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
2245
2254
|
type: 'string',
|
|
2246
2255
|
},
|
|
@@ -2969,6 +2978,7 @@ export default {
|
|
|
2969
2978
|
is_offline_access_code: { type: 'boolean' },
|
|
2970
2979
|
is_one_time_use: { type: 'boolean' },
|
|
2971
2980
|
max_time_rounding: {
|
|
2981
|
+
default: '1hour',
|
|
2972
2982
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
2973
2983
|
type: 'string',
|
|
2974
2984
|
},
|
|
@@ -3043,6 +3053,7 @@ export default {
|
|
|
3043
3053
|
is_offline_access_code: { type: 'boolean' },
|
|
3044
3054
|
is_one_time_use: { type: 'boolean' },
|
|
3045
3055
|
max_time_rounding: {
|
|
3056
|
+
default: '1hour',
|
|
3046
3057
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
3047
3058
|
type: 'string',
|
|
3048
3059
|
},
|
|
@@ -3119,6 +3130,7 @@ export default {
|
|
|
3119
3130
|
is_offline_access_code: { type: 'boolean' },
|
|
3120
3131
|
is_one_time_use: { type: 'boolean' },
|
|
3121
3132
|
max_time_rounding: {
|
|
3133
|
+
default: '1hour',
|
|
3122
3134
|
enum: ['1hour', '1day', '1h', '1d'],
|
|
3123
3135
|
type: 'string',
|
|
3124
3136
|
},
|
|
@@ -3343,9 +3355,9 @@ export default {
|
|
|
3343
3355
|
401: { description: 'Unauthorized' },
|
|
3344
3356
|
},
|
|
3345
3357
|
security: [
|
|
3346
|
-
{
|
|
3347
|
-
{
|
|
3348
|
-
{
|
|
3358
|
+
{ pat_with_workspace: [] },
|
|
3359
|
+
{ console_session: [] },
|
|
3360
|
+
{ api_key: [] },
|
|
3349
3361
|
],
|
|
3350
3362
|
summary: '/acs/access_groups/list',
|
|
3351
3363
|
tags: [],
|
|
@@ -3437,9 +3449,9 @@ export default {
|
|
|
3437
3449
|
401: { description: 'Unauthorized' },
|
|
3438
3450
|
},
|
|
3439
3451
|
security: [
|
|
3440
|
-
{
|
|
3441
|
-
{
|
|
3442
|
-
{
|
|
3452
|
+
{ pat_with_workspace: [] },
|
|
3453
|
+
{ console_session: [] },
|
|
3454
|
+
{ api_key: [] },
|
|
3443
3455
|
],
|
|
3444
3456
|
summary: '/acs/access_groups/remove_user',
|
|
3445
3457
|
tags: [],
|
|
@@ -3512,9 +3524,9 @@ export default {
|
|
|
3512
3524
|
401: { description: 'Unauthorized' },
|
|
3513
3525
|
},
|
|
3514
3526
|
security: [
|
|
3515
|
-
{
|
|
3516
|
-
{
|
|
3517
|
-
{
|
|
3527
|
+
{ pat_with_workspace: [] },
|
|
3528
|
+
{ console_session: [] },
|
|
3529
|
+
{ api_key: [] },
|
|
3518
3530
|
],
|
|
3519
3531
|
summary: '/acs/credential_pools/list',
|
|
3520
3532
|
tags: [],
|
|
@@ -3593,9 +3605,9 @@ export default {
|
|
|
3593
3605
|
401: { description: 'Unauthorized' },
|
|
3594
3606
|
},
|
|
3595
3607
|
security: [
|
|
3596
|
-
{
|
|
3597
|
-
{
|
|
3598
|
-
{
|
|
3608
|
+
{ pat_with_workspace: [] },
|
|
3609
|
+
{ console_session: [] },
|
|
3610
|
+
{ api_key: [] },
|
|
3599
3611
|
],
|
|
3600
3612
|
summary: '/acs/credential_provisioning_automations/launch',
|
|
3601
3613
|
tags: [],
|
|
@@ -3678,9 +3690,9 @@ export default {
|
|
|
3678
3690
|
401: { description: 'Unauthorized' },
|
|
3679
3691
|
},
|
|
3680
3692
|
security: [
|
|
3681
|
-
{
|
|
3682
|
-
{
|
|
3683
|
-
{
|
|
3693
|
+
{ pat_with_workspace: [] },
|
|
3694
|
+
{ console_session: [] },
|
|
3695
|
+
{ api_key: [] },
|
|
3684
3696
|
],
|
|
3685
3697
|
summary: '/acs/credentials/assign',
|
|
3686
3698
|
tags: [],
|
|
@@ -3760,9 +3772,9 @@ export default {
|
|
|
3760
3772
|
401: { description: 'Unauthorized' },
|
|
3761
3773
|
},
|
|
3762
3774
|
security: [
|
|
3763
|
-
{
|
|
3764
|
-
{
|
|
3765
|
-
{
|
|
3775
|
+
{ pat_with_workspace: [] },
|
|
3776
|
+
{ console_session: [] },
|
|
3777
|
+
{ api_key: [] },
|
|
3766
3778
|
],
|
|
3767
3779
|
summary: '/acs/credentials/assign',
|
|
3768
3780
|
tags: [],
|
|
@@ -3849,9 +3861,9 @@ export default {
|
|
|
3849
3861
|
401: { description: 'Unauthorized' },
|
|
3850
3862
|
},
|
|
3851
3863
|
security: [
|
|
3852
|
-
{
|
|
3853
|
-
{
|
|
3854
|
-
{
|
|
3864
|
+
{ pat_with_workspace: [] },
|
|
3865
|
+
{ console_session: [] },
|
|
3866
|
+
{ api_key: [] },
|
|
3855
3867
|
],
|
|
3856
3868
|
summary: '/acs/credentials/create',
|
|
3857
3869
|
tags: [],
|
|
@@ -3892,9 +3904,9 @@ export default {
|
|
|
3892
3904
|
401: { description: 'Unauthorized' },
|
|
3893
3905
|
},
|
|
3894
3906
|
security: [
|
|
3895
|
-
{
|
|
3896
|
-
{
|
|
3897
|
-
{
|
|
3907
|
+
{ pat_with_workspace: [] },
|
|
3908
|
+
{ console_session: [] },
|
|
3909
|
+
{ api_key: [] },
|
|
3898
3910
|
],
|
|
3899
3911
|
summary: '/acs/credentials/delete',
|
|
3900
3912
|
tags: [],
|
|
@@ -3976,9 +3988,9 @@ export default {
|
|
|
3976
3988
|
401: { description: 'Unauthorized' },
|
|
3977
3989
|
},
|
|
3978
3990
|
security: [
|
|
3979
|
-
{
|
|
3980
|
-
{
|
|
3981
|
-
{
|
|
3991
|
+
{ pat_with_workspace: [] },
|
|
3992
|
+
{ console_session: [] },
|
|
3993
|
+
{ api_key: [] },
|
|
3982
3994
|
],
|
|
3983
3995
|
summary: '/acs/credentials/get',
|
|
3984
3996
|
tags: [],
|
|
@@ -4168,9 +4180,9 @@ export default {
|
|
|
4168
4180
|
401: { description: 'Unauthorized' },
|
|
4169
4181
|
},
|
|
4170
4182
|
security: [
|
|
4171
|
-
{
|
|
4172
|
-
{
|
|
4173
|
-
{
|
|
4183
|
+
{ pat_with_workspace: [] },
|
|
4184
|
+
{ console_session: [] },
|
|
4185
|
+
{ api_key: [] },
|
|
4174
4186
|
],
|
|
4175
4187
|
summary: '/acs/credentials/unassign',
|
|
4176
4188
|
tags: [],
|
|
@@ -4250,9 +4262,9 @@ export default {
|
|
|
4250
4262
|
401: { description: 'Unauthorized' },
|
|
4251
4263
|
},
|
|
4252
4264
|
security: [
|
|
4253
|
-
{
|
|
4254
|
-
{
|
|
4255
|
-
{
|
|
4265
|
+
{ pat_with_workspace: [] },
|
|
4266
|
+
{ console_session: [] },
|
|
4267
|
+
{ api_key: [] },
|
|
4256
4268
|
],
|
|
4257
4269
|
summary: '/acs/credentials/unassign',
|
|
4258
4270
|
tags: [],
|
|
@@ -4335,9 +4347,9 @@ export default {
|
|
|
4335
4347
|
401: { description: 'Unauthorized' },
|
|
4336
4348
|
},
|
|
4337
4349
|
security: [
|
|
4338
|
-
{
|
|
4339
|
-
{
|
|
4340
|
-
{
|
|
4350
|
+
{ pat_with_workspace: [] },
|
|
4351
|
+
{ console_session: [] },
|
|
4352
|
+
{ api_key: [] },
|
|
4341
4353
|
],
|
|
4342
4354
|
summary: '/acs/credentials/update',
|
|
4343
4355
|
tags: [],
|
|
@@ -4417,9 +4429,9 @@ export default {
|
|
|
4417
4429
|
401: { description: 'Unauthorized' },
|
|
4418
4430
|
},
|
|
4419
4431
|
security: [
|
|
4420
|
-
{
|
|
4421
|
-
{
|
|
4422
|
-
{
|
|
4432
|
+
{ pat_with_workspace: [] },
|
|
4433
|
+
{ console_session: [] },
|
|
4434
|
+
{ api_key: [] },
|
|
4423
4435
|
],
|
|
4424
4436
|
summary: '/acs/credentials/update',
|
|
4425
4437
|
tags: [],
|
|
@@ -4632,9 +4644,9 @@ export default {
|
|
|
4632
4644
|
401: { description: 'Unauthorized' },
|
|
4633
4645
|
},
|
|
4634
4646
|
security: [
|
|
4635
|
-
{
|
|
4636
|
-
{
|
|
4637
|
-
{
|
|
4647
|
+
{ pat_with_workspace: [] },
|
|
4648
|
+
{ console_session: [] },
|
|
4649
|
+
{ api_key: [] },
|
|
4638
4650
|
],
|
|
4639
4651
|
summary: '/acs/systems/get',
|
|
4640
4652
|
tags: [],
|
|
@@ -4680,9 +4692,10 @@ export default {
|
|
|
4680
4692
|
401: { description: 'Unauthorized' },
|
|
4681
4693
|
},
|
|
4682
4694
|
security: [
|
|
4683
|
-
{
|
|
4684
|
-
{
|
|
4685
|
-
{
|
|
4695
|
+
{ client_session: [] },
|
|
4696
|
+
{ pat_with_workspace: [] },
|
|
4697
|
+
{ console_session: [] },
|
|
4698
|
+
{ api_key: [] },
|
|
4686
4699
|
],
|
|
4687
4700
|
summary: '/acs/systems/list',
|
|
4688
4701
|
tags: [],
|
|
@@ -4713,9 +4726,9 @@ export default {
|
|
|
4713
4726
|
401: { description: 'Unauthorized' },
|
|
4714
4727
|
},
|
|
4715
4728
|
security: [
|
|
4716
|
-
{
|
|
4717
|
-
{
|
|
4718
|
-
{
|
|
4729
|
+
{ pat_with_workspace: [] },
|
|
4730
|
+
{ console_session: [] },
|
|
4731
|
+
{ api_key: [] },
|
|
4719
4732
|
],
|
|
4720
4733
|
summary: '/acs/users/add_to_access_group',
|
|
4721
4734
|
tags: [],
|
|
@@ -4744,9 +4757,9 @@ export default {
|
|
|
4744
4757
|
401: { description: 'Unauthorized' },
|
|
4745
4758
|
},
|
|
4746
4759
|
security: [
|
|
4747
|
-
{
|
|
4748
|
-
{
|
|
4749
|
-
{
|
|
4760
|
+
{ pat_with_workspace: [] },
|
|
4761
|
+
{ console_session: [] },
|
|
4762
|
+
{ api_key: [] },
|
|
4750
4763
|
],
|
|
4751
4764
|
summary: '/acs/users/add_to_access_group',
|
|
4752
4765
|
tags: [],
|
|
@@ -4761,6 +4774,14 @@ export default {
|
|
|
4761
4774
|
'application/json': {
|
|
4762
4775
|
schema: {
|
|
4763
4776
|
properties: {
|
|
4777
|
+
access_schedule: {
|
|
4778
|
+
properties: {
|
|
4779
|
+
ends_at: { format: 'date-time', type: 'string' },
|
|
4780
|
+
starts_at: { format: 'date-time', type: 'string' },
|
|
4781
|
+
},
|
|
4782
|
+
required: ['starts_at', 'ends_at'],
|
|
4783
|
+
type: 'object',
|
|
4784
|
+
},
|
|
4764
4785
|
acs_access_group_ids: {
|
|
4765
4786
|
default: [],
|
|
4766
4787
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -4802,9 +4823,9 @@ export default {
|
|
|
4802
4823
|
401: { description: 'Unauthorized' },
|
|
4803
4824
|
},
|
|
4804
4825
|
security: [
|
|
4805
|
-
{
|
|
4806
|
-
{
|
|
4807
|
-
{
|
|
4826
|
+
{ pat_with_workspace: [] },
|
|
4827
|
+
{ console_session: [] },
|
|
4828
|
+
{ api_key: [] },
|
|
4808
4829
|
],
|
|
4809
4830
|
summary: '/acs/users/create',
|
|
4810
4831
|
tags: [],
|
|
@@ -4843,9 +4864,9 @@ export default {
|
|
|
4843
4864
|
401: { description: 'Unauthorized' },
|
|
4844
4865
|
},
|
|
4845
4866
|
security: [
|
|
4846
|
-
{
|
|
4847
|
-
{
|
|
4848
|
-
{
|
|
4867
|
+
{ pat_with_workspace: [] },
|
|
4868
|
+
{ console_session: [] },
|
|
4869
|
+
{ api_key: [] },
|
|
4849
4870
|
],
|
|
4850
4871
|
summary: '/acs/users/delete',
|
|
4851
4872
|
tags: [],
|
|
@@ -4887,9 +4908,9 @@ export default {
|
|
|
4887
4908
|
401: { description: 'Unauthorized' },
|
|
4888
4909
|
},
|
|
4889
4910
|
security: [
|
|
4890
|
-
{
|
|
4891
|
-
{
|
|
4892
|
-
{
|
|
4911
|
+
{ pat_with_workspace: [] },
|
|
4912
|
+
{ console_session: [] },
|
|
4913
|
+
{ api_key: [] },
|
|
4893
4914
|
],
|
|
4894
4915
|
summary: '/acs/users/get',
|
|
4895
4916
|
tags: [],
|
|
@@ -4936,9 +4957,10 @@ export default {
|
|
|
4936
4957
|
401: { description: 'Unauthorized' },
|
|
4937
4958
|
},
|
|
4938
4959
|
security: [
|
|
4939
|
-
{
|
|
4940
|
-
{
|
|
4941
|
-
{
|
|
4960
|
+
{ client_session: [] },
|
|
4961
|
+
{ pat_with_workspace: [] },
|
|
4962
|
+
{ console_session: [] },
|
|
4963
|
+
{ api_key: [] },
|
|
4942
4964
|
],
|
|
4943
4965
|
summary: '/acs/users/list',
|
|
4944
4966
|
tags: [],
|
|
@@ -4969,9 +4991,9 @@ export default {
|
|
|
4969
4991
|
401: { description: 'Unauthorized' },
|
|
4970
4992
|
},
|
|
4971
4993
|
security: [
|
|
4972
|
-
{
|
|
4973
|
-
{
|
|
4974
|
-
{
|
|
4994
|
+
{ pat_with_workspace: [] },
|
|
4995
|
+
{ console_session: [] },
|
|
4996
|
+
{ api_key: [] },
|
|
4975
4997
|
],
|
|
4976
4998
|
summary: '/acs/users/remove_from_access_group',
|
|
4977
4999
|
tags: [],
|
|
@@ -5010,9 +5032,9 @@ export default {
|
|
|
5010
5032
|
401: { description: 'Unauthorized' },
|
|
5011
5033
|
},
|
|
5012
5034
|
security: [
|
|
5013
|
-
{
|
|
5014
|
-
{
|
|
5015
|
-
{
|
|
5035
|
+
{ pat_with_workspace: [] },
|
|
5036
|
+
{ console_session: [] },
|
|
5037
|
+
{ api_key: [] },
|
|
5016
5038
|
],
|
|
5017
5039
|
summary: '/acs/users/suspend',
|
|
5018
5040
|
tags: [],
|
|
@@ -5845,6 +5867,7 @@ export default {
|
|
|
5845
5867
|
'seam_passport',
|
|
5846
5868
|
'visionline',
|
|
5847
5869
|
'assa_abloy_credential_service',
|
|
5870
|
+
'seam_bridge',
|
|
5848
5871
|
'yale_access',
|
|
5849
5872
|
'hid_cm',
|
|
5850
5873
|
],
|
|
@@ -6460,6 +6483,7 @@ export default {
|
|
|
6460
6483
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
6461
6484
|
type: 'string',
|
|
6462
6485
|
},
|
|
6486
|
+
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
6463
6487
|
],
|
|
6464
6488
|
},
|
|
6465
6489
|
device_types: {
|
|
@@ -6503,6 +6527,10 @@ export default {
|
|
|
6503
6527
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
6504
6528
|
type: 'string',
|
|
6505
6529
|
},
|
|
6530
|
+
{
|
|
6531
|
+
enum: ['ios_phone', 'android_phone'],
|
|
6532
|
+
type: 'string',
|
|
6533
|
+
},
|
|
6506
6534
|
],
|
|
6507
6535
|
},
|
|
6508
6536
|
type: 'array',
|
|
@@ -6753,6 +6781,7 @@ export default {
|
|
|
6753
6781
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
6754
6782
|
type: 'string',
|
|
6755
6783
|
},
|
|
6784
|
+
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
6756
6785
|
],
|
|
6757
6786
|
},
|
|
6758
6787
|
device_types: {
|
|
@@ -6796,6 +6825,10 @@ export default {
|
|
|
6796
6825
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
6797
6826
|
type: 'string',
|
|
6798
6827
|
},
|
|
6828
|
+
{
|
|
6829
|
+
enum: ['ios_phone', 'android_phone'],
|
|
6830
|
+
type: 'string',
|
|
6831
|
+
},
|
|
6799
6832
|
],
|
|
6800
6833
|
},
|
|
6801
6834
|
type: 'array',
|
|
@@ -7562,6 +7595,7 @@ export default {
|
|
|
7562
7595
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
7563
7596
|
type: 'string',
|
|
7564
7597
|
},
|
|
7598
|
+
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
7565
7599
|
],
|
|
7566
7600
|
},
|
|
7567
7601
|
device_types: {
|
|
@@ -7605,6 +7639,10 @@ export default {
|
|
|
7605
7639
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
7606
7640
|
type: 'string',
|
|
7607
7641
|
},
|
|
7642
|
+
{
|
|
7643
|
+
enum: ['ios_phone', 'android_phone'],
|
|
7644
|
+
type: 'string',
|
|
7645
|
+
},
|
|
7608
7646
|
],
|
|
7609
7647
|
},
|
|
7610
7648
|
type: 'array',
|
|
@@ -8928,6 +8966,7 @@ export default {
|
|
|
8928
8966
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
8929
8967
|
type: 'string',
|
|
8930
8968
|
},
|
|
8969
|
+
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
8931
8970
|
],
|
|
8932
8971
|
},
|
|
8933
8972
|
device_types: {
|
|
@@ -8971,6 +9010,10 @@ export default {
|
|
|
8971
9010
|
enum: ['ecobee_thermostat', 'nest_thermostat'],
|
|
8972
9011
|
type: 'string',
|
|
8973
9012
|
},
|
|
9013
|
+
{
|
|
9014
|
+
enum: ['ios_phone', 'android_phone'],
|
|
9015
|
+
type: 'string',
|
|
9016
|
+
},
|
|
8974
9017
|
],
|
|
8975
9018
|
},
|
|
8976
9019
|
type: 'array',
|