@seamapi/types 1.393.0 → 1.395.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 +143 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +332 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +142 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +20 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +52 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +6 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +1 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +14 -0
- package/lib/seam/connect/openapi.js +124 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +176 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +24 -0
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +6 -0
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +142 -0
- package/src/lib/seam/connect/route-types.ts +194 -0
|
@@ -1430,6 +1430,16 @@ export interface Routes {
|
|
|
1430
1430
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1431
1431
|
error_code: 'duplicate_code_attempt_prevented'
|
|
1432
1432
|
}
|
|
1433
|
+
| {
|
|
1434
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1435
|
+
message: string
|
|
1436
|
+
/** Indicates that this is an access code error. */
|
|
1437
|
+
is_access_code_error: true
|
|
1438
|
+
/** Date and time at which Seam created the error. */
|
|
1439
|
+
created_at?: string | undefined
|
|
1440
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1441
|
+
error_code: 'no_space_for_access_code_on_device'
|
|
1442
|
+
}
|
|
1433
1443
|
| {
|
|
1434
1444
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1435
1445
|
message: string
|
|
@@ -1460,6 +1470,16 @@ export interface Routes {
|
|
|
1460
1470
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1461
1471
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
1462
1472
|
}
|
|
1473
|
+
| {
|
|
1474
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1475
|
+
message: string
|
|
1476
|
+
/** Indicates that this is an access code error. */
|
|
1477
|
+
is_access_code_error: true
|
|
1478
|
+
/** Date and time at which Seam created the error. */
|
|
1479
|
+
created_at?: string | undefined
|
|
1480
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1481
|
+
error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes'
|
|
1482
|
+
}
|
|
1463
1483
|
| {
|
|
1464
1484
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1465
1485
|
message: string
|
|
@@ -1964,6 +1984,16 @@ export interface Routes {
|
|
|
1964
1984
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1965
1985
|
error_code: 'duplicate_code_attempt_prevented'
|
|
1966
1986
|
}
|
|
1987
|
+
| {
|
|
1988
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1989
|
+
message: string
|
|
1990
|
+
/** Indicates that this is an access code error. */
|
|
1991
|
+
is_access_code_error: true
|
|
1992
|
+
/** Date and time at which Seam created the error. */
|
|
1993
|
+
created_at?: string | undefined
|
|
1994
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1995
|
+
error_code: 'no_space_for_access_code_on_device'
|
|
1996
|
+
}
|
|
1967
1997
|
| {
|
|
1968
1998
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1969
1999
|
message: string
|
|
@@ -1994,6 +2024,16 @@ export interface Routes {
|
|
|
1994
2024
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1995
2025
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
1996
2026
|
}
|
|
2027
|
+
| {
|
|
2028
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2029
|
+
message: string
|
|
2030
|
+
/** Indicates that this is an access code error. */
|
|
2031
|
+
is_access_code_error: true
|
|
2032
|
+
/** Date and time at which Seam created the error. */
|
|
2033
|
+
created_at?: string | undefined
|
|
2034
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2035
|
+
error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes'
|
|
2036
|
+
}
|
|
1997
2037
|
| {
|
|
1998
2038
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1999
2039
|
message: string
|
|
@@ -3806,6 +3846,16 @@ export interface Routes {
|
|
|
3806
3846
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3807
3847
|
error_code: 'duplicate_code_attempt_prevented'
|
|
3808
3848
|
}
|
|
3849
|
+
| {
|
|
3850
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3851
|
+
message: string
|
|
3852
|
+
/** Indicates that this is an access code error. */
|
|
3853
|
+
is_access_code_error: true
|
|
3854
|
+
/** Date and time at which Seam created the error. */
|
|
3855
|
+
created_at?: string | undefined
|
|
3856
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3857
|
+
error_code: 'no_space_for_access_code_on_device'
|
|
3858
|
+
}
|
|
3809
3859
|
| {
|
|
3810
3860
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3811
3861
|
message: string
|
|
@@ -3836,6 +3886,16 @@ export interface Routes {
|
|
|
3836
3886
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3837
3887
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
3838
3888
|
}
|
|
3889
|
+
| {
|
|
3890
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3891
|
+
message: string
|
|
3892
|
+
/** Indicates that this is an access code error. */
|
|
3893
|
+
is_access_code_error: true
|
|
3894
|
+
/** Date and time at which Seam created the error. */
|
|
3895
|
+
created_at?: string | undefined
|
|
3896
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3897
|
+
error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes'
|
|
3898
|
+
}
|
|
3839
3899
|
| {
|
|
3840
3900
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3841
3901
|
message: string
|
|
@@ -4320,6 +4380,16 @@ export interface Routes {
|
|
|
4320
4380
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4321
4381
|
error_code: 'duplicate_code_attempt_prevented'
|
|
4322
4382
|
}
|
|
4383
|
+
| {
|
|
4384
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4385
|
+
message: string
|
|
4386
|
+
/** Indicates that this is an access code error. */
|
|
4387
|
+
is_access_code_error: true
|
|
4388
|
+
/** Date and time at which Seam created the error. */
|
|
4389
|
+
created_at?: string | undefined
|
|
4390
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4391
|
+
error_code: 'no_space_for_access_code_on_device'
|
|
4392
|
+
}
|
|
4323
4393
|
| {
|
|
4324
4394
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4325
4395
|
message: string
|
|
@@ -4350,6 +4420,16 @@ export interface Routes {
|
|
|
4350
4420
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4351
4421
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
4352
4422
|
}
|
|
4423
|
+
| {
|
|
4424
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4425
|
+
message: string
|
|
4426
|
+
/** Indicates that this is an access code error. */
|
|
4427
|
+
is_access_code_error: true
|
|
4428
|
+
/** Date and time at which Seam created the error. */
|
|
4429
|
+
created_at?: string | undefined
|
|
4430
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4431
|
+
error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes'
|
|
4432
|
+
}
|
|
4353
4433
|
| {
|
|
4354
4434
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4355
4435
|
message: string
|
|
@@ -4842,6 +4922,16 @@ export interface Routes {
|
|
|
4842
4922
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4843
4923
|
error_code: 'duplicate_code_attempt_prevented'
|
|
4844
4924
|
}
|
|
4925
|
+
| {
|
|
4926
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4927
|
+
message: string
|
|
4928
|
+
/** Indicates that this is an access code error. */
|
|
4929
|
+
is_access_code_error: true
|
|
4930
|
+
/** Date and time at which Seam created the error. */
|
|
4931
|
+
created_at?: string | undefined
|
|
4932
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4933
|
+
error_code: 'no_space_for_access_code_on_device'
|
|
4934
|
+
}
|
|
4845
4935
|
| {
|
|
4846
4936
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4847
4937
|
message: string
|
|
@@ -4872,6 +4962,16 @@ export interface Routes {
|
|
|
4872
4962
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4873
4963
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
4874
4964
|
}
|
|
4965
|
+
| {
|
|
4966
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4967
|
+
message: string
|
|
4968
|
+
/** Indicates that this is an access code error. */
|
|
4969
|
+
is_access_code_error: true
|
|
4970
|
+
/** Date and time at which Seam created the error. */
|
|
4971
|
+
created_at?: string | undefined
|
|
4972
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4973
|
+
error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes'
|
|
4974
|
+
}
|
|
4875
4975
|
| {
|
|
4876
4976
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4877
4977
|
message: string
|
|
@@ -5342,6 +5442,16 @@ export interface Routes {
|
|
|
5342
5442
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5343
5443
|
error_code: 'duplicate_code_attempt_prevented'
|
|
5344
5444
|
}
|
|
5445
|
+
| {
|
|
5446
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5447
|
+
message: string
|
|
5448
|
+
/** Indicates that this is an access code error. */
|
|
5449
|
+
is_access_code_error: true
|
|
5450
|
+
/** Date and time at which Seam created the error. */
|
|
5451
|
+
created_at?: string | undefined
|
|
5452
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5453
|
+
error_code: 'no_space_for_access_code_on_device'
|
|
5454
|
+
}
|
|
5345
5455
|
| {
|
|
5346
5456
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5347
5457
|
message: string
|
|
@@ -5372,6 +5482,16 @@ export interface Routes {
|
|
|
5372
5482
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5373
5483
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
5374
5484
|
}
|
|
5485
|
+
| {
|
|
5486
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5487
|
+
message: string
|
|
5488
|
+
/** Indicates that this is an access code error. */
|
|
5489
|
+
is_access_code_error: true
|
|
5490
|
+
/** Date and time at which Seam created the error. */
|
|
5491
|
+
created_at?: string | undefined
|
|
5492
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5493
|
+
error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes'
|
|
5494
|
+
}
|
|
5375
5495
|
| {
|
|
5376
5496
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5377
5497
|
message: string
|
|
@@ -5871,6 +5991,16 @@ export interface Routes {
|
|
|
5871
5991
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5872
5992
|
error_code: 'duplicate_code_attempt_prevented'
|
|
5873
5993
|
}
|
|
5994
|
+
| {
|
|
5995
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5996
|
+
message: string
|
|
5997
|
+
/** Indicates that this is an access code error. */
|
|
5998
|
+
is_access_code_error: true
|
|
5999
|
+
/** Date and time at which Seam created the error. */
|
|
6000
|
+
created_at?: string | undefined
|
|
6001
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6002
|
+
error_code: 'no_space_for_access_code_on_device'
|
|
6003
|
+
}
|
|
5874
6004
|
| {
|
|
5875
6005
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5876
6006
|
message: string
|
|
@@ -5901,6 +6031,16 @@ export interface Routes {
|
|
|
5901
6031
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5902
6032
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
5903
6033
|
}
|
|
6034
|
+
| {
|
|
6035
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6036
|
+
message: string
|
|
6037
|
+
/** Indicates that this is an access code error. */
|
|
6038
|
+
is_access_code_error: true
|
|
6039
|
+
/** Date and time at which Seam created the error. */
|
|
6040
|
+
created_at?: string | undefined
|
|
6041
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6042
|
+
error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes'
|
|
6043
|
+
}
|
|
5904
6044
|
| {
|
|
5905
6045
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5906
6046
|
message: string
|
|
@@ -7697,6 +7837,16 @@ export interface Routes {
|
|
|
7697
7837
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7698
7838
|
error_code: 'duplicate_code_attempt_prevented'
|
|
7699
7839
|
}
|
|
7840
|
+
| {
|
|
7841
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7842
|
+
message: string
|
|
7843
|
+
/** Indicates that this is an access code error. */
|
|
7844
|
+
is_access_code_error: true
|
|
7845
|
+
/** Date and time at which Seam created the error. */
|
|
7846
|
+
created_at?: string | undefined
|
|
7847
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7848
|
+
error_code: 'no_space_for_access_code_on_device'
|
|
7849
|
+
}
|
|
7700
7850
|
| {
|
|
7701
7851
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7702
7852
|
message: string
|
|
@@ -7727,6 +7877,16 @@ export interface Routes {
|
|
|
7727
7877
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7728
7878
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
7729
7879
|
}
|
|
7880
|
+
| {
|
|
7881
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7882
|
+
message: string
|
|
7883
|
+
/** Indicates that this is an access code error. */
|
|
7884
|
+
is_access_code_error: true
|
|
7885
|
+
/** Date and time at which Seam created the error. */
|
|
7886
|
+
created_at?: string | undefined
|
|
7887
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7888
|
+
error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes'
|
|
7889
|
+
}
|
|
7730
7890
|
| {
|
|
7731
7891
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7732
7892
|
message: string
|
|
@@ -8187,6 +8347,16 @@ export interface Routes {
|
|
|
8187
8347
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8188
8348
|
error_code: 'duplicate_code_attempt_prevented'
|
|
8189
8349
|
}
|
|
8350
|
+
| {
|
|
8351
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8352
|
+
message: string
|
|
8353
|
+
/** Indicates that this is an access code error. */
|
|
8354
|
+
is_access_code_error: true
|
|
8355
|
+
/** Date and time at which Seam created the error. */
|
|
8356
|
+
created_at?: string | undefined
|
|
8357
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8358
|
+
error_code: 'no_space_for_access_code_on_device'
|
|
8359
|
+
}
|
|
8190
8360
|
| {
|
|
8191
8361
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8192
8362
|
message: string
|
|
@@ -8217,6 +8387,16 @@ export interface Routes {
|
|
|
8217
8387
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8218
8388
|
error_code: 'igloohome_offline_access_code_no_variance_available'
|
|
8219
8389
|
}
|
|
8390
|
+
| {
|
|
8391
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8392
|
+
message: string
|
|
8393
|
+
/** Indicates that this is an access code error. */
|
|
8394
|
+
is_access_code_error: true
|
|
8395
|
+
/** Date and time at which Seam created the error. */
|
|
8396
|
+
created_at?: string | undefined
|
|
8397
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8398
|
+
error_code: 'schlage_lock_exceeds_maximum_number_of_access_codes'
|
|
8399
|
+
}
|
|
8220
8400
|
| {
|
|
8221
8401
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8222
8402
|
message: string
|
|
@@ -10403,6 +10583,8 @@ export interface Routes {
|
|
|
10403
10583
|
}
|
|
10404
10584
|
>
|
|
10405
10585
|
| undefined
|
|
10586
|
+
/** The last time an internal sync job completed for this ACS user. */
|
|
10587
|
+
last_successful_sync_at: string | null
|
|
10406
10588
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
10407
10589
|
full_name?: string | undefined
|
|
10408
10590
|
/**
|
|
@@ -17501,6 +17683,8 @@ export interface Routes {
|
|
|
17501
17683
|
}
|
|
17502
17684
|
>
|
|
17503
17685
|
| undefined
|
|
17686
|
+
/** The last time an internal sync job completed for this ACS user. */
|
|
17687
|
+
last_successful_sync_at: string | null
|
|
17504
17688
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
17505
17689
|
full_name?: string | undefined
|
|
17506
17690
|
/**
|
|
@@ -17744,6 +17928,8 @@ export interface Routes {
|
|
|
17744
17928
|
}
|
|
17745
17929
|
>
|
|
17746
17930
|
| undefined
|
|
17931
|
+
/** The last time an internal sync job completed for this ACS user. */
|
|
17932
|
+
last_successful_sync_at: string | null
|
|
17747
17933
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
17748
17934
|
full_name?: string | undefined
|
|
17749
17935
|
/**
|
|
@@ -17983,6 +18169,8 @@ export interface Routes {
|
|
|
17983
18169
|
}
|
|
17984
18170
|
>
|
|
17985
18171
|
| undefined
|
|
18172
|
+
/** The last time an internal sync job completed for this ACS user. */
|
|
18173
|
+
last_successful_sync_at: string | null
|
|
17986
18174
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
17987
18175
|
full_name?: string | undefined
|
|
17988
18176
|
/**
|
|
@@ -18354,6 +18542,8 @@ export interface Routes {
|
|
|
18354
18542
|
}
|
|
18355
18543
|
>
|
|
18356
18544
|
| undefined
|
|
18545
|
+
/** The last time an internal sync job completed for this ACS user. */
|
|
18546
|
+
last_successful_sync_at: string | null
|
|
18357
18547
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
18358
18548
|
full_name?: string | undefined
|
|
18359
18549
|
/**
|
|
@@ -18583,6 +18773,8 @@ export interface Routes {
|
|
|
18583
18773
|
}
|
|
18584
18774
|
>
|
|
18585
18775
|
| undefined
|
|
18776
|
+
/** The last time an internal sync job completed for this ACS user. */
|
|
18777
|
+
last_successful_sync_at: string | null
|
|
18586
18778
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
18587
18779
|
full_name?: string | undefined
|
|
18588
18780
|
/**
|
|
@@ -64028,6 +64220,8 @@ export interface Routes {
|
|
|
64028
64220
|
}
|
|
64029
64221
|
>
|
|
64030
64222
|
| undefined
|
|
64223
|
+
/** The last time an internal sync job completed for this ACS user. */
|
|
64224
|
+
last_successful_sync_at: string | null
|
|
64031
64225
|
/** Full name of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
64032
64226
|
full_name?: string | undefined
|
|
64033
64227
|
/**
|