@seamapi/types 1.246.0 → 1.247.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 +309 -100
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +244 -44
- package/lib/seam/connect/models/acs/acs-user.js +72 -20
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +95 -14
- package/lib/seam/connect/openapi.js +261 -78
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +149 -30
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +90 -20
- package/src/lib/seam/connect/openapi.ts +301 -78
- package/src/lib/seam/connect/route-types.ts +149 -30
|
@@ -2569,12 +2569,18 @@ export interface Routes {
|
|
|
2569
2569
|
formData: {}
|
|
2570
2570
|
jsonResponse: {
|
|
2571
2571
|
acs_users: Array<{
|
|
2572
|
+
/** ID of the `acs_user`. */
|
|
2572
2573
|
acs_user_id: string
|
|
2574
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
2573
2575
|
acs_system_id: string
|
|
2574
2576
|
hid_acs_system_id?: string | undefined
|
|
2577
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
2575
2578
|
workspace_id: string
|
|
2579
|
+
/** Date and time at which the `acs_user` was created. */
|
|
2576
2580
|
created_at: string
|
|
2581
|
+
/** Display name for the `acs_user`. */
|
|
2577
2582
|
display_name: string
|
|
2583
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
2578
2584
|
external_type?:
|
|
2579
2585
|
| (
|
|
2580
2586
|
| 'pti_user'
|
|
@@ -2584,20 +2590,30 @@ export interface Routes {
|
|
|
2584
2590
|
| 'latch_user'
|
|
2585
2591
|
)
|
|
2586
2592
|
| undefined
|
|
2593
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
2587
2594
|
external_type_display_name?: string | undefined
|
|
2595
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
2588
2596
|
is_suspended: boolean
|
|
2597
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
2589
2598
|
access_schedule?:
|
|
2590
2599
|
| {
|
|
2591
2600
|
starts_at: string
|
|
2592
2601
|
ends_at: string
|
|
2593
2602
|
}
|
|
2594
2603
|
| undefined
|
|
2604
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
2595
2605
|
user_identity_id?: string | undefined
|
|
2606
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
2596
2607
|
user_identity_full_name?: (string | null) | undefined
|
|
2608
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
2597
2609
|
user_identity_email_address?: (string | null) | undefined
|
|
2610
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
2598
2611
|
user_identity_phone_number?: (string | null) | undefined
|
|
2612
|
+
/** */
|
|
2599
2613
|
latest_desired_state_synced_with_provider_at?: string | undefined
|
|
2614
|
+
/** */
|
|
2600
2615
|
is_latest_desired_state_synced_with_provider?: boolean | undefined
|
|
2616
|
+
/** Warnings associated with the `acs_user`. */
|
|
2601
2617
|
warnings: Array<
|
|
2602
2618
|
| {
|
|
2603
2619
|
created_at: string
|
|
@@ -2610,6 +2626,7 @@ export interface Routes {
|
|
|
2610
2626
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
2611
2627
|
}
|
|
2612
2628
|
>
|
|
2629
|
+
/** Errors associated with the `acs_user`. */
|
|
2613
2630
|
errors: Array<
|
|
2614
2631
|
| {
|
|
2615
2632
|
/** Date and time at which Seam created the error. */
|
|
@@ -2647,11 +2664,14 @@ export interface Routes {
|
|
|
2647
2664
|
error_code: 'failed_to_delete_on_acs_system'
|
|
2648
2665
|
}
|
|
2649
2666
|
>
|
|
2667
|
+
/** Full name of the `acs_user`. */
|
|
2650
2668
|
full_name?: string | undefined
|
|
2651
2669
|
/**
|
|
2652
2670
|
* @deprecated use email_address. */
|
|
2653
2671
|
email?: string | undefined
|
|
2672
|
+
/** Email address of the `acs_user`. */
|
|
2654
2673
|
email_address?: string | undefined
|
|
2674
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
2655
2675
|
phone_number?: string | undefined
|
|
2656
2676
|
is_managed: true
|
|
2657
2677
|
}>
|
|
@@ -3963,23 +3983,32 @@ export interface Routes {
|
|
|
3963
3983
|
ends_at: string
|
|
3964
3984
|
}
|
|
3965
3985
|
| undefined
|
|
3986
|
+
/** Full name of the `acs_user`. */
|
|
3966
3987
|
full_name?: string | undefined
|
|
3967
3988
|
/**
|
|
3968
3989
|
* @deprecated use email_address. */
|
|
3969
3990
|
email?: string | undefined
|
|
3991
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
3970
3992
|
phone_number?: string | undefined
|
|
3993
|
+
/** Email address of the `acs_user`. */
|
|
3971
3994
|
email_address?: string | undefined
|
|
3972
3995
|
}
|
|
3973
3996
|
commonParams: {}
|
|
3974
3997
|
formData: {}
|
|
3975
3998
|
jsonResponse: {
|
|
3976
3999
|
acs_user: {
|
|
4000
|
+
/** ID of the `acs_user`. */
|
|
3977
4001
|
acs_user_id: string
|
|
4002
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
3978
4003
|
acs_system_id: string
|
|
3979
4004
|
hid_acs_system_id?: string | undefined
|
|
4005
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
3980
4006
|
workspace_id: string
|
|
4007
|
+
/** Date and time at which the `acs_user` was created. */
|
|
3981
4008
|
created_at: string
|
|
4009
|
+
/** Display name for the `acs_user`. */
|
|
3982
4010
|
display_name: string
|
|
4011
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
3983
4012
|
external_type?:
|
|
3984
4013
|
| (
|
|
3985
4014
|
| 'pti_user'
|
|
@@ -3989,20 +4018,30 @@ export interface Routes {
|
|
|
3989
4018
|
| 'latch_user'
|
|
3990
4019
|
)
|
|
3991
4020
|
| undefined
|
|
4021
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
3992
4022
|
external_type_display_name?: string | undefined
|
|
4023
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
3993
4024
|
is_suspended: boolean
|
|
4025
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
3994
4026
|
access_schedule?:
|
|
3995
4027
|
| {
|
|
3996
4028
|
starts_at: string
|
|
3997
4029
|
ends_at: string
|
|
3998
4030
|
}
|
|
3999
4031
|
| undefined
|
|
4032
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
4000
4033
|
user_identity_id?: string | undefined
|
|
4034
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
4001
4035
|
user_identity_full_name?: (string | null) | undefined
|
|
4036
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
4002
4037
|
user_identity_email_address?: (string | null) | undefined
|
|
4038
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4003
4039
|
user_identity_phone_number?: (string | null) | undefined
|
|
4040
|
+
/** */
|
|
4004
4041
|
latest_desired_state_synced_with_provider_at?: string | undefined
|
|
4042
|
+
/** */
|
|
4005
4043
|
is_latest_desired_state_synced_with_provider?: boolean | undefined
|
|
4044
|
+
/** Warnings associated with the `acs_user`. */
|
|
4006
4045
|
warnings: Array<
|
|
4007
4046
|
| {
|
|
4008
4047
|
created_at: string
|
|
@@ -4015,6 +4054,7 @@ export interface Routes {
|
|
|
4015
4054
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
4016
4055
|
}
|
|
4017
4056
|
>
|
|
4057
|
+
/** Errors associated with the `acs_user`. */
|
|
4018
4058
|
errors: Array<
|
|
4019
4059
|
| {
|
|
4020
4060
|
/** Date and time at which Seam created the error. */
|
|
@@ -4052,11 +4092,14 @@ export interface Routes {
|
|
|
4052
4092
|
error_code: 'failed_to_delete_on_acs_system'
|
|
4053
4093
|
}
|
|
4054
4094
|
>
|
|
4095
|
+
/** Full name of the `acs_user`. */
|
|
4055
4096
|
full_name?: string | undefined
|
|
4056
4097
|
/**
|
|
4057
4098
|
* @deprecated use email_address. */
|
|
4058
4099
|
email?: string | undefined
|
|
4100
|
+
/** Email address of the `acs_user`. */
|
|
4059
4101
|
email_address?: string | undefined
|
|
4102
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4060
4103
|
phone_number?: string | undefined
|
|
4061
4104
|
is_managed: true
|
|
4062
4105
|
}
|
|
@@ -4086,12 +4129,18 @@ export interface Routes {
|
|
|
4086
4129
|
formData: {}
|
|
4087
4130
|
jsonResponse: {
|
|
4088
4131
|
acs_user: {
|
|
4132
|
+
/** ID of the `acs_user`. */
|
|
4089
4133
|
acs_user_id: string
|
|
4134
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
4090
4135
|
acs_system_id: string
|
|
4091
4136
|
hid_acs_system_id?: string | undefined
|
|
4137
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
4092
4138
|
workspace_id: string
|
|
4139
|
+
/** Date and time at which the `acs_user` was created. */
|
|
4093
4140
|
created_at: string
|
|
4141
|
+
/** Display name for the `acs_user`. */
|
|
4094
4142
|
display_name: string
|
|
4143
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
4095
4144
|
external_type?:
|
|
4096
4145
|
| (
|
|
4097
4146
|
| 'pti_user'
|
|
@@ -4101,20 +4150,30 @@ export interface Routes {
|
|
|
4101
4150
|
| 'latch_user'
|
|
4102
4151
|
)
|
|
4103
4152
|
| undefined
|
|
4153
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
4104
4154
|
external_type_display_name?: string | undefined
|
|
4155
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
4105
4156
|
is_suspended: boolean
|
|
4157
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
4106
4158
|
access_schedule?:
|
|
4107
4159
|
| {
|
|
4108
4160
|
starts_at: string
|
|
4109
4161
|
ends_at: string
|
|
4110
4162
|
}
|
|
4111
4163
|
| undefined
|
|
4164
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
4112
4165
|
user_identity_id?: string | undefined
|
|
4166
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
4113
4167
|
user_identity_full_name?: (string | null) | undefined
|
|
4168
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
4114
4169
|
user_identity_email_address?: (string | null) | undefined
|
|
4170
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4115
4171
|
user_identity_phone_number?: (string | null) | undefined
|
|
4172
|
+
/** */
|
|
4116
4173
|
latest_desired_state_synced_with_provider_at?: string | undefined
|
|
4174
|
+
/** */
|
|
4117
4175
|
is_latest_desired_state_synced_with_provider?: boolean | undefined
|
|
4176
|
+
/** Warnings associated with the `acs_user`. */
|
|
4118
4177
|
warnings: Array<
|
|
4119
4178
|
| {
|
|
4120
4179
|
created_at: string
|
|
@@ -4127,6 +4186,7 @@ export interface Routes {
|
|
|
4127
4186
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
4128
4187
|
}
|
|
4129
4188
|
>
|
|
4189
|
+
/** Errors associated with the `acs_user`. */
|
|
4130
4190
|
errors: Array<
|
|
4131
4191
|
| {
|
|
4132
4192
|
/** Date and time at which Seam created the error. */
|
|
@@ -4164,11 +4224,14 @@ export interface Routes {
|
|
|
4164
4224
|
error_code: 'failed_to_delete_on_acs_system'
|
|
4165
4225
|
}
|
|
4166
4226
|
>
|
|
4227
|
+
/** Full name of the `acs_user`. */
|
|
4167
4228
|
full_name?: string | undefined
|
|
4168
4229
|
/**
|
|
4169
4230
|
* @deprecated use email_address. */
|
|
4170
4231
|
email?: string | undefined
|
|
4232
|
+
/** Email address of the `acs_user`. */
|
|
4171
4233
|
email_address?: string | undefined
|
|
4234
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4172
4235
|
phone_number?: string | undefined
|
|
4173
4236
|
is_managed: true
|
|
4174
4237
|
}
|
|
@@ -4194,12 +4257,18 @@ export interface Routes {
|
|
|
4194
4257
|
formData: {}
|
|
4195
4258
|
jsonResponse: {
|
|
4196
4259
|
acs_users: Array<{
|
|
4260
|
+
/** ID of the `acs_user`. */
|
|
4197
4261
|
acs_user_id: string
|
|
4262
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
4198
4263
|
acs_system_id: string
|
|
4199
4264
|
hid_acs_system_id?: string | undefined
|
|
4265
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
4200
4266
|
workspace_id: string
|
|
4267
|
+
/** Date and time at which the `acs_user` was created. */
|
|
4201
4268
|
created_at: string
|
|
4269
|
+
/** Display name for the `acs_user`. */
|
|
4202
4270
|
display_name: string
|
|
4271
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
4203
4272
|
external_type?:
|
|
4204
4273
|
| (
|
|
4205
4274
|
| 'pti_user'
|
|
@@ -4209,20 +4278,30 @@ export interface Routes {
|
|
|
4209
4278
|
| 'latch_user'
|
|
4210
4279
|
)
|
|
4211
4280
|
| undefined
|
|
4281
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
4212
4282
|
external_type_display_name?: string | undefined
|
|
4283
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
4213
4284
|
is_suspended: boolean
|
|
4285
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
4214
4286
|
access_schedule?:
|
|
4215
4287
|
| {
|
|
4216
4288
|
starts_at: string
|
|
4217
4289
|
ends_at: string
|
|
4218
4290
|
}
|
|
4219
4291
|
| undefined
|
|
4292
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
4220
4293
|
user_identity_id?: string | undefined
|
|
4294
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
4221
4295
|
user_identity_full_name?: (string | null) | undefined
|
|
4296
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
4222
4297
|
user_identity_email_address?: (string | null) | undefined
|
|
4298
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4223
4299
|
user_identity_phone_number?: (string | null) | undefined
|
|
4300
|
+
/** */
|
|
4224
4301
|
latest_desired_state_synced_with_provider_at?: string | undefined
|
|
4302
|
+
/** */
|
|
4225
4303
|
is_latest_desired_state_synced_with_provider?: boolean | undefined
|
|
4304
|
+
/** Warnings associated with the `acs_user`. */
|
|
4226
4305
|
warnings: Array<
|
|
4227
4306
|
| {
|
|
4228
4307
|
created_at: string
|
|
@@ -4235,6 +4314,7 @@ export interface Routes {
|
|
|
4235
4314
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
4236
4315
|
}
|
|
4237
4316
|
>
|
|
4317
|
+
/** Errors associated with the `acs_user`. */
|
|
4238
4318
|
errors: Array<
|
|
4239
4319
|
| {
|
|
4240
4320
|
/** Date and time at which Seam created the error. */
|
|
@@ -4272,11 +4352,14 @@ export interface Routes {
|
|
|
4272
4352
|
error_code: 'failed_to_delete_on_acs_system'
|
|
4273
4353
|
}
|
|
4274
4354
|
>
|
|
4355
|
+
/** Full name of the `acs_user`. */
|
|
4275
4356
|
full_name?: string | undefined
|
|
4276
4357
|
/**
|
|
4277
4358
|
* @deprecated use email_address. */
|
|
4278
4359
|
email?: string | undefined
|
|
4360
|
+
/** Email address of the `acs_user`. */
|
|
4279
4361
|
email_address?: string | undefined
|
|
4362
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4280
4363
|
phone_number?: string | undefined
|
|
4281
4364
|
is_managed: true
|
|
4282
4365
|
}>
|
|
@@ -4379,12 +4462,18 @@ export interface Routes {
|
|
|
4379
4462
|
formData: {}
|
|
4380
4463
|
jsonResponse: {
|
|
4381
4464
|
acs_user: {
|
|
4465
|
+
/** ID of the `acs_user`. */
|
|
4382
4466
|
acs_user_id: string
|
|
4467
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
4383
4468
|
acs_system_id: string
|
|
4384
4469
|
hid_acs_system_id?: string | undefined
|
|
4470
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
4385
4471
|
workspace_id: string
|
|
4472
|
+
/** Date and time at which the `acs_user` was created. */
|
|
4386
4473
|
created_at: string
|
|
4474
|
+
/** Display name for the `acs_user`. */
|
|
4387
4475
|
display_name: string
|
|
4476
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
4388
4477
|
external_type?:
|
|
4389
4478
|
| (
|
|
4390
4479
|
| 'pti_user'
|
|
@@ -4394,20 +4483,30 @@ export interface Routes {
|
|
|
4394
4483
|
| 'latch_user'
|
|
4395
4484
|
)
|
|
4396
4485
|
| undefined
|
|
4486
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
4397
4487
|
external_type_display_name?: string | undefined
|
|
4488
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
4398
4489
|
is_suspended: boolean
|
|
4490
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
4399
4491
|
access_schedule?:
|
|
4400
4492
|
| {
|
|
4401
4493
|
starts_at: string
|
|
4402
4494
|
ends_at: string
|
|
4403
4495
|
}
|
|
4404
4496
|
| undefined
|
|
4497
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
4405
4498
|
user_identity_id?: string | undefined
|
|
4499
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
4406
4500
|
user_identity_full_name?: (string | null) | undefined
|
|
4501
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
4407
4502
|
user_identity_email_address?: (string | null) | undefined
|
|
4503
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4408
4504
|
user_identity_phone_number?: (string | null) | undefined
|
|
4505
|
+
/** */
|
|
4409
4506
|
latest_desired_state_synced_with_provider_at?: string | undefined
|
|
4507
|
+
/** */
|
|
4410
4508
|
is_latest_desired_state_synced_with_provider?: boolean | undefined
|
|
4509
|
+
/** Warnings associated with the `acs_user`. */
|
|
4411
4510
|
warnings: Array<
|
|
4412
4511
|
| {
|
|
4413
4512
|
created_at: string
|
|
@@ -4420,6 +4519,7 @@ export interface Routes {
|
|
|
4420
4519
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
4421
4520
|
}
|
|
4422
4521
|
>
|
|
4522
|
+
/** Errors associated with the `acs_user`. */
|
|
4423
4523
|
errors: Array<
|
|
4424
4524
|
| {
|
|
4425
4525
|
/** Date and time at which Seam created the error. */
|
|
@@ -4457,11 +4557,14 @@ export interface Routes {
|
|
|
4457
4557
|
error_code: 'failed_to_delete_on_acs_system'
|
|
4458
4558
|
}
|
|
4459
4559
|
>
|
|
4560
|
+
/** Full name of the `acs_user`. */
|
|
4460
4561
|
full_name?: string | undefined
|
|
4461
4562
|
/**
|
|
4462
4563
|
* @deprecated use email_address. */
|
|
4463
4564
|
email?: string | undefined
|
|
4565
|
+
/** Email address of the `acs_user`. */
|
|
4464
4566
|
email_address?: string | undefined
|
|
4567
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4465
4568
|
phone_number?: string | undefined
|
|
4466
4569
|
is_managed: false
|
|
4467
4570
|
}
|
|
@@ -4482,12 +4585,18 @@ export interface Routes {
|
|
|
4482
4585
|
formData: {}
|
|
4483
4586
|
jsonResponse: {
|
|
4484
4587
|
acs_users: Array<{
|
|
4588
|
+
/** ID of the `acs_user`. */
|
|
4485
4589
|
acs_user_id: string
|
|
4590
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
4486
4591
|
acs_system_id: string
|
|
4487
4592
|
hid_acs_system_id?: string | undefined
|
|
4593
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
4488
4594
|
workspace_id: string
|
|
4595
|
+
/** Date and time at which the `acs_user` was created. */
|
|
4489
4596
|
created_at: string
|
|
4597
|
+
/** Display name for the `acs_user`. */
|
|
4490
4598
|
display_name: string
|
|
4599
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
4491
4600
|
external_type?:
|
|
4492
4601
|
| (
|
|
4493
4602
|
| 'pti_user'
|
|
@@ -4497,20 +4606,30 @@ export interface Routes {
|
|
|
4497
4606
|
| 'latch_user'
|
|
4498
4607
|
)
|
|
4499
4608
|
| undefined
|
|
4609
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
4500
4610
|
external_type_display_name?: string | undefined
|
|
4611
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
4501
4612
|
is_suspended: boolean
|
|
4613
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
4502
4614
|
access_schedule?:
|
|
4503
4615
|
| {
|
|
4504
4616
|
starts_at: string
|
|
4505
4617
|
ends_at: string
|
|
4506
4618
|
}
|
|
4507
4619
|
| undefined
|
|
4620
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
4508
4621
|
user_identity_id?: string | undefined
|
|
4622
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
4509
4623
|
user_identity_full_name?: (string | null) | undefined
|
|
4624
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
4510
4625
|
user_identity_email_address?: (string | null) | undefined
|
|
4626
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4511
4627
|
user_identity_phone_number?: (string | null) | undefined
|
|
4628
|
+
/** */
|
|
4512
4629
|
latest_desired_state_synced_with_provider_at?: string | undefined
|
|
4630
|
+
/** */
|
|
4513
4631
|
is_latest_desired_state_synced_with_provider?: boolean | undefined
|
|
4632
|
+
/** Warnings associated with the `acs_user`. */
|
|
4514
4633
|
warnings: Array<
|
|
4515
4634
|
| {
|
|
4516
4635
|
created_at: string
|
|
@@ -4523,6 +4642,7 @@ export interface Routes {
|
|
|
4523
4642
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
4524
4643
|
}
|
|
4525
4644
|
>
|
|
4645
|
+
/** Errors associated with the `acs_user`. */
|
|
4526
4646
|
errors: Array<
|
|
4527
4647
|
| {
|
|
4528
4648
|
/** Date and time at which Seam created the error. */
|
|
@@ -4560,11 +4680,14 @@ export interface Routes {
|
|
|
4560
4680
|
error_code: 'failed_to_delete_on_acs_system'
|
|
4561
4681
|
}
|
|
4562
4682
|
>
|
|
4683
|
+
/** Full name of the `acs_user`. */
|
|
4563
4684
|
full_name?: string | undefined
|
|
4564
4685
|
/**
|
|
4565
4686
|
* @deprecated use email_address. */
|
|
4566
4687
|
email?: string | undefined
|
|
4688
|
+
/** Email address of the `acs_user`. */
|
|
4567
4689
|
email_address?: string | undefined
|
|
4690
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4568
4691
|
phone_number?: string | undefined
|
|
4569
4692
|
is_managed: false
|
|
4570
4693
|
}>
|
|
@@ -4594,12 +4717,16 @@ export interface Routes {
|
|
|
4594
4717
|
ends_at: string
|
|
4595
4718
|
} | null)
|
|
4596
4719
|
| undefined
|
|
4720
|
+
/** ID of the `acs_user`. */
|
|
4597
4721
|
acs_user_id: string
|
|
4722
|
+
/** Full name of the `acs_user`. */
|
|
4598
4723
|
full_name?: string | undefined
|
|
4599
4724
|
/**
|
|
4600
4725
|
* @deprecated use email_address. */
|
|
4601
4726
|
email?: string | undefined
|
|
4727
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
4602
4728
|
phone_number?: string | undefined
|
|
4729
|
+
/** Email address of the `acs_user`. */
|
|
4603
4730
|
email_address?: string | undefined
|
|
4604
4731
|
hid_acs_system_id?: string | undefined
|
|
4605
4732
|
}
|
|
@@ -18358,20 +18485,7 @@ export interface Routes {
|
|
|
18358
18485
|
}
|
|
18359
18486
|
commonParams: {}
|
|
18360
18487
|
formData: {}
|
|
18361
|
-
jsonResponse: {
|
|
18362
|
-
thermostat_schedule: {
|
|
18363
|
-
thermostat_schedule_id: string
|
|
18364
|
-
device_id: string
|
|
18365
|
-
name?: string | undefined
|
|
18366
|
-
climate_preset_key: string
|
|
18367
|
-
max_override_period_minutes?: number
|
|
18368
|
-
starts_at: string
|
|
18369
|
-
ends_at: string
|
|
18370
|
-
created_at: string
|
|
18371
|
-
/** Collection of errors associated with the thermostat schedule, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
18372
|
-
errors?: any
|
|
18373
|
-
}
|
|
18374
|
-
}
|
|
18488
|
+
jsonResponse: {}
|
|
18375
18489
|
}
|
|
18376
18490
|
'/thermostats/set_fallback_climate_preset': {
|
|
18377
18491
|
route: '/thermostats/set_fallback_climate_preset'
|
|
@@ -18853,22 +18967,7 @@ export interface Routes {
|
|
|
18853
18967
|
}
|
|
18854
18968
|
commonParams: {}
|
|
18855
18969
|
formData: {}
|
|
18856
|
-
jsonResponse: {
|
|
18857
|
-
climate_preset: {
|
|
18858
|
-
climate_preset_key: string
|
|
18859
|
-
can_edit: boolean
|
|
18860
|
-
can_delete: boolean
|
|
18861
|
-
name?: string | null
|
|
18862
|
-
display_name: string
|
|
18863
|
-
fan_mode_setting?: ('auto' | 'on') | undefined
|
|
18864
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
18865
|
-
cooling_set_point_celsius?: number | undefined
|
|
18866
|
-
heating_set_point_celsius?: number | undefined
|
|
18867
|
-
cooling_set_point_fahrenheit?: number | undefined
|
|
18868
|
-
heating_set_point_fahrenheit?: number | undefined
|
|
18869
|
-
manual_override_allowed: boolean
|
|
18870
|
-
}
|
|
18871
|
-
}
|
|
18970
|
+
jsonResponse: {}
|
|
18872
18971
|
}
|
|
18873
18972
|
'/user_identities/add_acs_user': {
|
|
18874
18973
|
route: '/user_identities/add_acs_user'
|
|
@@ -20392,12 +20491,18 @@ export interface Routes {
|
|
|
20392
20491
|
formData: {}
|
|
20393
20492
|
jsonResponse: {
|
|
20394
20493
|
acs_users: Array<{
|
|
20494
|
+
/** ID of the `acs_user`. */
|
|
20395
20495
|
acs_user_id: string
|
|
20496
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
20396
20497
|
acs_system_id: string
|
|
20397
20498
|
hid_acs_system_id?: string | undefined
|
|
20499
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
20398
20500
|
workspace_id: string
|
|
20501
|
+
/** Date and time at which the `acs_user` was created. */
|
|
20399
20502
|
created_at: string
|
|
20503
|
+
/** Display name for the `acs_user`. */
|
|
20400
20504
|
display_name: string
|
|
20505
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
20401
20506
|
external_type?:
|
|
20402
20507
|
| (
|
|
20403
20508
|
| 'pti_user'
|
|
@@ -20407,20 +20512,30 @@ export interface Routes {
|
|
|
20407
20512
|
| 'latch_user'
|
|
20408
20513
|
)
|
|
20409
20514
|
| undefined
|
|
20515
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
20410
20516
|
external_type_display_name?: string | undefined
|
|
20517
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
20411
20518
|
is_suspended: boolean
|
|
20519
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
20412
20520
|
access_schedule?:
|
|
20413
20521
|
| {
|
|
20414
20522
|
starts_at: string
|
|
20415
20523
|
ends_at: string
|
|
20416
20524
|
}
|
|
20417
20525
|
| undefined
|
|
20526
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
20418
20527
|
user_identity_id?: string | undefined
|
|
20528
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
20419
20529
|
user_identity_full_name?: (string | null) | undefined
|
|
20530
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
20420
20531
|
user_identity_email_address?: (string | null) | undefined
|
|
20532
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
20421
20533
|
user_identity_phone_number?: (string | null) | undefined
|
|
20534
|
+
/** */
|
|
20422
20535
|
latest_desired_state_synced_with_provider_at?: string | undefined
|
|
20536
|
+
/** */
|
|
20423
20537
|
is_latest_desired_state_synced_with_provider?: boolean | undefined
|
|
20538
|
+
/** Warnings associated with the `acs_user`. */
|
|
20424
20539
|
warnings: Array<
|
|
20425
20540
|
| {
|
|
20426
20541
|
created_at: string
|
|
@@ -20433,6 +20548,7 @@ export interface Routes {
|
|
|
20433
20548
|
warning_code: 'salto_ks_user_not_subscribed'
|
|
20434
20549
|
}
|
|
20435
20550
|
>
|
|
20551
|
+
/** Errors associated with the `acs_user`. */
|
|
20436
20552
|
errors: Array<
|
|
20437
20553
|
| {
|
|
20438
20554
|
/** Date and time at which Seam created the error. */
|
|
@@ -20470,11 +20586,14 @@ export interface Routes {
|
|
|
20470
20586
|
error_code: 'failed_to_delete_on_acs_system'
|
|
20471
20587
|
}
|
|
20472
20588
|
>
|
|
20589
|
+
/** Full name of the `acs_user`. */
|
|
20473
20590
|
full_name?: string | undefined
|
|
20474
20591
|
/**
|
|
20475
20592
|
* @deprecated use email_address. */
|
|
20476
20593
|
email?: string | undefined
|
|
20594
|
+
/** Email address of the `acs_user`. */
|
|
20477
20595
|
email_address?: string | undefined
|
|
20596
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
20478
20597
|
phone_number?: string | undefined
|
|
20479
20598
|
is_managed: true
|
|
20480
20599
|
}>
|