@seamapi/types 1.246.0 → 1.247.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 +301 -72
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +242 -2
- 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 -2
- package/lib/seam/connect/openapi.js +253 -50
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +147 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +90 -20
- package/src/lib/seam/connect/openapi.ts +293 -50
- package/src/lib/seam/connect/route-types.ts +147 -0
package/dist/connect.d.cts
CHANGED
|
@@ -9971,6 +9971,7 @@ declare const _default: {
|
|
|
9971
9971
|
acs_user: {
|
|
9972
9972
|
properties: {
|
|
9973
9973
|
access_schedule: {
|
|
9974
|
+
description: string;
|
|
9974
9975
|
properties: {
|
|
9975
9976
|
ends_at: {
|
|
9976
9977
|
format: string;
|
|
@@ -9985,18 +9986,22 @@ declare const _default: {
|
|
|
9985
9986
|
type: string;
|
|
9986
9987
|
};
|
|
9987
9988
|
acs_system_id: {
|
|
9989
|
+
description: string;
|
|
9988
9990
|
format: string;
|
|
9989
9991
|
type: string;
|
|
9990
9992
|
};
|
|
9991
9993
|
acs_user_id: {
|
|
9994
|
+
description: string;
|
|
9992
9995
|
format: string;
|
|
9993
9996
|
type: string;
|
|
9994
9997
|
};
|
|
9995
9998
|
created_at: {
|
|
9999
|
+
description: string;
|
|
9996
10000
|
format: string;
|
|
9997
10001
|
type: string;
|
|
9998
10002
|
};
|
|
9999
10003
|
display_name: {
|
|
10004
|
+
description: string;
|
|
10000
10005
|
type: string;
|
|
10001
10006
|
};
|
|
10002
10007
|
email: {
|
|
@@ -10006,10 +10011,12 @@ declare const _default: {
|
|
|
10006
10011
|
'x-deprecated': string;
|
|
10007
10012
|
};
|
|
10008
10013
|
email_address: {
|
|
10014
|
+
description: string;
|
|
10009
10015
|
format: string;
|
|
10010
10016
|
type: string;
|
|
10011
10017
|
};
|
|
10012
10018
|
errors: {
|
|
10019
|
+
description: string;
|
|
10013
10020
|
items: {
|
|
10014
10021
|
description: string;
|
|
10015
10022
|
oneOf: {
|
|
@@ -10036,13 +10043,16 @@ declare const _default: {
|
|
|
10036
10043
|
type: string;
|
|
10037
10044
|
};
|
|
10038
10045
|
external_type: {
|
|
10046
|
+
description: string;
|
|
10039
10047
|
enum: string[];
|
|
10040
10048
|
type: string;
|
|
10041
10049
|
};
|
|
10042
10050
|
external_type_display_name: {
|
|
10051
|
+
description: string;
|
|
10043
10052
|
type: string;
|
|
10044
10053
|
};
|
|
10045
10054
|
full_name: {
|
|
10055
|
+
description: string;
|
|
10046
10056
|
type: string;
|
|
10047
10057
|
};
|
|
10048
10058
|
hid_acs_system_id: {
|
|
@@ -10051,37 +10061,46 @@ declare const _default: {
|
|
|
10051
10061
|
};
|
|
10052
10062
|
is_latest_desired_state_synced_with_provider: {
|
|
10053
10063
|
type: string;
|
|
10064
|
+
'x-undocumented': string;
|
|
10054
10065
|
};
|
|
10055
10066
|
is_managed: {
|
|
10056
10067
|
enum: boolean[];
|
|
10057
10068
|
type: string;
|
|
10058
10069
|
};
|
|
10059
10070
|
is_suspended: {
|
|
10071
|
+
description: string;
|
|
10060
10072
|
type: string;
|
|
10061
10073
|
};
|
|
10062
10074
|
latest_desired_state_synced_with_provider_at: {
|
|
10063
10075
|
format: string;
|
|
10064
10076
|
type: string;
|
|
10077
|
+
'x-undocumented': string;
|
|
10065
10078
|
};
|
|
10066
10079
|
phone_number: {
|
|
10080
|
+
description: string;
|
|
10067
10081
|
type: string;
|
|
10068
10082
|
};
|
|
10069
10083
|
user_identity_email_address: {
|
|
10084
|
+
description: string;
|
|
10070
10085
|
nullable: boolean;
|
|
10071
10086
|
type: string;
|
|
10072
10087
|
};
|
|
10073
10088
|
user_identity_full_name: {
|
|
10089
|
+
description: string;
|
|
10074
10090
|
nullable: boolean;
|
|
10075
10091
|
type: string;
|
|
10076
10092
|
};
|
|
10077
10093
|
user_identity_id: {
|
|
10094
|
+
description: string;
|
|
10078
10095
|
type: string;
|
|
10079
10096
|
};
|
|
10080
10097
|
user_identity_phone_number: {
|
|
10098
|
+
description: string;
|
|
10081
10099
|
nullable: boolean;
|
|
10082
10100
|
type: string;
|
|
10083
10101
|
};
|
|
10084
10102
|
warnings: {
|
|
10103
|
+
description: string;
|
|
10085
10104
|
items: {
|
|
10086
10105
|
description: string;
|
|
10087
10106
|
oneOf: {
|
|
@@ -10106,6 +10125,7 @@ declare const _default: {
|
|
|
10106
10125
|
type: string;
|
|
10107
10126
|
};
|
|
10108
10127
|
workspace_id: {
|
|
10128
|
+
description: string;
|
|
10109
10129
|
format: string;
|
|
10110
10130
|
type: string;
|
|
10111
10131
|
};
|
|
@@ -17742,13 +17762,16 @@ declare const _default: {
|
|
|
17742
17762
|
'x-deprecated': string;
|
|
17743
17763
|
};
|
|
17744
17764
|
email_address: {
|
|
17765
|
+
description: string;
|
|
17745
17766
|
format: string;
|
|
17746
17767
|
type: string;
|
|
17747
17768
|
};
|
|
17748
17769
|
full_name: {
|
|
17770
|
+
description: string;
|
|
17749
17771
|
type: string;
|
|
17750
17772
|
};
|
|
17751
17773
|
phone_number: {
|
|
17774
|
+
description: string;
|
|
17752
17775
|
type: string;
|
|
17753
17776
|
};
|
|
17754
17777
|
user_identity_id: {
|
|
@@ -18358,21 +18381,37 @@ declare const _default: {
|
|
|
18358
18381
|
acs_user: {
|
|
18359
18382
|
properties: {
|
|
18360
18383
|
access_schedule: {
|
|
18361
|
-
|
|
18384
|
+
description: string;
|
|
18385
|
+
properties: {
|
|
18386
|
+
ends_at: {
|
|
18387
|
+
format: string;
|
|
18388
|
+
type: string;
|
|
18389
|
+
};
|
|
18390
|
+
starts_at: {
|
|
18391
|
+
format: string;
|
|
18392
|
+
type: string;
|
|
18393
|
+
};
|
|
18394
|
+
};
|
|
18395
|
+
required: string[];
|
|
18396
|
+
type: string;
|
|
18362
18397
|
};
|
|
18363
18398
|
acs_system_id: {
|
|
18399
|
+
description: string;
|
|
18364
18400
|
format: string;
|
|
18365
18401
|
type: string;
|
|
18366
18402
|
};
|
|
18367
18403
|
acs_user_id: {
|
|
18404
|
+
description: string;
|
|
18368
18405
|
format: string;
|
|
18369
18406
|
type: string;
|
|
18370
18407
|
};
|
|
18371
18408
|
created_at: {
|
|
18409
|
+
description: string;
|
|
18372
18410
|
format: string;
|
|
18373
18411
|
type: string;
|
|
18374
18412
|
};
|
|
18375
18413
|
display_name: {
|
|
18414
|
+
description: string;
|
|
18376
18415
|
type: string;
|
|
18377
18416
|
};
|
|
18378
18417
|
email: {
|
|
@@ -18382,10 +18421,12 @@ declare const _default: {
|
|
|
18382
18421
|
'x-deprecated': string;
|
|
18383
18422
|
};
|
|
18384
18423
|
email_address: {
|
|
18424
|
+
description: string;
|
|
18385
18425
|
format: string;
|
|
18386
18426
|
type: string;
|
|
18387
18427
|
};
|
|
18388
18428
|
errors: {
|
|
18429
|
+
description: string;
|
|
18389
18430
|
items: {
|
|
18390
18431
|
description: string;
|
|
18391
18432
|
oneOf: {
|
|
@@ -18412,13 +18453,16 @@ declare const _default: {
|
|
|
18412
18453
|
type: string;
|
|
18413
18454
|
};
|
|
18414
18455
|
external_type: {
|
|
18456
|
+
description: string;
|
|
18415
18457
|
enum: string[];
|
|
18416
18458
|
type: string;
|
|
18417
18459
|
};
|
|
18418
18460
|
external_type_display_name: {
|
|
18461
|
+
description: string;
|
|
18419
18462
|
type: string;
|
|
18420
18463
|
};
|
|
18421
18464
|
full_name: {
|
|
18465
|
+
description: string;
|
|
18422
18466
|
type: string;
|
|
18423
18467
|
};
|
|
18424
18468
|
hid_acs_system_id: {
|
|
@@ -18427,37 +18471,46 @@ declare const _default: {
|
|
|
18427
18471
|
};
|
|
18428
18472
|
is_latest_desired_state_synced_with_provider: {
|
|
18429
18473
|
type: string;
|
|
18474
|
+
'x-undocumented': string;
|
|
18430
18475
|
};
|
|
18431
18476
|
is_managed: {
|
|
18432
18477
|
enum: boolean[];
|
|
18433
18478
|
type: string;
|
|
18434
18479
|
};
|
|
18435
18480
|
is_suspended: {
|
|
18481
|
+
description: string;
|
|
18436
18482
|
type: string;
|
|
18437
18483
|
};
|
|
18438
18484
|
latest_desired_state_synced_with_provider_at: {
|
|
18439
18485
|
format: string;
|
|
18440
18486
|
type: string;
|
|
18487
|
+
'x-undocumented': string;
|
|
18441
18488
|
};
|
|
18442
18489
|
phone_number: {
|
|
18490
|
+
description: string;
|
|
18443
18491
|
type: string;
|
|
18444
18492
|
};
|
|
18445
18493
|
user_identity_email_address: {
|
|
18494
|
+
description: string;
|
|
18446
18495
|
nullable: boolean;
|
|
18447
18496
|
type: string;
|
|
18448
18497
|
};
|
|
18449
18498
|
user_identity_full_name: {
|
|
18499
|
+
description: string;
|
|
18450
18500
|
nullable: boolean;
|
|
18451
18501
|
type: string;
|
|
18452
18502
|
};
|
|
18453
18503
|
user_identity_id: {
|
|
18504
|
+
description: string;
|
|
18454
18505
|
type: string;
|
|
18455
18506
|
};
|
|
18456
18507
|
user_identity_phone_number: {
|
|
18508
|
+
description: string;
|
|
18457
18509
|
nullable: boolean;
|
|
18458
18510
|
type: string;
|
|
18459
18511
|
};
|
|
18460
18512
|
warnings: {
|
|
18513
|
+
description: string;
|
|
18461
18514
|
items: {
|
|
18462
18515
|
description: string;
|
|
18463
18516
|
oneOf: {
|
|
@@ -18482,6 +18535,7 @@ declare const _default: {
|
|
|
18482
18535
|
type: string;
|
|
18483
18536
|
};
|
|
18484
18537
|
workspace_id: {
|
|
18538
|
+
description: string;
|
|
18485
18539
|
format: string;
|
|
18486
18540
|
type: string;
|
|
18487
18541
|
};
|
|
@@ -18571,21 +18625,37 @@ declare const _default: {
|
|
|
18571
18625
|
items: {
|
|
18572
18626
|
properties: {
|
|
18573
18627
|
access_schedule: {
|
|
18574
|
-
|
|
18628
|
+
description: string;
|
|
18629
|
+
properties: {
|
|
18630
|
+
ends_at: {
|
|
18631
|
+
format: string;
|
|
18632
|
+
type: string;
|
|
18633
|
+
};
|
|
18634
|
+
starts_at: {
|
|
18635
|
+
format: string;
|
|
18636
|
+
type: string;
|
|
18637
|
+
};
|
|
18638
|
+
};
|
|
18639
|
+
required: string[];
|
|
18640
|
+
type: string;
|
|
18575
18641
|
};
|
|
18576
18642
|
acs_system_id: {
|
|
18643
|
+
description: string;
|
|
18577
18644
|
format: string;
|
|
18578
18645
|
type: string;
|
|
18579
18646
|
};
|
|
18580
18647
|
acs_user_id: {
|
|
18648
|
+
description: string;
|
|
18581
18649
|
format: string;
|
|
18582
18650
|
type: string;
|
|
18583
18651
|
};
|
|
18584
18652
|
created_at: {
|
|
18653
|
+
description: string;
|
|
18585
18654
|
format: string;
|
|
18586
18655
|
type: string;
|
|
18587
18656
|
};
|
|
18588
18657
|
display_name: {
|
|
18658
|
+
description: string;
|
|
18589
18659
|
type: string;
|
|
18590
18660
|
};
|
|
18591
18661
|
email: {
|
|
@@ -18595,10 +18665,12 @@ declare const _default: {
|
|
|
18595
18665
|
'x-deprecated': string;
|
|
18596
18666
|
};
|
|
18597
18667
|
email_address: {
|
|
18668
|
+
description: string;
|
|
18598
18669
|
format: string;
|
|
18599
18670
|
type: string;
|
|
18600
18671
|
};
|
|
18601
18672
|
errors: {
|
|
18673
|
+
description: string;
|
|
18602
18674
|
items: {
|
|
18603
18675
|
description: string;
|
|
18604
18676
|
oneOf: {
|
|
@@ -18625,13 +18697,16 @@ declare const _default: {
|
|
|
18625
18697
|
type: string;
|
|
18626
18698
|
};
|
|
18627
18699
|
external_type: {
|
|
18700
|
+
description: string;
|
|
18628
18701
|
enum: string[];
|
|
18629
18702
|
type: string;
|
|
18630
18703
|
};
|
|
18631
18704
|
external_type_display_name: {
|
|
18705
|
+
description: string;
|
|
18632
18706
|
type: string;
|
|
18633
18707
|
};
|
|
18634
18708
|
full_name: {
|
|
18709
|
+
description: string;
|
|
18635
18710
|
type: string;
|
|
18636
18711
|
};
|
|
18637
18712
|
hid_acs_system_id: {
|
|
@@ -18640,37 +18715,46 @@ declare const _default: {
|
|
|
18640
18715
|
};
|
|
18641
18716
|
is_latest_desired_state_synced_with_provider: {
|
|
18642
18717
|
type: string;
|
|
18718
|
+
'x-undocumented': string;
|
|
18643
18719
|
};
|
|
18644
18720
|
is_managed: {
|
|
18645
18721
|
enum: boolean[];
|
|
18646
18722
|
type: string;
|
|
18647
18723
|
};
|
|
18648
18724
|
is_suspended: {
|
|
18725
|
+
description: string;
|
|
18649
18726
|
type: string;
|
|
18650
18727
|
};
|
|
18651
18728
|
latest_desired_state_synced_with_provider_at: {
|
|
18652
18729
|
format: string;
|
|
18653
18730
|
type: string;
|
|
18731
|
+
'x-undocumented': string;
|
|
18654
18732
|
};
|
|
18655
18733
|
phone_number: {
|
|
18734
|
+
description: string;
|
|
18656
18735
|
type: string;
|
|
18657
18736
|
};
|
|
18658
18737
|
user_identity_email_address: {
|
|
18738
|
+
description: string;
|
|
18659
18739
|
nullable: boolean;
|
|
18660
18740
|
type: string;
|
|
18661
18741
|
};
|
|
18662
18742
|
user_identity_full_name: {
|
|
18743
|
+
description: string;
|
|
18663
18744
|
nullable: boolean;
|
|
18664
18745
|
type: string;
|
|
18665
18746
|
};
|
|
18666
18747
|
user_identity_id: {
|
|
18748
|
+
description: string;
|
|
18667
18749
|
type: string;
|
|
18668
18750
|
};
|
|
18669
18751
|
user_identity_phone_number: {
|
|
18752
|
+
description: string;
|
|
18670
18753
|
nullable: boolean;
|
|
18671
18754
|
type: string;
|
|
18672
18755
|
};
|
|
18673
18756
|
warnings: {
|
|
18757
|
+
description: string;
|
|
18674
18758
|
items: {
|
|
18675
18759
|
description: string;
|
|
18676
18760
|
oneOf: {
|
|
@@ -18695,6 +18779,7 @@ declare const _default: {
|
|
|
18695
18779
|
type: string;
|
|
18696
18780
|
};
|
|
18697
18781
|
workspace_id: {
|
|
18782
|
+
description: string;
|
|
18698
18783
|
format: string;
|
|
18699
18784
|
type: string;
|
|
18700
18785
|
};
|
|
@@ -18834,6 +18919,7 @@ declare const _default: {
|
|
|
18834
18919
|
type: string;
|
|
18835
18920
|
};
|
|
18836
18921
|
acs_user_id: {
|
|
18922
|
+
description: string;
|
|
18837
18923
|
format: string;
|
|
18838
18924
|
type: string;
|
|
18839
18925
|
};
|
|
@@ -18844,10 +18930,12 @@ declare const _default: {
|
|
|
18844
18930
|
'x-deprecated': string;
|
|
18845
18931
|
};
|
|
18846
18932
|
email_address: {
|
|
18933
|
+
description: string;
|
|
18847
18934
|
format: string;
|
|
18848
18935
|
type: string;
|
|
18849
18936
|
};
|
|
18850
18937
|
full_name: {
|
|
18938
|
+
description: string;
|
|
18851
18939
|
type: string;
|
|
18852
18940
|
};
|
|
18853
18941
|
hid_acs_system_id: {
|
|
@@ -18855,6 +18943,7 @@ declare const _default: {
|
|
|
18855
18943
|
type: string;
|
|
18856
18944
|
};
|
|
18857
18945
|
phone_number: {
|
|
18946
|
+
description: string;
|
|
18858
18947
|
type: string;
|
|
18859
18948
|
};
|
|
18860
18949
|
};
|
|
@@ -18931,6 +19020,7 @@ declare const _default: {
|
|
|
18931
19020
|
type: string;
|
|
18932
19021
|
};
|
|
18933
19022
|
acs_user_id: {
|
|
19023
|
+
description: string;
|
|
18934
19024
|
format: string;
|
|
18935
19025
|
type: string;
|
|
18936
19026
|
};
|
|
@@ -18941,10 +19031,12 @@ declare const _default: {
|
|
|
18941
19031
|
'x-deprecated': string;
|
|
18942
19032
|
};
|
|
18943
19033
|
email_address: {
|
|
19034
|
+
description: string;
|
|
18944
19035
|
format: string;
|
|
18945
19036
|
type: string;
|
|
18946
19037
|
};
|
|
18947
19038
|
full_name: {
|
|
19039
|
+
description: string;
|
|
18948
19040
|
type: string;
|
|
18949
19041
|
};
|
|
18950
19042
|
hid_acs_system_id: {
|
|
@@ -18952,6 +19044,7 @@ declare const _default: {
|
|
|
18952
19044
|
type: string;
|
|
18953
19045
|
};
|
|
18954
19046
|
phone_number: {
|
|
19047
|
+
description: string;
|
|
18955
19048
|
type: string;
|
|
18956
19049
|
};
|
|
18957
19050
|
};
|
|
@@ -29588,25 +29681,41 @@ interface Routes {
|
|
|
29588
29681
|
formData: {};
|
|
29589
29682
|
jsonResponse: {
|
|
29590
29683
|
acs_users: Array<{
|
|
29684
|
+
/** ID of the `acs_user`. */
|
|
29591
29685
|
acs_user_id: string;
|
|
29686
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
29592
29687
|
acs_system_id: string;
|
|
29593
29688
|
hid_acs_system_id?: string | undefined;
|
|
29689
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
29594
29690
|
workspace_id: string;
|
|
29691
|
+
/** Date and time at which the `acs_user` was created. */
|
|
29595
29692
|
created_at: string;
|
|
29693
|
+
/** Display name for the `acs_user`. */
|
|
29596
29694
|
display_name: string;
|
|
29695
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
29597
29696
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
29697
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
29598
29698
|
external_type_display_name?: string | undefined;
|
|
29699
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
29599
29700
|
is_suspended: boolean;
|
|
29701
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
29600
29702
|
access_schedule?: {
|
|
29601
29703
|
starts_at: string;
|
|
29602
29704
|
ends_at: string;
|
|
29603
29705
|
} | undefined;
|
|
29706
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
29604
29707
|
user_identity_id?: string | undefined;
|
|
29708
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
29605
29709
|
user_identity_full_name?: (string | null) | undefined;
|
|
29710
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
29606
29711
|
user_identity_email_address?: (string | null) | undefined;
|
|
29712
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
29607
29713
|
user_identity_phone_number?: (string | null) | undefined;
|
|
29714
|
+
/** */
|
|
29608
29715
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
29716
|
+
/** */
|
|
29609
29717
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
29718
|
+
/** Warnings associated with the `acs_user`. */
|
|
29610
29719
|
warnings: Array<{
|
|
29611
29720
|
created_at: string;
|
|
29612
29721
|
message: string;
|
|
@@ -29616,6 +29725,7 @@ interface Routes {
|
|
|
29616
29725
|
message: string;
|
|
29617
29726
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
29618
29727
|
}>;
|
|
29728
|
+
/** Errors associated with the `acs_user`. */
|
|
29619
29729
|
errors: Array<{
|
|
29620
29730
|
/** Date and time at which Seam created the error. */
|
|
29621
29731
|
created_at: string;
|
|
@@ -29647,11 +29757,14 @@ interface Routes {
|
|
|
29647
29757
|
message: string;
|
|
29648
29758
|
error_code: 'failed_to_delete_on_acs_system';
|
|
29649
29759
|
}>;
|
|
29760
|
+
/** Full name of the `acs_user`. */
|
|
29650
29761
|
full_name?: string | undefined;
|
|
29651
29762
|
/**
|
|
29652
29763
|
* @deprecated use email_address. */
|
|
29653
29764
|
email?: string | undefined;
|
|
29765
|
+
/** Email address of the `acs_user`. */
|
|
29654
29766
|
email_address?: string | undefined;
|
|
29767
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
29655
29768
|
phone_number?: string | undefined;
|
|
29656
29769
|
is_managed: true;
|
|
29657
29770
|
}>;
|
|
@@ -30719,36 +30832,55 @@ interface Routes {
|
|
|
30719
30832
|
starts_at: string;
|
|
30720
30833
|
ends_at: string;
|
|
30721
30834
|
} | undefined;
|
|
30835
|
+
/** Full name of the `acs_user`. */
|
|
30722
30836
|
full_name?: string | undefined;
|
|
30723
30837
|
/**
|
|
30724
30838
|
* @deprecated use email_address. */
|
|
30725
30839
|
email?: string | undefined;
|
|
30840
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
30726
30841
|
phone_number?: string | undefined;
|
|
30842
|
+
/** Email address of the `acs_user`. */
|
|
30727
30843
|
email_address?: string | undefined;
|
|
30728
30844
|
};
|
|
30729
30845
|
commonParams: {};
|
|
30730
30846
|
formData: {};
|
|
30731
30847
|
jsonResponse: {
|
|
30732
30848
|
acs_user: {
|
|
30849
|
+
/** ID of the `acs_user`. */
|
|
30733
30850
|
acs_user_id: string;
|
|
30851
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
30734
30852
|
acs_system_id: string;
|
|
30735
30853
|
hid_acs_system_id?: string | undefined;
|
|
30854
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
30736
30855
|
workspace_id: string;
|
|
30856
|
+
/** Date and time at which the `acs_user` was created. */
|
|
30737
30857
|
created_at: string;
|
|
30858
|
+
/** Display name for the `acs_user`. */
|
|
30738
30859
|
display_name: string;
|
|
30860
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
30739
30861
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
30862
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
30740
30863
|
external_type_display_name?: string | undefined;
|
|
30864
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
30741
30865
|
is_suspended: boolean;
|
|
30866
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
30742
30867
|
access_schedule?: {
|
|
30743
30868
|
starts_at: string;
|
|
30744
30869
|
ends_at: string;
|
|
30745
30870
|
} | undefined;
|
|
30871
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
30746
30872
|
user_identity_id?: string | undefined;
|
|
30873
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
30747
30874
|
user_identity_full_name?: (string | null) | undefined;
|
|
30875
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
30748
30876
|
user_identity_email_address?: (string | null) | undefined;
|
|
30877
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
30749
30878
|
user_identity_phone_number?: (string | null) | undefined;
|
|
30879
|
+
/** */
|
|
30750
30880
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
30881
|
+
/** */
|
|
30751
30882
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
30883
|
+
/** Warnings associated with the `acs_user`. */
|
|
30752
30884
|
warnings: Array<{
|
|
30753
30885
|
created_at: string;
|
|
30754
30886
|
message: string;
|
|
@@ -30758,6 +30890,7 @@ interface Routes {
|
|
|
30758
30890
|
message: string;
|
|
30759
30891
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
30760
30892
|
}>;
|
|
30893
|
+
/** Errors associated with the `acs_user`. */
|
|
30761
30894
|
errors: Array<{
|
|
30762
30895
|
/** Date and time at which Seam created the error. */
|
|
30763
30896
|
created_at: string;
|
|
@@ -30789,11 +30922,14 @@ interface Routes {
|
|
|
30789
30922
|
message: string;
|
|
30790
30923
|
error_code: 'failed_to_delete_on_acs_system';
|
|
30791
30924
|
}>;
|
|
30925
|
+
/** Full name of the `acs_user`. */
|
|
30792
30926
|
full_name?: string | undefined;
|
|
30793
30927
|
/**
|
|
30794
30928
|
* @deprecated use email_address. */
|
|
30795
30929
|
email?: string | undefined;
|
|
30930
|
+
/** Email address of the `acs_user`. */
|
|
30796
30931
|
email_address?: string | undefined;
|
|
30932
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
30797
30933
|
phone_number?: string | undefined;
|
|
30798
30934
|
is_managed: true;
|
|
30799
30935
|
};
|
|
@@ -30823,25 +30959,41 @@ interface Routes {
|
|
|
30823
30959
|
formData: {};
|
|
30824
30960
|
jsonResponse: {
|
|
30825
30961
|
acs_user: {
|
|
30962
|
+
/** ID of the `acs_user`. */
|
|
30826
30963
|
acs_user_id: string;
|
|
30964
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
30827
30965
|
acs_system_id: string;
|
|
30828
30966
|
hid_acs_system_id?: string | undefined;
|
|
30967
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
30829
30968
|
workspace_id: string;
|
|
30969
|
+
/** Date and time at which the `acs_user` was created. */
|
|
30830
30970
|
created_at: string;
|
|
30971
|
+
/** Display name for the `acs_user`. */
|
|
30831
30972
|
display_name: string;
|
|
30973
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
30832
30974
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
30975
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
30833
30976
|
external_type_display_name?: string | undefined;
|
|
30977
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
30834
30978
|
is_suspended: boolean;
|
|
30979
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
30835
30980
|
access_schedule?: {
|
|
30836
30981
|
starts_at: string;
|
|
30837
30982
|
ends_at: string;
|
|
30838
30983
|
} | undefined;
|
|
30984
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
30839
30985
|
user_identity_id?: string | undefined;
|
|
30986
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
30840
30987
|
user_identity_full_name?: (string | null) | undefined;
|
|
30988
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
30841
30989
|
user_identity_email_address?: (string | null) | undefined;
|
|
30990
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
30842
30991
|
user_identity_phone_number?: (string | null) | undefined;
|
|
30992
|
+
/** */
|
|
30843
30993
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
30994
|
+
/** */
|
|
30844
30995
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
30996
|
+
/** Warnings associated with the `acs_user`. */
|
|
30845
30997
|
warnings: Array<{
|
|
30846
30998
|
created_at: string;
|
|
30847
30999
|
message: string;
|
|
@@ -30851,6 +31003,7 @@ interface Routes {
|
|
|
30851
31003
|
message: string;
|
|
30852
31004
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
30853
31005
|
}>;
|
|
31006
|
+
/** Errors associated with the `acs_user`. */
|
|
30854
31007
|
errors: Array<{
|
|
30855
31008
|
/** Date and time at which Seam created the error. */
|
|
30856
31009
|
created_at: string;
|
|
@@ -30882,11 +31035,14 @@ interface Routes {
|
|
|
30882
31035
|
message: string;
|
|
30883
31036
|
error_code: 'failed_to_delete_on_acs_system';
|
|
30884
31037
|
}>;
|
|
31038
|
+
/** Full name of the `acs_user`. */
|
|
30885
31039
|
full_name?: string | undefined;
|
|
30886
31040
|
/**
|
|
30887
31041
|
* @deprecated use email_address. */
|
|
30888
31042
|
email?: string | undefined;
|
|
31043
|
+
/** Email address of the `acs_user`. */
|
|
30889
31044
|
email_address?: string | undefined;
|
|
31045
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
30890
31046
|
phone_number?: string | undefined;
|
|
30891
31047
|
is_managed: true;
|
|
30892
31048
|
};
|
|
@@ -30912,25 +31068,41 @@ interface Routes {
|
|
|
30912
31068
|
formData: {};
|
|
30913
31069
|
jsonResponse: {
|
|
30914
31070
|
acs_users: Array<{
|
|
31071
|
+
/** ID of the `acs_user`. */
|
|
30915
31072
|
acs_user_id: string;
|
|
31073
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
30916
31074
|
acs_system_id: string;
|
|
30917
31075
|
hid_acs_system_id?: string | undefined;
|
|
31076
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
30918
31077
|
workspace_id: string;
|
|
31078
|
+
/** Date and time at which the `acs_user` was created. */
|
|
30919
31079
|
created_at: string;
|
|
31080
|
+
/** Display name for the `acs_user`. */
|
|
30920
31081
|
display_name: string;
|
|
31082
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
30921
31083
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
31084
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
30922
31085
|
external_type_display_name?: string | undefined;
|
|
31086
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
30923
31087
|
is_suspended: boolean;
|
|
31088
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
30924
31089
|
access_schedule?: {
|
|
30925
31090
|
starts_at: string;
|
|
30926
31091
|
ends_at: string;
|
|
30927
31092
|
} | undefined;
|
|
31093
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
30928
31094
|
user_identity_id?: string | undefined;
|
|
31095
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
30929
31096
|
user_identity_full_name?: (string | null) | undefined;
|
|
31097
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
30930
31098
|
user_identity_email_address?: (string | null) | undefined;
|
|
31099
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
30931
31100
|
user_identity_phone_number?: (string | null) | undefined;
|
|
31101
|
+
/** */
|
|
30932
31102
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
31103
|
+
/** */
|
|
30933
31104
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
31105
|
+
/** Warnings associated with the `acs_user`. */
|
|
30934
31106
|
warnings: Array<{
|
|
30935
31107
|
created_at: string;
|
|
30936
31108
|
message: string;
|
|
@@ -30940,6 +31112,7 @@ interface Routes {
|
|
|
30940
31112
|
message: string;
|
|
30941
31113
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
30942
31114
|
}>;
|
|
31115
|
+
/** Errors associated with the `acs_user`. */
|
|
30943
31116
|
errors: Array<{
|
|
30944
31117
|
/** Date and time at which Seam created the error. */
|
|
30945
31118
|
created_at: string;
|
|
@@ -30971,11 +31144,14 @@ interface Routes {
|
|
|
30971
31144
|
message: string;
|
|
30972
31145
|
error_code: 'failed_to_delete_on_acs_system';
|
|
30973
31146
|
}>;
|
|
31147
|
+
/** Full name of the `acs_user`. */
|
|
30974
31148
|
full_name?: string | undefined;
|
|
30975
31149
|
/**
|
|
30976
31150
|
* @deprecated use email_address. */
|
|
30977
31151
|
email?: string | undefined;
|
|
31152
|
+
/** Email address of the `acs_user`. */
|
|
30978
31153
|
email_address?: string | undefined;
|
|
31154
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
30979
31155
|
phone_number?: string | undefined;
|
|
30980
31156
|
is_managed: true;
|
|
30981
31157
|
}>;
|
|
@@ -31067,25 +31243,41 @@ interface Routes {
|
|
|
31067
31243
|
formData: {};
|
|
31068
31244
|
jsonResponse: {
|
|
31069
31245
|
acs_user: {
|
|
31246
|
+
/** ID of the `acs_user`. */
|
|
31070
31247
|
acs_user_id: string;
|
|
31248
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
31071
31249
|
acs_system_id: string;
|
|
31072
31250
|
hid_acs_system_id?: string | undefined;
|
|
31251
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
31073
31252
|
workspace_id: string;
|
|
31253
|
+
/** Date and time at which the `acs_user` was created. */
|
|
31074
31254
|
created_at: string;
|
|
31255
|
+
/** Display name for the `acs_user`. */
|
|
31075
31256
|
display_name: string;
|
|
31257
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
31076
31258
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
31259
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
31077
31260
|
external_type_display_name?: string | undefined;
|
|
31261
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
31078
31262
|
is_suspended: boolean;
|
|
31263
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
31079
31264
|
access_schedule?: {
|
|
31080
31265
|
starts_at: string;
|
|
31081
31266
|
ends_at: string;
|
|
31082
31267
|
} | undefined;
|
|
31268
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
31083
31269
|
user_identity_id?: string | undefined;
|
|
31270
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
31084
31271
|
user_identity_full_name?: (string | null) | undefined;
|
|
31272
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
31085
31273
|
user_identity_email_address?: (string | null) | undefined;
|
|
31274
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
31086
31275
|
user_identity_phone_number?: (string | null) | undefined;
|
|
31276
|
+
/** */
|
|
31087
31277
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
31278
|
+
/** */
|
|
31088
31279
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
31280
|
+
/** Warnings associated with the `acs_user`. */
|
|
31089
31281
|
warnings: Array<{
|
|
31090
31282
|
created_at: string;
|
|
31091
31283
|
message: string;
|
|
@@ -31095,6 +31287,7 @@ interface Routes {
|
|
|
31095
31287
|
message: string;
|
|
31096
31288
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
31097
31289
|
}>;
|
|
31290
|
+
/** Errors associated with the `acs_user`. */
|
|
31098
31291
|
errors: Array<{
|
|
31099
31292
|
/** Date and time at which Seam created the error. */
|
|
31100
31293
|
created_at: string;
|
|
@@ -31126,11 +31319,14 @@ interface Routes {
|
|
|
31126
31319
|
message: string;
|
|
31127
31320
|
error_code: 'failed_to_delete_on_acs_system';
|
|
31128
31321
|
}>;
|
|
31322
|
+
/** Full name of the `acs_user`. */
|
|
31129
31323
|
full_name?: string | undefined;
|
|
31130
31324
|
/**
|
|
31131
31325
|
* @deprecated use email_address. */
|
|
31132
31326
|
email?: string | undefined;
|
|
31327
|
+
/** Email address of the `acs_user`. */
|
|
31133
31328
|
email_address?: string | undefined;
|
|
31329
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
31134
31330
|
phone_number?: string | undefined;
|
|
31135
31331
|
is_managed: false;
|
|
31136
31332
|
};
|
|
@@ -31151,25 +31347,41 @@ interface Routes {
|
|
|
31151
31347
|
formData: {};
|
|
31152
31348
|
jsonResponse: {
|
|
31153
31349
|
acs_users: Array<{
|
|
31350
|
+
/** ID of the `acs_user`. */
|
|
31154
31351
|
acs_user_id: string;
|
|
31352
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
31155
31353
|
acs_system_id: string;
|
|
31156
31354
|
hid_acs_system_id?: string | undefined;
|
|
31355
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
31157
31356
|
workspace_id: string;
|
|
31357
|
+
/** Date and time at which the `acs_user` was created. */
|
|
31158
31358
|
created_at: string;
|
|
31359
|
+
/** Display name for the `acs_user`. */
|
|
31159
31360
|
display_name: string;
|
|
31361
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
31160
31362
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
31363
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
31161
31364
|
external_type_display_name?: string | undefined;
|
|
31365
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
31162
31366
|
is_suspended: boolean;
|
|
31367
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
31163
31368
|
access_schedule?: {
|
|
31164
31369
|
starts_at: string;
|
|
31165
31370
|
ends_at: string;
|
|
31166
31371
|
} | undefined;
|
|
31372
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
31167
31373
|
user_identity_id?: string | undefined;
|
|
31374
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
31168
31375
|
user_identity_full_name?: (string | null) | undefined;
|
|
31376
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
31169
31377
|
user_identity_email_address?: (string | null) | undefined;
|
|
31378
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
31170
31379
|
user_identity_phone_number?: (string | null) | undefined;
|
|
31380
|
+
/** */
|
|
31171
31381
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
31382
|
+
/** */
|
|
31172
31383
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
31384
|
+
/** Warnings associated with the `acs_user`. */
|
|
31173
31385
|
warnings: Array<{
|
|
31174
31386
|
created_at: string;
|
|
31175
31387
|
message: string;
|
|
@@ -31179,6 +31391,7 @@ interface Routes {
|
|
|
31179
31391
|
message: string;
|
|
31180
31392
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
31181
31393
|
}>;
|
|
31394
|
+
/** Errors associated with the `acs_user`. */
|
|
31182
31395
|
errors: Array<{
|
|
31183
31396
|
/** Date and time at which Seam created the error. */
|
|
31184
31397
|
created_at: string;
|
|
@@ -31210,11 +31423,14 @@ interface Routes {
|
|
|
31210
31423
|
message: string;
|
|
31211
31424
|
error_code: 'failed_to_delete_on_acs_system';
|
|
31212
31425
|
}>;
|
|
31426
|
+
/** Full name of the `acs_user`. */
|
|
31213
31427
|
full_name?: string | undefined;
|
|
31214
31428
|
/**
|
|
31215
31429
|
* @deprecated use email_address. */
|
|
31216
31430
|
email?: string | undefined;
|
|
31431
|
+
/** Email address of the `acs_user`. */
|
|
31217
31432
|
email_address?: string | undefined;
|
|
31433
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
31218
31434
|
phone_number?: string | undefined;
|
|
31219
31435
|
is_managed: false;
|
|
31220
31436
|
}>;
|
|
@@ -31242,12 +31458,16 @@ interface Routes {
|
|
|
31242
31458
|
starts_at: string;
|
|
31243
31459
|
ends_at: string;
|
|
31244
31460
|
} | null) | undefined;
|
|
31461
|
+
/** ID of the `acs_user`. */
|
|
31245
31462
|
acs_user_id: string;
|
|
31463
|
+
/** Full name of the `acs_user`. */
|
|
31246
31464
|
full_name?: string | undefined;
|
|
31247
31465
|
/**
|
|
31248
31466
|
* @deprecated use email_address. */
|
|
31249
31467
|
email?: string | undefined;
|
|
31468
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
31250
31469
|
phone_number?: string | undefined;
|
|
31470
|
+
/** Email address of the `acs_user`. */
|
|
31251
31471
|
email_address?: string | undefined;
|
|
31252
31472
|
hid_acs_system_id?: string | undefined;
|
|
31253
31473
|
};
|
|
@@ -43363,25 +43583,41 @@ interface Routes {
|
|
|
43363
43583
|
formData: {};
|
|
43364
43584
|
jsonResponse: {
|
|
43365
43585
|
acs_users: Array<{
|
|
43586
|
+
/** ID of the `acs_user`. */
|
|
43366
43587
|
acs_user_id: string;
|
|
43588
|
+
/** ID of the access control system that contains the `acs_user`. */
|
|
43367
43589
|
acs_system_id: string;
|
|
43368
43590
|
hid_acs_system_id?: string | undefined;
|
|
43591
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`. */
|
|
43369
43592
|
workspace_id: string;
|
|
43593
|
+
/** Date and time at which the `acs_user` was created. */
|
|
43370
43594
|
created_at: string;
|
|
43595
|
+
/** Display name for the `acs_user`. */
|
|
43371
43596
|
display_name: string;
|
|
43597
|
+
/** Brand-specific terminology for the `acs_user` type. */
|
|
43372
43598
|
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
43599
|
+
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
43373
43600
|
external_type_display_name?: string | undefined;
|
|
43601
|
+
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
43374
43602
|
is_suspended: boolean;
|
|
43603
|
+
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
43375
43604
|
access_schedule?: {
|
|
43376
43605
|
starts_at: string;
|
|
43377
43606
|
ends_at: string;
|
|
43378
43607
|
} | undefined;
|
|
43608
|
+
/** ID of the user identity associated with the `acs_user`. */
|
|
43379
43609
|
user_identity_id?: string | undefined;
|
|
43610
|
+
/** Full name of the user identity associated with the `acs_user`. */
|
|
43380
43611
|
user_identity_full_name?: (string | null) | undefined;
|
|
43612
|
+
/** Email address of the user identity associated with the `acs_user`. */
|
|
43381
43613
|
user_identity_email_address?: (string | null) | undefined;
|
|
43614
|
+
/** Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
43382
43615
|
user_identity_phone_number?: (string | null) | undefined;
|
|
43616
|
+
/** */
|
|
43383
43617
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
43618
|
+
/** */
|
|
43384
43619
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
43620
|
+
/** Warnings associated with the `acs_user`. */
|
|
43385
43621
|
warnings: Array<{
|
|
43386
43622
|
created_at: string;
|
|
43387
43623
|
message: string;
|
|
@@ -43391,6 +43627,7 @@ interface Routes {
|
|
|
43391
43627
|
message: string;
|
|
43392
43628
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
43393
43629
|
}>;
|
|
43630
|
+
/** Errors associated with the `acs_user`. */
|
|
43394
43631
|
errors: Array<{
|
|
43395
43632
|
/** Date and time at which Seam created the error. */
|
|
43396
43633
|
created_at: string;
|
|
@@ -43422,11 +43659,14 @@ interface Routes {
|
|
|
43422
43659
|
message: string;
|
|
43423
43660
|
error_code: 'failed_to_delete_on_acs_system';
|
|
43424
43661
|
}>;
|
|
43662
|
+
/** Full name of the `acs_user`. */
|
|
43425
43663
|
full_name?: string | undefined;
|
|
43426
43664
|
/**
|
|
43427
43665
|
* @deprecated use email_address. */
|
|
43428
43666
|
email?: string | undefined;
|
|
43667
|
+
/** Email address of the `acs_user`. */
|
|
43429
43668
|
email_address?: string | undefined;
|
|
43669
|
+
/** Phone number of the `acs_user` in E.164 format (for example, `+15555550100`). */
|
|
43430
43670
|
phone_number?: string | undefined;
|
|
43431
43671
|
is_managed: true;
|
|
43432
43672
|
}>;
|